// https://syzkaller.appspot.com/bug?id=296ac5c02d1a264873a06736694902dcf4e7a8b4
// autogenerated by syzkaller (https://github.com/google/syzkaller)

#define _GNU_SOURCE

#include <arpa/inet.h>
#include <dirent.h>
#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <net/if.h>
#include <net/if_arp.h>
#include <netinet/in.h>
#include <pthread.h>
#include <sched.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/resource.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/swap.h>
#include <sys/syscall.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>

#include <linux/capability.h>
#include <linux/falloc.h>
#include <linux/futex.h>
#include <linux/genetlink.h>
#include <linux/if_addr.h>
#include <linux/if_ether.h>
#include <linux/if_link.h>
#include <linux/if_tun.h>
#include <linux/in6.h>
#include <linux/ip.h>
#include <linux/loop.h>
#include <linux/neighbour.h>
#include <linux/net.h>
#include <linux/netlink.h>
#include <linux/nl80211.h>
#include <linux/rfkill.h>
#include <linux/rtnetlink.h>
#include <linux/tcp.h>
#include <linux/veth.h>

#ifndef __NR_memfd_create
#define __NR_memfd_create 319
#endif

static unsigned long long procid;

static __thread int clone_ongoing;
static __thread int skip_segv;
static __thread jmp_buf segv_env;

static void segv_handler(int sig, siginfo_t* info, void* ctx)
{
  if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) {
    exit(sig);
  }
  uintptr_t addr = (uintptr_t)info->si_addr;
  const uintptr_t prog_start = 1 << 20;
  const uintptr_t prog_end = 100 << 20;
  int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0;
  int valid = addr < prog_start || addr > prog_end;
  if (skip && valid) {
    _longjmp(segv_env, 1);
  }
  exit(sig);
}

static void install_segv_handler(void)
{
  struct sigaction sa;
  memset(&sa, 0, sizeof(sa));
  sa.sa_handler = SIG_IGN;
  syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8);
  syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8);
  memset(&sa, 0, sizeof(sa));
  sa.sa_sigaction = segv_handler;
  sa.sa_flags = SA_NODEFER | SA_SIGINFO;
  sigaction(SIGSEGV, &sa, NULL);
  sigaction(SIGBUS, &sa, NULL);
}

#define NONFAILING(...)                                                        \
  ({                                                                           \
    int ok = 1;                                                                \
    __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST);                       \
    if (_setjmp(segv_env) == 0) {                                              \
      __VA_ARGS__;                                                             \
    } else                                                                     \
      ok = 0;                                                                  \
    __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST);                       \
    ok;                                                                        \
  })

static void sleep_ms(uint64_t ms)
{
  usleep(ms * 1000);
}

static uint64_t current_time_ms(void)
{
  struct timespec ts;
  if (clock_gettime(CLOCK_MONOTONIC, &ts))
    exit(1);
  return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000;
}

static void use_temporary_dir(void)
{
  char tmpdir_template[] = "./syzkaller.XXXXXX";
  char* tmpdir = mkdtemp(tmpdir_template);
  if (!tmpdir)
    exit(1);
  if (chmod(tmpdir, 0777))
    exit(1);
  if (chdir(tmpdir))
    exit(1);
}

static void thread_start(void* (*fn)(void*), void* arg)
{
  pthread_t th;
  pthread_attr_t attr;
  pthread_attr_init(&attr);
  pthread_attr_setstacksize(&attr, 128 << 10);
  int i = 0;
  for (; i < 100; i++) {
    if (pthread_create(&th, &attr, fn, arg) == 0) {
      pthread_attr_destroy(&attr);
      return;
    }
    if (errno == EAGAIN) {
      usleep(50);
      continue;
    }
    break;
  }
  exit(1);
}

typedef struct {
  int state;
} event_t;

static void event_init(event_t* ev)
{
  ev->state = 0;
}

static void event_reset(event_t* ev)
{
  ev->state = 0;
}

static void event_set(event_t* ev)
{
  if (ev->state)
    exit(1);
  __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE);
  syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000);
}

static void event_wait(event_t* ev)
{
  while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE))
    syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0);
}

static int event_isset(event_t* ev)
{
  return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE);
}

static int event_timedwait(event_t* ev, uint64_t timeout)
{
  uint64_t start = current_time_ms();
  uint64_t now = start;
  for (;;) {
    uint64_t remain = timeout - (now - start);
    struct timespec ts;
    ts.tv_sec = remain / 1000;
    ts.tv_nsec = (remain % 1000) * 1000 * 1000;
    syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts);
    if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE))
      return 1;
    now = current_time_ms();
    if (now - start > timeout)
      return 0;
  }
}

static bool write_file(const char* file, const char* what, ...)
{
  char buf[1024];
  va_list args;
  va_start(args, what);
  vsnprintf(buf, sizeof(buf), what, args);
  va_end(args);
  buf[sizeof(buf) - 1] = 0;
  int len = strlen(buf);
  int fd = open(file, O_WRONLY | O_CLOEXEC);
  if (fd == -1)
    return false;
  if (write(fd, buf, len) != len) {
    int err = errno;
    close(fd);
    errno = err;
    return false;
  }
  close(fd);
  return true;
}

struct nlmsg {
  char* pos;
  int nesting;
  struct nlattr* nested[8];
  char buf[4096];
};

static void netlink_init(struct nlmsg* nlmsg, int typ, int flags,
                         const void* data, int size)
{
  memset(nlmsg, 0, sizeof(*nlmsg));
  struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf;
  hdr->nlmsg_type = typ;
  hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags;
  memcpy(hdr + 1, data, size);
  nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size);
}

static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data,
                         int size)
{
  struct nlattr* attr = (struct nlattr*)nlmsg->pos;
  attr->nla_len = sizeof(*attr) + size;
  attr->nla_type = typ;
  if (size > 0)
    memcpy(attr + 1, data, size);
  nlmsg->pos += NLMSG_ALIGN(attr->nla_len);
}

static void netlink_nest(struct nlmsg* nlmsg, int typ)
{
  struct nlattr* attr = (struct nlattr*)nlmsg->pos;
  attr->nla_type = typ;
  nlmsg->pos += sizeof(*attr);
  nlmsg->nested[nlmsg->nesting++] = attr;
}

static void netlink_done(struct nlmsg* nlmsg)
{
  struct nlattr* attr = nlmsg->nested[--nlmsg->nesting];
  attr->nla_len = nlmsg->pos - (char*)attr;
}

static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type,
                            int* reply_len, bool dofail)
{
  if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting)
    exit(1);
  struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf;
  hdr->nlmsg_len = nlmsg->pos - nlmsg->buf;
  struct sockaddr_nl addr;
  memset(&addr, 0, sizeof(addr));
  addr.nl_family = AF_NETLINK;
  ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0,
                     (struct sockaddr*)&addr, sizeof(addr));
  if (n != (ssize_t)hdr->nlmsg_len) {
    if (dofail)
      exit(1);
    return -1;
  }
  n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0);
  if (reply_len)
    *reply_len = 0;
  if (n < 0) {
    if (dofail)
      exit(1);
    return -1;
  }
  if (n < (ssize_t)sizeof(struct nlmsghdr)) {
    errno = EINVAL;
    if (dofail)
      exit(1);
    return -1;
  }
  if (hdr->nlmsg_type == NLMSG_DONE)
    return 0;
  if (reply_len && hdr->nlmsg_type == reply_type) {
    *reply_len = n;
    return 0;
  }
  if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) {
    errno = EINVAL;
    if (dofail)
      exit(1);
    return -1;
  }
  if (hdr->nlmsg_type != NLMSG_ERROR) {
    errno = EINVAL;
    if (dofail)
      exit(1);
    return -1;
  }
  errno = -((struct nlmsgerr*)(hdr + 1))->error;
  return -errno;
}

static int netlink_send(struct nlmsg* nlmsg, int sock)
{
  return netlink_send_ext(nlmsg, sock, 0, NULL, true);
}

static int netlink_query_family_id(struct nlmsg* nlmsg, int sock,
                                   const char* family_name, bool dofail)
{
  struct genlmsghdr genlhdr;
  memset(&genlhdr, 0, sizeof(genlhdr));
  genlhdr.cmd = CTRL_CMD_GETFAMILY;
  netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr));
  netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name,
               strnlen(family_name, GENL_NAMSIZ - 1) + 1);
  int n = 0;
  int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail);
  if (err < 0) {
    return -1;
  }
  uint16_t id = 0;
  struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN +
                                         NLMSG_ALIGN(sizeof(genlhdr)));
  for (; (char*)attr < nlmsg->buf + n;
       attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) {
    if (attr->nla_type == CTRL_ATTR_FAMILY_ID) {
      id = *(uint16_t*)(attr + 1);
      break;
    }
  }
  if (!id) {
    errno = EINVAL;
    return -1;
  }
  recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0);
  return id;
}

static int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset,
                            unsigned int total_len)
{
  struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset);
  if (offset == total_len || offset + hdr->nlmsg_len > total_len)
    return -1;
  return hdr->nlmsg_len;
}

static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type,
                                    const char* name, bool up)
{
  struct ifinfomsg hdr;
  memset(&hdr, 0, sizeof(hdr));
  if (up)
    hdr.ifi_flags = hdr.ifi_change = IFF_UP;
  netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr,
               sizeof(hdr));
  if (name)
    netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name));
  netlink_nest(nlmsg, IFLA_LINKINFO);
  netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type));
}

static void netlink_add_device(struct nlmsg* nlmsg, int sock, const char* type,
                               const char* name)
{
  netlink_add_device_impl(nlmsg, type, name, false);
  netlink_done(nlmsg);
  int err = netlink_send(nlmsg, sock);
  if (err < 0) {
  }
}

static void netlink_add_veth(struct nlmsg* nlmsg, int sock, const char* name,
                             const char* peer)
{
  netlink_add_device_impl(nlmsg, "veth", name, false);
  netlink_nest(nlmsg, IFLA_INFO_DATA);
  netlink_nest(nlmsg, VETH_INFO_PEER);
  nlmsg->pos += sizeof(struct ifinfomsg);
  netlink_attr(nlmsg, IFLA_IFNAME, peer, strlen(peer));
  netlink_done(nlmsg);
  netlink_done(nlmsg);
  netlink_done(nlmsg);
  int err = netlink_send(nlmsg, sock);
  if (err < 0) {
  }
}

static void netlink_add_xfrm(struct nlmsg* nlmsg, int sock, const char* name)
{
  netlink_add_device_impl(nlmsg, "xfrm", name, true);
  netlink_nest(nlmsg, IFLA_INFO_DATA);
  int if_id = 1;
  netlink_attr(nlmsg, 2, &if_id, sizeof(if_id));
  netlink_done(nlmsg);
  netlink_done(nlmsg);
  int err = netlink_send(nlmsg, sock);
  if (err < 0) {
  }
}

static void netlink_add_hsr(struct nlmsg* nlmsg, int sock, const char* name,
                            const char* slave1, const char* slave2)
{
  netlink_add_device_impl(nlmsg, "hsr", name, false);
  netlink_nest(nlmsg, IFLA_INFO_DATA);
  int ifindex1 = if_nametoindex(slave1);
  netlink_attr(nlmsg, IFLA_HSR_SLAVE1, &ifindex1, sizeof(ifindex1));
  int ifindex2 = if_nametoindex(slave2);
  netlink_attr(nlmsg, IFLA_HSR_SLAVE2, &ifindex2, sizeof(ifindex2));
  netlink_done(nlmsg);
  netlink_done(nlmsg);
  int err = netlink_send(nlmsg, sock);
  if (err < 0) {
  }
}

static void netlink_add_linked(struct nlmsg* nlmsg, int sock, const char* type,
                               const char* name, const char* link)
{
  netlink_add_device_impl(nlmsg, type, name, false);
  netlink_done(nlmsg);
  int ifindex = if_nametoindex(link);
  netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex));
  int err = netlink_send(nlmsg, sock);
  if (err < 0) {
  }
}

static void netlink_add_vlan(struct nlmsg* nlmsg, int sock, const char* name,
                             const char* link, uint16_t id, uint16_t proto)
{
  netlink_add_device_impl(nlmsg, "vlan", name, false);
  netlink_nest(nlmsg, IFLA_INFO_DATA);
  netlink_attr(nlmsg, IFLA_VLAN_ID, &id, sizeof(id));
  netlink_attr(nlmsg, IFLA_VLAN_PROTOCOL, &proto, sizeof(proto));
  netlink_done(nlmsg);
  netlink_done(nlmsg);
  int ifindex = if_nametoindex(link);
  netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex));
  int err = netlink_send(nlmsg, sock);
  if (err < 0) {
  }
}

static void netlink_add_macvlan(struct nlmsg* nlmsg, int sock, const char* name,
                                const char* link)
{
  netlink_add_device_impl(nlmsg, "macvlan", name, false);
  netlink_nest(nlmsg, IFLA_INFO_DATA);
  uint32_t mode = MACVLAN_MODE_BRIDGE;
  netlink_attr(nlmsg, IFLA_MACVLAN_MODE, &mode, sizeof(mode));
  netlink_done(nlmsg);
  netlink_done(nlmsg);
  int ifindex = if_nametoindex(link);
  netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex));
  int err = netlink_send(nlmsg, sock);
  if (err < 0) {
  }
}

static void netlink_add_geneve(struct nlmsg* nlmsg, int sock, const char* name,
                               uint32_t vni, struct in_addr* addr4,
                               struct in6_addr* addr6)
{
  netlink_add_device_impl(nlmsg, "geneve", name, false);
  netlink_nest(nlmsg, IFLA_INFO_DATA);
  netlink_attr(nlmsg, IFLA_GENEVE_ID, &vni, sizeof(vni));
  if (addr4)
    netlink_attr(nlmsg, IFLA_GENEVE_REMOTE, addr4, sizeof(*addr4));
  if (addr6)
    netlink_attr(nlmsg, IFLA_GENEVE_REMOTE6, addr6, sizeof(*addr6));
  netlink_done(nlmsg);
  netlink_done(nlmsg);
  int err = netlink_send(nlmsg, sock);
  if (err < 0) {
  }
}

#define IFLA_IPVLAN_FLAGS 2
#define IPVLAN_MODE_L3S 2
#undef IPVLAN_F_VEPA
#define IPVLAN_F_VEPA 2

static void netlink_add_ipvlan(struct nlmsg* nlmsg, int sock, const char* name,
                               const char* link, uint16_t mode, uint16_t flags)
{
  netlink_add_device_impl(nlmsg, "ipvlan", name, false);
  netlink_nest(nlmsg, IFLA_INFO_DATA);
  netlink_attr(nlmsg, IFLA_IPVLAN_MODE, &mode, sizeof(mode));
  netlink_attr(nlmsg, IFLA_IPVLAN_FLAGS, &flags, sizeof(flags));
  netlink_done(nlmsg);
  netlink_done(nlmsg);
  int ifindex = if_nametoindex(link);
  netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex));
  int err = netlink_send(nlmsg, sock);
  if (err < 0) {
  }
}

static void netlink_device_change(struct nlmsg* nlmsg, int sock,
                                  const char* name, bool up, const char* master,
                                  const void* mac, int macsize,
                                  const char* new_name)
{
  struct ifinfomsg hdr;
  memset(&hdr, 0, sizeof(hdr));
  if (up)
    hdr.ifi_flags = hdr.ifi_change = IFF_UP;
  hdr.ifi_index = if_nametoindex(name);
  netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr));
  if (new_name)
    netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name));
  if (master) {
    int ifindex = if_nametoindex(master);
    netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex));
  }
  if (macsize)
    netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize);
  int err = netlink_send(nlmsg, sock);
  if (err < 0) {
  }
}

static int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev,
                            const void* addr, int addrsize)
{
  struct ifaddrmsg hdr;
  memset(&hdr, 0, sizeof(hdr));
  hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6;
  hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120;
  hdr.ifa_scope = RT_SCOPE_UNIVERSE;
  hdr.ifa_index = if_nametoindex(dev);
  netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr,
               sizeof(hdr));
  netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize);
  netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize);
  return netlink_send(nlmsg, sock);
}

static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev,
                              const char* addr)
{
  struct in_addr in_addr;
  inet_pton(AF_INET, addr, &in_addr);
  int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr));
  if (err < 0) {
  }
}

static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev,
                              const char* addr)
{
  struct in6_addr in6_addr;
  inet_pton(AF_INET6, addr, &in6_addr);
  int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr));
  if (err < 0) {
  }
}

static struct nlmsg nlmsg;

#define DEVLINK_FAMILY_NAME "devlink"

#define DEVLINK_CMD_PORT_GET 5
#define DEVLINK_ATTR_BUS_NAME 1
#define DEVLINK_ATTR_DEV_NAME 2
#define DEVLINK_ATTR_NETDEV_NAME 7

static struct nlmsg nlmsg2;

static void initialize_devlink_ports(const char* bus_name, const char* dev_name,
                                     const char* netdev_prefix)
{
  struct genlmsghdr genlhdr;
  int len, total_len, id, err, offset;
  uint16_t netdev_index;
  int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC);
  if (sock == -1)
    exit(1);
  int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
  if (rtsock == -1)
    exit(1);
  id = netlink_query_family_id(&nlmsg, sock, DEVLINK_FAMILY_NAME, true);
  if (id == -1)
    goto error;
  memset(&genlhdr, 0, sizeof(genlhdr));
  genlhdr.cmd = DEVLINK_CMD_PORT_GET;
  netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr));
  netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1);
  netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1);
  err = netlink_send_ext(&nlmsg, sock, id, &total_len, true);
  if (err < 0) {
    goto error;
  }
  offset = 0;
  netdev_index = 0;
  while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) {
    struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN +
                                           NLMSG_ALIGN(sizeof(genlhdr)));
    for (; (char*)attr < nlmsg.buf + offset + len;
         attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) {
      if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) {
        char* port_name;
        char netdev_name[IFNAMSIZ];
        port_name = (char*)(attr + 1);
        snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix,
                 netdev_index);
        netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0,
                              netdev_name);
        break;
      }
    }
    offset += len;
    netdev_index++;
  }
error:
  close(rtsock);
  close(sock);
}

#define WIFI_INITIAL_DEVICE_COUNT 2
#define WIFI_MAC_BASE                                                          \
  {                                                                            \
    0x08, 0x02, 0x11, 0x00, 0x00, 0x00                                         \
  }
#define WIFI_IBSS_BSSID                                                        \
  {                                                                            \
    0x50, 0x50, 0x50, 0x50, 0x50, 0x50                                         \
  }
#define WIFI_IBSS_SSID                                                         \
  {                                                                            \
    0x10, 0x10, 0x10, 0x10, 0x10, 0x10                                         \
  }
#define WIFI_DEFAULT_FREQUENCY 2412
#define WIFI_DEFAULT_SIGNAL 0
#define WIFI_DEFAULT_RX_RATE 1
#define HWSIM_CMD_REGISTER 1
#define HWSIM_CMD_FRAME 2
#define HWSIM_CMD_NEW_RADIO 4
#define HWSIM_ATTR_SUPPORT_P2P_DEVICE 14
#define HWSIM_ATTR_PERM_ADDR 22

#define IF_OPER_UP 6
struct join_ibss_props {
  int wiphy_freq;
  bool wiphy_freq_fixed;
  uint8_t* mac;
  uint8_t* ssid;
  int ssid_len;
};

static int set_interface_state(const char* interface_name, int on)
{
  struct ifreq ifr;
  int sock = socket(AF_INET, SOCK_DGRAM, 0);
  if (sock < 0) {
    return -1;
  }
  memset(&ifr, 0, sizeof(ifr));
  strcpy(ifr.ifr_name, interface_name);
  int ret = ioctl(sock, SIOCGIFFLAGS, &ifr);
  if (ret < 0) {
    close(sock);
    return -1;
  }
  if (on)
    ifr.ifr_flags |= IFF_UP;
  else
    ifr.ifr_flags &= ~IFF_UP;
  ret = ioctl(sock, SIOCSIFFLAGS, &ifr);
  close(sock);
  if (ret < 0) {
    return -1;
  }
  return 0;
}

static int nl80211_set_interface(struct nlmsg* nlmsg, int sock,
                                 int nl80211_family, uint32_t ifindex,
                                 uint32_t iftype, bool dofail)
{
  struct genlmsghdr genlhdr;
  memset(&genlhdr, 0, sizeof(genlhdr));
  genlhdr.cmd = NL80211_CMD_SET_INTERFACE;
  netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr));
  netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex));
  netlink_attr(nlmsg, NL80211_ATTR_IFTYPE, &iftype, sizeof(iftype));
  int err = netlink_send_ext(nlmsg, sock, 0, NULL, dofail);
  if (err < 0) {
  }
  return err;
}

static int nl80211_join_ibss(struct nlmsg* nlmsg, int sock, int nl80211_family,
                             uint32_t ifindex, struct join_ibss_props* props,
                             bool dofail)
{
  struct genlmsghdr genlhdr;
  memset(&genlhdr, 0, sizeof(genlhdr));
  genlhdr.cmd = NL80211_CMD_JOIN_IBSS;
  netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr));
  netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex));
  netlink_attr(nlmsg, NL80211_ATTR_SSID, props->ssid, props->ssid_len);
  netlink_attr(nlmsg, NL80211_ATTR_WIPHY_FREQ, &(props->wiphy_freq),
               sizeof(props->wiphy_freq));
  if (props->mac)
    netlink_attr(nlmsg, NL80211_ATTR_MAC, props->mac, ETH_ALEN);
  if (props->wiphy_freq_fixed)
    netlink_attr(nlmsg, NL80211_ATTR_FREQ_FIXED, NULL, 0);
  int err = netlink_send_ext(nlmsg, sock, 0, NULL, dofail);
  if (err < 0) {
  }
  return err;
}

static int get_ifla_operstate(struct nlmsg* nlmsg, int ifindex, bool dofail)
{
  struct ifinfomsg info;
  memset(&info, 0, sizeof(info));
  info.ifi_family = AF_UNSPEC;
  info.ifi_index = ifindex;
  int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
  if (sock == -1) {
    return -1;
  }
  netlink_init(nlmsg, RTM_GETLINK, 0, &info, sizeof(info));
  int n;
  int err = netlink_send_ext(nlmsg, sock, RTM_NEWLINK, &n, dofail);
  close(sock);
  if (err) {
    return -1;
  }
  struct rtattr* attr = IFLA_RTA(NLMSG_DATA(nlmsg->buf));
  for (; RTA_OK(attr, n); attr = RTA_NEXT(attr, n)) {
    if (attr->rta_type == IFLA_OPERSTATE)
      return *((int32_t*)RTA_DATA(attr));
  }
  return -1;
}

static int await_ifla_operstate(struct nlmsg* nlmsg, char* interface,
                                int operstate, bool dofail)
{
  int ifindex = if_nametoindex(interface);
  while (true) {
    usleep(1000);
    int ret = get_ifla_operstate(nlmsg, ifindex, dofail);
    if (ret < 0)
      return ret;
    if (ret == operstate)
      return 0;
  }
  return 0;
}

static int nl80211_setup_ibss_interface(struct nlmsg* nlmsg, int sock,
                                        int nl80211_family_id, char* interface,
                                        struct join_ibss_props* ibss_props,
                                        bool dofail)
{
  int ifindex = if_nametoindex(interface);
  if (ifindex == 0) {
    return -1;
  }
  int ret = nl80211_set_interface(nlmsg, sock, nl80211_family_id, ifindex,
                                  NL80211_IFTYPE_ADHOC, dofail);
  if (ret < 0) {
    return -1;
  }
  ret = set_interface_state(interface, 1);
  if (ret < 0) {
    return -1;
  }
  ret = nl80211_join_ibss(nlmsg, sock, nl80211_family_id, ifindex, ibss_props,
                          dofail);
  if (ret < 0) {
    return -1;
  }
  return 0;
}

static int hwsim80211_create_device(struct nlmsg* nlmsg, int sock,
                                    int hwsim_family,
                                    uint8_t mac_addr[ETH_ALEN])
{
  struct genlmsghdr genlhdr;
  memset(&genlhdr, 0, sizeof(genlhdr));
  genlhdr.cmd = HWSIM_CMD_NEW_RADIO;
  netlink_init(nlmsg, hwsim_family, 0, &genlhdr, sizeof(genlhdr));
  netlink_attr(nlmsg, HWSIM_ATTR_SUPPORT_P2P_DEVICE, NULL, 0);
  netlink_attr(nlmsg, HWSIM_ATTR_PERM_ADDR, mac_addr, ETH_ALEN);
  int err = netlink_send(nlmsg, sock);
  if (err < 0) {
  }
  return err;
}

static void initialize_wifi_devices(void)
{
  int rfkill = open("/dev/rfkill", O_RDWR);
  if (rfkill == -1)
    exit(1);
  struct rfkill_event event = {0};
  event.type = RFKILL_TYPE_ALL;
  event.op = RFKILL_OP_CHANGE_ALL;
  if (write(rfkill, &event, sizeof(event)) != (ssize_t)(sizeof(event)))
    exit(1);
  close(rfkill);
  uint8_t mac_addr[6] = WIFI_MAC_BASE;
  int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC);
  if (sock < 0)
    exit(1);
  int hwsim_family_id =
      netlink_query_family_id(&nlmsg, sock, "MAC80211_HWSIM", true);
  int nl80211_family_id =
      netlink_query_family_id(&nlmsg, sock, "nl80211", true);
  if (hwsim_family_id < 0 || nl80211_family_id < 0)
    exit(1);
  uint8_t ssid[] = WIFI_IBSS_SSID;
  uint8_t bssid[] = WIFI_IBSS_BSSID;
  struct join_ibss_props ibss_props = {.wiphy_freq = WIFI_DEFAULT_FREQUENCY,
                                       .wiphy_freq_fixed = true,
                                       .mac = bssid,
                                       .ssid = ssid,
                                       .ssid_len = sizeof(ssid)};
  for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) {
    mac_addr[5] = device_id;
    int ret = hwsim80211_create_device(&nlmsg, sock, hwsim_family_id, mac_addr);
    if (ret < 0)
      exit(1);
    char interface[6] = "wlan0";
    interface[4] += device_id;
    if (nl80211_setup_ibss_interface(&nlmsg, sock, nl80211_family_id, interface,
                                     &ibss_props, true) < 0)
      exit(1);
  }
  for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) {
    char interface[6] = "wlan0";
    interface[4] += device_id;
    int ret = await_ifla_operstate(&nlmsg, interface, IF_OPER_UP, true);
    if (ret < 0)
      exit(1);
  }
  close(sock);
}

static int runcmdline(char* cmdline)
{
  int ret = system(cmdline);
  if (ret) {
  }
  return ret;
}

#define DEV_IPV4 "172.20.20.%d"
#define DEV_IPV6 "fe80::%02x"
#define DEV_MAC 0x00aaaaaaaaaa

static void netdevsim_add(unsigned int addr, unsigned int port_count)
{
  write_file("/sys/bus/netdevsim/del_device", "%u", addr);
  if (write_file("/sys/bus/netdevsim/new_device", "%u %u", addr, port_count)) {
    char buf[32];
    snprintf(buf, sizeof(buf), "netdevsim%d", addr);
    initialize_devlink_ports("netdevsim", buf, "netdevsim");
  }
}

#define WG_GENL_NAME "wireguard"
enum wg_cmd {
  WG_CMD_GET_DEVICE,
  WG_CMD_SET_DEVICE,
};
enum wgdevice_attribute {
  WGDEVICE_A_UNSPEC,
  WGDEVICE_A_IFINDEX,
  WGDEVICE_A_IFNAME,
  WGDEVICE_A_PRIVATE_KEY,
  WGDEVICE_A_PUBLIC_KEY,
  WGDEVICE_A_FLAGS,
  WGDEVICE_A_LISTEN_PORT,
  WGDEVICE_A_FWMARK,
  WGDEVICE_A_PEERS,
};
enum wgpeer_attribute {
  WGPEER_A_UNSPEC,
  WGPEER_A_PUBLIC_KEY,
  WGPEER_A_PRESHARED_KEY,
  WGPEER_A_FLAGS,
  WGPEER_A_ENDPOINT,
  WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL,
  WGPEER_A_LAST_HANDSHAKE_TIME,
  WGPEER_A_RX_BYTES,
  WGPEER_A_TX_BYTES,
  WGPEER_A_ALLOWEDIPS,
  WGPEER_A_PROTOCOL_VERSION,
};
enum wgallowedip_attribute {
  WGALLOWEDIP_A_UNSPEC,
  WGALLOWEDIP_A_FAMILY,
  WGALLOWEDIP_A_IPADDR,
  WGALLOWEDIP_A_CIDR_MASK,
};

static void netlink_wireguard_setup(void)
{
  const char ifname_a[] = "wg0";
  const char ifname_b[] = "wg1";
  const char ifname_c[] = "wg2";
  const char private_a[] =
      "\xa0\x5c\xa8\x4f\x6c\x9c\x8e\x38\x53\xe2\xfd\x7a\x70\xae\x0f\xb2\x0f\xa1"
      "\x52\x60\x0c\xb0\x08\x45\x17\x4f\x08\x07\x6f\x8d\x78\x43";
  const char private_b[] =
      "\xb0\x80\x73\xe8\xd4\x4e\x91\xe3\xda\x92\x2c\x22\x43\x82\x44\xbb\x88\x5c"
      "\x69\xe2\x69\xc8\xe9\xd8\x35\xb1\x14\x29\x3a\x4d\xdc\x6e";
  const char private_c[] =
      "\xa0\xcb\x87\x9a\x47\xf5\xbc\x64\x4c\x0e\x69\x3f\xa6\xd0\x31\xc7\x4a\x15"
      "\x53\xb6\xe9\x01\xb9\xff\x2f\x51\x8c\x78\x04\x2f\xb5\x42";
  const char public_a[] =
      "\x97\x5c\x9d\x81\xc9\x83\xc8\x20\x9e\xe7\x81\x25\x4b\x89\x9f\x8e\xd9\x25"
      "\xae\x9f\x09\x23\xc2\x3c\x62\xf5\x3c\x57\xcd\xbf\x69\x1c";
  const char public_b[] =
      "\xd1\x73\x28\x99\xf6\x11\xcd\x89\x94\x03\x4d\x7f\x41\x3d\xc9\x57\x63\x0e"
      "\x54\x93\xc2\x85\xac\xa4\x00\x65\xcb\x63\x11\xbe\x69\x6b";
  const char public_c[] =
      "\xf4\x4d\xa3\x67\xa8\x8e\xe6\x56\x4f\x02\x02\x11\x45\x67\x27\x08\x2f\x5c"
      "\xeb\xee\x8b\x1b\xf5\xeb\x73\x37\x34\x1b\x45\x9b\x39\x22";
  const uint16_t listen_a = 20001;
  const uint16_t listen_b = 20002;
  const uint16_t listen_c = 20003;
  const uint16_t af_inet = AF_INET;
  const uint16_t af_inet6 = AF_INET6;
  const struct sockaddr_in endpoint_b_v4 = {
      .sin_family = AF_INET,
      .sin_port = htons(listen_b),
      .sin_addr = {htonl(INADDR_LOOPBACK)}};
  const struct sockaddr_in endpoint_c_v4 = {
      .sin_family = AF_INET,
      .sin_port = htons(listen_c),
      .sin_addr = {htonl(INADDR_LOOPBACK)}};
  struct sockaddr_in6 endpoint_a_v6 = {.sin6_family = AF_INET6,
                                       .sin6_port = htons(listen_a)};
  endpoint_a_v6.sin6_addr = in6addr_loopback;
  struct sockaddr_in6 endpoint_c_v6 = {.sin6_family = AF_INET6,
                                       .sin6_port = htons(listen_c)};
  endpoint_c_v6.sin6_addr = in6addr_loopback;
  const struct in_addr first_half_v4 = {0};
  const struct in_addr second_half_v4 = {(uint32_t)htonl(128 << 24)};
  const struct in6_addr first_half_v6 = {{{0}}};
  const struct in6_addr second_half_v6 = {{{0x80}}};
  const uint8_t half_cidr = 1;
  const uint16_t persistent_keepalives[] = {1, 3, 7, 9, 14, 19};
  struct genlmsghdr genlhdr = {.cmd = WG_CMD_SET_DEVICE, .version = 1};
  int sock;
  int id, err;
  sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC);
  if (sock == -1) {
    return;
  }
  id = netlink_query_family_id(&nlmsg, sock, WG_GENL_NAME, true);
  if (id == -1)
    goto error;
  netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr));
  netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_a, strlen(ifname_a) + 1);
  netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_a, 32);
  netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_a, 2);
  netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32);
  netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4,
               sizeof(endpoint_b_v4));
  netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL,
               &persistent_keepalives[0], 2);
  netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4,
               sizeof(first_half_v4));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6,
               sizeof(first_half_v6));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32);
  netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v6,
               sizeof(endpoint_c_v6));
  netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL,
               &persistent_keepalives[1], 2);
  netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4,
               sizeof(second_half_v4));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6,
               sizeof(second_half_v6));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  err = netlink_send(&nlmsg, sock);
  if (err < 0) {
  }
  netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr));
  netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_b, strlen(ifname_b) + 1);
  netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_b, 32);
  netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_b, 2);
  netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32);
  netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6,
               sizeof(endpoint_a_v6));
  netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL,
               &persistent_keepalives[2], 2);
  netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4,
               sizeof(first_half_v4));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6,
               sizeof(first_half_v6));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32);
  netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v4,
               sizeof(endpoint_c_v4));
  netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL,
               &persistent_keepalives[3], 2);
  netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4,
               sizeof(second_half_v4));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6,
               sizeof(second_half_v6));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  err = netlink_send(&nlmsg, sock);
  if (err < 0) {
  }
  netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr));
  netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_c, strlen(ifname_c) + 1);
  netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_c, 32);
  netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_c, 2);
  netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32);
  netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6,
               sizeof(endpoint_a_v6));
  netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL,
               &persistent_keepalives[4], 2);
  netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4,
               sizeof(first_half_v4));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6,
               sizeof(first_half_v6));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32);
  netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4,
               sizeof(endpoint_b_v4));
  netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL,
               &persistent_keepalives[5], 2);
  netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4,
               sizeof(second_half_v4));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_nest(&nlmsg, NLA_F_NESTED | 0);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2);
  netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6,
               sizeof(second_half_v6));
  netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  netlink_done(&nlmsg);
  err = netlink_send(&nlmsg, sock);
  if (err < 0) {
  }

error:
  close(sock);
}

static void initialize_netdevices(void)
{
  char netdevsim[16];
  sprintf(netdevsim, "netdevsim%d", (int)procid);
  struct {
    const char* type;
    const char* dev;
  } devtypes[] = {
      {"ip6gretap", "ip6gretap0"}, {"bridge", "bridge0"}, {"vcan", "vcan0"},
      {"bond", "bond0"},           {"team", "team0"},     {"dummy", "dummy0"},
      {"nlmon", "nlmon0"},         {"caif", "caif0"},     {"batadv", "batadv0"},
      {"vxcan", "vxcan1"},         {"veth", 0},           {"wireguard", "wg0"},
      {"wireguard", "wg1"},        {"wireguard", "wg2"},
  };
  const char* devmasters[] = {"bridge", "bond", "team", "batadv"};
  struct {
    const char* name;
    int macsize;
    bool noipv6;
  } devices[] = {
      {"lo", ETH_ALEN},
      {"sit0", 0},
      {"bridge0", ETH_ALEN},
      {"vcan0", 0, true},
      {"tunl0", 0},
      {"gre0", 0},
      {"gretap0", ETH_ALEN},
      {"ip_vti0", 0},
      {"ip6_vti0", 0},
      {"ip6tnl0", 0},
      {"ip6gre0", 0},
      {"ip6gretap0", ETH_ALEN},
      {"erspan0", ETH_ALEN},
      {"bond0", ETH_ALEN},
      {"veth0", ETH_ALEN},
      {"veth1", ETH_ALEN},
      {"team0", ETH_ALEN},
      {"veth0_to_bridge", ETH_ALEN},
      {"veth1_to_bridge", ETH_ALEN},
      {"veth0_to_bond", ETH_ALEN},
      {"veth1_to_bond", ETH_ALEN},
      {"veth0_to_team", ETH_ALEN},
      {"veth1_to_team", ETH_ALEN},
      {"veth0_to_hsr", ETH_ALEN},
      {"veth1_to_hsr", ETH_ALEN},
      {"hsr0", 0},
      {"dummy0", ETH_ALEN},
      {"nlmon0", 0},
      {"vxcan0", 0, true},
      {"vxcan1", 0, true},
      {"caif0", ETH_ALEN},
      {"batadv0", ETH_ALEN},
      {netdevsim, ETH_ALEN},
      {"xfrm0", ETH_ALEN},
      {"veth0_virt_wifi", ETH_ALEN},
      {"veth1_virt_wifi", ETH_ALEN},
      {"virt_wifi0", ETH_ALEN},
      {"veth0_vlan", ETH_ALEN},
      {"veth1_vlan", ETH_ALEN},
      {"vlan0", ETH_ALEN},
      {"vlan1", ETH_ALEN},
      {"macvlan0", ETH_ALEN},
      {"macvlan1", ETH_ALEN},
      {"ipvlan0", ETH_ALEN},
      {"ipvlan1", ETH_ALEN},
      {"veth0_macvtap", ETH_ALEN},
      {"veth1_macvtap", ETH_ALEN},
      {"macvtap0", ETH_ALEN},
      {"macsec0", ETH_ALEN},
      {"veth0_to_batadv", ETH_ALEN},
      {"veth1_to_batadv", ETH_ALEN},
      {"batadv_slave_0", ETH_ALEN},
      {"batadv_slave_1", ETH_ALEN},
      {"geneve0", ETH_ALEN},
      {"geneve1", ETH_ALEN},
      {"wg0", 0},
      {"wg1", 0},
      {"wg2", 0},
  };
  int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
  if (sock == -1)
    exit(1);
  unsigned i;
  for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++)
    netlink_add_device(&nlmsg, sock, devtypes[i].type, devtypes[i].dev);
  for (i = 0; i < sizeof(devmasters) / (sizeof(devmasters[0])); i++) {
    char master[32], slave0[32], veth0[32], slave1[32], veth1[32];
    sprintf(slave0, "%s_slave_0", devmasters[i]);
    sprintf(veth0, "veth0_to_%s", devmasters[i]);
    netlink_add_veth(&nlmsg, sock, slave0, veth0);
    sprintf(slave1, "%s_slave_1", devmasters[i]);
    sprintf(veth1, "veth1_to_%s", devmasters[i]);
    netlink_add_veth(&nlmsg, sock, slave1, veth1);
    sprintf(master, "%s0", devmasters[i]);
    netlink_device_change(&nlmsg, sock, slave0, false, master, 0, 0, NULL);
    netlink_device_change(&nlmsg, sock, slave1, false, master, 0, 0, NULL);
  }
  netlink_add_xfrm(&nlmsg, sock, "xfrm0");
  netlink_device_change(&nlmsg, sock, "bridge_slave_0", true, 0, 0, 0, NULL);
  netlink_device_change(&nlmsg, sock, "bridge_slave_1", true, 0, 0, 0, NULL);
  netlink_add_veth(&nlmsg, sock, "hsr_slave_0", "veth0_to_hsr");
  netlink_add_veth(&nlmsg, sock, "hsr_slave_1", "veth1_to_hsr");
  netlink_add_hsr(&nlmsg, sock, "hsr0", "hsr_slave_0", "hsr_slave_1");
  netlink_device_change(&nlmsg, sock, "hsr_slave_0", true, 0, 0, 0, NULL);
  netlink_device_change(&nlmsg, sock, "hsr_slave_1", true, 0, 0, 0, NULL);
  netlink_add_veth(&nlmsg, sock, "veth0_virt_wifi", "veth1_virt_wifi");
  netlink_add_linked(&nlmsg, sock, "virt_wifi", "virt_wifi0",
                     "veth1_virt_wifi");
  netlink_add_veth(&nlmsg, sock, "veth0_vlan", "veth1_vlan");
  netlink_add_vlan(&nlmsg, sock, "vlan0", "veth0_vlan", 0, htons(ETH_P_8021Q));
  netlink_add_vlan(&nlmsg, sock, "vlan1", "veth0_vlan", 1, htons(ETH_P_8021AD));
  netlink_add_macvlan(&nlmsg, sock, "macvlan0", "veth1_vlan");
  netlink_add_macvlan(&nlmsg, sock, "macvlan1", "veth1_vlan");
  netlink_add_ipvlan(&nlmsg, sock, "ipvlan0", "veth0_vlan", IPVLAN_MODE_L2, 0);
  netlink_add_ipvlan(&nlmsg, sock, "ipvlan1", "veth0_vlan", IPVLAN_MODE_L3S,
                     IPVLAN_F_VEPA);
  netlink_add_veth(&nlmsg, sock, "veth0_macvtap", "veth1_macvtap");
  netlink_add_linked(&nlmsg, sock, "macvtap", "macvtap0", "veth0_macvtap");
  netlink_add_linked(&nlmsg, sock, "macsec", "macsec0", "veth1_macvtap");
  char addr[32];
  sprintf(addr, DEV_IPV4, 14 + 10);
  struct in_addr geneve_addr4;
  if (inet_pton(AF_INET, addr, &geneve_addr4) <= 0)
    exit(1);
  struct in6_addr geneve_addr6;
  if (inet_pton(AF_INET6, "fc00::01", &geneve_addr6) <= 0)
    exit(1);
  netlink_add_geneve(&nlmsg, sock, "geneve0", 0, &geneve_addr4, 0);
  netlink_add_geneve(&nlmsg, sock, "geneve1", 1, 0, &geneve_addr6);
  netdevsim_add((int)procid, 4);
  netlink_wireguard_setup();
  for (i = 0; i < sizeof(devices) / (sizeof(devices[0])); i++) {
    char addr[32];
    sprintf(addr, DEV_IPV4, i + 10);
    netlink_add_addr4(&nlmsg, sock, devices[i].name, addr);
    if (!devices[i].noipv6) {
      sprintf(addr, DEV_IPV6, i + 10);
      netlink_add_addr6(&nlmsg, sock, devices[i].name, addr);
    }
    uint64_t macaddr = DEV_MAC + ((i + 10ull) << 40);
    netlink_device_change(&nlmsg, sock, devices[i].name, true, 0, &macaddr,
                          devices[i].macsize, NULL);
  }
  close(sock);
}
static void initialize_netdevices_init(void)
{
  int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
  if (sock == -1)
    exit(1);
  struct {
    const char* type;
    int macsize;
    bool noipv6;
    bool noup;
  } devtypes[] = {
      {"nr", 7, true},
      {"rose", 5, true, true},
  };
  unsigned i;
  for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) {
    char dev[32], addr[32];
    sprintf(dev, "%s%d", devtypes[i].type, (int)procid);
    sprintf(addr, "172.30.%d.%d", i, (int)procid + 1);
    netlink_add_addr4(&nlmsg, sock, dev, addr);
    if (!devtypes[i].noipv6) {
      sprintf(addr, "fe88::%02x:%02x", i, (int)procid + 1);
      netlink_add_addr6(&nlmsg, sock, dev, addr);
    }
    int macsize = devtypes[i].macsize;
    uint64_t macaddr = 0xbbbbbb +
                       ((unsigned long long)i << (8 * (macsize - 2))) +
                       (procid << (8 * (macsize - 1)));
    netlink_device_change(&nlmsg, sock, dev, !devtypes[i].noup, 0, &macaddr,
                          macsize, NULL);
  }
  close(sock);
}

#define MAX_FDS 30

//% This code is derived from puff.{c,h}, found in the zlib development. The
//% original files come with the following copyright notice:

//% Copyright (C) 2002-2013 Mark Adler, all rights reserved
//% version 2.3, 21 Jan 2013
//% This software is provided 'as-is', without any express or implied
//% warranty.  In no event will the author be held liable for any damages
//% arising from the use of this software.
//% Permission is granted to anyone to use this software for any purpose,
//% including commercial applications, and to alter it and redistribute it
//% freely, subject to the following restrictions:
//% 1. The origin of this software must not be misrepresented; you must not
//%    claim that you wrote the original software. If you use this software
//%    in a product, an acknowledgment in the product documentation would be
//%    appreciated but is not required.
//% 2. Altered source versions must be plainly marked as such, and must not be
//%    misrepresented as being the original software.
//% 3. This notice may not be removed or altered from any source distribution.
//% Mark Adler    madler@alumni.caltech.edu

//% BEGIN CODE DERIVED FROM puff.{c,h}

#define MAXBITS 15
#define MAXLCODES 286
#define MAXDCODES 30
#define MAXCODES (MAXLCODES + MAXDCODES)
#define FIXLCODES 288

struct puff_state {
  unsigned char* out;
  unsigned long outlen;
  unsigned long outcnt;
  const unsigned char* in;
  unsigned long inlen;
  unsigned long incnt;
  int bitbuf;
  int bitcnt;
  jmp_buf env;
};
static int puff_bits(struct puff_state* s, int need)
{
  long val = s->bitbuf;
  while (s->bitcnt < need) {
    if (s->incnt == s->inlen)
      longjmp(s->env, 1);
    val |= (long)(s->in[s->incnt++]) << s->bitcnt;
    s->bitcnt += 8;
  }
  s->bitbuf = (int)(val >> need);
  s->bitcnt -= need;
  return (int)(val & ((1L << need) - 1));
}
static int puff_stored(struct puff_state* s)
{
  s->bitbuf = 0;
  s->bitcnt = 0;
  if (s->incnt + 4 > s->inlen)
    return 2;
  unsigned len = s->in[s->incnt++];
  len |= s->in[s->incnt++] << 8;
  if (s->in[s->incnt++] != (~len & 0xff) ||
      s->in[s->incnt++] != ((~len >> 8) & 0xff))
    return -2;
  if (s->incnt + len > s->inlen)
    return 2;
  if (s->outcnt + len > s->outlen)
    return 1;
  for (; len--; s->outcnt++, s->incnt++) {
    if (s->in[s->incnt])
      s->out[s->outcnt] = s->in[s->incnt];
  }
  return 0;
}
struct puff_huffman {
  short* count;
  short* symbol;
};
static int puff_decode(struct puff_state* s, const struct puff_huffman* h)
{
  int first = 0;
  int index = 0;
  int bitbuf = s->bitbuf;
  int left = s->bitcnt;
  int code = first = index = 0;
  int len = 1;
  short* next = h->count + 1;
  while (1) {
    while (left--) {
      code |= bitbuf & 1;
      bitbuf >>= 1;
      int count = *next++;
      if (code - count < first) {
        s->bitbuf = bitbuf;
        s->bitcnt = (s->bitcnt - len) & 7;
        return h->symbol[index + (code - first)];
      }
      index += count;
      first += count;
      first <<= 1;
      code <<= 1;
      len++;
    }
    left = (MAXBITS + 1) - len;
    if (left == 0)
      break;
    if (s->incnt == s->inlen)
      longjmp(s->env, 1);
    bitbuf = s->in[s->incnt++];
    if (left > 8)
      left = 8;
  }
  return -10;
}
static int puff_construct(struct puff_huffman* h, const short* length, int n)
{
  int len;
  for (len = 0; len <= MAXBITS; len++)
    h->count[len] = 0;
  int symbol;
  for (symbol = 0; symbol < n; symbol++)
    (h->count[length[symbol]])++;
  if (h->count[0] == n)
    return 0;
  int left = 1;
  for (len = 1; len <= MAXBITS; len++) {
    left <<= 1;
    left -= h->count[len];
    if (left < 0)
      return left;
  }
  short offs[MAXBITS + 1];
  offs[1] = 0;
  for (len = 1; len < MAXBITS; len++)
    offs[len + 1] = offs[len] + h->count[len];
  for (symbol = 0; symbol < n; symbol++)
    if (length[symbol] != 0)
      h->symbol[offs[length[symbol]]++] = symbol;
  return left;
}
static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode,
                      const struct puff_huffman* distcode)
{
  static const short lens[29] = {3,  4,  5,  6,   7,   8,   9,   10,  11, 13,
                                 15, 17, 19, 23,  27,  31,  35,  43,  51, 59,
                                 67, 83, 99, 115, 131, 163, 195, 227, 258};
  static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2,
                                 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0};
  static const short dists[30] = {
      1,    2,    3,    4,    5,    7,    9,    13,    17,    25,
      33,   49,   65,   97,   129,  193,  257,  385,   513,   769,
      1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577};
  static const short dext[30] = {0, 0, 0,  0,  1,  1,  2,  2,  3,  3,
                                 4, 4, 5,  5,  6,  6,  7,  7,  8,  8,
                                 9, 9, 10, 10, 11, 11, 12, 12, 13, 13};
  int symbol;
  do {
    symbol = puff_decode(s, lencode);
    if (symbol < 0)
      return symbol;
    if (symbol < 256) {
      if (s->outcnt == s->outlen)
        return 1;
      if (symbol)
        s->out[s->outcnt] = symbol;
      s->outcnt++;
    } else if (symbol > 256) {
      symbol -= 257;
      if (symbol >= 29)
        return -10;
      int len = lens[symbol] + puff_bits(s, lext[symbol]);
      symbol = puff_decode(s, distcode);
      if (symbol < 0)
        return symbol;
      unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]);
      if (dist > s->outcnt)
        return -11;
      if (s->outcnt + len > s->outlen)
        return 1;
      while (len--) {
        if (dist <= s->outcnt && s->out[s->outcnt - dist])
          s->out[s->outcnt] = s->out[s->outcnt - dist];
        s->outcnt++;
      }
    }
  } while (symbol != 256);
  return 0;
}
static int puff_fixed(struct puff_state* s)
{
  static int virgin = 1;
  static short lencnt[MAXBITS + 1], lensym[FIXLCODES];
  static short distcnt[MAXBITS + 1], distsym[MAXDCODES];
  static struct puff_huffman lencode, distcode;
  if (virgin) {
    lencode.count = lencnt;
    lencode.symbol = lensym;
    distcode.count = distcnt;
    distcode.symbol = distsym;
    short lengths[FIXLCODES];
    int symbol;
    for (symbol = 0; symbol < 144; symbol++)
      lengths[symbol] = 8;
    for (; symbol < 256; symbol++)
      lengths[symbol] = 9;
    for (; symbol < 280; symbol++)
      lengths[symbol] = 7;
    for (; symbol < FIXLCODES; symbol++)
      lengths[symbol] = 8;
    puff_construct(&lencode, lengths, FIXLCODES);
    for (symbol = 0; symbol < MAXDCODES; symbol++)
      lengths[symbol] = 5;
    puff_construct(&distcode, lengths, MAXDCODES);
    virgin = 0;
  }
  return puff_codes(s, &lencode, &distcode);
}
static int puff_dynamic(struct puff_state* s)
{
  static const short order[19] = {16, 17, 18, 0, 8,  7, 9,  6, 10, 5,
                                  11, 4,  12, 3, 13, 2, 14, 1, 15};
  int nlen = puff_bits(s, 5) + 257;
  int ndist = puff_bits(s, 5) + 1;
  int ncode = puff_bits(s, 4) + 4;
  if (nlen > MAXLCODES || ndist > MAXDCODES)
    return -3;
  short lengths[MAXCODES];
  int index;
  for (index = 0; index < ncode; index++)
    lengths[order[index]] = puff_bits(s, 3);
  for (; index < 19; index++)
    lengths[order[index]] = 0;
  short lencnt[MAXBITS + 1], lensym[MAXLCODES];
  struct puff_huffman lencode = {lencnt, lensym};
  int err = puff_construct(&lencode, lengths, 19);
  if (err != 0)
    return -4;
  index = 0;
  while (index < nlen + ndist) {
    int symbol;
    int len;
    symbol = puff_decode(s, &lencode);
    if (symbol < 0)
      return symbol;
    if (symbol < 16)
      lengths[index++] = symbol;
    else {
      len = 0;
      if (symbol == 16) {
        if (index == 0)
          return -5;
        len = lengths[index - 1];
        symbol = 3 + puff_bits(s, 2);
      } else if (symbol == 17)
        symbol = 3 + puff_bits(s, 3);
      else
        symbol = 11 + puff_bits(s, 7);
      if (index + symbol > nlen + ndist)
        return -6;
      while (symbol--)
        lengths[index++] = len;
    }
  }
  if (lengths[256] == 0)
    return -9;
  err = puff_construct(&lencode, lengths, nlen);
  if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1]))
    return -7;
  short distcnt[MAXBITS + 1], distsym[MAXDCODES];
  struct puff_huffman distcode = {distcnt, distsym};
  err = puff_construct(&distcode, lengths + nlen, ndist);
  if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1]))
    return -8;
  return puff_codes(s, &lencode, &distcode);
}
static int puff(unsigned char* dest, unsigned long* destlen,
                const unsigned char* source, unsigned long sourcelen)
{
  struct puff_state s = {
      .out = dest,
      .outlen = *destlen,
      .outcnt = 0,
      .in = source,
      .inlen = sourcelen,
      .incnt = 0,
      .bitbuf = 0,
      .bitcnt = 0,
  };
  int err;
  if (setjmp(s.env) != 0)
    err = 2;
  else {
    int last;
    do {
      last = puff_bits(&s, 1);
      int type = puff_bits(&s, 2);
      err = type == 0 ? puff_stored(&s)
                      : (type == 1 ? puff_fixed(&s)
                                   : (type == 2 ? puff_dynamic(&s) : -1));
      if (err != 0)
        break;
    } while (!last);
  }
  *destlen = s.outcnt;
  return err;
}

//% END CODE DERIVED FROM puff.{c,h}

#define ZLIB_HEADER_WIDTH 2

static int puff_zlib_to_file(const unsigned char* source,
                             unsigned long sourcelen, int dest_fd)
{
  if (sourcelen < ZLIB_HEADER_WIDTH)
    return 0;
  source += ZLIB_HEADER_WIDTH;
  sourcelen -= ZLIB_HEADER_WIDTH;
  const unsigned long max_destlen = 132 << 20;
  void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ,
                   MAP_PRIVATE | MAP_ANON, -1, 0);
  if (ret == MAP_FAILED)
    return -1;
  unsigned char* dest = (unsigned char*)ret;
  unsigned long destlen = max_destlen;
  int err = puff(dest, &destlen, source, sourcelen);
  if (err) {
    munmap(dest, max_destlen);
    errno = -err;
    return -1;
  }
  if (write(dest_fd, dest, destlen) != (ssize_t)destlen) {
    munmap(dest, max_destlen);
    return -1;
  }
  return munmap(dest, max_destlen);
}

static int setup_loop_device(unsigned char* data, unsigned long size,
                             const char* loopname, int* loopfd_p)
{
  int err = 0, loopfd = -1;
  int memfd = syscall(__NR_memfd_create, "syzkaller", 0);
  if (memfd == -1) {
    err = errno;
    goto error;
  }
  if (puff_zlib_to_file(data, size, memfd)) {
    err = errno;
    goto error_close_memfd;
  }
  loopfd = open(loopname, O_RDWR);
  if (loopfd == -1) {
    err = errno;
    goto error_close_memfd;
  }
  if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
    if (errno != EBUSY) {
      err = errno;
      goto error_close_loop;
    }
    ioctl(loopfd, LOOP_CLR_FD, 0);
    usleep(1000);
    if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
      err = errno;
      goto error_close_loop;
    }
  }
  close(memfd);
  *loopfd_p = loopfd;
  return 0;

error_close_loop:
  close(loopfd);
error_close_memfd:
  close(memfd);
error:
  errno = err;
  return -1;
}

static void reset_loop_device(const char* loopname)
{
  int loopfd = open(loopname, O_RDWR);
  if (loopfd == -1) {
    return;
  }
  if (ioctl(loopfd, LOOP_CLR_FD, 0)) {
  }
  close(loopfd);
}

static long syz_mount_image(volatile long fsarg, volatile long dir,
                            volatile long flags, volatile long optsarg,
                            volatile long change_dir,
                            volatile unsigned long size, volatile long image)
{
  unsigned char* data = (unsigned char*)image;
  int res = -1, err = 0, need_loop_device = !!size;
  char* mount_opts = (char*)optsarg;
  char* target = (char*)dir;
  char* fs = (char*)fsarg;
  char* source = NULL;
  char loopname[64];
  if (need_loop_device) {
    int loopfd;
    memset(loopname, 0, sizeof(loopname));
    snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid);
    if (setup_loop_device(data, size, loopname, &loopfd) == -1)
      return -1;
    close(loopfd);
    source = loopname;
  }
  mkdir(target, 0777);
  char opts[256];
  memset(opts, 0, sizeof(opts));
  if (strlen(mount_opts) > (sizeof(opts) - 32)) {
  }
  strncpy(opts, mount_opts, sizeof(opts) - 32);
  if (strcmp(fs, "iso9660") == 0) {
    flags |= MS_RDONLY;
  } else if (strncmp(fs, "ext", 3) == 0) {
    bool has_remount_ro = false;
    char* remount_ro_start = strstr(opts, "errors=remount-ro");
    if (remount_ro_start != NULL) {
      char after = *(remount_ro_start + strlen("errors=remount-ro"));
      char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1);
      has_remount_ro = ((before == '\0' || before == ',') &&
                        (after == '\0' || after == ','));
    }
    if (strstr(opts, "errors=panic") || !has_remount_ro)
      strcat(opts, ",errors=continue");
  } else if (strcmp(fs, "xfs") == 0) {
    strcat(opts, ",nouuid");
  }
  res = mount(source, target, fs, flags, opts);
  if (res == -1) {
    err = errno;
    goto error_clear_loop;
  }
  res = open(target, O_RDONLY | O_DIRECTORY);
  if (res == -1) {
    err = errno;
    goto error_clear_loop;
  }
  if (change_dir) {
    res = chdir(target);
    if (res == -1) {
      err = errno;
    }
  }

error_clear_loop:
  if (need_loop_device)
    reset_loop_device(loopname);
  errno = err;
  return res;
}

#define XT_TABLE_SIZE 1536
#define XT_MAX_ENTRIES 10

struct xt_counters {
  uint64_t pcnt, bcnt;
};

struct ipt_getinfo {
  char name[32];
  unsigned int valid_hooks;
  unsigned int hook_entry[5];
  unsigned int underflow[5];
  unsigned int num_entries;
  unsigned int size;
};

struct ipt_get_entries {
  char name[32];
  unsigned int size;
  uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)];
};

struct ipt_replace {
  char name[32];
  unsigned int valid_hooks;
  unsigned int num_entries;
  unsigned int size;
  unsigned int hook_entry[5];
  unsigned int underflow[5];
  unsigned int num_counters;
  struct xt_counters* counters;
  uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)];
};

struct ipt_table_desc {
  const char* name;
  struct ipt_getinfo info;
  struct ipt_replace replace;
};

static struct ipt_table_desc ipv4_tables[] = {
    {.name = "filter"}, {.name = "nat"},      {.name = "mangle"},
    {.name = "raw"},    {.name = "security"},
};

static struct ipt_table_desc ipv6_tables[] = {
    {.name = "filter"}, {.name = "nat"},      {.name = "mangle"},
    {.name = "raw"},    {.name = "security"},
};

#define IPT_BASE_CTL 64
#define IPT_SO_SET_REPLACE (IPT_BASE_CTL)
#define IPT_SO_GET_INFO (IPT_BASE_CTL)
#define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1)

struct arpt_getinfo {
  char name[32];
  unsigned int valid_hooks;
  unsigned int hook_entry[3];
  unsigned int underflow[3];
  unsigned int num_entries;
  unsigned int size;
};

struct arpt_get_entries {
  char name[32];
  unsigned int size;
  uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)];
};

struct arpt_replace {
  char name[32];
  unsigned int valid_hooks;
  unsigned int num_entries;
  unsigned int size;
  unsigned int hook_entry[3];
  unsigned int underflow[3];
  unsigned int num_counters;
  struct xt_counters* counters;
  uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)];
};

struct arpt_table_desc {
  const char* name;
  struct arpt_getinfo info;
  struct arpt_replace replace;
};

static struct arpt_table_desc arpt_tables[] = {
    {.name = "filter"},
};

#define ARPT_BASE_CTL 96
#define ARPT_SO_SET_REPLACE (ARPT_BASE_CTL)
#define ARPT_SO_GET_INFO (ARPT_BASE_CTL)
#define ARPT_SO_GET_ENTRIES (ARPT_BASE_CTL + 1)

static void checkpoint_iptables(struct ipt_table_desc* tables, int num_tables,
                                int family, int level)
{
  int fd = socket(family, SOCK_STREAM, IPPROTO_TCP);
  if (fd == -1) {
    switch (errno) {
    case EAFNOSUPPORT:
    case ENOPROTOOPT:
    case ENOENT:
      return;
    }
    exit(1);
  }
  for (int i = 0; i < num_tables; i++) {
    struct ipt_table_desc* table = &tables[i];
    strcpy(table->info.name, table->name);
    strcpy(table->replace.name, table->name);
    socklen_t optlen = sizeof(table->info);
    if (getsockopt(fd, level, IPT_SO_GET_INFO, &table->info, &optlen)) {
      switch (errno) {
      case EPERM:
      case ENOENT:
      case ENOPROTOOPT:
        continue;
      }
      exit(1);
    }
    if (table->info.size > sizeof(table->replace.entrytable))
      exit(1);
    if (table->info.num_entries > XT_MAX_ENTRIES)
      exit(1);
    struct ipt_get_entries entries;
    memset(&entries, 0, sizeof(entries));
    strcpy(entries.name, table->name);
    entries.size = table->info.size;
    optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size;
    if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen))
      exit(1);
    table->replace.valid_hooks = table->info.valid_hooks;
    table->replace.num_entries = table->info.num_entries;
    table->replace.size = table->info.size;
    memcpy(table->replace.hook_entry, table->info.hook_entry,
           sizeof(table->replace.hook_entry));
    memcpy(table->replace.underflow, table->info.underflow,
           sizeof(table->replace.underflow));
    memcpy(table->replace.entrytable, entries.entrytable, table->info.size);
  }
  close(fd);
}

static void reset_iptables(struct ipt_table_desc* tables, int num_tables,
                           int family, int level)
{
  int fd = socket(family, SOCK_STREAM, IPPROTO_TCP);
  if (fd == -1) {
    switch (errno) {
    case EAFNOSUPPORT:
    case ENOPROTOOPT:
    case ENOENT:
      return;
    }
    exit(1);
  }
  for (int i = 0; i < num_tables; i++) {
    struct ipt_table_desc* table = &tables[i];
    if (table->info.valid_hooks == 0)
      continue;
    struct ipt_getinfo info;
    memset(&info, 0, sizeof(info));
    strcpy(info.name, table->name);
    socklen_t optlen = sizeof(info);
    if (getsockopt(fd, level, IPT_SO_GET_INFO, &info, &optlen))
      exit(1);
    if (memcmp(&table->info, &info, sizeof(table->info)) == 0) {
      struct ipt_get_entries entries;
      memset(&entries, 0, sizeof(entries));
      strcpy(entries.name, table->name);
      entries.size = table->info.size;
      optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size;
      if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen))
        exit(1);
      if (memcmp(table->replace.entrytable, entries.entrytable,
                 table->info.size) == 0)
        continue;
    }
    struct xt_counters counters[XT_MAX_ENTRIES];
    table->replace.num_counters = info.num_entries;
    table->replace.counters = counters;
    optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) +
             table->replace.size;
    if (setsockopt(fd, level, IPT_SO_SET_REPLACE, &table->replace, optlen))
      exit(1);
  }
  close(fd);
}

static void checkpoint_arptables(void)
{
  int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
  if (fd == -1) {
    switch (errno) {
    case EAFNOSUPPORT:
    case ENOPROTOOPT:
    case ENOENT:
      return;
    }
    exit(1);
  }
  for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) {
    struct arpt_table_desc* table = &arpt_tables[i];
    strcpy(table->info.name, table->name);
    strcpy(table->replace.name, table->name);
    socklen_t optlen = sizeof(table->info);
    if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &table->info, &optlen)) {
      switch (errno) {
      case EPERM:
      case ENOENT:
      case ENOPROTOOPT:
        continue;
      }
      exit(1);
    }
    if (table->info.size > sizeof(table->replace.entrytable))
      exit(1);
    if (table->info.num_entries > XT_MAX_ENTRIES)
      exit(1);
    struct arpt_get_entries entries;
    memset(&entries, 0, sizeof(entries));
    strcpy(entries.name, table->name);
    entries.size = table->info.size;
    optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size;
    if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen))
      exit(1);
    table->replace.valid_hooks = table->info.valid_hooks;
    table->replace.num_entries = table->info.num_entries;
    table->replace.size = table->info.size;
    memcpy(table->replace.hook_entry, table->info.hook_entry,
           sizeof(table->replace.hook_entry));
    memcpy(table->replace.underflow, table->info.underflow,
           sizeof(table->replace.underflow));
    memcpy(table->replace.entrytable, entries.entrytable, table->info.size);
  }
  close(fd);
}

static void reset_arptables()
{
  int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
  if (fd == -1) {
    switch (errno) {
    case EAFNOSUPPORT:
    case ENOPROTOOPT:
    case ENOENT:
      return;
    }
    exit(1);
  }
  for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) {
    struct arpt_table_desc* table = &arpt_tables[i];
    if (table->info.valid_hooks == 0)
      continue;
    struct arpt_getinfo info;
    memset(&info, 0, sizeof(info));
    strcpy(info.name, table->name);
    socklen_t optlen = sizeof(info);
    if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &info, &optlen))
      exit(1);
    if (memcmp(&table->info, &info, sizeof(table->info)) == 0) {
      struct arpt_get_entries entries;
      memset(&entries, 0, sizeof(entries));
      strcpy(entries.name, table->name);
      entries.size = table->info.size;
      optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size;
      if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen))
        exit(1);
      if (memcmp(table->replace.entrytable, entries.entrytable,
                 table->info.size) == 0)
        continue;
    } else {
    }
    struct xt_counters counters[XT_MAX_ENTRIES];
    table->replace.num_counters = info.num_entries;
    table->replace.counters = counters;
    optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) +
             table->replace.size;
    if (setsockopt(fd, SOL_IP, ARPT_SO_SET_REPLACE, &table->replace, optlen))
      exit(1);
  }
  close(fd);
}

#define NF_BR_NUMHOOKS 6
#define EBT_TABLE_MAXNAMELEN 32
#define EBT_CHAIN_MAXNAMELEN 32
#define EBT_BASE_CTL 128
#define EBT_SO_SET_ENTRIES (EBT_BASE_CTL)
#define EBT_SO_GET_INFO (EBT_BASE_CTL)
#define EBT_SO_GET_ENTRIES (EBT_SO_GET_INFO + 1)
#define EBT_SO_GET_INIT_INFO (EBT_SO_GET_ENTRIES + 1)
#define EBT_SO_GET_INIT_ENTRIES (EBT_SO_GET_INIT_INFO + 1)

struct ebt_replace {
  char name[EBT_TABLE_MAXNAMELEN];
  unsigned int valid_hooks;
  unsigned int nentries;
  unsigned int entries_size;
  struct ebt_entries* hook_entry[NF_BR_NUMHOOKS];
  unsigned int num_counters;
  struct ebt_counter* counters;
  char* entries;
};

struct ebt_entries {
  unsigned int distinguisher;
  char name[EBT_CHAIN_MAXNAMELEN];
  unsigned int counter_offset;
  int policy;
  unsigned int nentries;
  char data[0] __attribute__((aligned(__alignof__(struct ebt_replace))));
};

struct ebt_table_desc {
  const char* name;
  struct ebt_replace replace;
  char entrytable[XT_TABLE_SIZE];
};

static struct ebt_table_desc ebt_tables[] = {
    {.name = "filter"},
    {.name = "nat"},
    {.name = "broute"},
};

static void checkpoint_ebtables(void)
{
  int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
  if (fd == -1) {
    switch (errno) {
    case EAFNOSUPPORT:
    case ENOPROTOOPT:
    case ENOENT:
      return;
    }
    exit(1);
  }
  for (size_t i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) {
    struct ebt_table_desc* table = &ebt_tables[i];
    strcpy(table->replace.name, table->name);
    socklen_t optlen = sizeof(table->replace);
    if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_INFO, &table->replace,
                   &optlen)) {
      switch (errno) {
      case EPERM:
      case ENOENT:
      case ENOPROTOOPT:
        continue;
      }
      exit(1);
    }
    if (table->replace.entries_size > sizeof(table->entrytable))
      exit(1);
    table->replace.num_counters = 0;
    table->replace.entries = table->entrytable;
    optlen = sizeof(table->replace) + table->replace.entries_size;
    if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_ENTRIES, &table->replace,
                   &optlen))
      exit(1);
  }
  close(fd);
}

static void reset_ebtables()
{
  int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
  if (fd == -1) {
    switch (errno) {
    case EAFNOSUPPORT:
    case ENOPROTOOPT:
    case ENOENT:
      return;
    }
    exit(1);
  }
  for (unsigned i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) {
    struct ebt_table_desc* table = &ebt_tables[i];
    if (table->replace.valid_hooks == 0)
      continue;
    struct ebt_replace replace;
    memset(&replace, 0, sizeof(replace));
    strcpy(replace.name, table->name);
    socklen_t optlen = sizeof(replace);
    if (getsockopt(fd, SOL_IP, EBT_SO_GET_INFO, &replace, &optlen))
      exit(1);
    replace.num_counters = 0;
    table->replace.entries = 0;
    for (unsigned h = 0; h < NF_BR_NUMHOOKS; h++)
      table->replace.hook_entry[h] = 0;
    if (memcmp(&table->replace, &replace, sizeof(table->replace)) == 0) {
      char entrytable[XT_TABLE_SIZE];
      memset(&entrytable, 0, sizeof(entrytable));
      replace.entries = entrytable;
      optlen = sizeof(replace) + replace.entries_size;
      if (getsockopt(fd, SOL_IP, EBT_SO_GET_ENTRIES, &replace, &optlen))
        exit(1);
      if (memcmp(table->entrytable, entrytable, replace.entries_size) == 0)
        continue;
    }
    for (unsigned j = 0, h = 0; h < NF_BR_NUMHOOKS; h++) {
      if (table->replace.valid_hooks & (1 << h)) {
        table->replace.hook_entry[h] =
            (struct ebt_entries*)table->entrytable + j;
        j++;
      }
    }
    table->replace.entries = table->entrytable;
    optlen = sizeof(table->replace) + table->replace.entries_size;
    if (setsockopt(fd, SOL_IP, EBT_SO_SET_ENTRIES, &table->replace, optlen))
      exit(1);
  }
  close(fd);
}

static void checkpoint_net_namespace(void)
{
  checkpoint_ebtables();
  checkpoint_arptables();
  checkpoint_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]),
                      AF_INET, SOL_IP);
  checkpoint_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]),
                      AF_INET6, SOL_IPV6);
}

static void reset_net_namespace(void)
{
  reset_ebtables();
  reset_arptables();
  reset_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]),
                 AF_INET, SOL_IP);
  reset_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]),
                 AF_INET6, SOL_IPV6);
}

static void mount_cgroups(const char* dir, const char** controllers, int count)
{
  if (mkdir(dir, 0777)) {
    return;
  }
  char enabled[128] = {0};
  int i = 0;
  for (; i < count; i++) {
    if (mount("none", dir, "cgroup", 0, controllers[i])) {
      continue;
    }
    umount(dir);
    strcat(enabled, ",");
    strcat(enabled, controllers[i]);
  }
  if (enabled[0] == 0) {
    if (rmdir(dir) && errno != EBUSY)
      exit(1);
    return;
  }
  if (mount("none", dir, "cgroup", 0, enabled + 1)) {
    if (rmdir(dir) && errno != EBUSY)
      exit(1);
  }
  if (chmod(dir, 0777)) {
  }
}

static void mount_cgroups2(const char** controllers, int count)
{
  if (mkdir("/syzcgroup/unified", 0777)) {
    return;
  }
  if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) {
    if (rmdir("/syzcgroup/unified") && errno != EBUSY)
      exit(1);
    return;
  }
  if (chmod("/syzcgroup/unified", 0777)) {
  }
  int control = open("/syzcgroup/unified/cgroup.subtree_control", O_WRONLY);
  if (control == -1)
    return;
  int i;
  for (i = 0; i < count; i++)
    if (write(control, controllers[i], strlen(controllers[i])) < 0) {
    }
  close(control);
}

static void setup_cgroups()
{
  const char* unified_controllers[] = {"+cpu", "+io", "+pids"};
  const char* net_controllers[] = {"net", "net_prio", "devices", "blkio",
                                   "freezer"};
  const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit",
                                   "memory"};
  if (mkdir("/syzcgroup", 0777)) {
    return;
  }
  mount_cgroups2(unified_controllers,
                 sizeof(unified_controllers) / sizeof(unified_controllers[0]));
  mount_cgroups("/syzcgroup/net", net_controllers,
                sizeof(net_controllers) / sizeof(net_controllers[0]));
  mount_cgroups("/syzcgroup/cpu", cpu_controllers,
                sizeof(cpu_controllers) / sizeof(cpu_controllers[0]));
  write_file("/syzcgroup/cpu/cgroup.clone_children", "1");
  write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1");
}

static void setup_cgroups_loop()
{
  int pid = getpid();
  char file[128];
  char cgroupdir[64];
  snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid);
  if (mkdir(cgroupdir, 0777)) {
  }
  snprintf(file, sizeof(file), "%s/pids.max", cgroupdir);
  write_file(file, "32");
  snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir);
  write_file(file, "%d", pid);
  snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid);
  if (mkdir(cgroupdir, 0777)) {
  }
  snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir);
  write_file(file, "%d", pid);
  snprintf(file, sizeof(file), "%s/memory.soft_limit_in_bytes", cgroupdir);
  write_file(file, "%d", 299 << 20);
  snprintf(file, sizeof(file), "%s/memory.limit_in_bytes", cgroupdir);
  write_file(file, "%d", 300 << 20);
  snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid);
  if (mkdir(cgroupdir, 0777)) {
  }
  snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir);
  write_file(file, "%d", pid);
}

static void setup_cgroups_test()
{
  char cgroupdir[64];
  snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid);
  if (symlink(cgroupdir, "./cgroup")) {
  }
  snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid);
  if (symlink(cgroupdir, "./cgroup.cpu")) {
  }
  snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid);
  if (symlink(cgroupdir, "./cgroup.net")) {
  }
}

static void initialize_cgroups()
{
  if (mkdir("./syz-tmp/newroot/syzcgroup", 0700))
    exit(1);
  if (mkdir("./syz-tmp/newroot/syzcgroup/unified", 0700))
    exit(1);
  if (mkdir("./syz-tmp/newroot/syzcgroup/cpu", 0700))
    exit(1);
  if (mkdir("./syz-tmp/newroot/syzcgroup/net", 0700))
    exit(1);
  unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE;
  if (mount("/syzcgroup/unified", "./syz-tmp/newroot/syzcgroup/unified", NULL,
            bind_mount_flags, NULL)) {
  }
  if (mount("/syzcgroup/cpu", "./syz-tmp/newroot/syzcgroup/cpu", NULL,
            bind_mount_flags, NULL)) {
  }
  if (mount("/syzcgroup/net", "./syz-tmp/newroot/syzcgroup/net", NULL,
            bind_mount_flags, NULL)) {
  }
}

static void setup_binderfs();
static void setup_fusectl();
static void sandbox_common_mount_tmpfs(void)
{
  write_file("/proc/sys/fs/mount-max", "100000");
  if (mkdir("./syz-tmp", 0777))
    exit(1);
  if (mount("", "./syz-tmp", "tmpfs", 0, NULL))
    exit(1);
  if (mkdir("./syz-tmp/newroot", 0777))
    exit(1);
  if (mkdir("./syz-tmp/newroot/dev", 0700))
    exit(1);
  unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE;
  if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL))
    exit(1);
  if (mkdir("./syz-tmp/newroot/proc", 0700))
    exit(1);
  if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL))
    exit(1);
  if (mkdir("./syz-tmp/newroot/selinux", 0700))
    exit(1);
  const char* selinux_path = "./syz-tmp/newroot/selinux";
  if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) {
    if (errno != ENOENT)
      exit(1);
    if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) &&
        errno != ENOENT)
      exit(1);
  }
  if (mkdir("./syz-tmp/newroot/sys", 0700))
    exit(1);
  if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL))
    exit(1);
  if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL,
            bind_mount_flags, NULL) &&
      errno != ENOENT)
    exit(1);
  if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL,
            bind_mount_flags, NULL) &&
      errno != ENOENT)
    exit(1);
  if (mount("/proc/sys/fs/binfmt_misc",
            "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags,
            NULL) &&
      errno != ENOENT)
    exit(1);
  initialize_cgroups();
  if (mkdir("./syz-tmp/pivot", 0777))
    exit(1);
  if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) {
    if (chdir("./syz-tmp"))
      exit(1);
  } else {
    if (chdir("/"))
      exit(1);
    if (umount2("./pivot", MNT_DETACH))
      exit(1);
  }
  if (chroot("./newroot"))
    exit(1);
  if (chdir("/"))
    exit(1);
  setup_binderfs();
  setup_fusectl();
}

static void setup_fusectl()
{
  if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) {
  }
}

static void setup_binderfs()
{
  if (mkdir("/dev/binderfs", 0777)) {
  }
  if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) {
  }
}

static void loop();

static void sandbox_common()
{
  prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
  setsid();
  struct rlimit rlim;
  rlim.rlim_cur = rlim.rlim_max = (200 << 20);
  setrlimit(RLIMIT_AS, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 32 << 20;
  setrlimit(RLIMIT_MEMLOCK, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 136 << 20;
  setrlimit(RLIMIT_FSIZE, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 1 << 20;
  setrlimit(RLIMIT_STACK, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 128 << 20;
  setrlimit(RLIMIT_CORE, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 256;
  setrlimit(RLIMIT_NOFILE, &rlim);
  if (unshare(CLONE_NEWNS)) {
  }
  if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) {
  }
  if (unshare(CLONE_NEWIPC)) {
  }
  if (unshare(0x02000000)) {
  }
  if (unshare(CLONE_NEWUTS)) {
  }
  if (unshare(CLONE_SYSVSEM)) {
  }
  typedef struct {
    const char* name;
    const char* value;
  } sysctl_t;
  static const sysctl_t sysctls[] = {
      {"/proc/sys/kernel/shmmax", "16777216"},
      {"/proc/sys/kernel/shmall", "536870912"},
      {"/proc/sys/kernel/shmmni", "1024"},
      {"/proc/sys/kernel/msgmax", "8192"},
      {"/proc/sys/kernel/msgmni", "1024"},
      {"/proc/sys/kernel/msgmnb", "1024"},
      {"/proc/sys/kernel/sem", "1024 1048576 500 1024"},
  };
  unsigned i;
  for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++)
    write_file(sysctls[i].name, sysctls[i].value);
}

static int wait_for_loop(int pid)
{
  if (pid < 0)
    exit(1);
  int status = 0;
  while (waitpid(-1, &status, __WALL) != pid) {
  }
  return WEXITSTATUS(status);
}

static void drop_caps(void)
{
  struct __user_cap_header_struct cap_hdr = {};
  struct __user_cap_data_struct cap_data[2] = {};
  cap_hdr.version = _LINUX_CAPABILITY_VERSION_3;
  cap_hdr.pid = getpid();
  if (syscall(SYS_capget, &cap_hdr, &cap_data))
    exit(1);
  const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE);
  cap_data[0].effective &= ~drop;
  cap_data[0].permitted &= ~drop;
  cap_data[0].inheritable &= ~drop;
  if (syscall(SYS_capset, &cap_hdr, &cap_data))
    exit(1);
}

static int do_sandbox_none(void)
{
  if (unshare(CLONE_NEWPID)) {
  }
  int pid = fork();
  if (pid != 0)
    return wait_for_loop(pid);
  sandbox_common();
  drop_caps();
  initialize_netdevices_init();
  if (unshare(CLONE_NEWNET)) {
  }
  write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535");
  initialize_netdevices();
  initialize_wifi_devices();
  sandbox_common_mount_tmpfs();
  loop();
  exit(1);
}

#define FS_IOC_SETFLAGS _IOW('f', 2, long)
static void remove_dir(const char* dir)
{
  int iter = 0;
  DIR* dp = 0;
  const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW;

retry:
  while (umount2(dir, umount_flags) == 0) {
  }
  dp = opendir(dir);
  if (dp == NULL) {
    if (errno == EMFILE) {
      exit(1);
    }
    exit(1);
  }
  struct dirent* ep = 0;
  while ((ep = readdir(dp))) {
    if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0)
      continue;
    char filename[FILENAME_MAX];
    snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name);
    while (umount2(filename, umount_flags) == 0) {
    }
    struct stat st;
    if (lstat(filename, &st))
      exit(1);
    if (S_ISDIR(st.st_mode)) {
      remove_dir(filename);
      continue;
    }
    int i;
    for (i = 0;; i++) {
      if (unlink(filename) == 0)
        break;
      if (errno == EPERM) {
        int fd = open(filename, O_RDONLY);
        if (fd != -1) {
          long flags = 0;
          if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) {
          }
          close(fd);
          continue;
        }
      }
      if (errno == EROFS) {
        break;
      }
      if (errno != EBUSY || i > 100)
        exit(1);
      if (umount2(filename, umount_flags))
        exit(1);
    }
  }
  closedir(dp);
  for (int i = 0;; i++) {
    if (rmdir(dir) == 0)
      break;
    if (i < 100) {
      if (errno == EPERM) {
        int fd = open(dir, O_RDONLY);
        if (fd != -1) {
          long flags = 0;
          if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) {
          }
          close(fd);
          continue;
        }
      }
      if (errno == EROFS) {
        break;
      }
      if (errno == EBUSY) {
        if (umount2(dir, umount_flags))
          exit(1);
        continue;
      }
      if (errno == ENOTEMPTY) {
        if (iter < 100) {
          iter++;
          goto retry;
        }
      }
    }
    exit(1);
  }
}

static void kill_and_wait(int pid, int* status)
{
  kill(-pid, SIGKILL);
  kill(pid, SIGKILL);
  for (int i = 0; i < 100; i++) {
    if (waitpid(-1, status, WNOHANG | __WALL) == pid)
      return;
    usleep(1000);
  }
  DIR* dir = opendir("/sys/fs/fuse/connections");
  if (dir) {
    for (;;) {
      struct dirent* ent = readdir(dir);
      if (!ent)
        break;
      if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0)
        continue;
      char abort[300];
      snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort",
               ent->d_name);
      int fd = open(abort, O_WRONLY);
      if (fd == -1) {
        continue;
      }
      if (write(fd, abort, 1) < 0) {
      }
      close(fd);
    }
    closedir(dir);
  } else {
  }
  while (waitpid(-1, status, __WALL) != pid) {
  }
}

static void setup_loop()
{
  setup_cgroups_loop();
  checkpoint_net_namespace();
}

static void reset_loop()
{
  char buf[64];
  snprintf(buf, sizeof(buf), "/dev/loop%llu", procid);
  int loopfd = open(buf, O_RDWR);
  if (loopfd != -1) {
    ioctl(loopfd, LOOP_CLR_FD, 0);
    close(loopfd);
  }
  reset_net_namespace();
}

static void setup_test()
{
  prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
  setpgrp();
  setup_cgroups_test();
  write_file("/proc/self/oom_score_adj", "1000");
  if (symlink("/dev/binderfs", "./binderfs")) {
  }
}

static void close_fds()
{
  for (int fd = 3; fd < MAX_FDS; fd++)
    close(fd);
}

static const char* setup_binfmt_misc()
{
  if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0) &&
      errno != EBUSY) {
    return NULL;
  }
  if (!write_file("/proc/sys/fs/binfmt_misc/register",
                  ":syz0:M:0:\x01::./file0:") ||
      !write_file("/proc/sys/fs/binfmt_misc/register",
                  ":syz1:M:1:\x02::./file0:POC"))
    return "write(/proc/sys/fs/binfmt_misc/register) failed";
  return NULL;
}

static const char* setup_usb()
{
  if (chmod("/dev/raw-gadget", 0666))
    return "failed to chmod /dev/raw-gadget";
  return NULL;
}

static void setup_sysctl()
{
  int cad_pid = fork();
  if (cad_pid < 0)
    exit(1);
  if (cad_pid == 0) {
    for (;;)
      sleep(100);
  }
  char tmppid[32];
  snprintf(tmppid, sizeof(tmppid), "%d", cad_pid);
  struct {
    const char* name;
    const char* data;
  } files[] = {
      {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"},
      {"/proc/sys/kernel/hung_task_check_interval_secs", "20"},
      {"/proc/sys/net/core/bpf_jit_kallsyms", "1"},
      {"/proc/sys/net/core/bpf_jit_harden", "0"},
      {"/proc/sys/kernel/kptr_restrict", "0"},
      {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"},
      {"/proc/sys/fs/mount-max", "100"},
      {"/proc/sys/vm/oom_dump_tasks", "0"},
      {"/proc/sys/debug/exception-trace", "0"},
      {"/proc/sys/kernel/printk", "7 4 1 3"},
      {"/proc/sys/kernel/keys/gc_delay", "1"},
      {"/proc/sys/vm/oom_kill_allocating_task", "1"},
      {"/proc/sys/kernel/ctrl-alt-del", "0"},
      {"/proc/sys/kernel/cad_pid", tmppid},
  };
  for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) {
    if (!write_file(files[i].name, files[i].data)) {
    }
  }
  kill(cad_pid, SIGKILL);
  while (waitpid(cad_pid, NULL, 0) != cad_pid)
    ;
}

#define SWAP_FILE "./swap-file"
#define SWAP_FILE_SIZE (128 * 1000 * 1000)

static const char* setup_swap()
{
  swapoff(SWAP_FILE);
  unlink(SWAP_FILE);
  int fd = open(SWAP_FILE, O_CREAT | O_WRONLY | O_CLOEXEC, 0600);
  if (fd == -1)
    return "swap file open failed";
  fallocate(fd, FALLOC_FL_ZERO_RANGE, 0, SWAP_FILE_SIZE);
  close(fd);
  char cmdline[64];
  sprintf(cmdline, "mkswap %s", SWAP_FILE);
  if (runcmdline(cmdline))
    return "mkswap failed";
  if (swapon(SWAP_FILE, SWAP_FLAG_PREFER) == 1)
    return "swapon failed";
  return NULL;
}

struct thread_t {
  int created, call;
  event_t ready, done;
};

static struct thread_t threads[16];
static void execute_call(int call);
static int running;

static void* thr(void* arg)
{
  struct thread_t* th = (struct thread_t*)arg;
  for (;;) {
    event_wait(&th->ready);
    event_reset(&th->ready);
    execute_call(th->call);
    __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED);
    event_set(&th->done);
  }
  return 0;
}

static void execute_one(void)
{
  if (write(1, "executing program\n", sizeof("executing program\n") - 1)) {
  }
  int i, call, thread;
  for (call = 0; call < 10; call++) {
    for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0]));
         thread++) {
      struct thread_t* th = &threads[thread];
      if (!th->created) {
        th->created = 1;
        event_init(&th->ready);
        event_init(&th->done);
        event_set(&th->done);
        thread_start(thr, th);
      }
      if (!event_isset(&th->done))
        continue;
      event_reset(&th->done);
      th->call = call;
      __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED);
      event_set(&th->ready);
      event_timedwait(&th->done,
                      50 + (call == 0 ? 4000 : 0) + (call == 3 ? 4000 : 0) +
                          (call == 4 ? 4000 : 0) + (call == 8 ? 4000 : 0) +
                          (call == 9 ? 4000 : 0));
      break;
    }
  }
  for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++)
    sleep_ms(1);
  close_fds();
}

static void execute_one(void);

#define WAIT_FLAGS __WALL

static void loop(void)
{
  setup_loop();
  int iter = 0;
  for (;; iter++) {
    char cwdbuf[32];
    sprintf(cwdbuf, "./%d", iter);
    if (mkdir(cwdbuf, 0777))
      exit(1);
    reset_loop();
    int pid = fork();
    if (pid < 0)
      exit(1);
    if (pid == 0) {
      if (chdir(cwdbuf))
        exit(1);
      setup_test();
      execute_one();
      exit(0);
    }
    int status = 0;
    uint64_t start = current_time_ms();
    for (;;) {
      sleep_ms(10);
      if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid)
        break;
      if (current_time_ms() - start < 5000)
        continue;
      kill_and_wait(pid, &status);
      break;
    }
    remove_dir(cwdbuf);
  }
}

uint64_t r[1] = {0xffffffffffffffff};

void execute_call(int call)
{
  intptr_t res = 0;
  switch (call) {
  case 0:
    NONFAILING(memcpy((void*)0x20000400, "jfs\000", 4));
    NONFAILING(memcpy((void*)0x200000c0, "./file0\000", 8));
    NONFAILING(memcpy(
        (void*)0x20002740,
        "\x71\x75\x6f\x74\x61\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x64\x69\x73"
        "\x63\x61\x72\x64\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6b\x6f"
        "\x69\x38\x2d\x72\x75\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x00\xf4\x19"
        "\x3e\xb3\xba\x2a\x0d\x5f\xd0\xcd\x73\x74\x28\x8f\xf8\x9e\xc5\x13\xa5"
        "\x3e\x00\x73\x45\xde\xcb\x72\x09\x00\xf8\x31\x2d\xa2\x46\x3e\xb0\xed"
        "\xf5\x2f\xad\x1a\x00\xeb\xd4\x1c\x14\xb3\xce\x75\xd0\xcf\xfe\xfd\x37"
        "\x96\x24\xb1\x6f\x72\x60\xc8\x35\x71\x3b\x26\x33\x52\xe0\x3b\x5c\xb8"
        "\xfa\x0c\x04\x2b\xd1\x22\x5e\xd4\xde\xd2\xb6\x2e\x12\xfe\xa4\xd7\xe6"
        "\x1b\x73\x8e\x40\x78\x1e\x58\xd5\xff\xf1\x12\x36\x4a\xc1\x40\xf4\x19"
        "\xe5\xda\xfe\xcd\x28\x3b\x3f\xab\x6b\x14\x2d\xdb\xc8\x93\xb3\x5a\x81"
        "\xfe\x92\x65\x59\x1e\xf3\x5f\xa2\x92\x8e\x09\x5f\xee\x4c\x10\xb2\x2e"
        "\x42\x12\x37\x8d\xe5\x9b\xca\x03\x07\xcc\x64\x4b\x96\x20\xb6\x3f\x00"
        "\x00\x00\x7b\xbb\xd4\x22\xd8\x78\x56\xb7\x13\x48\xb8\xf4\x53\x98\xb9"
        "\x66\x0b\x6b\x3e\x8e\xe8\xa8\xc3\x2f\x32\x34\xcb\x46\xe2\xcd\x82\x7e"
        "\xc2\x5c\x1c\xa4\xd0\x46\xbc\x00\x4f\x8d\xf7\xb1\xee\x69\x0a\x5e\x50"
        "\x51\x07\x00\xd8\x0c\x7f\xa6\x5f\xa7\x24\xd0\xe1\xb4\x36\x9f\x1b\x64"
        "\xfe\x24\x9a\x03\x12\x01\x00\x00\x00\x4a\xc9\x83\xde\x92\x5f\x52\xd7"
        "\x35\xb0\x3f\xea\x94\x1b\x1e\x94\x8a\xd8\xd1\x9c\xfd\xa5\xb7\x99\x32"
        "\x5f\xd6\x9d\x14\xfc\xf6\xcd\xde\x77\x00\xa6\x31\x50\xeb\x36\x99\xe5"
        "\x31\x4e\x08\x27\x75\x0e\x24\x41\x50\xec\x19\xf3\xf3\xf1\xd8\xbe\x54"
        "\x2c\x08\x4b\x5e\x40\xbf\xaa\x8a\xd2\x06\xd2\xa3\x3b\x0d\xdb\xd7\xf8"
        "\xe0\x7d\xc7\xd1\x71\x74\xa4\x54\x9f\xfa\xf5\x97\x69\x49\xcb\x6d\x65"
        "\x8c\x42\xec\x7c\xd9\xfe\x8a\xd8\x28\x52\xce\xfb\x04\x64\x6e\xdb\x3a"
        "\x41\xeb\x51\x4e\xb6\xa7\x72\xb3\xee\x9f\x21\xe2\x58\x22\xb5\x4e\xc3"
        "\x3e\x59\x2d\x5c\x04\x09\x46\x72\x11\x01\xd5\x3a\xff\x21\xf9\x03\x51"
        "\xc9\x5a\xa0\xf7\x3f\x18\x53\xd6\xaf\xcb\xf9\x44\x8b\x22\x0e\x98\x84"
        "\x66\x06\x6f\xa5\xc0\x9e\x61\x98\xfc\x45\x20\xd1\x99\xb9\x3b\xde\xde"
        "\xe8\x7c\x40\x43\x81\x5a\xa0\x56\x68\xa0\x6f\x8d\xa9\x66\x80\xcc\xc1"
        "\xa1\x39\xad\xe9\x0f\x5c\x79\xaf\x46\x20\x8f\x97\x62\xf5\x4e\x7c\x29"
        "\x08\x8d\x9d\xe6\x9b\xd2\xd5\x1c\x6b\x9c\x42\x20\x9d\xdc\x38\x80\x05"
        "\x13\x03\xb8\x55\x85\x34\x07\xd9\x59\xa5\x77\x7d\xce\x25\x20\x1c\x5e"
        "\xa1\xfa\xa0\x84\xc3\x6e\x3e\x34\x99\x15\xeb\xec\x53\x43\x5e\xb2\x91"
        "\x0c\x59\x39\x4e\xe8\x4b\xa3\xba\xf9\xc4\x40\xae\x58\x33\xc2\x3f\x46"
        "\xb0\xea\xac\x54\x3c\xe0\xc8\x0b\xa0\x60\x32\x13\xe5\x3e\xa5\x97\x55"
        "\x07\x0b\x18\xbc\x10\xb9\x22\x4a\xa0\x82\xd9\x67\x20\x61\x15\xb4\x92"
        "\xd8\x25\x75\x1f\xcc\x00\x00\x00\x00\x00\x00\x00\xe6\x3d\x51\xc5\xbf"
        "\xfa\x4f\x71\x2c\x2d\x7f\xaf\xb9\xcf\x50\x6c\x06\xe1\xdd\xad\x4f\xc1"
        "\x90\x38\x40\x77\x86\xfe\xdb\x9a\xfd\xfb\x11\xa5\xf1\x82\x67\x6d\xd8"
        "\x4c\x91\x9f\x71\xd5\xee\xe2\xf3\xb7\x40\xb6\x8e\xe7\xf6\x51\x8e\xb9"
        "\xd8\xba\xa2\x6f\x1c\x38\x71\xf8\x63\xb1\x34\xee\x94\x2e\xb3\xaf\x92"
        "\xd1\x9e\x70\xd8\x26\x88\x39\xcd\x7b\x46\x37\xf0\x62\x72\x99\xf9\x9b"
        "\x18\x73\xca\x16\x5e\x41\x0f\x8b\xd4\x21\xe1\xa4\x85\x9f\xd9\xbd\x6b"
        "\xb3\x4d\x25\xc0\x7e\x1a\x52\xb9\x66\x8a\x53\x0b\x10\xb8\x58\x5d\x79"
        "\x71\x24\xa6\x97\x5a\x71\xae\xdb\xe5\x57\xa1\x7b\x06\xbb\xfe\x54\x7a"
        "\xa5\x53\xc3\xd0\x8b\x89\x21\xa4\xb0\xd9\x38\xc0\x36\x87\xbd\x48\xa9"
        "\xa3\x87\xb4\xc0\x66\xc0\x56\xf4\x57\xfb\xa5\x73\x87\x75\xb9\x00\xa1"
        "\xe8\x2a\x89\xaa\xe1\x49\x4b\x05\xc4\xbb\x0f\xc8\xed\x1a\x93\x68\x8b"
        "\xf8\x50\xa4\xf7\xb0\x94\x2e\xda\x1f\x16\xec\xf0\x43\xef\xa6\xb8\xc1"
        "\xf9\xe0\xfb\xa3\x1f\x4a\x58\xed\x00\x31\x18\x0f\xb1\xb8\xa0\x0e\x4a"
        "\x86\x82\x6b\x03\x00\x00\x00\x2d\xd1\x27\x2a\x3d\x16\x09\xbe\xbb\x74"
        "\x9d\xae\xf2\x02\xe0\x41\x2a\x73\xd5\x45\xb8\x6c\xa7\xa6\xbf\x56\x9e"
        "\xd3\x5d\x00\x00\xca\x23\xb0\xde\x74\x2f\x60\x08\xfd\xf2\x09\x28\x37"
        "\x0d\x88\xf8\xc0\x4b\xc3\xb9\x7b\x9a\x9e\x00\x62\xe8\xfc\x5f\xd2\x33"
        "\x7d\x85\xa6\x6b\xd2\x07\x30\xf3\x15\x3d\xb2\x45\x9f\xb3\x4c\x13\x4c"
        "\x06\xc1\x93\x64\xe9\x64\x5e\x83\x04\x0d\xd1\x6e\xe0\x8f\x18\xf0\xba"
        "\x69\xac\x9c\xa3\xe2\x5e\x15\x44\x2b\x07\x00\x00\x00\xd3\x0d\x38\xa6"
        "\x46\x13\xb5\x35\xfa\x80\x8a\x9b\x3b\xae\x00\xbc\x37\x12\x71\xd4\x5d"
        "\xb2\x00\xa5\xcb\xf4\x33\xe2\xf6\xdd\x03\xb7\xc7\xfc\xc0\x40\x78\x1e"
        "\x51\x51\xc9\xba\xdb\x78\x7e\x7e\x1e\x2f\x39\xd6\x09\x98\x91\x9a\xa8"
        "\xdb\xd1\x56\xf3\x1a\x5b\x7f\xa5\xf9\xe5\xec\x01\xe8\xc7\x99\xed\xc3"
        "\x22\x70\x3c\x7f\xc4\xa8\x1a\xb9\xbc\x02\xdd\x96\x71\x4e\xe9\xd7\xe7"
        "\x5d\x28\xd0\x40\xff\x35\x66\x40\x4f\xd6\xdb\x54\x7a\x4b\x55\x31\x97"
        "\xc1\xf3\x16\xd2\x0e\xa5\x4f\x94\x59\xcd\x81\x35\x1a\x51\x0d\x10\x1e"
        "\x90\xea\xbe\x6d\xc6\xc6\xac\x3f\xfa\x18\x9c\x07\x3a\x5f\xb3\xfc\x38"
        "\x2d\xf6\x20\xbf\x5a\xf9\xe6\x38\x81\x9c\x77\xa0\x51\xe6\x87\x58\x66"
        "\xa8\x49\xf6\xf5\x78\xc0\x68\xc0\xe4\xc7\xcf\xbc\x15\x03\x39\x97\xef"
        "\xa8\x53\xc9\x62\x97\xb3\x20\x1d\xd3\x0e\xa4\x0d\xc9\x4d\x01\x0a\x0c"
        "\x33\xda\x9f\x63\xa1\x0b\x8f\x81\x3d\xc7\x89\xb8\x0b\xe3\xbb\x3f\x00"
        "\xee\x58\xb3\x0d\x5c\x03\xa6\xdd\xbf\x41\x8a\xc1\xb3\xd4\xa1\x38\x39"
        "\xe4\xb2\x73\xc4\xf9\x14\xbe\xd1\x3f\x88\x06\x29\x54\x95\xd4\x16\x09"
        "\x47\x87\x98\x39\x6a\xee\xc0\x6e\x8d\x34\x2e\xfd\x8a\xc6\xb4\x22\xf6"
        "\xc2\x3a\x01\x1b\x14\x00\x00\x00\x00\x00\x00\x00\xbc\x2a\x02\x09\x4e"
        "\x19\xa1\xee\x8b\xb3\xc3\xc0\xc0\x88\xae\x8e\xfa\xf6\x8c\x85\x00\x1f"
        "\xaf\x7c\xf5\x42\x6f\xb7\xc5\xc3\x67\xed\x93\xeb\x25\xc4\x8a\x29\x35"
        "\x49\xd1\x5b\x91\xb5\x9f\x1b\x57\x4b\x3f\x61\x71\xf8\xe5\x6a\x40\x2e"
        "\xc5\x6b\xdf\x51\xd9\x03\x12\xb3\xca\x53\x98\xf4\x05\x00\x00\x00\x75"
        "\x04\xbe\x21\x45\x6e\xc9\x53\xbf\x06\xf1\x2f\xff\x20\xc3\x1e\x7c\x8b"
        "\x55\xfe\xe5\xc4\x9a\xa9\x39\x83\x0b\x09\x99\x5f\xf1\x49\x25\x81\x18"
        "\xf9\xaa\xe2\x92\x06\xf9\x73\x12\x88\xb5\x6b\x10\xde\x51\x52\x56\x65"
        "\xfd\xb4\xe2\x89\xb1\xc1\x77\xde\x97\xaf\x30\x85\xf8\x20\x45\xfb\xd0"
        "\x12\xf1\xdd\xe9\x4f\xfe\xcd\x90\xb7\xb6\x3d\x81\x97\xd9\xc2\x4a\x6f"
        "\xe5\x91\x5a\xc7\xd7\x24\x08\x47\xf6\xd0\xbf\x90\x99\xee\x11\x7c\x83"
        "\xe3\x63\xf2\xad\x36\xa4\xa9\xf4\xfa\xa5\x73\x4a\xfe\x97\x70\xc3\x8c"
        "\x56\x5c\xae\x87\xa4\x08\xd0\xac\xbb\x2d\xb7\xdb\x91\x74\xac\xab\x60"
        "\xa3\x44\x81\x4e\xe6\x43\xfa\x82\xba\x41\x70\x6d\x23\x60\x26\x9e\xd2"
        "\x76\xe1\x3d\xd8\x3a\xbb\xc2\x58\xf0\x7b\x0d\x58\xab\x0b\x65\x20\x0b"
        "\x18\xb7\xf9\xf8\x71\xbc\xb4\x3f\xec\x5a\x2e\x37\x89\xec\xd0\xc1\x06"
        "\x9d\x2d\xa8\x0b\x93\xc8\x6d\xff\x89\x33\xe7\x0c\x21\x08\x34\x60\x03"
        "\xdd\xf6\xb6\x03\x79\xee\xe6\x3b\x66\xe7\x34\x1c\xdd\x8f\x87\xed\x9f"
        "\x11\x89\x4c\x9a\xe0\x40\x97\x63\x21\xd8\x74\x05\xb4\x92\xf4\x19\xeb"
        "\xfa\x77\xeb\x36\x7c\xa6\xe3\x60\xb8\xf8\x45\x11\x02\xf5\x48\x93\xd7"
        "\xd1\x69\x5c\x24\xbc\xc1\x84\xb1\xe7\xd1\x99\x40\xa2\xb6\x93\x1a\xde"
        "\x86\x38\xdd\x2b\x85\xa8\x6d\xc5\x11\xdb\xb9\x7f\x50\x52\x0f\x91\xfb"
        "\xf7\x20\x1f\xc9\x62\x1d\x0a\xee\x97\x35\xd0\x7c\xa0\x24\x07\x6e\x85"
        "\x81\xdb\x33\x2b\x1c\x5f\x13\x5f\xe6\xb2\xe9\xd2\xc1\x8c\x9d\x5d\x5a"
        "\x52\x4d\x3d\x5b\x26\x57\xe4\xb2\x8f\x1a\x09\x69\x6b\xd5\xb0\x76\xa1"
        "\x47\x1c\x8b\x2a\xb2\xca\x3b\xa5\x78\x43\xaf\x1d\x03\x59\x0f\x4e\x89"
        "\x85\xe1\xc4\x63\xc7\x81\xbb\x03\xad\x7e\xc8\x16\xea\x70\xbb\xe0\x64"
        "\x11\xaa\xe0\x01\xe0\xca\x72\xee\x7e\x82\x8a\xd1\x4b\xb7\xa0\x92\xd8"
        "\x83\xad\x00\x05\x54\xbf\x7f\x00\x00\x00\x00\x00\x00\x75\xcc\x01\xf8"
        "\xa2\xe1\x80\x21\x92\xf0\x9e\x77\xbc\x48\x8b\x3b\xd3\xf0\x8a\x9c\xe8"
        "\x8b\xa2\xe2\xbc\xc2\x3c\xf5\xd7\x37\x2b\x33\x9c\xe1\xf5\x00\x3d\xb0"
        "\xad\x70\xfa\x6e\x93\xaa\x90\x8a\x2c\xed\x81\xf5\x51\x4e\x23\xe2\xf9"
        "\x4f\xf0\x3c\x1c\x02\xf5\xa9\x19\x5f\x47\x35\x56\x3e\xfd\x0a\x1f\xc7"
        "\xda\xfc\xfb\x3d\xae\x04\x3f\xe0\xc1\x72\xec\x3a\x12\x74\x7d\x7a\xbf"
        "\x43\x82\xbf\x74\x53\xc1\x3d\xf9\x94\x64\x10\x17\xa0\xf4\x61\xad\xd9"
        "\x56\xef\x8f\x83\x4b\x76\x2a\xf3\x04\x08\xaf\x6a\x61\xf3\x17\xfd\x3c"
        "\x7b\x08\x16\x23\x6a\x76\x86\x01\xb7\xc6\x60\x6b\xa5\x2f\xf1\x26\xeb"
        "\x13\xd3\x3c\x91\x5c\x5d\xa9\x9d\x11\x8d\xb4\x88\xda\x3f\x3d\x77\x83"
        "\xa6\x08\x28\x2a\x93\xfc\xbe\x09\x10\xf0\x38\x9c\x3e\xf9\x1d\xe7\xc8"
        "\x4e\x23\xda\xa6\x55\x4c\x42\xb2\xb3\xe9\xf7\x0a\x9f\x79\x0f\x29\x01"
        "\x1a\x0b\x51\x01\xb2\x3b\xfe\xba\x6e\x52\x87\x7e\xd8\xa1\x88\x95\x8e"
        "\x39\x37\x5d\xd2\x03\xd4\x34\xbe\xf4\xdc\x82\xcc\x8a\x21\xfc\x40\xc6"
        "\xe6\xe6\xa2\x47\x5f\x70\xbf\x15\x03\xbe\xb9\x55\x50\x36\xe6\x3b\xdc"
        "\x93\x7f\x8a\x4d\x61\xb2\x1d\x06\xa9\xd3\x23\x9d\x1d\xf6\xf2\xe9\xef"
        "\x16\xde\xe5\x90\xb1\x5a\xc0\x28\xc6\xd8\x73\xbb\x29\x65\x37\x4b\x73"
        "\x3d\x8e\x11\xba\x76\x3a\xb1\x57\xed\x91\xdd\x87\x1b\x09\x8c\x05\x43"
        "\xdc\xbb\xa4\xcf\x67\xdb\x8c\x83\xc8\x43\x69\xdc\x67\x73\x5f\xa4\xfa"
        "\xa0\xfd\xcf\x34\xb1\xc6\xa8\x62\xcc\xae\x9f\xe4\xfa\x28\x74\x65\x04"
        "\x64\x3b\x57\xf0\x26\x23\xa2\xef\x34\xea\x90\xf2\xe7\xf7\xdd\x77\x1f"
        "\x8f\x75\x21\x7c\x79\x9d\x97\x8a\x35\x33\xfc\xfa\xb6\xc6\xf5\x39\x1b"
        "\x62\x6d\x61\xb4\x00\xf0\x81\x72\xfc\x67\x5e\x2a\x06\x2d\x06\xc3\x1b"
        "\x85\x45\x28\x04\xf7\xb1\x25\xc2\x91\xf6\x0a\x02\xa5\xd6\x22\x71\xe9"
        "\x6f\xe7\x0d\x64\xba\xe3\x6e\x28\xb4\x2e\x19\x72\x59\x16\x9e\xbe\xe8"
        "\xf6\x43\x55\x54\x4f\xba\xd8\xb8\x3c\x1c\x8f\xad\x02\xcd\x1a\x2e\x56"
        "\xa6\xf6\xe8\x2e\xc7\x71\x9a\x48\xa1\xbe\xa8\x03\x54\x6b\x8a\xf7\xa8"
        "\x9f\xaf\x7c\xef\x94\xd8\xad\xa4\x5f\xc0\xa9\x8a\x79\xba\x90\xc9\x52"
        "\x62\xf0\x11\x07\x25\xc6\xbf\x7c\x81\x23\x75\x34\xdc\xd6\xa8\xa1\x13"
        "\xbd\x8a\xc4\x8b\x7d\xb5\x52\x6a\xb7\x62\xce\xc1\x03\x67\x47\x42\x47"
        "\x6c\xd6\xb9\x2b\x8c\x7a\xbc\xfb\x1f\x8e\x08\xf0\xa0\x5c\x1b\x20\x91"
        "\x87\x04\x9f\x32\x06\xbd\x54\x5e\x8c\x20\xf8\xdb\x6d\x8a\x7c\xdd\x0c"
        "\x9e\xcb\xb9\x01\x1b\x61\x1a\x01\x3c\xd5\x81\x52\x1d\xfc\xb0\x28\xd5"
        "\x9d\x5c\x69\xd2\x86\xfb\x93\xe4\xc4\x98\xb3\xaa\xff\x7e\x0c\xdc\xf1"
        "\xf4\x1f\xec\x65\xeb\xdb\xe4\xc2\xbf\x45\x31\x40\x25\x1c\xdd\x94\xc3"
        "\x2b\x87\xc4\x63\x4d\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x81\x6e\x6c\x33\xf9\x2d\xca\x3e\x03\xc4\x00\x00"
        "\x00\x5e\x53\x8c\x77\xb2\xb1\x4f\x63\xd2\x53\x70\x53\x63\x84\x6b\xc4"
        "\xe9\xcd\x32\x84\xff\x32\x93\x30\x81\x2d\x22\x11\xae\x34\x10\x6e\x03"
        "\x06\x37\x6a\x2b\x1c\xfe\x60\xa0\x9b\xec\xae\x2b\x05\xec\x9a\xdc\xac"
        "\x47\x61\x2a\xf8\x5f\x59\x8a\x88\x0f\xa9\x78\x91\xa7\xa2\x90\xb6\xe7"
        "\x30\x80\x05\x42\xae\xa7\x61\xae\xb4\x63\xf5\xff\x5b\xdf\x50\x99\xae"
        "\x8a\xd4\xaf\xe9\x9d\xb9\xe9\xc4\xe7\x03\xcb\x90\x0e\x9a\xe2\x72\x74"
        "\x2f\xe2\xff\x81\xd1\xa4\xf1\x56\x68\x39\x2c\xda\xfd\x2e\x17\x57\x70"
        "\x6f\x47\xf9\xf8\x4e\x53\x2f\x25\xe2\x73\x7c\xb6\xf6\xe8\x93\x78\xf8"
        "\xd7\x9a\xb8\x50\x7b\x10\x9c\x7f\x1f\x36\x53\xa5\xbc\x9d\x54\xcc\xc6"
        "\x33\xde\x62\x63\x52\x6e\xac\x10\x51\x92\x74",
        2476));
    NONFAILING(memcpy(
        (void*)0x20003100,
        "\x78\x9c\xec\xdd\x5d\x6f\x1c\x57\x19\x07\xf0\x67\x5f\xbc\x7e\x29\x4d"
        "\xa3\x0a\x55\x21\xe2\x22\x4d\xa1\xb4\x94\xe6\x3d\x81\xf2\xd6\x94\x0b"
        "\x2e\x00\x09\x24\x94\x6b\x12\xb9\x6e\x15\x48\x01\x25\x01\xd1\x2a\x22"
        "\xae\x72\x81\xb8\xe0\xe5\x23\xc0\x4d\x6f\xb8\xe8\x17\x29\x5f\x01\xf1"
        "\x01\x88\x14\x73\x55\x09\xca\xa0\xb1\xcf\x49\xc6\xe3\x75\xd6\x69\xe2"
        "\x9d\x5d\x9f\xdf\x4f\x72\x66\x9e\x3d\x33\xde\x33\xf9\x7b\x3c\xbb\x9e"
        "\x99\x3d\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\xc4\xf7\xbe\xfb\xe3\xd3\xbd\x88\xb8\xfc\xeb\xf4\xc0\xe1\x88\xcf\xc4"
        "\x20\xa2\x1f\xb1\x5c\xd7\xc7\xa2\x9e\xb9\x98\x97\x1f\x46\xc4\x91\xd8"
        "\x6c\x8e\xe7\x22\x62\xb0\x18\x51\xaf\xbf\xf9\xcf\x33\x11\xe7\x22\xe2"
        "\xa3\x43\x11\xf7\x36\x6e\xad\xd6\x0f\x9f\xd9\x63\x3f\xce\x9f\xba\x79"
        "\xfd\x93\xef\x7f\xe7\x1f\xbf\xfb\xd3\x9d\x23\x3f\x7d\xf3\x27\x1f\xb4"
        "\xdb\x7f\xf4\xd9\xb3\x1f\xfe\xfe\x76\xc4\xe1\x1f\xbe\xf6\xe1\x27\xb7"
        "\x9f\xcc\xb6\x03\x00\x00\x40\x29\xaa\xaa\xaa\x7a\xe9\x6d\xfe\xd1\xf4"
        "\xfe\xbe\xdf\x75\xa7\x00\x80\xa9\xc8\xc7\xff\x2a\xc9\x8f\xab\xd5\x6a"
        "\xb5\xfa\x89\xd6\x7f\xec\xcf\x56\x7f\xd4\x85\xd6\x4d\xd5\x78\xb7\x9b"
        "\x45\x44\xac\x37\xd7\xa9\x5f\x33\x38\x1d\x0f\x00\x73\x66\x3d\x3e\xee"
        "\xba\x0b\x74\x48\xfe\x45\x1b\x46\xc4\x53\x5d\x77\x02\x98\x69\xbd\xae"
        "\x3b\xc0\xbe\xb8\xb7\x71\x6b\xb5\x97\xf2\xed\x35\x8f\x07\xc7\xb6\xda"
        "\xf3\xdf\x29\xb7\xe5\xbf\xde\xbb\x7f\x7f\xc7\x6e\xd3\x49\xda\xd7\x98"
        "\x4c\xeb\xe7\xeb\x4e\x0c\xe2\xd9\x5d\xfa\xb3\x3c\xa5\x3e\xcc\x92\x9c"
        "\x7f\xbf\x9d\xff\xe5\xad\xf6\x51\x5a\x6e\xbf\xf3\x9f\x96\xdd\xf2\x1f"
        "\x6d\xdd\xfa\x54\x9c\x9c\xff\xa0\x9d\x7f\xcb\xb6\xfc\xff\x1c\x11\x73"
        "\x9b\x7f\x7f\x6c\xfe\xa5\xca\xf9\x0f\x1f\x25\xff\xf5\xc1\x1c\xef\xff"
        "\xf2\x07\x00\x00\x00\x00\xe0\xe0\xcb\x7f\xff\x3f\xdc\xf1\xf9\xdf\xc5"
        "\xc7\xdf\x94\x3d\x79\xd8\xf9\xdf\x63\x53\xea\x03\x00\x00\x00\x00\x00"
        "\x00\x00\x3c\x69\x8f\x3b\xfe\xdf\x7d\xc6\xff\x03\x00\x00\x80\x99\x55"
        "\xbf\x57\xaf\xfd\xe5\xd0\x83\xc7\x76\xfb\x2c\xb6\xfa\xf1\x4b\xbd\x88"
        "\xa7\x5b\xcb\x03\x85\x49\x37\xcb\xac\x74\xdd\x0f\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x28\xc9\x70\xeb\x1a\xde\x4b\xbd\x88\x85\x88\x78"
        "\x7a\x65\xa5\xaa\xaa\xfa\xab\xa9\x5d\x3f\xaa\xc7\x5d\x7f\xde\x95\xbe"
        "\xfd\x50\xb2\xae\x7f\xc9\x03\x00\xc0\x96\x8f\x0e\xb5\xee\xe5\xef\x45"
        "\x2c\x45\xc4\xa5\xf4\x59\x7f\x0b\x2b\x2b\x2b\x55\xb5\xb4\xbc\x52\xad"
        "\x54\xcb\x8b\xf9\xf5\xec\x68\x71\xa9\x5a\x6e\xbc\xaf\xcd\xd3\xfa\xb1"
        "\xc5\xd1\x1e\x5e\x10\x0f\x47\x55\xfd\xcd\x96\x1a\xeb\x35\x4d\x7a\xbf"
        "\x3c\xa9\xbd\xfd\xfd\xea\xe7\x1a\x55\x83\x3d\x74\x6c\x3a\x3a\x0c\x1c"
        "\x00\x22\x62\xeb\x68\x74\xcf\x11\xe9\x80\xa9\xaa\x67\xa2\xeb\x57\x39"
        "\xcc\x07\xfb\xff\xc1\x63\xff\x67\x2f\xba\xfe\x39\x05\x00\x00\x00\xf6"
        "\x5f\x55\x55\x55\x2f\x7d\x9c\xf7\xd1\x74\xce\xbf\xdf\x75\xa7\x00\x80"
        "\x69\x58\xca\xc7\xff\xf6\x79\x01\xb5\x5a\xad\x56\xab\xd5\x07\xaf\x6e"
        "\xaa\xc6\xbb\xdd\x2c\x22\x62\xbd\xb9\x4e\xfd\x9a\xc1\x70\xfc\x00\x30"
        "\x67\xd6\xe3\xe3\xae\xbb\x40\x87\xe4\x5f\xb4\x61\x44\x1c\xe9\xba\x13"
        "\xc0\x4c\xeb\x75\xdd\x01\xf6\xc5\xbd\x8d\x5b\xab\xbd\x94\x6f\xaf\x79"
        "\x3c\x48\xe3\xbb\xe7\x6b\x41\xb6\xe5\xbf\xde\xdb\x5c\x2f\xaf\x3f\x6e"
        "\x3a\x49\xfb\x1a\x93\x69\xfd\x7c\xdd\x89\x41\x3c\xbb\x4b\x7f\x9e\x9b"
        "\x52\x1f\x66\x49\xce\xbf\xdf\xce\xff\xf2\x56\xfb\x28\x2d\xb7\xdf\xf9"
        "\x4f\xcb\x6e\xf9\xd7\xdb\x79\xb8\x83\xfe\x74\x2d\xe7\x3f\x68\xe7\xdf"
        "\x72\x70\xf2\xef\x8f\xcd\xbf\x54\x39\xff\xe1\x23\xe5\x3f\x90\x3f\x00"
        "\x00\x00\x00\x00\xcc\xb0\xfc\xf7\xff\xc3\xce\xff\xe6\x4d\x06\x00\x00"
        "\x00\x00\x00\x00\x80\xb9\x73\x6f\xe3\xd6\x6a\xbe\xef\x35\x9f\xff\xff"
        "\xfc\x98\xe5\x7a\xcd\x39\xf7\x7f\x1e\x18\x39\xff\xde\x9e\xf3\x77\xff"
        "\xef\x41\x92\xf3\xef\xb7\xf3\x6f\x5d\x90\x33\x68\xcc\xdf\x7d\xe3\x41"
        "\xfe\xff\xde\xb8\xb5\xfa\xc1\xcd\x7f\x7d\x2e\x4f\x67\x3e\xff\x85\xc1"
        "\xa8\x7e\xee\x85\x5e\x7f\x30\x4c\xd7\xfc\x54\x0b\x6f\xc5\xd5\xb8\x16"
        "\x6b\x71\x6a\xc7\xf2\xc3\x6d\xed\xa7\x77\xb4\x2f\x6c\x6b\x3f\x33\xa1"
        "\xfd\xec\x8e\xf6\x51\xdd\xbe\x9c\xdb\x4f\xc4\x6a\xfc\x22\xae\xc5\x9b"
        "\xf7\xdb\x17\x27\x5c\x18\xb5\x34\xa1\xbd\x9a\xd0\x9e\xf3\x1f\xd8\xff"
        "\x8b\x94\xf3\x1f\x36\xbe\xea\xfc\x57\x52\x7b\xaf\x35\xad\xdd\x7d\xbf"
        "\xbf\x63\xbf\x6f\x4e\xc7\x3d\xcf\xc5\xbf\xfd\xf7\xc5\x9d\x7b\xd7\xf4"
        "\xdd\x89\xc1\xfd\x6d\x6b\xaa\xb7\xef\x78\x07\xfd\xd9\xfc\x3f\x79\x6a"
        "\x14\xbf\xba\xb1\x76\xfd\xc4\x6f\xae\xdc\xbc\x79\xfd\x74\xa4\xc9\xb6"
        "\x47\xcf\x44\x9a\x3c\x61\x39\xff\x85\xf4\x95\xf3\x7f\xe9\x85\xad\xf6"
        "\xfc\x7b\xbf\xb9\xbf\xde\x7d\x7f\xf4\xc8\xf9\xcf\x8a\x3b\x31\xdc\x35"
        "\xff\x17\x1a\xf3\xf5\xf6\xbe\x3c\xe5\xbe\x75\x21\xe7\x3f\x4a\x5f\x39"
        "\xff\x7c\x04\x1a\xbf\xff\xcf\x73\xfe\xbb\xef\xff\xaf\x74\xd0\x1f\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x98\xaa\xaa\x36\x6f"
        "\x11\xbd\x18\x11\x17\xd2\xfd\x3f\x5d\xdd\x9b\x09\x00\x4c\xd5\x1f\x7e"
        "\x90\x66\xaa\x24\xd4\x6a\xb5\x5a\xad\x56\x1f\xd8\xba\xa9\x1a\xef\xf5"
        "\x66\x11\x4b\xdb\xd7\xb9\x10\x11\xbf\x1d\xf7\xcd\x00\x80\x59\xf6\xbf"
        "\x88\xf8\x67\xd7\x9d\xa0\x33\xf2\x2f\x58\xfe\xbc\xbf\x7a\xfa\x85\xae"
        "\x3b\x03\x4c\xd5\x8d\x77\xdf\xfb\xd9\x95\x6b\xd7\xd6\xae\xdf\xe8\xba"
        "\x27\x00\x00\x00\x00\x00\x00\x00\xc0\xa7\x95\xc7\xff\x3c\xd6\x18\xff"
        "\x79\xf3\x3a\xa0\xd6\xb8\xd1\xdb\xc6\x7f\x7d\x23\x8e\xcd\xed\xf8\x9f"
        "\xfd\xd1\x60\x73\xac\xf3\xb4\x41\xcf\xc7\xc3\xc7\xff\x3e\x1e\x0f\x1f"
        "\xff\x7b\x38\xe1\xf9\x16\x26\xb4\x8f\x26\xb4\x2f\x4e\x68\x5f\x9a\xd0"
        "\x3e\xf6\x46\x8f\x86\x9c\xff\xf3\x29\xe3\x9c\xff\xd1\xb4\x61\x25\x8d"
        "\xff\xfa\x52\x07\xfd\xe9\x5a\xce\xff\x78\x1a\xeb\x39\xe7\xff\xa5\xd6"
        "\x72\xcd\xfc\xab\xbf\xce\x73\xfe\xfd\x6d\xf9\x9f\xbc\xf9\xce\x2f\x4f"
        "\xde\x78\xf7\xbd\x57\xaf\xbe\x73\xe5\xed\xb5\xb7\xd7\x7e\x7e\xfa\xd4"
        "\x85\x73\x67\xcf\x9f\x3b\x7b\xfe\xfc\xc9\xb7\xae\x5e\x5b\x3b\xb5\xf5"
        "\x6f\x87\x3d\xde\x5f\x39\xff\x3c\xf6\xb5\xeb\x40\xcb\x92\xf3\xcf\x99"
        "\xcb\xbf\x2c\x39\xff\x2f\xa6\x5a\xfe\x65\xc9\xf9\xbf\x98\x6a\xf9\x97"
        "\x25\xe7\x9f\x5f\xef\xc9\xbf\x2c\x39\xff\xfc\xde\x47\xfe\x65\xc9\xf9"
        "\xbf\x9c\x6a\xf9\x97\x25\xe7\xff\xe5\x54\xcb\xbf\x2c\x39\xff\x57\x52"
        "\x2d\xff\xb2\xe4\xfc\xbf\x92\x6a\xf9\x97\x25\xe7\xff\x6a\xaa\xe5\x5f"
        "\x96\x9c\xff\x89\x54\xcb\xbf\x2c\x39\xff\x93\xa9\x96\x7f\x59\x72\xfe"
        "\xf9\x0c\x97\xfc\xcb\x92\xf3\xcf\x57\x36\xc8\xbf\x2c\x39\xff\x33\xa9"
        "\x96\x7f\x59\x72\xfe\x67\x53\x2d\xff\xb2\xe4\xfc\xcf\xa5\x5a\xfe\x65"
        "\xc9\xf9\x9f\x4f\xb5\xfc\xcb\x92\xf3\xbf\x90\x6a\xf9\x97\x25\xe7\xff"
        "\xd5\x54\xcb\xbf\x2c\x39\xff\xaf\xa5\x5a\xfe\x65\xc9\xf9\xbf\x96\x6a"
        "\xf9\x97\x25\xe7\xff\xf5\x54\xcb\xbf\x2c\x39\xff\x6f\xa4\x5a\xfe\x65"
        "\xc9\xf9\x7f\x33\xd5\xf2\x2f\x4b\xce\xff\x5b\xa9\x96\x7f\x59\x72\xfe"
        "\xdf\x4e\xb5\xfc\xcb\x92\xf3\x7f\x3d\xd5\xf2\x2f\xcb\x83\xcf\xff\x37"
        "\x33\xe5\x99\xff\xfc\x3d\x62\x06\xba\x61\xc6\xcc\xb8\x99\xae\x7f\x33"
        "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6d\xd3\xb8\x9c\xb8\xeb"
        "\x6d\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\xfe\xcf\x0e\x1c\x08\x00\x00\x00\x00\x00"
        "\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
        "\x55\x55\x15\x76\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa"
        "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x77\x77"
        "\x31\x72\x95\xf7\x19\xc0\xcf\x7e\xd9\x6b\x43\x82\x1b\x08\x21\xc4\x09"
        "\x6b\x63\xc0\xc0\xe2\xdd\xf5\x17\x38\xc4\x60\x92\x90\x52\xd2\xa6\x94"
        "\x84\xb4\x69\x49\x8d\x63\xaf\x8d\x13\x7f\xd5\xbb\x4e\x00\xa1\xb2\x14"
        "\xda\x12\x05\xa9\x48\xed\x05\xbd\x68\x9a\x44\x69\x14\xa9\xad\x40\x51"
        "\xa4\xa6\x12\x8d\x90\x1a\xa9\xbd\x2b\x57\x89\xb8\x89\x5a\x89\x0b\x4b"
        "\x85\xca\x41\x49\xa5\x54\x81\xad\xce\x9c\xf7\x7d\x77\x66\x76\x76\x66"
        "\xfd\xb1\x78\xce\x39\xbf\x1f\xc2\x7f\xef\xcc\x99\x99\x77\xce\x9c\x99"
        "\xdd\x67\xad\x67\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x66\x1b\x3e\x36"
        "\xfd\xe7\x03\x59\x96\xe5\xff\x37\xfe\x58\x97\x65\x97\xe6\x7f\x5f\x93"
        "\xed\xc9\xbf\x9c\xdb\x79\xb1\x57\x08\x00\x00\x00\x9c\xaf\xb7\x1a\x7f"
        "\xfe\xc3\x65\xe9\x84\x3d\xcb\xb8\x50\xd3\x36\xff\xf6\xa1\xff\xf8\xfe"
        "\xfc\xfc\xfc\x7c\xf6\x85\x37\x4f\xbf\xfd\x97\xf3\xf3\xe9\x8c\xb1\x2c"
        "\x1b\x5a\x9d\x65\x8d\xf3\xa2\x7f\xff\xe5\x2f\xe6\x9b\xb7\x09\x9e\xca"
        "\x46\x07\x06\x9b\xbe\x1e\xec\x71\xf3\x43\x3d\xce\x1f\xee\x71\xfe\x48"
        "\x8f\xf3\x57\xf5\x38\x7f\x75\x8f\xf3\x47\x7b\x9c\xbf\x68\x07\x2c\xb2"
        "\xa6\xf8\x7d\x4c\xe3\xca\x36\x35\xfe\xba\xae\xd8\xa5\xd9\x15\xd9\x48"
        "\xe3\xbc\x4d\x1d\x2e\xf5\xd4\xc0\xea\xc1\xc1\xf8\xbb\x9c\x86\x81\xc6"
        "\x65\xe6\x47\x0e\x66\x87\xb3\x23\xd9\x74\x36\xb9\xe8\x32\x03\x8d\xff"
        "\xb2\xec\xa5\x0d\xf9\x6d\xdd\x93\xc5\xdb\x1a\x6c\xba\xad\xf5\x59\x96"
        "\x9d\xf9\xd9\xe3\xfb\xe3\x1a\x06\xc2\x3e\xde\x94\xb5\xdc\x58\x43\xf3"
        "\x63\xf7\xc6\x5d\xd9\xd8\x9b\x3f\x7b\x7c\xff\x77\x66\x5f\x7f\x7f\xa7"
        "\xd9\x73\x37\x2c\x5a\x69\x96\x6d\xde\x98\xaf\xf3\xe9\x2c\x5b\xf8\x75"
        "\x55\x36\x90\xad\x4e\xfb\x24\xae\x73\xb0\x69\x9d\xeb\x3b\xac\x73\xa8"
        "\x65\x9d\x03\x8d\xcb\xe5\x7f\x6f\x5f\xe7\x99\x65\xae\x33\xde\xef\xd1"
        "\xb0\xce\x57\xba\xac\x73\x7d\x38\xed\x91\x6b\xb3\x2c\x9b\xcb\x96\xdc"
        "\xa6\xdd\x53\xd9\x60\xb6\xb6\xed\x56\xd3\xfe\x1e\x2d\x8e\x88\xfc\x3a"
        "\xf2\x87\xf2\x3d\xd9\xf0\x59\x1d\x27\x1b\x96\x71\x9c\xe4\x97\x79\xed"
        "\xda\xd6\xe3\xa4\xfd\x98\x8c\xfb\x7f\x43\xd8\x27\xc3\x4b\xac\xa1\xf9"
        "\xe1\x78\xe3\xc9\x55\x8b\xf6\xfb\xb9\x1e\x27\xf9\xbd\xee\x87\x63\x35"
        "\xbf\xee\xfb\xf2\x1b\x1d\x1d\x6d\xfe\xd5\x6a\xcb\xb1\x9a\x6f\xf3\xf8"
        "\x75\x4b\x1f\x03\x1d\x1f\xbb\x0e\xc7\x40\x3a\x96\x9b\x8e\x81\x8d\xbd"
        "\x8e\x81\xc1\x55\x43\x8d\x63\x60\x70\x61\xcd\x1b\x5b\x8e\x81\xa9\x45"
        "\x97\x19\xcc\x06\x1a\xb7\x75\xfa\xba\xee\xc7\xc0\xc4\xec\xd1\x13\x13"
        "\x33\x8f\x3e\x76\xcb\xe1\xa3\xfb\x0e\x4d\x1f\x9a\x3e\x36\x35\xb9\x73"
        "\xfb\xb6\x1d\xdb\xb7\xed\xd8\x31\x71\xf0\xf0\x91\xe9\xc9\xe2\xcf\xb3"
        "\xdb\xa5\x25\xb2\x36\x1b\x4c\xc7\xe0\xc6\xf0\x5a\x13\x8f\xc1\x1b\xda"
        "\xb6\x6d\x3e\x24\xe7\xbf\x79\xe1\x9e\x07\xa3\x7d\xf2\x3c\xc8\xef\xfb"
        "\x67\xae\xcf\x17\x74\xe9\x60\xb6\xc4\x31\x9e\x6f\xf3\xf4\xe6\xf3\x7f"
        "\x1e\xa4\xef\xfb\x4d\xcf\x83\xe1\xa6\xe7\x41\xc7\xd7\xd4\x0e\xcf\x83"
        "\xe1\x65\x3c\x0f\xf2\x6d\xce\x6c\x5e\xde\xf7\xcc\xe1\xa6\xff\x3b\xad"
        "\x61\xa5\x5e\x0b\xd7\x35\x1d\x03\x17\xf3\xfb\x61\x7e\x9b\x0f\xde\xb8"
        "\xf4\x6b\xe1\xfa\xb0\xae\x67\x6e\x3a\xdb\xef\x87\x43\x8b\x8e\x81\x78"
        "\xb7\x06\xc2\x73\x2f\x3f\x25\xfd\xbc\x37\x7a\x5b\xd8\x2f\x8b\x8f\x8b"
        "\xab\xf3\x33\x2e\x59\x95\x9d\x9a\x99\x3e\xb9\xe5\x91\x7d\xb3\xb3\x27"
        "\xa7\xb2\x30\xde\x11\x97\x37\x3d\x56\xed\xc7\xcb\xda\xa6\xfb\x94\x2d"
        "\x3a\x5e\x06\xcf\xfa\x78\xd9\xf3\xf7\xbf\xba\xfe\xea\x0e\xa7\xaf\x0b"
        "\xfb\x6a\xf4\xe6\xee\x8f\x55\xbe\xcd\xf6\xf1\xee\x8f\x55\xe3\xd5\xbd"
        "\x75\x7f\xae\xca\x8a\xfd\xd9\x72\xea\xd6\x2c\x8c\x0b\xec\x9d\xde\x9f"
        "\x9d\xbe\x9b\xe5\xfb\x33\x65\x89\x2e\xfb\x33\xdf\xe6\xe9\x5b\xce\xff"
        "\x67\xc1\x94\x4b\x9a\x5e\xff\x46\x7a\xbd\xfe\x0d\x8d\x0c\x17\xaf\x7f"
        "\x43\x69\x6f\x8c\xb4\xbc\xfe\x2d\x7e\x68\x86\x1a\x2b\xcb\xb2\x33\xb7"
        "\x2c\xef\xf5\x6f\x24\xfc\xff\x4e\xbf\xfe\x5d\xd1\x27\xaf\x7f\xf9\xbe"
        "\x7a\x70\x4b\xf7\x63\x20\xdf\xe6\x99\x89\xb3\x3d\x06\x86\xbb\xbe\xfe"
        "\x5d\x1b\xe6\x40\x58\xcf\x8d\x21\x31\x8c\x36\xe5\xfe\xb7\x1b\xe7\xcf"
        "\x15\x87\x69\xd3\x63\xd9\xf3\xb8\x19\x1e\x1e\x09\xc7\xcd\x70\xbc\xc5"
        "\xd6\xe3\x66\xdb\xa2\xcb\xe4\xd7\x96\xdf\xf6\xe6\xc9\x73\x3b\x6e\x36"
        "\x5f\xdb\xfa\x58\xb5\xfc\xdc\x52\xc1\xe3\x26\xdf\x57\x7f\x35\xd9\xfd"
        "\xb8\xc9\xb7\x79\x79\xea\xfc\x5f\x3b\xd6\xc4\xbf\x36\xbd\x76\xac\xea"
        "\x75\x0c\x8c\x0c\xad\xca\xd7\x3b\x92\x0e\x82\xe2\xf5\x6e\x7e\x4d\x3c"
        "\x06\xb6\x64\xfb\xb3\xe3\xd9\x91\xec\x40\xba\x4c\xfe\x28\xe7\xb7\x35"
        "\xbe\x75\x79\xc7\xc0\xaa\xf0\xff\x3b\xfd\xda\x71\x55\x9f\x1c\x03\xf9"
        "\xbe\x7a\x7e\x6b\xf7\x63\x20\xdf\xe6\x47\xdb\x2e\xec\xcf\x4e\x9b\xc3"
        "\x29\x69\x9b\xa6\x9f\x9d\xda\x7f\xbf\xb0\x54\xe6\xbf\x7a\x78\xe1\xfa"
        "\xda\x77\xdb\x85\xce\xfc\xf9\x3a\x3f\xfe\xe3\x4f\xa5\xd3\x3a\x65\x88"
        "\x7c\x9b\xd7\xb7\x9f\x6d\xce\xe8\xbe\x9f\x6e\x0e\xa7\x5c\xd2\x61\x3f"
        "\xb5\x3f\x7f\x96\x3a\xa6\x0f\x64\xef\xcc\x7e\xba\x2a\xac\xf3\xc8\x8e"
        "\xee\xbf\x9b\xca\xb7\xb9\x62\xe7\x32\x8f\xa7\x3d\x59\x96\xbd\x3a\xf5"
        "\x6a\xe3\xf7\x5d\xe1\xf7\xbb\xdf\x3b\xf5\xe3\xef\xb7\xfc\xde\xb7\xd3"
        "\xef\x94\x5f\x9d\x7a\xf5\xde\x89\xfb\x7f\x72\x36\xeb\x07\x00\xe0\xdc"
        "\xbd\xdd\xf8\x73\x6e\x55\xf1\xb3\x66\xd3\xbf\x58\x2f\xe7\xdf\xff\x01"
        "\x00\x00\x80\x52\x88\xb9\x7f\x30\xcc\x44\xfe\x07\x00\x00\x80\xca\x88"
        "\xb9\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x38\xcc\xa4"
        "\x26\xf9\xff\xe1\xdb\x76\xbd\xf0\xd6\x13\x59\x7a\x37\xc0\xf9\x20\x9e"
        "\x1f\x77\xc3\x7d\x77\x14\xdb\xc5\x8e\xf7\x5c\xf8\x7a\x6c\x7e\x41\x7e"
        "\xfa\x47\xbf\x3d\xf2\xc2\x57\x9f\x58\xde\x6d\x0f\x66\x59\xf6\xab\x7b"
        "\x3f\xd0\x71\xfb\x87\xef\x88\xeb\x2a\x9c\x88\xeb\xfc\x70\xeb\xe9\x8b"
        "\x5c\x75\xcd\xb2\x6e\xff\xa1\x07\x16\xb6\x6b\x7e\xff\x84\x33\xbb\x8a"
        "\xeb\x8f\xf7\x67\xb9\x87\x41\xec\x2a\xbf\x34\xb1\xb5\x71\xbd\x63\x8f"
        "\x4e\x35\xe6\xcb\xf7\x66\x8d\x79\xff\xdc\x33\x4f\x15\xd7\x5f\x7c\x1d"
        "\xb7\x3f\xbd\xad\xd8\xfe\x6f\xc2\x9b\x96\xec\x39\x38\xd0\x72\xf9\xcd"
        "\x61\x3d\x9b\xc2\x1c\x0b\xef\x29\x73\xdf\x9e\x85\xfd\x90\xcf\x78\xb9"
        "\x17\xd6\x7f\xe8\x5f\x2f\xff\xec\xc2\xed\xc5\xcb\x0d\x6c\x7c\x77\xe3"
        "\x6e\x3e\xff\xc7\xc5\xf5\xc6\xf7\x88\x7a\xee\xf2\x62\xfb\x78\xbf\x97"
        "\x5a\xff\xbf\x7c\xed\xbb\x2f\xe4\xdb\x3f\x72\x5d\xe7\xf5\x3f\x31\xd8"
        "\x79\xfd\xa7\xc3\xf5\xbe\x16\xe6\x2f\x77\x17\xdb\x37\xef\xf3\xaf\x36"
        "\xad\xff\x4f\xc3\xfa\xe3\xed\xc5\xcb\x6d\xf9\xd6\x0f\x3b\xae\xff\xc5"
        "\xf7\x15\xdb\xbf\x18\x8e\x8b\x6f\x84\xd9\xbe\xfe\xbb\xfe\xe2\x83\x6f"
        "\x75\x7a\xbc\xe2\xed\xec\xb9\xbd\xb8\x5c\xbc\xfd\xc9\xff\xdd\xde\xb8"
        "\x5c\xbc\xbe\x78\xfd\xed\xeb\x1f\x7d\x62\xaa\x65\x7f\xb4\x5f\xff\xcb"
        "\x6f\x16\xd7\xb3\xfb\xcb\x3f\x1f\x6a\xde\x3e\x9e\x1e\x6f\x27\x7a\xe8"
        "\xf6\xd6\xe3\x7b\x20\x3c\xbe\x2d\x3d\xf2\x2c\xcb\xbe\xfb\x67\x59\xcb"
        "\x7e\xce\x3e\x52\x5c\xee\x9f\xdb\xd6\x1f\xaf\xef\xc4\xed\x9d\xd7\x7f"
        "\x73\xdb\x3a\x4f\x0c\x5c\xd3\xb8\xfc\xc2\xfd\x59\xd7\x72\xbf\xbe\xfe"
        "\x77\x5b\x3b\xde\xdf\xb8\x9e\x3d\xff\xb8\xae\xe5\xfe\x3c\x77\x77\xd8"
        "\x7f\x6f\x4e\xfc\x28\xbf\xde\xd3\xf7\x87\xe3\x31\x9c\xff\x7f\xaf\x14"
        "\xd7\xd7\xfe\x5e\xa6\x2f\xde\xdd\xfa\x7a\x13\xb7\xff\xc6\xba\xe2\x79"
        "\x1b\xaf\x6f\xa2\x6d\xfd\xcf\xb5\xad\x7f\xee\x9a\x7c\xdf\xf5\x5e\xff"
        "\x3d\x6f\x16\xeb\x7f\xf1\xce\xd5\x2d\xeb\xdf\xf3\x89\x70\x3c\xdd\x53"
        "\xcc\x5e\xeb\x3f\xf4\xb7\x97\xb5\x5c\xfe\x9b\xdf\x29\x1e\x8f\x93\x5f"
        "\x19\x3f\x76\x7c\xe6\xd4\xe1\x03\x4d\x7b\xb5\xf9\x79\xbc\x7a\x74\xcd"
        "\xda\x4b\x2e\x7d\xd7\xbb\x2f\x0b\xaf\xa5\xed\x5f\xef\x3d\x3e\xfb\xf0"
        "\xf4\xc9\xb1\xc9\xb1\xc9\x2c\x1b\x2b\xe1\x5b\x06\xae\xf4\xfa\xbf\x15"
        "\xe6\xff\x14\x63\xee\xc2\xdf\x42\xe1\x27\x3f\x2f\x8e\xbb\x67\x3f\x59"
        "\x7c\xdf\xba\xe1\x17\xc5\xd7\xcf\x85\xd3\x1f\x0a\x8f\x67\xfc\xfe\xf8"
        "\xf5\xbf\x1e\x69\x39\x5e\xdb\x1f\xf7\xb9\x3b\x8b\x79\xbe\xeb\xbf\x29"
        "\xac\x63\xb9\xde\xf7\xb5\xff\xba\x66\x59\x1b\x9e\xfe\xfc\x4b\xa7\xfe"
        "\xe9\x4f\x5e\x6f\xff\xb9\x20\xde\x9f\x13\xef\x1d\x6d\xdc\xbf\xe7\x37"
        "\x5c\xd9\x38\x6f\xe0\xe5\xe2\xfc\xf6\xd7\xab\x5e\xfe\xf3\xbd\xad\xcf"
        "\xeb\x9f\x0e\x4f\x36\xe6\x0f\xc2\x7e\x9d\x0f\xef\xcc\xbc\xf1\xca\xe2"
        "\xf6\xda\xaf\x3f\xbe\x37\xc9\xb3\x9f\x2e\x9e\xbf\xf1\x27\xb9\x78\xf9"
        "\xac\xed\xfd\x44\xd6\x0d\xb5\xde\x8f\xf3\x5d\xff\x4f\xc3\xcf\x31\x3f"
        "\xbc\xaa\xf5\xf5\x2f\x1e\x1f\x3f\x78\xa2\xed\xdd\x9c\xd7\x65\x03\xf9"
        "\x12\xe6\xc2\xeb\x43\x36\x57\x9c\x1f\xb7\x8a\xfb\xfb\xd9\x33\x57\x76"
        "\xbc\xbd\xf8\x3e\x3c\xd9\xdc\xfb\xcf\x66\x99\x4b\x9a\x79\x74\x66\xe2"
        "\xc8\xe1\x63\xa7\x1e\x99\x98\x9d\x9e\x99\x9d\x98\x79\xf4\xb1\xbd\x47"
        "\x8f\x9f\x3a\x36\xbb\xb7\xf1\xde\xa5\x7b\xbf\xd8\xeb\xf2\x0b\xcf\xef"
        "\xb5\x8d\xe7\xf7\x81\xe9\x9d\xdb\xb3\xc6\xb3\xfd\x78\x31\x56\xd8\xc5"
        "\x5e\xff\x89\x07\xf6\x1f\xb8\x75\xf2\xfa\x03\xd3\x07\xf7\x9d\x3a\x38"
        "\xfb\xc0\x89\xe9\x93\x87\xf6\xcf\xcc\xec\x9f\x3e\x30\x73\xfd\xbe\x83"
        "\x07\xa7\xbf\xd2\xeb\xf2\x87\x0f\xec\x9e\xda\xba\x6b\xdb\xad\x5b\xc7"
        "\x0f\x1d\x3e\xb0\xfb\xb6\x5d\xbb\xb6\xed\x1a\x3f\x7c\xec\x78\xbe\x8c"
        "\x62\x51\x3d\xec\x9c\xfc\xd2\xf8\xb1\x93\x7b\x1b\x17\x99\xd9\xbd\x7d"
        "\xd7\xd4\x8e\x1d\xdb\x27\xc7\x8f\x1e\x3f\x30\xbd\xfb\xd6\xc9\xc9\xf1"
        "\x53\xbd\x2e\xdf\xf8\xde\x34\x9e\x5f\xfa\xcb\xe3\x27\xa7\x8f\xec\x9b"
        "\x3d\x7c\x74\x7a\x7c\xe6\xf0\x63\xd3\xbb\xa7\x76\xed\xdc\xb9\xb5\xe7"
        "\xbb\x3f\x1e\x3d\x71\x70\x66\x6c\xe2\xe4\xa9\x63\x13\xa7\x66\xa6\x4f"
        "\x4e\x14\xf7\x65\x6c\xb6\x71\x72\xfe\xbd\xaf\xd7\xe5\xa9\x87\x99\xe3"
        "\xe1\xf5\xae\xcd\x40\xf8\xe9\xfc\x73\x37\xef\x4c\xef\x8f\x9b\xfb\xf6"
        "\x93\x4b\x5e\x55\xb1\x49\xeb\x8f\xa7\xd9\x1b\xe1\xbd\xa0\xe2\xf7\xb7"
        "\x5e\x5f\xc7\xdc\x3f\x12\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73"
        "\x7f\x78\xe3\xff\x85\x33\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x57\x87"
        "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x17\xc9\x7f\x34\x7d\xfc\x7b"
        "\x5d\xf2\xff\x85\xea\xff\x3f\xa9\xff\xdf\xa0\xff\xaf\xff\x9f\xe9\xff"
        "\x27\xfa\xff\xfa\xff\x99\xfe\xbf\xfe\x7f\x0f\xfa\xff\xfa\xff\x65\x5e"
        "\xbf\xfe\xbf\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe4\xfe\x6c\x4d\x96\xf9\xf7"
        "\x7f\x00\x00\x00\xa8\xa8\x98\xfb\xd7\x86\x99\xc8\xff\x00\x00\x00\x50"
        "\x19\x31\xf7\x5f\x12\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x69"
        "\x98\x49\x4d\xf2\xbf\xcf\xff\xd7\xff\xd7\xff\xef\xd6\xff\x8f\xdb\xea"
        "\xff\x67\xfa\xff\xfd\xd0\xff\xdf\xf4\xdf\xfa\xff\x8b\xe8\xff\xeb\xff"
        "\x67\xfa\xff\xe7\xec\x62\xf7\xe7\xcb\xbe\xfe\x3e\xec\xff\xaf\xd1\xff"
        "\xa7\xdf\xf4\x5b\xff\x3f\xe6\xfe\x77\x85\x99\xd4\x24\xff\x03\x00\x00"
        "\x40\x1d\xc4\xdc\xff\xee\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe"
        "\xcb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xd7\x85\x99\xd4\x24"
        "\xff\xeb\xff\xeb\xff\xeb\xff\xfb\xfc\x7f\xfd\xff\xd2\xf4\xff\x7d\xfe"
        "\x7f\x07\xfa\xff\xfa\xff\x99\xfe\xff\x39\xbb\xd8\xfd\xf9\xb2\xaf\xbf"
        "\x0f\xfb\xff\x3e\xff\x9f\xbe\xd3\x6f\xfd\xff\x98\xfb\x7f\x2d\xcc\xa4"
        "\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xf7\x84\x99\xc8\xff\x00\x00"
        "\x00\x50\x19\x31\xf7\x5f\x1e\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc"
        "\x7f\x45\x98\x49\x4d\xf2\x7f\x3d\xfb\xff\xaf\x65\x59\xa6\xff\x9f\xe9"
        "\xff\xeb\xff\xb7\xad\x53\xff\x5f\xff\x7f\x25\xe8\xff\xeb\xff\x77\xa3"
        "\xff\xaf\xff\x5f\xe6\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff\x63\xee"
        "\x7f\x6f\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x57\x86\x99"
        "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x2f\xcc\x44\xfe\x07\x00\x00"
        "\x80\xca\x88\xb9\xff\xaa\x30\x93\x9a\xe4\xff\x7a\xf6\xff\x7d\xfe\xbf"
        "\xfe\x7f\x41\xff\xbf\x75\x9d\xfa\xff\xfa\xff\x2b\x41\xff\x5f\xff\xbf"
        "\x1b\xfd\x7f\xfd\xff\x32\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff\x1f"
        "\x73\xff\xfb\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xbf\x3a"
        "\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x03\x61\x26\xf2\x3f\x00"
        "\x00\x00\x54\x46\xcc\xfd\xeb\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5"
        "\xff\xf5\xff\xf5\xff\xf5\xff\x57\x52\xb9\xfa\xff\x83\x4b\x9e\xa3\xff"
        "\x5f\xd0\xff\x6f\x75\xe1\xfa\xff\x73\x0b\x0b\xd0\xff\x2f\xcd\xfa\xf5"
        "\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x31\xf7\x7f\x30\xcc\xa4\x26\xf9\x1f"
        "\x00\x00\x00\xea\x20\xe6\xfe\x0f\x85\x99\xc8\xff\x00\x00\x00\x50\x19"
        "\x31\xf7\x5f\x13\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x16\x66"
        "\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x92"
        "\xca\xd5\xff\x5f\x9a\xfe\x7f\x41\xff\xbf\x95\xcf\xff\xd7\xff\xd7\xff"
        "\xd7\xff\xa7\xbb\x7e\xeb\xff\xc7\xdc\xbf\x21\xcc\xa4\x26\xf9\x1f\x00"
        "\x00\x00\xea\x20\xe6\xfe\x8d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc"
        "\xfd\xd7\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x6f\x0a\x33\xa9"
        "\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x49\xfa"
        "\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff\xfa\xff\xf4\xd6"
        "\x6f\xfd\xff\x98\xfb\xaf\x0b\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88"
        "\xb9\xff\xfa\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x1b\xc2\x4c"
        "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x37\x87\x99\xd4\x24\xff\xeb\xff"
        "\xeb\xff\xeb\xff\x97\xb8\xff\x3f\xa4\xff\x9f\xe9\xff\xf7\x3d\xfd\x7f"
        "\xfd\xff\x6e\xf4\xff\xf5\xff\xcb\xbc\x7e\xfd\x7f\xfd\x7f\x7a\xeb\xb7"
        "\xfe\x7f\xcc\xfd\x37\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc"
        "\x7f\x53\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xcd\x61\x26\xf2"
        "\x3f\x00\x00\x00\x54\x46\xcc\xfd\xe3\x61\x26\x35\xc9\xff\xfa\xff\xfa"
        "\xff\xfa\xff\x25\xee\xff\xfb\xfc\xff\x96\xf5\xeb\xff\xf7\x27\xfd\x7f"
        "\xfd\xff\x6e\xf4\xff\xf5\xff\xcb\xbc\x7e\xfd\x7f\xfd\x7f\x7a\xeb\xb7"
        "\xfe\x7f\xcc\xfd\xb7\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc"
        "\xbf\x25\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x22\xcc\x44\xfe"
        "\x07\x00\x00\x80\xca\x88\xb9\x7f\x32\xcc\xa4\x26\xf9\x5f\xff\x5f\xff"
        "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x25\xe9\xff\xeb\xff\x77\xa3\xff"
        "\xaf\xff\x5f\xe6\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff\x63\xee\x9f"
        "\x0a\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\x7f\x6b\x98\x89\xfc"
        "\x0f\x00\x00\x00\x95\x11\x73\xff\xb6\x30\x13\xf9\x1f\x00\x00\x00\x2a"
        "\x23\xe6\xfe\xed\x61\x26\x35\xc9\xff\x25\xe9\xff\x6f\x49\x05\x28\xfd"
        "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x52\xd1\xff\xd7\xff\xef\x46\xff"
        "\x5f\xff\xbf\xcc\xeb\xd7\xff\xd7\xff\xa7\xd5\x60\x87\xd3\xfa\xad\xff"
        "\x1f\x73\xff\x8e\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x77"
        "\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x1a\x66\x22\xff\x03"
        "\x00\x00\x40\x65\xc4\xdc\x7f\x5b\x98\x49\x4d\xf2\x7f\x49\xfa\xff\x3e"
        "\xff\x5f\xff\x5f\xff\xbf\x89\xfe\xbf\xfe\x7f\x99\xe8\xff\xeb\xff\x77"
        "\xa3\xff\xaf\xff\x5f\xe6\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff\x63"
        "\xee\xdf\x15\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x87\xc3"
        "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x6f\x0f\x33\x91\xff\x01\x00"
        "\x00\xa0\x54\x3a\x7d\x0e\x61\x14\x73\xff\x47\xc2\x4c\x6a\x92\xff\xf5"
        "\xff\xab\xde\xff\x9f\x5f\xad\xff\xaf\xff\xaf\xff\xdf\x7d\xfd\xfa\xff"
        "\x2b\x4b\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x32\xaf\x5f\xff\x5f\xff"
        "\x9f\xde\xfa\xad\xff\x1f\x73\xff\xee\x30\x93\x9a\xe4\x7f\x00\x00\x00"
        "\xa8\x83\x98\xfb\xef\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf"
        "\x33\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x4f\x98\x49\x4d\xf2"
        "\xbf\xfe\x7f\xd5\xfb\xff\x3e\xff\x5f\xff\x5f\xff\xbf\xd7\xfa\xf5\xff"
        "\x57\x96\xfe\xbf\xfe\x7f\x37\xfa\xff\xe5\xec\xff\x87\x1f\x5b\xf4\xff"
        "\xfb\xa8\xff\x9f\x1f\x43\xfa\xff\xf4\xa3\x7e\xeb\xff\xc7\xdc\x7f\x57"
        "\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x1f\x0d\x33\x91\xff"
        "\x01\x00\x00\xa0\x32\x62\xee\xff\x58\x98\x89\xfc\x0f\x00\x00\x00\x95"
        "\x11\x73\xff\xc7\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff"
        "\xf5\xff\xf5\xff\x57\x92\xfe\xff\x8a\xf5\xff\x1b\x2f\x85\xfa\xff\x05"
        "\xfd\xff\x73\x73\xb1\xfb\xf3\x65\x5f\x7f\x3f\xf5\xff\x7d\xfe\x3f\xfd"
        "\xaa\xdf\xfa\xff\x31\xf7\xdf\x1d\x66\x52\x93\xfc\x0f\x00\x00\x00\x75"
        "\x10\x73\xff\x27\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x3d"
        "\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x9e\x30\x93\x9a\xe4\x7f"
        "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x95\xa4\xff\xef\xf3"
        "\xff\xbb\xd1\xff\xd7\xff\x2f\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\xdf\xfa"
        "\xff\x31\xf7\xff\x46\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd"
        "\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x32\xcc\x44\xfe"
        "\x07\x00\x00\x80\x92\x59\xb5\xe4\x39\x31\xf7\xff\x66\x98\x49\x4d\xf2"
        "\x7f\xf9\xfa\xff\x63\xa5\xec\xff\x0f\xa6\xeb\xd7\xff\xd7\xff\xd7\xff"
        "\xd7\xff\xd7\xff\xbf\x90\xf4\xff\xf5\xff\x33\xfd\xff\x73\x76\xb1\xfb"
        "\xf3\x65\x5f\xbf\xfe\xbf\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe\xdf\x0a"
        "\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x53\x61\x26\xf2\x3f"
        "\x00\x00\x00\x54\x46\xcc\xfd\xbf\x1d\x66\x22\xff\x03\x00\x00\x40\x65"
        "\xc4\xdc\x7f\x5f\x98\x49\x4d\xf2\xff\x85\xee\xff\xb7\x5f\xbe\x1b\x9f"
        "\xff\xaf\xff\x9f\xe9\xff\xeb\xff\xeb\xff\xeb\xff\x9f\x27\xfd\x7f\xfd"
        "\xff\x4c\xff\xff\x9c\x5d\xec\xfe\x7c\xd9\xd7\xaf\xff\xaf\xff\x4f\x6f"
        "\xfd\xd6\xff\x8f\xb9\xff\x77\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e"
        "\x62\xee\xbf\x3f\xcc\x44\xfe\x07\x00\x00\x80\x3e\xf5\xf0\x59\x5f\x22"
        "\xe6\xfe\x4f\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x26\xcc"
        "\xa4\x26\xf9\xbf\x7c\x9f\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff"
        "\x5f\x26\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff\xfa"
        "\xff\xf4\xd6\x6f\xfd\xff\x98\xfb\x1f\x08\x33\xa9\x49\xfe\x07\x00\x00"
        "\x80\x3a\x88\xb9\xff\xb3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd"
        "\xbf\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x7b\x61\x26\x35"
        "\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x2b\x49\xff"
        "\x7f\x71\xff\x3f\x7f\x0d\xd3\xff\x2f\xe8\xff\xeb\xff\x97\x79\xfd\xfa"
        "\xff\xfa\xff\xf4\xd6\x6f\xfd\xff\x98\xfb\x3f\x17\x66\x52\x93\xfc\x0f"
        "\x00\x00\x00\x75\x10\x73\xff\xef\x87\x99\xc8\xff\x00\x00\x00\x50\x19"
        "\x31\xf7\xff\x41\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x83\x61"
        "\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x2b"
        "\x49\xff\xdf\xe7\xff\x77\xa3\xff\xaf\xff\x5f\xe6\xf5\xeb\xff\xeb\xff"
        "\xd3\x5b\xbf\xf5\xff\x63\xee\xff\x7c\x98\x49\x4d\xf2\x3f\x00\x00\x00"
        "\xd4\x41\xcc\xfd\x7f\x18\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf"
        "\x37\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xa1\x30\x93\x9a\xe4"
        "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x95\xa4\xff\xaf"
        "\xff\xdf\x8d\xfe\xbf\xfe\x7f\x99\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6"
        "\xff\x8f\xb9\x7f\x5f\x98\xc9\x9e\xd6\x9b\x01\x00\x00\x00\xca\x2b\xe6"
        "\xfe\x2f\x84\x99\xd4\xe4\xdf\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf\x1f"
        "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x20\xcc\xa4\x26\xf9\x5f"
        "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x25\xe9\xff\xeb\xff"
        "\x77\xa3\xff\xaf\xff\x5f\xe6\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff"
        "\x63\xee\x9f\x0e\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x60"
        "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xa1\x30\x13\xf9\x1f\x00"
        "\x00\x00\x2a\x23\xe6\xfe\x87\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5"
        "\xff\x6b\xdb\xff\x7f\xe5\x7b\x6d\xeb\xd4\xff\xd7\xff\x5f\x09\xfa\xff"
        "\xfa\xff\xdd\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f"
        "\xfd\xff\x98\xfb\x0f\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc"
        "\xff\xc5\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x2f\x85\x99\xc8"
        "\xff\x00\x00\x00\x50\x19\x31\xf7\x1f\x09\x33\xa9\x49\xfe\xd7\xff\xd7"
        "\xff\xd7\xff\xaf\x6d\xff\x7f\x79\x9f\xff\xbf\x66\xe1\x76\xf5\xff\xf5"
        "\xff\xcf\x85\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x65\x5e\xbf\xfe\xbf"
        "\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe\xa3\x61\x26\x35\xc9\xff\x00\x00"
        "\x00\x50\x07\x31\xf7\x1f\x0b\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee"
        "\x3f\x1e\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x22\xcc\xa4\x26"
        "\xf9\x5f\xff\xff\xec\xfa\xff\x03\x4b\x74\x03\xf5\xff\x3b\xaf\x5f\xff"
        "\xbf\x02\xfd\xff\x26\xfa\xff\xfa\xff\xe7\x42\xff\x5f\xff\xbf\x1b\xfd"
        "\x7f\xfd\xff\x32\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff\x1f\x73\xff"
        "\x1f\x85\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x32\xcc\x44"
        "\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x26\xcc\x44\xfe\x07\x00\x00\x80"
        "\xca\x88\xb9\x7f\x36\xcc\xa4\x26\xf9\x5f\xff\xdf\xe7\xff\xeb\xff\xeb"
        "\xff\xeb\xff\xeb\xff\xaf\x24\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\xcb"
        "\xbc\x7e\xfd\x7f\xfd\x7f\x7a\xeb\xb7\xfe\x7f\xcc\xfd\xa7\xc2\x4c\x6a"
        "\x92\xff\x01\x00\x00\xa0\x0e\xfe\x9f\xbd\xfb\xcc\xd5\xeb\xaa\xe2\x38"
        "\xfc\xe2\x60\x70\x84\x98\x43\xa6\xc0\x08\x18\x02\x63\x40\x62\x0c\xf4"
        "\x92\xd0\x43\x87\xd0\x7b\x0b\xbd\x99\x0e\xa1\xf7\xde\x7b\xef\x3d\x10"
        "\x7a\x95\x40\xb9\x5e\x6b\x05\x3b\xbe\xe7\x5c\xdb\xf7\xf5\xdd\x67\xaf"
        "\xe7\xf9\x90\x05\x37\x48\xd9\x51\xcc\x87\xbf\x9c\x9f\x4e\xee\xfe\xfb"
        "\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x03\xe2\x16\xfb\x1f\x00"
        "\x00\x00\xa6\x91\xbb\xff\x81\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff"
        "\xf5\xff\xfa\x7f\xfd\xff\x3e\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d"
        "\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x07\xc5\x2d\x4d\xf6"
        "\x3f\x00\x00\x00\x74\x90\xbb\xff\xc1\x71\x8b\xfd\x0f\x00\x00\x00\xd3"
        "\xc8\xdd\xff\x90\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x68\xdc"
        "\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4f\xfa"
        "\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59\x37\x5a"
        "\xff\x9f\xbb\xff\x61\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f"
        "\x78\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x22\x6e\xb1\xff\x01"
        "\x00\x00\x60\x1a\xb9\xfb\xaf\x8f\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff"
        "\xbf\xc1\xfe\xff\xae\xfa\x7f\xfd\xff\x76\xe8\xff\xf5\xff\x4b\xf4\xff"
        "\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x1b\xe2"
        "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xc8\xb8\xc5\xfe\x07\x00"
        "\x00\x80\x69\xe4\xee\x7f\x54\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7"
        "\x3f\x3a\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xff\x06\xfb\x7f\xdf\xff"
        "\xd7\xff\x6f\x88\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xf5\xff"
        "\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\x7f\x4c\xdc\xd2\x64\xff\x03\x00\x00"
        "\x40\x07\xb9\xfb\x1f\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x8f"
        "\x8b\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xc7\xc7\x2d\x4d\xf6\xbf"
        "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfb\xa4\xff\xd7\xff\x2f"
        "\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf\xfe\x9f\x75\x7b\xef\xff\xef\x73"
        "\xe3\xc1\x3d\x6a\xff\x9f\xbb\xff\xc6\xb8\xa5\xc9\xfe\x07\x00\x00\x80"
        "\x0e\x72\xf7\x3f\x21\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x18"
        "\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x4f\x8a\x5b\x9a\xec\x7f\xfd"
        "\xbf\xfe\xff\x8e\xfe\xff\xbf\x77\xd1\xff\xeb\xff\xf5\xff\x77\xfc\x5c"
        "\xff\x7f\x3c\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7"
        "\xff\xb3\x6e\xef\xfd\xff\x4a\xef\x7f\xe1\x7f\xcf\xdd\xff\xe4\xb8\xa5"
        "\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x25\x6e\xb1\xff\x01\x00\x00"
        "\x60\x1a\xb9\xfb\x9f\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x4f"
        "\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\xdf\xf7\xff\xf5\xff\xfa\x7f\xfd\xff"
        "\x3e\xe9\xff\x87\xed\xff\x2f\xfc\xbf\xde\xf9\xf4\xff\x47\xa2\xff\xd7"
        "\xff\x1f\xd6\xff\xdf\xfb\x08\xef\xd7\xff\xd3\xc1\x68\xfd\x7f\xee\xfe"
        "\xa7\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x19\x71\x8b\xfd"
        "\x0f\x00\x00\x00\xd3\xc8\xdd\x7f\x53\xdc\x62\xff\x03\x00\x00\xc0\x34"
        "\x72\xf7\x3f\x33\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\xfc"
        "\xfe\xff\x54\xcb\xfe\xff\xf6\x9f\xe9\xff\xf7\x43\xff\x3f\x6c\xff\xbf"
        "\x4c\xff\x7f\x24\xfa\x7f\xfd\xbf\xef\xff\xeb\xff\x59\x36\x5a\xff\x9f"
        "\xbb\xff\x59\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x76\xdc"
        "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x27\x6e\xb1\xff\x01\x00\x00"
        "\x60\x1a\xb9\xfb\x9f\x1b\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff"
        "\x7f\x45\xdf\xff\xbf\x66\x8e\xfe\xdf\xf7\xff\xf7\x47\xff\xaf\xff\x5f"
        "\xa2\xff\xd7\xff\x6f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7"
        "\x3f\x2f\x6e\x69\xb2\xff\x01\x00\x00\x60\x7a\xa7\x76\xb5\xfb\x9f\x1f"
        "\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x88\x5b\xec\x7f\x00\x00"
        "\x00\x98\x46\xee\xfe\x17\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7"
        "\xff\x5f\x51\xff\x3f\xc9\xf7\xff\xf5\xff\xfb\xa3\xff\xd7\xff\x2f\x39"
        "\x6a\xff\xbf\xd3\xff\xd7\xdf\x8b\xfe\x7f\x9c\xf7\xeb\xff\xf5\xff\xac"
        "\x1b\xad\xff\xcf\xdd\xff\xa2\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72"
        "\xf7\xbf\x38\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x12\xb7\xd8"
        "\xff\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe"
        "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf7\x49\xff\xaf\xff\x5f\xe2\xfb\xff"
        "\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x97\xc5"
        "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xe5\x71\x8b\xfd\x0f\x00"
        "\x00\x00\xd3\xc8\xdd\xff\x8a\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee"
        "\x7f\x65\xdc\x72\xe1\xfe\x3f\x75\x35\x5f\x75\xf5\xe8\xff\xf5\xff\xfa"
        "\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4f\xfa\x7f\xfd\xff\x12\xfd\xff\xc5\xfb"
        "\xff\x33\x87\xfc\xf5\xf4\xff\x63\xbd\x5f\xff\xaf\xff\x67\xdd\x68\xfd"
        "\x7f\xee\xfe\x9b\xe3\x16\xbf\xff\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xaa"
        "\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x75\xdc\x62\xff\x03\x00"
        "\x00\xc0\x34\x72\xf7\xbf\x26\x6e\x69\xb2\xff\x0f\xeb\xff\x6f\xbb\xc7"
        "\xb9\x3f\xaf\xff\x3f\x1a\xfd\xff\xc5\xdf\xaf\xff\xd7\xff\xeb\xff\xf5"
        "\xff\xfa\x7f\xfd\xff\x12\xfd\xbf\xef\xff\x6f\xf9\xfd\xfa\x7f\xfd\x3f"
        "\xeb\x46\xeb\xff\x73\xf7\xbf\x36\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83"
        "\xdc\xfd\xaf\x8b\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xd7\xc7\x2d"
        "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x1b\xe2\x96\x26\xfb\xff\xf8\xbf"
        "\xff\x7f\x9d\xfe\x5f\xff\xaf\xff\x8f\xab\xff\xd7\xff\xeb\xff\xf5\xff"
        "\xfa\xff\x65\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe"
        "\x3f\x77\xff\x1b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xa6"
        "\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x73\xdc\x62\xff\x03\x00"
        "\x00\xc0\x34\x72\xf7\xbf\x25\x6e\x69\xb2\xff\x8f\xbf\xff\xf7\xfd\x7f"
        "\xfd\xff\x25\xf6\xff\xa7\xf4\xff\x49\xff\x1f\xff\x5c\xf5\xff\xfa\xff"
        "\x4b\xa0\xff\xd7\xff\xef\xf4\xff\x97\xed\xa4\xfb\xf9\xad\xbf\x5f\xff"
        "\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\xb3\x07\x53\xaf\xdf\xfe\x07\x00"
        "\x00\x80\x0e\xce\x1e\xfc\xf1\xcc\xee\xad\x71\x8b\xfd\x0f\x00\x00\x00"
        "\xd3\xc8\xdd\xff\xb6\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x7b"
        "\xdc\xd2\x64\xff\xeb\xff\xf5\xff\x27\xde\xff\xfb\xfe\x7f\xd1\xff\xc7"
        "\x3f\x57\xfd\xbf\xfe\xff\x12\xe8\xff\xf5\xff\x3b\xfd\xff\x65\x3b\xe9"
        "\x7e\x7e\xeb\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\x1d\x71"
        "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x67\xdc\x62\xff\x03\x00"
        "\x00\xc0\x34\x62\xf7\x9f\xfb\x97\xdf\xed\x7f\x00\x00\x00\x98\xd2\xbb"
        "\x0e\xfe\x78\x66\xf7\xee\xb8\xa5\xc9\xfe\x6f\xdc\xff\x5f\x77\xa5\xfd"
        "\xff\xb5\xff\xf7\x9f\xf5\xff\x17\x7f\xbf\xfe\xff\x58\xfa\xff\xb3\x17"
        "\xfe\xda\xd3\xff\xeb\xff\xb7\x44\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x6f"
        "\xf9\xfd\xe3\xf4\xff\xf1\x83\xeb\xf5\xff\x8c\x67\xb4\xfe\x3f\x77\xff"
        "\x7b\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xde\xb8\xc5\xfe"
        "\x07\x00\x00\x80\x69\xe4\xee\xbf\x25\x6e\xb1\xff\x01\x00\x00\x60\x1a"
        "\xb9\xfb\xdf\x17\xb7\x34\xd9\xff\x8d\xfb\xff\x49\xbe\xff\x7f\xdf\x5b"
        "\xe3\x05\xfa\xff\x79\xfb\x7f\xdf\xff\x8f\xab\xff\xd7\xff\x5f\x8c\xfe"
        "\x5f\xff\xbf\xd3\xff\x5f\xb6\x93\xee\xe7\xb7\xfe\xfe\x71\xfa\x7f\xdf"
        "\xff\x67\x5c\xa3\xf5\xff\xb9\xfb\xdf\x1f\xb7\x34\xd9\xff\x00\x00\x00"
        "\xd0\x41\xee\xfe\x0f\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x07"
        "\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x43\x71\x4b\x93\xfd\xaf"
        "\xff\xdf\x7a\xff\xef\xfb\xff\xfa\x7f\xfd\xbf\xfe\x7f\x6c\xfa\x7f\xfd"
        "\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f"
        "\xbb\xff\xc3\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x48\xdc"
        "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x34\x6e\xb1\xff\x01\x00\x00"
        "\x60\x1a\xb9\xfb\x3f\x16\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\xbe\xfa\xff"
        "\xdb\xff\x22\xfa\xff\x26\xfd\xff\x0d\xfa\xff\x9d\xfe\xff\x50\xfa\x7f"
        "\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff"
        "\x9f\xbb\xff\xe3\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x44"
        "\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x32\x6e\xb1\xff\x01\x00"
        "\x00\x60\x1a\xb9\xfb\x3f\x15\x37\xdc\xeb\x9e\x27\xf7\xa4\xe3\x75\xfa"
        "\x90\x9f\x47\x6f\xae\xff\xd7\xff\xfb\xfe\xbf\xfe\xdf\xf7\xff\xf5\xff"
        "\xfb\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf\xfe\x9f"
        "\x75\xa3\xf5\xff\xb9\xfb\x3f\x1d\xb7\xf8\xfd\x7f\x00\x00\x00\x98\x46"
        "\xee\xfe\xcf\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x67\xe3\x16"
        "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x73\x71\x4b\x93\xfd\xaf\xff\xd7"
        "\xff\xeb\xff\x37\xdb\xff\x5f\xab\xff\x3f\xff\xfd\xfa\xff\x31\xe9\xff"
        "\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd"
        "\x7f\xee\xfe\xcf\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x0b"
        "\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xc5\xb8\xc5\xfe\x07\x00"
        "\x00\x80\x69\xe4\xee\xff\x52\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\xff"
        "\xcd\xf6\xff\xbe\xff\x7f\xc1\xfb\xf5\xff\x63\xd2\xff\xeb\xff\x97\xe8"
        "\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x5f"
        "\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x57\xe2\x16\xfb\x1f"
        "\x00\x00\x00\xa6\x91\xbb\xff\xab\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8"
        "\xdd\xff\xb5\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf"
        "\xfe\x7f\x9f\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7"
        "\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\xd7\xe3\x96\x26\xfb\x1f\x00\x00\x00"
        "\x3a\xc8\xdd\xff\x8d\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x66"
        "\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x2b\x6e\x69\xb2\xff\x67"
        "\xee\xff\x97\xfe\x67\xfa\xff\x73\xf4\xff\xfa\xff\x9d\xfe\x5f\xff\xbf"
        "\x67\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59"
        "\x37\x5a\xff\x9f\xbb\xff\xdb\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4"
        "\xee\xff\x4e\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x37\x6e\xb1"
        "\xff\x01\x00\x00\x60\x1a\xb9\xfb\xbf\x17\xb7\x34\xd9\xff\x33\xf7\xff"
        "\x4b\xf4\xff\xe7\xe8\xff\xf5\xff\x3b\xfd\xbf\xfe\x7f\xcf\xf4\xff\xfa"
        "\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff\xb3\xee\x84\xfa\xff"
        "\xd3\xbb\x43\xfa\xff\xdc\xfd\xdf\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8"
        "\x20\x77\xff\x0f\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x87\x71"
        "\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xa3\xb8\x65\x9e\xfd\x7f\xbf"
        "\x5b\x16\xfe\xa4\xfe\xff\xd8\xfb\xff\x83\x5f\x44\xfa\x7f\xfd\xff\x4e"
        "\xff\xaf\xff\xd7\xff\x1f\xd0\xff\xeb\xff\x97\xe8\xff\xf5\xff\x5b\x7e"
        "\xbf\xfe\x5f\xff\xcf\xba\xd1\xbe\xff\x9f\xbb\xff\xc7\x71\xcb\x3c\xfb"
        "\x1f\x00\x00\x00\xda\xcb\xdd\xff\x93\xb8\xc5\xfe\x07\x00\x00\x80\x69"
        "\xe4\xee\xff\x69\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x2c\x6e"
        "\x69\xb2\xff\xf5\xff\xbe\xff\xaf\xff\x6f\xd5\xff\x5f\xb3\xd3\xff\xeb"
        "\xff\xaf\x32\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7\xeb\xff\xf5"
        "\xff\xac\x1b\xad\xff\xcf\xdd\xff\xf3\xb8\xa5\xc9\xfe\x07\x00\x00\x80"
        "\x0e\x72\xf7\xff\x22\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x7f\x19"
        "\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xbf\x8a\x5b\x9a\xec\x7f\xfd"
        "\xbf\xfe\x5f\xff\xdf\xaa\xff\xf7\xfd\x7f\xfd\xff\x55\xa7\xff\xd7\xff"
        "\x2f\xd1\xff\xeb\xff\xb7\xfc\xfe\xec\xff\xf3\xd7\x9d\xfe\x5f\xff\xcf"
        "\x9d\x8d\xd6\xff\xe7\xee\xff\x75\xdc\xd2\x64\xff\x03\x00\x00\x40\x07"
        "\xb9\xfb\x7f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xbf\x8d\x5b"
        "\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xdf\xc5\x2d\x4d\xf6\xbf\xfe\x5f"
        "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfb\xa4\xff\xd7\xff\x2f\xd1\xff"
        "\xeb\xff\xb7\xfc\x7e\xdf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\xad"
        "\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x7d\xdc\x62\xff\x03"
        "\x00\x00\xc0\x34\x72\xf7\xff\x21\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9"
        "\xfb\x6f\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\xca\xfe\xff\xee\xfa\x7f"
        "\xfd\xbf\xfe\x7f\x14\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7"
        "\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\x8f\x71\x4b\x93\xfd\x0f\x00"
        "\x00\x00\x1d\xe4\xee\xff\x53\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7"
        "\xff\x39\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xff\x12\xb7\x34\xd9"
        "\xff\xfa\x7f\xfd\xff\xa5\xf7\xff\xa7\xeb\xef\x7b\xd8\xfe\xdf\xf7\xff"
        "\xf5\xff\xfa\xff\x61\xcc\xdb\xff\xdf\x4d\xff\xaf\xff\xbf\xe2\xfe\xff"
        "\xa6\x9b\xcf\xfd\x58\xff\xbf\xcd\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff"
        "\xcf\xdd\xff\xd7\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x2d"
        "\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xff\x1e\xb7\xd8\xff\x00\x00"
        "\x00\x30\x8d\xdc\xfd\xff\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\xca\xef"
        "\xff\xeb\xff\xf5\xff\xfa\xff\x61\xcc\xdb\xff\xfb\xfe\xbf\xfe\xdf\xf7"
        "\xff\xf5\xff\xfa\x7f\xfd\x3f\x6b\x46\xeb\xff\x73\xf7\xff\x33\x6e\x69"
        "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xff\x8a\x5b\xec\x7f\x00\x00\x00"
        "\x98\x46\xee\xfe\x7f\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x7f"
        "\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x7d"
        "\xd2\xff\xeb\xff\x97\xe8\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba"
        "\xd1\xfa\xff\xdc\xfd\xff\x0b\x00\x00\xff\xff\x20\xb3\x32\x8b",
        24342));
    NONFAILING(syz_mount_image(
        /*fs=*/0x20000400, /*dir=*/0x200000c0,
        /*flags=MS_POSIXACL|MS_REC|MS_SILENT|MS_NOSUID|MS_NODIRATIME*/ 0x1c802,
        /*opts=*/0x20002740, /*chdir=*/1, /*size=*/0x5f16, /*img=*/0x20003100));
    break;
  case 1:
    NONFAILING(memcpy((void*)0x200005c0, "./bus\000", 6));
    syscall(__NR_open, /*file=*/0x200005c0ul,
            /*flags=O_NONBLOCK|O_NOFOLLOW|O_NOATIME|O_DIRECT|O_CREAT|0x2*/
            0x64842ul, /*mode=*/0ul);
    break;
  case 2:
    NONFAILING(memcpy((void*)0x20000380, "/dev/loop", 9));
    NONFAILING(*(uint8_t*)0x20000389 = 0x30 + procid * 1);
    NONFAILING(*(uint8_t*)0x2000038a = 0);
    NONFAILING(memcpy((void*)0x20000340, "./bus\000", 6));
    syscall(__NR_mount, /*src=*/0x20000380ul, /*dst=*/0x20000340ul,
            /*type=*/0ul, /*flags=MS_I_VERSION|MS_SLAVE|MS_BIND*/ 0x881000ul,
            /*data=*/0ul);
    break;
  case 3:
    NONFAILING(memcpy((void*)0x20000f40, "msdos\000", 6));
    NONFAILING(memcpy((void*)0x20000140, ".\000", 2));
    NONFAILING(syz_mount_image(
        /*fs=*/0x20000f40, /*dir=*/0x20000140,
        /*flags=MS_I_VERSION|MS_PRIVATE|MS_SYNCHRONOUS|MS_STRICTATIME|MS_SILENT|MS_REMOUNT|0x202408*/
        0x1a4a438, /*opts=*/0x200008c0, /*chdir=*/0xb, /*size=*/0,
        /*img=*/0x20000000));
    break;
  case 4:
    NONFAILING(memcpy((void*)0x20003880, "vfat\000", 5));
    NONFAILING(memcpy((void*)0x20000000, "./file0\000", 8));
    NONFAILING(memcpy(
        (void*)0x200000c0,
        "iocharset=iso8859-%,utf8=1,shortname=lower,uni_xlate=1,shortname="
        "win95,iocharset=cp775,uni_xlate=1,rodir,utf8=1,uni_xlate=0,tz=UTC,"
        "rodir,uni_xlate=0,utf8=0,codepage=1255,nonumtail=0,\000",
        183));
    NONFAILING(memcpy(
        (void*)0x20002300,
        "\x78\x9c\xec\xdd\x3f\x6b\x23\x47\x14\x00\xf0\xb7\xb2\x2c\x29\x49\x21"
        "\x15\xa9\x42\x20\x0b\x49\x91\xca\xd8\x6e\xd3\xc8\x04\x1b\x4c\x54\x25"
        "\xa8\x48\x52\x24\x26\xb6\x21\x58\x22\x60\x83\x21\x7f\x88\xe2\x2a\x6d"
        "\x9a\x94\xf9\x04\x81\x40\xba\xfb\x12\xd7\xdc\x37\x38\xb8\xf6\xe0\xba"
        "\x73\x61\xd8\x63\xa5\xdd\x93\xec\x93\x65\xeb\xb0\xec\xfb\xf3\xfb\x35"
        "\x1e\xcf\xce\x9b\x79\x33\x1e\x6c\x5c\xec\xd3\xf7\x1f\xf6\x0f\x76\xd3"
        "\xd8\x3f\xf9\xed\x61\x34\x1a\x49\x54\xda\xd1\x8e\xd3\x24\x5a\x51\x89"
        "\xd2\x1f\x71\x4e\xfb\xaf\x00\x00\x5e\x67\xa7\x59\x16\x4f\xb2\x91\x79"
        "\xe2\x92\x88\x68\x2c\x2e\x2d\x00\x60\x81\xe6\xfe\xfb\xff\xff\xc2\x53"
        "\x02\x00\x16\xec\xab\xaf\xbf\xf9\x62\xa3\xd3\xd9\xfc\x32\x4d\x1b\xb1"
        "\xd5\xff\xf3\xb8\x9b\xff\x67\x9f\x7f\x1d\x3d\xdf\xd8\x8f\x1f\xa3\x17"
        "\x7b\xb1\x1a\xcd\x38\x8b\xc8\x9e\x1b\xb5\xb7\xb2\x2c\x1b\x54\xd3\x5c"
        "\x2b\x3e\xe9\x0f\x8e\xbb\x79\x64\xff\xbb\xfb\xc5\xfc\x1b\x8f\x23\x86"
        "\xf1\x6b\xd1\x8c\xd6\xb0\xeb\x7c\xfc\x76\x67\x73\x2d\x1d\x99\x88\x1f"
        "\xe4\x79\xbc\x5b\xac\xdf\xce\xe3\xd7\xa3\x19\xef\x4f\x59\x7f\xbb\xb3"
        "\xb9\x3e\x25\x3e\xba\xb5\xf8\xf4\xe3\x89\xfc\x57\xa2\x19\x0f\x7e\x88"
        "\x9f\xa2\x17\xbb\xc3\x24\xc6\xf1\xbf\xaf\xa5\xe9\xe7\xd9\xdf\x4f\x7f"
        "\xfd\x36\x4f\x2f\x8f\x4f\x06\xc7\xdd\xfa\x70\xdc\x58\xb6\x74\xcb\x3f"
        "\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\xde\x60\x2b\x45\xed\x9c\x7a\x0c\xeb\xf7\xe4\x5d\x45\xfd\x9d\xa5"
        "\xb3\xfc\x9b\xe5\x48\x4b\xad\xf3\xf5\x79\x46\xf1\x49\x39\xd1\x85\xfa"
        "\x40\x83\x2c\xfe\x29\xeb\xeb\xac\xa6\x69\x9a\x15\x03\xc7\xf1\xd5\xf8"
        "\xa0\x1a\xd5\xbb\xd9\x35\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\xbc\x5a\x8e\x7e\xfe\xe5\x60\xa7\xd7\xdb\x3b\xbc\x91"
        "\x46\x59\x0d\xa0\x7c\xad\xff\x65\xe7\x69\x4f\xf4\x7c\x14\xb3\x07\xd7"
        "\xc7\x6b\x55\x8a\xe6\x8c\x99\x63\xa9\x1c\x93\x44\xcc\x4c\x23\xdf\xc4"
        "\x0d\x1d\xcb\x55\x8d\x77\x2e\xcb\xf9\xdf\xff\xe6\x9d\xb0\x71\xf5\x98"
        "\xe5\x59\xe7\x73\x33\x8d\xf2\x76\x1d\xec\x24\xd3\xcf\xb0\x1e\x65\x4f"
        "\xa3\xbc\x24\xf7\x26\xc7\xd4\xe2\x9a\x6b\xd5\x2e\x7b\x94\xcd\x75\xfd"
        "\x6a\x53\x1f\x35\xe7\xde\x7b\xed\xbd\x61\x63\x30\x63\x4c\x24\xb3\x12"
        "\xfb\xec\xd1\xe8\xe4\x8a\x9e\xe4\xe2\x2e\x6a\xc3\x53\x9d\x1a\xbe\x5c"
        "\x34\x26\xc2\x2f\xdc\x8d\xb9\xee\xf3\x8b\xbf\x2b\x12\xd5\x3a\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xa1\xc6\x2f\xfd"
        "\x4e\x79\x78\x32\x33\xb4\x92\xd5\x17\x96\x16\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\xdc\xaa\xf1\xe7\xff\xcf\xd1\x18\x14"
        "\xc1\xd7\x18\x5c\x8b\xc3\xa3\x3b\xde\x22\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6f\x81"
        "\x67\x01\x00\x00\xff\xff\xc3\x51\x62\x02",
        673));
    NONFAILING(syz_mount_image(
        /*fs=*/0x20003880, /*dir=*/0x20000000,
        /*flags=MS_POSIXACL|MS_REC|MS_SYNCHRONOUS|MS_NOSUID|MS_NODIRATIME*/
        0x14812, /*opts=*/0x200000c0, /*chdir=*/0x25, /*size=*/0x2a1,
        /*img=*/0x20002300));
    break;
  case 5:
    NONFAILING(memcpy((void*)0x200005c0, "./bus\000", 6));
    res =
        syscall(__NR_open, /*file=*/0x200005c0ul, /*flags=*/0ul, /*mode=*/0ul);
    if (res != -1)
      r[0] = res;
    break;
  case 6:
    NONFAILING(*(uint32_t*)0x20000140 = 0);
    syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x4c02, /*arg=*/0x20000140ul);
    break;
  case 7:
    NONFAILING(memcpy((void*)0x20000140, "./file1\000", 8));
    syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x20000140ul,
            /*mode=S_IXOTH|S_IROTH|S_IWGRP|S_IRGRP|S_IRUSR*/ 0x135ul);
    break;
  case 8:
    NONFAILING(memcpy((void*)0x20000040, "ext4\000", 5));
    NONFAILING(memcpy((void*)0x20000180, "./bus\000", 6));
    NONFAILING(memcpy((void*)0x20000840, "stripe", 6));
    NONFAILING(*(uint8_t*)0x20000846 = 0x3d);
    NONFAILING(sprintf((char*)0x20000847, "0x%016llx", (long long)0x3d));
    NONFAILING(*(uint8_t*)0x20000859 = 0x2c);
    NONFAILING(memcpy((void*)0x2000085a, "init_itable", 11));
    NONFAILING(*(uint8_t*)0x20000865 = 0x2c);
    NONFAILING(memcpy((void*)0x20000866, "mb_optimize_scan", 16));
    NONFAILING(*(uint8_t*)0x20000876 = 0x3d);
    NONFAILING(sprintf((char*)0x20000877, "0x%016llx", (long long)1));
    NONFAILING(*(uint8_t*)0x20000889 = 0x2c);
    NONFAILING(*(uint8_t*)0x2000088a = 0);
    NONFAILING(memcpy(
        (void*)0x20000340,
        "\x78\x9c\xec\xdb\xcd\x6f\x14\x65\x18\x00\xf0\x67\x66\xbb\xc5\x5a\xb0"
        "\x15\xf1\x0b\xfc\xa8\xa2\xb1\xf1\xa3\xa5\x80\xca\xc1\x83\x1a\x4d\x3c"
        "\x60\x62\xa2\x07\x3d\x36\x6d\x21\xc8\x02\x86\xd6\x44\x08\x89\x60\x0c"
        "\x9e\x8c\x31\xf1\x6e\x3c\xfa\x2f\x78\xd2\x8b\x31\x9e\x4c\xbc\xea\xdd"
        "\x90\x10\xd3\x8b\xe0\x69\xcd\xec\xce\xb4\xbb\xcb\xee\xd2\x96\xdd\x2e"
        "\xb2\xbf\x5f\x32\xf0\xbc\xf3\xd1\xf7\x7d\x76\xe6\xdd\x7d\x67\xde\xdd"
        "\x00\x86\xd6\x54\xf6\x4f\x12\xb1\x33\x22\xfe\x88\x88\x89\x7a\xb1\x79"
        "\x87\xa9\xfa\x7f\xd7\x56\x2f\x2c\x5c\x5f\xbd\xb0\x90\x44\xb5\xfa\xee"
        "\xdf\x49\x6d\xbf\x7f\x56\x2f\x2c\x14\xbb\x16\xc7\x8d\xe7\x85\xe9\x34"
        "\x22\xfd\x3c\x89\x7d\x6d\xea\x5d\x3e\x77\xfe\xe4\x7c\xa5\xb2\x74\x36"
        "\x2f\xcf\xae\x9c\xfa\x68\x76\xf9\xdc\xf9\x17\x4e\x9c\x9a\x3f\xbe\x74"
        "\x7c\xe9\xf4\xc1\x23\x47\x0e\x1f\x9a\x7b\xf9\xa5\x83\x2f\xf6\x24\xcf"
        "\xf1\x48\xf3\xe8\xad\x0f\xbe\x7e\xfb\xe8\x97\x4d\xf9\xb7\xe4\xd1\x23"
        "\x53\xdd\x36\x3e\x5d\xad\xf6\xb8\xba\xc1\xda\xd5\x10\x27\x23\x03\x6c"
        "\x08\x9b\x52\x8a\x88\xec\x74\x95\x6b\xfd\x7f\x22\x4a\xb1\x7e\xf2\x26"
        "\xe2\xcd\xcf\x06\xda\x38\xa0\xaf\xaa\xd5\x6a\x75\xbc\xf3\xe6\x8b\x55"
        "\xe0\x0e\x96\x44\x73\x59\x97\x87\x61\x51\x7c\xd0\x67\xf7\xbf\xc5\xd2"
        "\x3a\x08\x78\xb5\x7f\xc3\x8f\x81\xbb\xfa\x5a\xfd\x06\x28\xcb\xfb\x5a"
        "\xbe\xd4\xb7\x8c\xac\x3d\x31\x28\xb7\xdc\xdf\xf6\xd2\x54\x44\xbc\x7f"
        "\xf1\xdf\x6f\xb3\x25\xfa\xf3\x1c\x02\x00\xa0\xc9\x8f\xd9\xf8\xe7\xf9"
        "\x6c\xb4\xd3\x3a\xfe\x4b\xe3\x81\x86\xfd\xee\xc9\xe7\x86\x26\x23\xe2"
        "\xde\x88\xd8\x1d\x11\xf7\xc5\xe9\xd8\x13\x11\xf7\x47\xd4\xf6\x7d\x30"
        "\x22\x1e\xda\x64\xfd\xad\x93\x24\x37\x8e\x7f\xd2\x2b\x5b\x4a\x6c\x83"
        "\xb2\xf1\xdf\x2b\xf9\xdc\x56\xf3\xf8\xaf\x18\xfd\xc5\x64\x29\x2f\xed"
        "\xaa\xe5\x5f\x4e\x8e\x9d\xa8\x2c\x1d\xc8\x5f\x93\xe9\x28\xef\xc8\xca"
        "\x73\x5d\xea\xf8\xe9\x8d\xdf\xbf\xea\xb4\xad\x71\xfc\x97\x2d\x59\xfd"
        "\xc5\x58\x30\x6f\xc7\x95\x91\x1d\xcd\xc7\x2c\xce\xaf\xcc\xdf\x4a\xce"
        "\x8d\xae\x5e\x8a\xd8\x3b\xd2\x2e\xff\x64\x6d\x26\x20\x89\x88\x87\x23"
        "\x62\xef\x16\xeb\x38\xf1\xec\xf7\x8f\x74\xda\x76\xf3\xfc\xbb\xe8\xc1"
        "\x3c\x53\xf5\xbb\x88\x67\xea\xe7\xff\x62\xb4\xe4\x5f\x48\xba\xcf\x4f"
        "\xce\xde\x15\x95\xa5\x03\xb3\xc5\x55\x71\xa3\x5f\x7f\xbb\xfc\x4e\xa7"
        "\xfa\x6f\x29\xff\x1e\xc8\xce\xff\xdd\x6d\xaf\xff\xb5\xfc\x27\x93\xc6"
        "\xf9\xda\xe5\xcd\xd7\x71\xf9\xcf\x2f\x3a\xde\xd3\x6c\xf5\xfa\x1f\x4d"
        "\xde\xab\xc5\xa3\xf9\xba\x4f\xe6\x57\x56\xce\xce\x45\x8c\x26\x47\xeb"
        "\x8d\x6e\x5c\x7f\x70\xfd\xd8\xa2\x5c\xec\x9f\xe5\x3f\xbd\xbf\x7d\xff"
        "\xdf\x1d\xeb\xaf\xc4\xbe\x88\xc8\x2e\xe2\x47\x23\xe2\xb1\x88\x78\x3c"
        "\x6f\xfb\x13\x11\xf1\x64\x44\xec\xef\x92\xff\x2f\xaf\x3f\xf5\x61\xeb"
        "\xba\xb1\x0d\xe7\xdf\x5f\x59\xfe\x8b\x9b\x3a\xff\xeb\xc1\x68\xb4\xae"
        "\x69\x1f\x94\x4e\xfe\xfc\x43\x53\xa5\x93\xeb\x61\x9e\xff\xf5\xee\xe7"
        "\xff\x70\x2d\x9a\xce\xd7\x6c\xe4\xfd\x6f\x23\xed\xda\xda\xd5\x0c\x00"
        "\x00\x00\xff\x3f\x69\x44\xec\x8c\x24\x9d\x59\x8b\xd3\x74\x66\xa6\xfe"
        "\x1d\xfe\x3d\x11\x69\xe5\xcc\xf2\xca\x73\xc7\xce\x7c\x7c\x7a\xb1\xfe"
        "\x1b\x81\xc9\x28\xa7\xc5\x93\xae\x89\x86\xe7\xa1\x73\xf9\x6d\x7d\xbd"
        "\x7c\x29\x22\xea\x5f\x2d\x28\xb6\x1f\xca\x9f\x1b\x7f\x53\x1a\xab\x95"
        "\x67\x16\xce\x54\x16\x07\x9d\x3c\x0c\xb9\xf1\x0e\xfd\x3f\xf3\x57\x69"
        "\xd0\xad\x03\xfa\xce\xef\xb5\x60\x78\xe9\xff\x30\xbc\xf4\x7f\x18\x5e"
        "\x9b\xeb\xff\x3b\xfa\xd6\x0e\x60\xfb\xb5\xe9\xff\x63\x83\x68\x07\xb0"
        "\xfd\xda\x7d\xfe\x7f\x3a\x80\x76\x00\xdb\xaf\xa5\xff\x9b\xf6\x83\x21"
        "\xe2\xf9\x1f\x0c\x2f\xfd\x1f\x86\x97\xfe\x0f\x43\x69\x79\x2c\x6e\xfe"
        "\x23\xf9\xae\x41\xf1\x97\xb6\x78\xf8\x1d\x1b\x44\xf9\xb6\x68\x46\xdf"
        "\x82\x48\x6f\x8b\x66\x08\xfa\x14\x0c\xf6\x7d\x09\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
        "\x00\xa0\x57\xfe\x0b\x00\x00\xff\xff\x64\x5e\xdd\x3d",
        1101));
    NONFAILING(syz_mount_image(
        /*fs=*/0x20000040, /*dir=*/0x20000180,
        /*flags=MS_POSIXACL|MS_REC|MS_NOEXEC|MS_NODEV*/ 0x1400c,
        /*opts=*/0x20000840, /*chdir=*/3, /*size=*/0x44d, /*img=*/0x20000340));
    break;
  case 9:
    NONFAILING(memcpy((void*)0x20000f40, "msdos\000", 6));
    NONFAILING(memcpy((void*)0x20000f00, ".\000", 2));
    NONFAILING(*(uint64_t*)0x200007c0 = 0);
    NONFAILING(*(uint64_t*)0x200007c8 = -1);
    NONFAILING(*(uint8_t*)0x200007d0 = 0);
    NONFAILING(*(uint64_t*)0x200007d1 = -1);
    NONFAILING(syz_mount_image(
        /*fs=*/0x20000f40, /*dir=*/0x20000f00,
        /*flags=MS_I_VERSION|MS_PRIVATE|MS_SYNCHRONOUS|MS_STRICTATIME|MS_SILENT|MS_REMOUNT|0x202408*/
        0x1a4a438, /*opts=*/0x200007c0, /*chdir=*/0xb, /*size=*/0,
        /*img=*/0x20000000));
    break;
  }
}
int main(void)
{
  syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul,
          /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  setup_sysctl();
  setup_cgroups();
  const char* reason;
  (void)reason;
  if ((reason = setup_binfmt_misc()))
    printf("the reproducer may not work as expected: binfmt_misc setup failed: "
           "%s\n",
           reason);
  if ((reason = setup_usb()))
    printf("the reproducer may not work as expected: USB injection setup "
           "failed: %s\n",
           reason);
  if ((reason = setup_swap()))
    printf("the reproducer may not work as expected: swap setup failed: %s\n",
           reason);
  install_segv_handler();
  for (procid = 0; procid < 5; procid++) {
    if (fork() == 0) {
      use_temporary_dir();
      do_sandbox_none();
    }
  }
  sleep(1000000);
  return 0;
}