// https://syzkaller.appspot.com/bug?id=e6096b97f180de441e3c03d438143073986fc3fb // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; 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 unsigned int queue_count = 2; 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_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); 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_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); 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 void netlink_add_neigh(struct nlmsg* nlmsg, int sock, const char* name, const void* addr, int addrsize, const void* mac, int macsize) { struct ndmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ndm_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ndm_ifindex = if_nametoindex(name); hdr.ndm_state = NUD_PERMANENT; netlink_init(nlmsg, RTM_NEWNEIGH, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, NDA_DST, addr, addrsize); netlink_attr(nlmsg, NDA_LLADDR, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; static int tunfd = -1; #define TUN_IFACE "syz_tun" #define LOCAL_MAC 0xaaaaaaaaaaaa #define REMOTE_MAC 0xaaaaaaaaaabb #define LOCAL_IPV4 "172.20.20.170" #define REMOTE_IPV4 "172.20.20.187" #define LOCAL_IPV6 "fe80::aa" #define REMOTE_IPV6 "fe80::bb" #define IFF_NAPI 0x0010 static void correct_dev_net_tun(void) { struct stat st; if (stat("/dev/net/tun", &st) == 0) { if (S_ISCHR(st.st_mode) && major(st.st_rdev) == 10 && minor(st.st_rdev) == 200) return; if (unlink("/dev/net/tun")) { } } if (mkdir("/dev/net", 0755) && errno != EEXIST) { } if (mknod("/dev/net/tun", S_IFCHR | 0666, makedev(10, 200))) { } if (chmod("/dev/net/tun", 0666)) { } } static void initialize_tun(void) { correct_dev_net_tun(); tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 200; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { exit(1); } char sysctl[64]; sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/accept_dad", TUN_IFACE); write_file(sysctl, "0"); sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/router_solicitations", TUN_IFACE); write_file(sysctl, "0"); int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); netlink_add_addr4(&nlmsg, sock, TUN_IFACE, LOCAL_IPV4); netlink_add_addr6(&nlmsg, sock, TUN_IFACE, LOCAL_IPV6); uint64_t macaddr = REMOTE_MAC; struct in_addr in_addr; inet_pton(AF_INET, REMOTE_IPV4, &in_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in_addr, sizeof(in_addr), &macaddr, ETH_ALEN); struct in6_addr in6_addr; inet_pton(AF_INET6, REMOTE_IPV6, &in6_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in6_addr, sizeof(in6_addr), &macaddr, ETH_ALEN); macaddr = LOCAL_MAC; netlink_device_change(&nlmsg, sock, TUN_IFACE, true, 0, &macaddr, ETH_ALEN, NULL); close(sock); } #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); } static int read_tun(char* data, int size) { if (tunfd < 0) return -1; int rv = read(tunfd, data, size); if (rv < 0) { if (errno == EAGAIN || errno == EBADF || errno == EBADFD) return -1; exit(1); } return rv; } static void flush_tun() { char data[1000]; while (read_tun(&data[0], sizeof(data)) != -1) { } } #define MAX_FDS 30 #define BTPROTO_HCI 1 #define ACL_LINK 1 #define SCAN_PAGE 2 typedef struct { uint8_t b[6]; } __attribute__((packed)) bdaddr_t; #define HCI_COMMAND_PKT 1 #define HCI_EVENT_PKT 4 #define HCI_VENDOR_PKT 0xff struct hci_command_hdr { uint16_t opcode; uint8_t plen; } __attribute__((packed)); struct hci_event_hdr { uint8_t evt; uint8_t plen; } __attribute__((packed)); #define HCI_EV_CONN_COMPLETE 0x03 struct hci_ev_conn_complete { uint8_t status; uint16_t handle; bdaddr_t bdaddr; uint8_t link_type; uint8_t encr_mode; } __attribute__((packed)); #define HCI_EV_CONN_REQUEST 0x04 struct hci_ev_conn_request { bdaddr_t bdaddr; uint8_t dev_class[3]; uint8_t link_type; } __attribute__((packed)); #define HCI_EV_REMOTE_FEATURES 0x0b struct hci_ev_remote_features { uint8_t status; uint16_t handle; uint8_t features[8]; } __attribute__((packed)); #define HCI_EV_CMD_COMPLETE 0x0e struct hci_ev_cmd_complete { uint8_t ncmd; uint16_t opcode; } __attribute__((packed)); #define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a #define HCI_OP_READ_BUFFER_SIZE 0x1005 struct hci_rp_read_buffer_size { uint8_t status; uint16_t acl_mtu; uint8_t sco_mtu; uint16_t acl_max_pkt; uint16_t sco_max_pkt; } __attribute__((packed)); #define HCI_OP_READ_BD_ADDR 0x1009 struct hci_rp_read_bd_addr { uint8_t status; bdaddr_t bdaddr; } __attribute__((packed)); #define HCI_EV_LE_META 0x3e struct hci_ev_le_meta { uint8_t subevent; } __attribute__((packed)); #define HCI_EV_LE_CONN_COMPLETE 0x01 struct hci_ev_le_conn_complete { uint8_t status; uint16_t handle; uint8_t role; uint8_t bdaddr_type; bdaddr_t bdaddr; uint16_t interval; uint16_t latency; uint16_t supervision_timeout; uint8_t clk_accurancy; } __attribute__((packed)); struct hci_dev_req { uint16_t dev_id; uint32_t dev_opt; }; struct vhci_vendor_pkt_request { uint8_t type; uint8_t opcode; } __attribute__((packed)); struct vhci_pkt { uint8_t type; union { struct { uint8_t opcode; uint16_t id; } __attribute__((packed)) vendor_pkt; struct hci_command_hdr command_hdr; }; } __attribute__((packed)); #define HCIDEVUP _IOW('H', 201, int) #define HCISETSCAN _IOW('H', 221, int) static int vhci_fd = -1; static void rfkill_unblock_all() { int fd = open("/dev/rfkill", O_WRONLY); if (fd < 0) exit(1); struct rfkill_event event = {0}; event.idx = 0; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; event.soft = 0; event.hard = 0; if (write(fd, &event, sizeof(event)) < 0) exit(1); close(fd); } static void hci_send_event_packet(int fd, uint8_t evt, void* data, size_t data_len) { struct iovec iv[3]; struct hci_event_hdr hdr; hdr.evt = evt; hdr.plen = data_len; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = data; iv[2].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static void hci_send_event_cmd_complete(int fd, uint16_t opcode, void* data, size_t data_len) { struct iovec iv[4]; struct hci_event_hdr hdr; hdr.evt = HCI_EV_CMD_COMPLETE; hdr.plen = sizeof(struct hci_ev_cmd_complete) + data_len; struct hci_ev_cmd_complete evt_hdr; evt_hdr.ncmd = 1; evt_hdr.opcode = opcode; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = &evt_hdr; iv[2].iov_len = sizeof(evt_hdr); iv[3].iov_base = data; iv[3].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static bool process_command_pkt(int fd, char* buf, ssize_t buf_size) { struct hci_command_hdr* hdr = (struct hci_command_hdr*)buf; if (buf_size < (ssize_t)sizeof(struct hci_command_hdr) || hdr->plen != buf_size - sizeof(struct hci_command_hdr)) exit(1); switch (hdr->opcode) { case HCI_OP_WRITE_SCAN_ENABLE: { uint8_t status = 0; hci_send_event_cmd_complete(fd, hdr->opcode, &status, sizeof(status)); return true; } case HCI_OP_READ_BD_ADDR: { struct hci_rp_read_bd_addr rp = {0}; rp.status = 0; memset(&rp.bdaddr, 0xaa, 6); hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } case HCI_OP_READ_BUFFER_SIZE: { struct hci_rp_read_buffer_size rp = {0}; rp.status = 0; rp.acl_mtu = 1021; rp.sco_mtu = 96; rp.acl_max_pkt = 4; rp.sco_max_pkt = 6; hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } } char dummy[0xf9] = {0}; hci_send_event_cmd_complete(fd, hdr->opcode, dummy, sizeof(dummy)); return false; } static void* event_thread(void* arg) { while (1) { char buf[1024] = {0}; ssize_t buf_size = read(vhci_fd, buf, sizeof(buf)); if (buf_size < 0) exit(1); if (buf_size > 0 && buf[0] == HCI_COMMAND_PKT) { if (process_command_pkt(vhci_fd, buf + 1, buf_size - 1)) break; } } return NULL; } #define HCI_HANDLE_1 200 #define HCI_HANDLE_2 201 #define HCI_PRIMARY 0 #define HCI_OP_RESET 0x0c03 static void initialize_vhci() { int hci_sock = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI); if (hci_sock < 0) exit(1); vhci_fd = open("/dev/vhci", O_RDWR); if (vhci_fd == -1) exit(1); const int kVhciFd = 202; if (dup2(vhci_fd, kVhciFd) < 0) exit(1); close(vhci_fd); vhci_fd = kVhciFd; struct vhci_vendor_pkt_request vendor_pkt_req = {HCI_VENDOR_PKT, HCI_PRIMARY}; if (write(vhci_fd, &vendor_pkt_req, sizeof(vendor_pkt_req)) != sizeof(vendor_pkt_req)) exit(1); struct vhci_pkt vhci_pkt; if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); if (vhci_pkt.type == HCI_COMMAND_PKT && vhci_pkt.command_hdr.opcode == HCI_OP_RESET) { char response[1] = {0}; hci_send_event_cmd_complete(vhci_fd, HCI_OP_RESET, response, sizeof(response)); if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); } if (vhci_pkt.type != HCI_VENDOR_PKT) exit(1); int dev_id = vhci_pkt.vendor_pkt.id; pthread_t th; if (pthread_create(&th, NULL, event_thread, NULL)) exit(1); int ret = ioctl(hci_sock, HCIDEVUP, dev_id); if (ret) { if (errno == ERFKILL) { rfkill_unblock_all(); ret = ioctl(hci_sock, HCIDEVUP, dev_id); } if (ret && errno != EALREADY) exit(1); } struct hci_dev_req dr = {0}; dr.dev_id = dev_id; dr.dev_opt = SCAN_PAGE; if (ioctl(hci_sock, HCISETSCAN, &dr)) exit(1); struct hci_ev_conn_request request; memset(&request, 0, sizeof(request)); memset(&request.bdaddr, 0xaa, 6); *(uint8_t*)&request.bdaddr.b[5] = 0x10; request.link_type = ACL_LINK; hci_send_event_packet(vhci_fd, HCI_EV_CONN_REQUEST, &request, sizeof(request)); struct hci_ev_conn_complete complete; memset(&complete, 0, sizeof(complete)); complete.status = 0; complete.handle = HCI_HANDLE_1; memset(&complete.bdaddr, 0xaa, 6); *(uint8_t*)&complete.bdaddr.b[5] = 0x10; complete.link_type = ACL_LINK; complete.encr_mode = 0; hci_send_event_packet(vhci_fd, HCI_EV_CONN_COMPLETE, &complete, sizeof(complete)); struct hci_ev_remote_features features; memset(&features, 0, sizeof(features)); features.status = 0; features.handle = HCI_HANDLE_1; hci_send_event_packet(vhci_fd, HCI_EV_REMOTE_FEATURES, &features, sizeof(features)); struct { struct hci_ev_le_meta le_meta; struct hci_ev_le_conn_complete le_conn; } le_conn; memset(&le_conn, 0, sizeof(le_conn)); le_conn.le_meta.subevent = HCI_EV_LE_CONN_COMPLETE; memset(&le_conn.le_conn.bdaddr, 0xaa, 6); *(uint8_t*)&le_conn.le_conn.bdaddr.b[5] = 0x11; le_conn.le_conn.role = 1; le_conn.le_conn.handle = HCI_HANDLE_2; hci_send_event_packet(vhci_fd, HCI_EV_LE_META, &le_conn, sizeof(le_conn)); pthread_join(th, NULL); close(hci_sock); } //% 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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; } static void setup_gadgetfs(); 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); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); 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_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } 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); if (getppid() == 1) exit(1); 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); initialize_vhci(); sandbox_common(); drop_caps(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_tun(); 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 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); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); flush_tun(); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } 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 NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } #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 < 2; 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)); 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) { 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); } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x20108c0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {64 69 73 63 61 72 64 2c 69 6f 63 68 61 72 73 // 65 74 3d 63 70 38 35 35 2c 65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f 2c 69 6e 74 65 67 72 69 74 79 2c 6e 6f 64 69 73 // 63 61 72 64 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 38 2c 65 72 72 6f 72 73 3d 63 6f 6e // 74 69 6e 75 65 00 69 69 73 6f 38 38 35 39 2d 34 2c 75 6d 61 73 // 6b 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 30 30 30 38 31 2c // 69 6f 63 68 61 72 57 fd 74 3d 6d 61 63 67 72 65 65 6b 2c 71 75 // 6f 74 61 2c 65 72 72 6f 17 29 de f7 e3 5b cb 75 6e 74 2d 72 6f // 2c 72 65 73 69 7a 65 3d 30 78 30 30 30 30 30 30 30 30 30 18 18 // 29 30 30 30 30 30 30 31 2c 75 6d 61 73 6b 3d 30 78 30 30 30 30 // 30 30 30 30 30 30 30 32 30 30 34 35 2c 66 73 6d 61 67 69 63 3d // 30 78 30 dc b1 c4 7c b8 7a 74 ac 1a 30 30 30 30 30 30 30 30 30 // 30 30 30 30 30 39 2c 64 65 66 63 6f 6e 74 65 78 74 3d 72 6f 6f // 74 2c 66 73 6e 61 6d 65 3d 75 7d 40 7d 58 7d 5b 2d 29 2b 2c 00 // 0d 1c 13 f7 c8 92 c8 61 5d 26 5c 63 76 53 91 75 38 05 11 ba c7 // 65 71 3e 83 a6 5e 4f df 01 1c 70 5f c6 83 80 05 12 03 85 ac 61 // b9 70 f4 5d 14 92 a0 61 2e b8 00 00 00 00 00 00 80 8f c7 6f 91 // b7 b9 a5 ce 77 88 78 58 ea 33 39 61 d1 ef 1e 4e ab d4 c8 4e 81 // db f5 75 c4 7e 9b 8e ea 9d 68 06 fa 15 9e 05 25 14 6f 63 12 b4 // 93 1c ff ed 00 00} (length 0x1a4) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {34 dd 0f 00 13 5e a2 3c 22 84 5c c5 47 4e 7c // d7 e7 ab 01 d3 3c 44 86 b6 2e 3b 4f 98 22 36 4f 30 c2 47 79 20 // 5b bd 65 3e 2b 0e 7b bb cb a1 e3 dc 78 83 3f bb 91 47 4b a6 44 // d1 3b 9a 3b fd dc 66 bf c8 ba 12 f6 80 d5 56 b1 b4 d4 a1 ec 5b // 55 ee ed c8 45 4a 11 31 2f 30 25 c0 82 20 a3 6a b6 d8 10 0e 6a // 08 36 f3 41 eb 18 f9 84 b2 a7 fe ae f9 26 85 9b 77 e7 33 f9 bb // 72 20 a2 46 07 46 c8 14 48 cc c7 a9 01 e3 24 27 b8 cc 65 6a 1b // 8a 1c 52 fa c1 52 4d 3a 90 fc 42 4c 13 d6 cc 57 08 aa 1e a2 05 // dd d2 b9 67 de 40 68 64 7f 1a 5f ad e5 14 6a 34 4f d3 1d ae ea // ee de 8f 61 b1 06 6c a3 a1 05 99 23 0e df 07 18 24 01 e5 1b} // (length 0xcb) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x61f5 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x61f5) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x2000000004c0, "./file0\000", 8); memcpy( (void*)0x200000000940, "\x64\x69\x73\x63\x61\x72\x64\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74" "\x3d\x63\x70\x38\x35\x35\x2c\x65\x72\x72\x6f\x72\x73\x3d\x72\x65\x6d" "\x6f\x75\x6e\x74\x2d\x72\x6f\x2c\x69\x6e\x74\x65\x67\x72\x69\x74\x79" "\x2c\x6e\x6f\x64\x69\x73\x63\x61\x72\x64\x2c\x64\x69\x73\x63\x61\x72" "\x64\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x38\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e" "\x75\x65\x00\x69\x69\x73\x6f\x38\x38\x35\x39\x2d\x34\x2c\x75\x6d\x61" "\x73\x6b\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x38\x31\x2c\x69\x6f\x63\x68\x61\x72\x57\xfd\x74\x3d\x6d\x61" "\x63\x67\x72\x65\x65\x6b\x2c\x71\x75\x6f\x74\x61\x2c\x65\x72\x72\x6f" "\x17\x29\xde\xf7\xe3\x5b\xcb\x75\x6e\x74\x2d\x72\x6f\x2c\x72\x65\x73" "\x69\x7a\x65\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x18\x18" "\x29\x30\x30\x30\x30\x30\x30\x31\x2c\x75\x6d\x61\x73\x6b\x3d\x30\x78" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x32\x30\x30\x34\x35\x2c" "\x66\x73\x6d\x61\x67\x69\x63\x3d\x30\x78\x30\xdc\xb1\xc4\x7c\xb8\x7a" "\x74\xac\x1a\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x39\x2c\x64\x65\x66\x63\x6f\x6e\x74\x65\x78\x74\x3d\x72\x6f\x6f\x74" "\x2c\x66\x73\x6e\x61\x6d\x65\x3d\x75\x7d\x40\x7d\x58\x7d\x5b\x2d\x29" "\x2b\x2c\x00\x0d\x1c\x13\xf7\xc8\x92\xc8\x61\x5d\x26\x5c\x63\x76\x53" "\x91\x75\x38\x05\x11\xba\xc7\x65\x71\x3e\x83\xa6\x5e\x4f\xdf\x01\x1c" "\x70\x5f\xc6\x83\x80\x05\x12\x03\x85\xac\x61\xb9\x70\xf4\x5d\x14\x92" "\xa0\x61\x2e\xb8\x00\x00\x00\x00\x00\x00\x80\x8f\xc7\x6f\x91\xb7\xb9" "\xa5\xce\x77\x88\x78\x58\xea\x33\x39\x61\xd1\xef\x1e\x4e\xab\xd4\xc8" "\x4e\x81\xdb\xf5\x75\xc4\x7e\x9b\x8e\xea\x9d\x68\x06\xfa\x15\x9e\x05" "\x25\x14\x6f\x63\x12\xb4\x93\x1c\xff\xed\x00\x00", 420); *(uint32_t*)0x200000000ae4 = -1; sprintf((char*)0x200000000ae8, "%023llo", (long long)-1); sprintf((char*)0x200000000aff, "%023llo", (long long)-1); memcpy( (void*)0x200000000b16, "\x34\xdd\x0f\x00\x13\x5e\xa2\x3c\x22\x84\x5c\xc5\x47\x4e\x7c\xd7\xe7" "\xab\x01\xd3\x3c\x44\x86\xb6\x2e\x3b\x4f\x98\x22\x36\x4f\x30\xc2\x47" "\x79\x20\x5b\xbd\x65\x3e\x2b\x0e\x7b\xbb\xcb\xa1\xe3\xdc\x78\x83\x3f" "\xbb\x91\x47\x4b\xa6\x44\xd1\x3b\x9a\x3b\xfd\xdc\x66\xbf\xc8\xba\x12" "\xf6\x80\xd5\x56\xb1\xb4\xd4\xa1\xec\x5b\x55\xee\xed\xc8\x45\x4a\x11" "\x31\x2f\x30\x25\xc0\x82\x20\xa3\x6a\xb6\xd8\x10\x0e\x6a\x08\x36\xf3" "\x41\xeb\x18\xf9\x84\xb2\xa7\xfe\xae\xf9\x26\x85\x9b\x77\xe7\x33\xf9" "\xbb\x72\x20\xa2\x46\x07\x46\xc8\x14\x48\xcc\xc7\xa9\x01\xe3\x24\x27" "\xb8\xcc\x65\x6a\x1b\x8a\x1c\x52\xfa\xc1\x52\x4d\x3a\x90\xfc\x42\x4c" "\x13\xd6\xcc\x57\x08\xaa\x1e\xa2\x05\xdd\xd2\xb9\x67\xde\x40\x68\x64" "\x7f\x1a\x5f\xad\xe5\x14\x6a\x34\x4f\xd3\x1d\xae\xea\xee\xde\x8f\x61" "\xb1\x06\x6c\xa3\xa1\x05\x99\x23\x0e\xdf\x07\x18\x24\x01\xe5\x1b", 203); memcpy( (void*)0x2000000075c0, "\x78\x9c\xec\xdd\x4d\x6f\x1d\x57\xfd\x07\xf0\xdf\x7d\xf4\x43\xfe\x4d" "\xad\x2e\xaa\xfe\x23\x84\xdc\xb4\x3c\x94\xd2\x24\x4e\x4a\x08\x14\x68" "\xbb\x28\x0b\x36\x5d\xa0\x6c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69" "\x65\x11\x57\xde\xb0\x60\xc5\x2b\x00\x21\xb1\x44\x88\x25\x62\xc1\x0b" "\xe8\x82\x2d\x3b\x56\xac\x88\x64\x23\x81\xba\x62\xd0\xd8\xe7\xc4\xe3" "\xc9\xbd\xbd\x76\x1d\xdf\xb9\xf6\x7c\x3e\x92\x3d\xf3\x9b\x33\xd7\x3e" "\xe3\xef\x9d\xfb\xe0\x3b\x33\x27\x00\x00\x00\x00\x00\x00\x00\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\xf8\xde\x77\xbf\xbf\xd2\x89\x88\x1b\x3f\x4b" "\x0b\x96\x22\xfe\x2f\x7a\x11\xdd\x88\x85\xb2\x5e\x8e\x88\x85\xe5\xa5" "\xbc\x7e\x3f\x22\x9e\x8b\x9d\xe6\x78\x36\x22\x06\x73\x11\xe5\xed\x77" "\xbe\x3d\x1d\xf1\x6a\x44\x7c\x7c\x36\x62\x6b\x7b\x7d\xb5\x5c\x7c\xf9" "\x80\xfd\x78\xeb\x0f\x7f\xfb\xed\x0f\xce\xbc\xfd\xd7\xdf\x0f\x2e\xfe" "\xe7\x8f\xf7\x7a\xaf\x8d\x5b\xef\xfe\xfd\x5f\xfe\xfb\x4f\x0f\x8e\xb6" "\xcd\x00\x00\x00\xd0\x36\x45\x51\x14\x9d\xf4\x36\xff\x5c\x7a\x7f\xdf" "\x6d\xba\x53\x00\xc0\x54\xe4\xe7\xff\x22\xc9\xcb\x4f\x7d\xfd\xab\x7f" "\xbc\xfd\xe7\x59\xea\x8f\x5a\xad\x56\xab\xd5\x53\xa8\xab\x8a\xd1\x1e" "\x54\x8b\x88\xd8\xa8\xde\xa6\x7c\xcd\xe0\xe3\x78\x00\x38\x61\x36\xe2" "\x93\xa6\xbb\x40\x83\xe4\xdf\x6a\xfd\x88\x38\xd3\x74\x27\x80\x99\xd6" "\x69\xba\x03\x1c\x8b\xad\xed\xf5\xd5\x4e\xca\xb7\x53\x7d\x3e\x58\xde" "\x6d\xcf\xc7\x82\xec\xcb\x7f\xa3\xf3\xe8\xfc\x8e\x71\xd3\x49\xea\xc7" "\x98\x4c\xeb\xfe\xb5\x19\xbd\x78\x66\x4c\x7f\x16\xa6\xd4\x87\x59\x92" "\xf3\xef\xd6\xf3\xbf\xb1\xdb\x3e\x4c\xeb\x1d\x77\xfe\xd3\x32\x2e\xff" "\xe1\xee\xa9\x4f\xad\x93\xf3\xef\xd5\xf3\xaf\x39\x3d\xf9\x77\x47\xe6" "\xdf\x56\x39\xff\xfe\xa1\xf2\xef\xc9\x1f\x00\x00\x00\x00\x00\x66\x58" "\xfe\xff\xff\x52\xc3\x9f\xff\xce\x1d\x7d\x53\x0e\xe4\xd3\x3e\xff\x5d" "\x9e\x52\x1f\x00\x00\x00\x00\x00\x00\x00\xe0\x49\x3b\xea\xf8\x7f\x8f" "\x18\xff\x0f\x00\x00\x00\x66\x56\xf9\x5e\xbd\xf4\xeb\xb3\x7b\xcb\xc6" "\x5d\x8b\xad\x5c\x7e\xbd\x13\xf1\x54\x6d\x7d\xa0\x65\xd2\xc9\x32\x8b" "\x4d\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xda\xa4\xbf\x7b" "\x0c\xef\xf5\x4e\xc4\x20\x22\x9e\x5a\x5c\x2c\x8a\xa2\xfc\xaa\xaa\xd7" "\x87\x75\xd4\xdb\x9f\x02\x3b\xd7\x2c\x68\xba\x13\xc0\xf4\x35\xfd\x20" "\x0f\x00\x00\xbb\x3e\x3e\x5b\x3b\x97\xbf\x13\x31\x1f\x11\xd7\xa3\xbb" "\x73\xad\xbf\xc1\xe2\xe2\x62\x51\xcc\x2f\x2c\x16\x8b\xc5\xc2\x5c\x7e" "\x3d\x3b\x9c\x9b\x2f\x16\x2a\xef\xeb\xf3\xb4\x5c\x36\x37\x3c\xc0\x0b" "\xe2\xfe\xb0\x28\x7f\xd8\x7c\xe5\x76\x55\x93\xfe\x5f\x30\xa9\xbd\xfe" "\xf3\xca\xdf\x35\x2c\x7a\x07\xe8\xd8\x13\x32\x48\x7f\xcd\x31\xcd\x0d" "\x85\x0d\x00\xc9\xee\xb3\xd1\x96\x67\xa4\x53\xa6\x28\x9e\xf6\x69\x03" "\x07\x62\xff\x3f\x85\x96\x62\xa9\xe9\xfb\x15\xb3\xaf\xe9\xbb\x29\x00" "\x00\x00\x70\xfc\x8a\xa2\x28\x3a\xe9\x72\xde\xe7\xd2\xf8\x7e\xdd\xa6" "\x3b\x05\x00\x4c\x45\x7e\xfe\xaf\x7f\x2e\x70\xa4\xba\x3b\xa6\x3d\xe2" "\xc9\xfc\x7c\xb5\x5a\xad\x56\xab\xd5\x9f\xa9\xae\x2a\x46\x7b\x50\x2d" "\x22\x62\xa3\x7a\x9b\xf2\x35\x83\xe1\xf8\x01\xe0\x84\xd9\x88\x4f\x9a" "\xee\x02\x0d\x92\x7f\xab\xf5\x23\xe2\xb9\xa6\x3b\x01\xcc\xb4\x4e\xd3" "\x1d\xe0\x58\x6c\x6d\xaf\xaf\x76\x52\xbe\x9d\xea\xf3\x41\x1a\xdf\x3d" "\x1f\x0b\xb2\x2f\xff\x8d\xce\xce\xed\xf2\xed\x47\x4d\x27\xa9\x1f\x63" "\x32\xad\xfb\xd7\x66\xf4\xe2\x99\x31\xfd\x79\x76\x4a\x7d\x98\x25\x39" "\xff\x6e\x3d\xff\x1b\xbb\xed\xc3\xb4\xde\x71\xe7\x3f\x2d\xe3\xf2\x1f" "\xee\x9c\x32\xd7\x3e\x39\xff\x5e\x3d\xff\x9a\xd3\x93\x7f\x77\x64\xfe" "\x6d\x95\xf3\xef\x1f\x2a\xff\x9e\xfc\x01\x00\x00\x00\x00\x60\x86\xe5" "\xff\xff\x2f\xf9\xfc\x37\x6f\x32\x00\x00\x00\x00\x00\x00\x00\x9c\x38" "\x5b\xdb\xeb\xab\xf9\xbc\xd7\xfc\xf9\xff\xe7\x46\xac\xe7\xfc\xcf\xd3" "\x29\xe7\xdf\x39\x6c\xfe\x0b\x69\x5e\xfe\x27\x5a\xce\xbf\x5b\xcb\xff" "\xcb\xb5\xf5\x7a\x95\xf9\x87\x6f\xee\xed\xff\xff\xda\x5e\x5f\xfd\xdd" "\xbd\x7f\xfe\x7f\x9e\x1e\x34\xff\xb9\x3c\xd3\x49\xf7\xac\x4e\xba\x47" "\x74\xd2\x6f\xea\xf4\xd3\xf4\x28\x5b\xf7\xb8\xcd\x41\x6f\x58\xfe\xa6" "\x41\xa7\xdb\xeb\xa7\x63\x7e\x8a\xc1\xbb\x71\x2b\x6e\xc7\x5a\x5c\xda" "\xb7\x6e\x37\xfd\x3d\xf6\xda\x57\xf6\xb5\x97\x3d\x1d\xec\x6b\xbf\xbc" "\xaf\xbd\xff\x58\xfb\x95\x7d\xed\x83\x74\xdd\x81\x62\x21\xb7\x5f\x88" "\xd5\xf8\x71\xdc\x8e\x77\x76\xda\xcb\xb6\xb9\x09\xdb\x3f\x3f\xa1\xbd" "\x98\xd0\x9e\xf3\xef\x79\xfc\x6f\xa5\x9c\x7f\xbf\xf2\x55\xe6\xbf\x98" "\xda\x3b\xb5\x69\xe9\xe1\x47\xdd\xc7\xf6\xfb\xea\x74\xd4\xef\x79\xe3" "\xd6\xe7\x7f\x71\xe9\xf8\x37\x67\xa2\xcd\xe8\x3d\xda\xb6\xaa\x72\xfb" "\xce\x37\xd0\x9f\xf2\x6f\xf2\x56\x0c\xe3\xa7\x77\xd7\xee\x5c\xb8\x7f" "\xf3\xde\xbd\x3b\x2b\x91\x26\x67\xaa\x4b\x2f\x47\x9a\x3c\x61\x39\xff" "\xc1\xce\xd7\xdc\xde\xe3\xff\x0b\xbb\xed\xf9\x71\xbf\xba\xbf\x3e\xfc" "\x68\x78\xe8\xfc\x67\xc5\x66\xf4\xc7\xe6\xff\x42\x65\xbe\xdc\xde\x97" "\xa6\xdc\xb7\x26\xe4\xfc\x87\xe9\x2b\xe7\xff\x4e\x6a\x1f\xbd\xff\x9f" "\xe4\xfc\xc7\xef\xff\x2f\x37\xd0\x1f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf8\x34\x45\x51\xec\x9c\x22\xfa\x46\x44\x5c\x4d\xe7" "\xff\x34\x75\x6e\x26\x00\x30\x5d\xf9\xf9\xbf\x48\xf2\x72\xb5\x5a\xad" "\x56\xab\xd5\xa7\xaf\xae\x2a\x46\x7b\xbd\x5a\x44\xc4\x5f\xaa\xb7\x29" "\x5f\x33\xfc\x7c\xd4\x0f\x03\x00\x66\xd9\x7f\x23\xe2\xef\x4d\x77\x82" "\xc6\xc8\xbf\xc5\xf2\xf5\xfe\xca\xe9\x8b\x4d\x77\x06\x98\xaa\xbb\x1f" "\x7c\xf8\xc3\x9b\xb7\x6f\xaf\xdd\xb9\xdb\x74\x4f\x00\x00\x00\x00\x00" "\x00\x00\x80\xcf\x2a\x8f\xff\xb9\x5c\x19\xff\xf9\xc5\x88\x58\xaa\xad" "\xb7\x6f\xfc\xd7\x37\x63\xf9\xa8\xe3\x7f\xf6\xf3\xcc\xa3\x01\x46\x9f" "\xf0\x40\xdf\x63\x6c\x76\x87\xbd\x6e\x65\xb8\xf1\xe7\x63\x67\x7c\xee" "\x0b\xe3\xc6\xff\x3e\x1f\x8f\x8f\xff\x9d\xc7\xc4\xed\x55\xb7\x63\x8c" "\xc1\x84\xf6\xe1\x84\xf6\xb9\x09\xed\xf3\x23\x97\xee\xa5\x35\xf2\x44" "\x8f\x8a\x9c\xff\xf3\x95\xf1\xce\xcb\xfc\xcf\xd5\x86\x5f\x6f\xc3\xf8" "\xaf\xf5\x31\xef\xdb\x20\xe7\x7f\xbe\x72\x7f\x2e\xf3\xff\x52\x6d\xbd" "\x6a\xfe\xc5\x6f\x66\x2e\xff\x8d\x83\xae\xb8\x19\xdd\x7d\xf9\x5f\xbc" "\xf7\xfe\x4f\x2e\xde\xfd\xe0\xc3\x57\x6e\xbd\x7f\xf3\xbd\xb5\xf7\xd6" "\x7e\x74\x65\x65\xe5\xd2\x95\xab\x57\xaf\x5d\xbb\x76\xf1\xdd\x5b\xb7" "\xd7\x2e\xed\x7e\x3f\x9e\x5e\xcf\x80\x9c\x7f\x1e\xfb\xda\x71\xa0\xed" "\x92\xf3\xcf\x99\xcb\xbf\x5d\x72\xfe\x5f\x48\xb5\xfc\xdb\x25\xe7\xff" "\xc5\x54\xcb\xbf\x5d\x72\xfe\xf9\xf5\x9e\xfc\xdb\x25\xe7\x9f\xdf\xfb" "\xc8\xbf\x5d\x72\xfe\x2f\xa5\x5a\xfe\xed\x92\xf3\xff\x4a\xaa\xe5\xdf" "\x2e\x5b\xdb\xeb\x73\x65\xfe\x2f\xa7\x5a\xfe\xed\x92\xf7\xff\xaf\xa6" "\x5a\xfe\xed\x92\xf3\x7f\x25\xd5\xf2\x6f\x97\x9c\xff\x85\x54\xcb\xbf" "\x5d\x72\xfe\x17\x53\x7d\x80\xfc\x5d\x1e\xfe\x14\xc9\xf9\xe7\x4f\xb8" "\xec\xff\xed\x92\xf3\x5f\x49\xb5\xfc\xdb\x25\xe7\x7f\x39\xd5\xf2\x6f" "\x97\x9c\xff\x95\x54\xcb\xbf\x5d\x72\xfe\xaf\xa6\x5a\xfe\xed\x92\xf3" "\xff\x5a\xaa\xe5\xdf\x2e\x39\xff\xab\xa9\x96\x7f\xbb\xe4\xfc\xbf\x9e" "\xea\xc3\xe4\xbf\x70\x8c\xfd\x62\x3a\x72\xfe\xd7\x52\x6d\xff\x6f\x97" "\x9c\xff\x37\x52\x2d\xff\x76\xc9\xf9\x7f\x33\xd5\xf2\x6f\x97\x9c\xff" "\x6b\xa9\x96\x7f\xbb\xe4\xfc\xbf\x95\x6a\xf9\xb7\x4b\xce\xff\xdb\xa9" "\x96\x7f\xbb\xe4\xfc\xbf\x93\x6a\xf9\xb7\x4b\xce\xff\xf5\x54\xcb\xbf" "\x5d\xf6\xae\xff\x6f\xc6\x8c\x19\x33\x79\xa6\xe9\x47\x26\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xa0\x6e\x1a\x87\x13\x37\xbd\x8d\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x8f\x1d\x38\x10\x00\x00\x00" "\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\x2a\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23" "\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61" "\xef\xee\x62\xe4\x3a\xeb\xfb\x81\x9f\x59\xef\xda\x6b\x87\x10\x03\x21" "\x38\xf9\x1b\xd8\x24\x26\x84\xc4\x64\xd7\x76\xe2\x17\xfe\x4d\x31\x81" "\x00\x0d\x50\x0a\x24\x14\xfa\x82\xe3\x7a\xd7\x66\xc1\x6f\x78\xed\x12" "\x28\x92\x4d\x03\x25\x12\x46\x45\x15\x55\xd3\x8b\xb6\x80\xa2\x36\x52" "\x55\x11\x55\x5c\xd0\x8a\xd2\x5c\x54\x7d\xb9\x2a\xed\x05\xbd\xa9\xa8" "\x2a\x21\x35\xaa\x0c\x0a\xa8\x48\x6d\x05\xd9\x6a\xe6\x3c\xcf\xe3\x99" "\xd9\xd9\x99\x59\xef\x78\x7d\xf6\x3c\x9f\x8f\x94\xfc\x76\x67\xce\x99" "\xf3\xcc\x99\xe7\x9c\x9d\xdf\xae\xbf\x73\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\x76\xb7\xbe\x79" "\xee\x73\x8d\xa2\x28\x9a\xff\xb5\xfe\xb7\xb5\x28\x5e\xd4\xfc\x7a\xf3" "\xd4\xd6\xd6\x6d\x6f\xb8\xd6\x23\x04\x00\x00\x00\x56\xeb\xa7\xad\xff" "\x3f\x7f\x43\xba\xe1\xe0\x10\x2b\xb5\x2d\xf3\x77\xaf\xfa\xc7\xaf\x2f" "\x2e\x2e\x2e\x16\x1f\xd8\xf0\xbb\x13\xe3\xc5\x62\xba\x63\xaa\x28\x26" "\x36\x15\x45\xeb\xbe\xe8\x99\x7f\xff\x60\xe3\x4b\x6d\xdf\x07\x8f\x17" "\x93\x8d\xb1\xb6\xef\xc7\x06\x6c\x7e\xc3\x80\xfb\xc7\x07\xdc\x3f\x31" "\xe0\xfe\x8d\x03\xee\xdf\x34\xe0\xfe\xc9\x01\xf7\x2f\xd9\x01\x4b\x6c" "\x2e\x7f\x1f\xd3\x7a\xb0\x1d\xad\x2f\xb7\x96\xbb\xb4\xb8\xb1\x98\x68" "\xdd\xb7\xa3\xc7\x5a\x8f\x37\x36\x8d\x8d\xc5\xdf\xe5\xb4\x34\x5a\xeb" "\x2c\x4e\x1c\x2d\xe6\x8b\xe3\xc5\x5c\x31\xd3\xb1\x7c\xb9\x6c\xa3\xb5" "\xfc\x37\x6f\x6d\x6e\xeb\xed\x45\xdc\xd6\x58\xdb\xb6\xb6\x37\x67\xc8" "\x0f\x3f\x75\x24\x8e\xa1\x11\xf6\xf1\x8e\x8e\x6d\x5d\x7e\xcc\xe8\xfb" "\x6f\x2a\xa6\x7e\xf4\xc3\x4f\x1d\xf9\xe3\xb3\x97\x6e\xee\x55\x07\xee" "\x86\x8e\xc7\x2b\xc7\x79\xe7\x6d\xcd\x71\x7e\x26\xdc\x52\x8e\xb5\x51" "\x6c\x4a\xfb\x24\x8e\x73\xac\x6d\x9c\xdb\x7b\xbc\x26\x1b\x3a\xc6\xd9" "\x68\xad\xd7\xfc\xba\x7b\x9c\xcf\x0f\x39\xce\x0d\x97\x87\xb9\xa6\xba" "\x5f\xf3\xc9\x62\xac\xf5\xf5\xb7\x5b\xfb\x69\xbc\xfd\xd7\x7a\x69\x3f" "\x6d\x0f\xb7\xfd\xf7\xed\x45\x51\x5c\xb8\x3c\xec\xee\x65\x96\x6c\xab" "\x18\x2b\xb6\x74\xdc\x32\x76\xf9\xf5\x99\x2c\x67\x64\xf3\x31\x9a\x53" "\xe9\xa5\xc5\xf8\x8a\xe6\xe9\xad\x43\xcc\xd3\x66\x9d\xdd\xd1\x39\x4f" "\xbb\x8f\x89\xf8\xfa\xdf\x1a\xd6\x1b\x5f\x66\x0c\xed\x2f\xd3\xf7\x3f" "\xbd\x71\xc9\xeb\xbe\xd2\x79\x1a\x35\x9f\xf5\x72\xc7\x4a\xf7\x1c\x1c" "\xf5\xb1\x52\x95\x39\x18\xe7\xc5\xb7\x5b\x4f\xfa\x89\x9e\x73\x70\x47" "\x78\xfe\x9f\xba\x63\xf9\x39\xd8\x73\xee\xf4\x98\x83\xe9\x79\xb7\xcd" "\xc1\xdb\x06\xcd\xc1\xb1\x8d\x1b\x5a\x63\x4e\x2f\x42\xa3\xb5\xce\xe5" "\x39\xb8\xab\x63\xf9\x0d\xad\x2d\x35\x5a\xf5\xb9\x3b\xfa\xcf\xc1\xe9" "\xb3\x27\x4e\x4f\x2f\x7c\xe2\x93\xaf\x9f\x3f\x71\xf8\xd8\xdc\xb1\xb9" "\x93\x7b\x76\xed\x9a\xd9\xb3\x77\xef\xfe\xfd\xfb\xa7\x8f\xce\x1f\x9f" "\x9b\x29\xff\x7f\x85\x7b\xbb\xfa\xb6\x14\x63\xe9\x18\xb8\x2d\xec\xbb" "\x78\x0c\xbc\xb6\x6b\xd9\xf6\xa9\xba\xf8\x95\xd1\x1d\x87\x93\x7d\x8e" "\xc3\xad\x5d\xcb\x8e\xfa\x38\x1c\xef\x7e\x72\x8d\xb5\x39\x20\x97\xce" "\xe9\xf2\xd8\x78\xb8\xb9\xd3\x27\x2f\x8e\x15\xcb\x1c\x63\xad\xd7\xe7" "\xae\xd5\x1f\x87\xe9\x79\xb7\x1d\x87\xe3\x6d\xc7\x61\xcf\x9f\x29\x3d" "\x8e\xc3\xf1\x21\x8e\xc3\xe6\x32\xa7\xef\x1a\xee\x3d\xcb\x78\xdb\x7f" "\xbd\xc6\x70\xb5\x7e\x16\x6c\x6d\x9b\x83\xdd\xef\x47\xba\xe7\xe0\xa8" "\xdf\x8f\x54\x65\x0e\x4e\x86\x79\xf1\xaf\x77\x2d\xff\xb3\x60\x7b\x18" "\xef\x13\x3b\x57\xfa\x7e\x64\xc3\x92\x39\x98\x9e\x6e\x38\xf7\x34\x6f" "\x49\xef\xf7\x27\xf7\xb7\x4a\xaf\x79\x79\x4b\xf3\x8e\xeb\x36\x16\xe7" "\x16\xe6\xce\xdc\xf3\xd8\xe1\xb3\x67\xcf\xec\x2a\x42\x59\x13\x2f\x6b" "\x9b\x2b\xdd\xf3\x75\x4b\xdb\x73\x2a\x96\xcc\xd7\xb1\x15\xcf\xd7\x83" "\xf3\xaf\x7a\xe2\x96\x1e\xb7\x6f\x0d\xfb\x6a\xf2\xf5\xcd\xff\x4d\x2e" "\xfb\x5a\x35\x97\xb9\xf7\x9e\xfe\xaf\x55\xeb\xa7\x5b\xef\xfd\xd9\x71" "\xeb\xee\x22\x94\x11\x5b\xeb\xfd\xd9\xeb\xa7\x79\x73\x7f\xa6\x5e\xb2" "\xcf\xfe\x6c\x2e\xf3\x99\xe9\xd5\xbf\x17\x4f\x7d\x69\xdb\xf9\x77\x62" "\x99\xf3\x6f\xec\xfb\x5f\x28\xb7\x97\x1e\xea\xf1\x0d\x13\xe3\xe5\xf1" "\xbb\x21\xed\x9d\x89\x8e\xf3\x71\xe7\x4b\x35\xde\x3a\x77\x35\x5a\xdb" "\x7e\x7e\x7a\xb8\xf3\xf1\x44\xf8\x6f\xad\xcf\xc7\x37\xf6\x39\x1f\x6f" "\xeb\x5a\x76\xd4\xe7\xe3\x89\xee\x27\x17\xcf\xc7\x8d\x41\xbf\xed\x58" "\x9d\xee\xd7\x73\x32\xcc\x93\xe3\x33\xfd\xcf\xc7\xcd\x65\xb6\xed\x5e" "\xe9\x9c\x1c\xef\x7b\x3e\xbe\x3d\xd4\x46\xd8\xff\xaf\x0b\x9d\x42\xea" "\x8b\xda\xe6\xce\x72\xf3\x36\x6d\x6b\x7c\x7c\x22\x3c\xaf\xf1\xb8\x85" "\xce\x79\xba\xa7\x63\xf9\x89\xd0\x9b\x35\xb7\xf5\xf4\xee\x2b\x9b\xa7" "\x77\xde\x5e\x3e\xd6\x86\xf4\xec\x2e\x5b\xab\x79\x3a\xd5\xb5\xec\xa8" "\xe7\x69\x3a\x5f\x2d\x37\x4f\x1b\x83\x7e\xfb\x76\x65\xba\x5f\xcf\xc9" "\x30\x2f\x6e\xdc\xd3\x7f\x9e\x36\x97\x79\xf6\xde\xd5\x9f\x3b\x37\xc7" "\x2f\xdb\xce\x9d\x1b\x07\xcd\xc1\x89\x0d\x1b\x9b\x63\x9e\x48\x93\xb0" "\x3c\xdf\x2f\x6e\x8e\x73\xf0\x9e\xe2\x48\x71\xaa\x38\x5e\xcc\xb6\xee" "\xdd\xd8\x9a\x4f\x8d\xd6\xb6\x76\xde\x37\xdc\x1c\xdc\x18\xfe\x5b\xeb" "\x73\xe5\xb6\x3e\x73\xf0\xce\xae\x65\x47\x3d\x07\xd3\xcf\xb1\xe5\xe6" "\x5e\x63\x7c\xe9\x93\x1f\x81\xee\xd7\x73\x32\xcc\x8b\x27\xef\xeb\x3f" "\x07\x9b\xcb\xbc\x65\xdf\x68\xdf\xbb\xde\x19\x6e\x49\xcb\xb4\xbd\x77" "\xed\xfe\xfd\xda\x72\xbf\xf3\xba\xa5\x6b\x37\x5d\xcd\xdf\x79\x35\xc7" "\xf9\x37\xfb\xfa\xff\x6e\xb6\xb9\xcc\xf1\xfd\x2b\xed\x33\xfb\xef\xa7" "\xbb\xc3\x2d\xd7\xf5\xd8\x4f\xdd\xc7\xef\x72\xc7\xd4\x6c\xb1\x36\xfb" "\x69\x5b\x18\xe7\xa5\xfd\xcb\xef\xa7\xe6\x78\x9a\xcb\x7c\xe9\xc0\x90" "\xf3\xe9\x60\x51\x14\xe7\x3f\xf6\x40\xeb\xf7\xbd\xe1\xef\x2b\x7f\x7e" "\xee\x3b\x5f\xef\xf8\xbb\x4b\xaf\xbf\xe9\x9c\xff\xd8\x03\x3f\xb8\xfe" "\xe8\xdf\xae\x64\xfc\x00\xac\x7f\x2f\x94\x65\x4b\xf9\xb3\xae\xed\x2f" "\x53\xc3\xfc\xfd\x1f\x00\x00\x00\x58\x17\x62\xdf\x3f\x16\x6a\xa2\xff" "\x07\x00\x00\x80\xda\x88\x7d\x7f\xfc\x57\xe1\x89\xfe\x1f\x00\x00\x00" "\x6a\x23\xf6\xfd\xe3\xa1\x26\x99\xf4\xff\xdb\xde\x72\x69\xfe\x85\xf3" "\x45\x4a\xe6\x2f\x06\xf1\xfe\xb4\x1b\x1e\x2a\x97\x8b\x19\xd7\x99\xf0" "\xfd\xd4\xe2\x65\xcd\xdb\x1f\x78\x6a\xee\xc7\x7f\x79\x7e\xb8\x6d\x8f" "\x15\x45\xf1\x93\x87\x7e\xa3\xe7\xf2\xdb\x1e\x8a\xe3\x2a\x4d\x85\x71" "\x3e\xf3\x60\xe7\xed\x4b\x57\x3c\x3f\xd4\xf6\x1f\x7d\xe4\xf2\x72\xed" "\xf9\xf5\x2f\x87\xc7\x8f\xcf\x67\xd8\x69\xd0\x2b\x82\x3b\x53\x14\xc5" "\x37\x6f\xf8\x42\x6b\x3b\x53\x1f\xbc\xd8\xaa\xcf\x3e\xf4\x68\xab\xbe" "\xf7\xc2\x13\x8f\x37\x97\x79\xfe\x40\xf9\x7d\x5c\xff\xb9\x97\x95\xcb" "\xff\x41\x08\xff\x1e\x3c\x7a\xb8\x63\xfd\xe7\xc2\x7e\xf8\x5e\xa8\x33" "\xef\xe8\xbd\x3f\xe2\x7a\x5f\xbb\xf8\xba\xed\xfb\xde\x7f\x79\x7b\x71" "\xbd\xc6\x6d\x2f\x6e\x3d\xed\x27\x3f\x54\x3e\x6e\xfc\x9c\x9c\x2f\x3e" "\x5e\x2e\x1f\xf7\xf3\x72\xe3\xff\xab\xcf\x3f\xfd\xb5\xe6\xf2\x8f\xbd" "\xa6\xf7\xf8\xcf\x8f\xf5\x1e\xff\xd3\xe1\x71\x9f\x7a\xf0\xd2\x7c\x73" "\xc6\xfd\xcf\x2b\xcb\xe5\xdb\x5f\x83\xe6\xf7\x71\xbd\xcf\x86\xf1\xc7" "\xed\x3d\x15\xd6\xbf\xe7\xab\xdf\xea\x39\xfe\x67\x3e\x57\x2e\x7f\xfa" "\xad\xe5\x72\x8f\x86\x1a\xb7\x7f\x67\xf8\x7e\xc7\x5b\x2f\xcd\xb7\xef" "\xaf\xc7\x1a\x87\x3b\x9e\x57\xf1\xb6\x72\xb9\xb8\xfd\x99\xef\xfc\x76" "\xeb\xfe\xf8\x78\xf1\xf1\xbb\xc7\x3f\x79\xe8\x62\xc7\xfe\xe8\x9e\x1f" "\xcf\xfe\x73\xf9\x38\xd3\x5d\xcb\xc7\xdb\xe3\x76\xa2\xbf\xe8\xda\x7e" "\xf3\x71\xda\xe7\x67\xdc\xfe\xd3\xbf\xf5\x68\xc7\x7e\x1e\xb4\xfd\x67" "\xde\xfb\xdc\x2b\x9b\x8f\xdb\xbd\xfd\xbb\xbb\x96\xdb\xd0\xb5\x7e\xf7" "\x27\x36\xfd\xe1\x67\xbf\xd0\x73\x7b\x71\x3c\x07\xff\xec\x74\xc7\xf3" "\x39\xf8\x9e\x70\x1c\x87\xed\x3f\xf9\xa1\x30\x1f\xc3\xfd\xff\xfb\xcc" "\x17\x3a\xb6\x1b\x3d\xfa\x9e\xce\xf3\x4f\x5c\xfe\xcb\x5b\xcf\x77\x3c" "\x9f\xe8\xed\x3f\x2a\xb7\xff\xcc\x1b\x8f\xb5\xea\x7f\x4c\xfd\xf8\xf7" "\xaf\x7b\xd1\xf5\x2f\xbe\xf0\xea\xe6\xbe\x2b\x8a\x6f\xbf\xaf\x7c\xbc" "\x41\xdb\x3f\xf6\x47\xa7\x3a\xc6\xff\x95\x9b\xee\x6a\xbd\x1e\xf1\xfe" "\x98\xd1\xef\xde\xfe\x72\xe2\xf6\xcf\x7c\x7c\xe7\xc9\x53\x0b\xe7\xe6" "\x67\xdb\xf6\x6a\xeb\xb3\x73\xde\x59\x8e\x67\xd3\xe4\xe6\x2d\xcd\xf1" "\xde\x10\xce\xad\xdd\xdf\x1f\x3a\x75\xf6\xc3\x73\x67\xa6\x66\xa6\x66" "\x8a\x62\xaa\xbe\x1f\xa1\x77\xc5\xbe\x1a\xea\x0f\xca\x72\x61\xa5\xeb" "\xdf\xf5\x48\x78\x3d\x6f\xf9\xbd\x6f\x6e\xb9\xe3\x9f\x3e\x1f\x6f\xff" "\x97\x87\xcb\xdb\x2f\xbe\xa3\xfc\xb9\xf5\xda\xb0\xdc\x17\xc3\xed\x5b" "\xcb\xd7\x6f\xb1\xb1\xca\xed\x3f\x79\xeb\x4d\xad\xe3\xbb\xf1\x6c\xf9" "\x7d\x47\x8e\x7d\x04\xb6\xef\xf8\xcf\xfd\x43\x2d\x18\x9e\x7f\xf7\xfb" "\x82\x38\xdf\x4f\xbf\xfc\xc3\xad\xfd\xd0\xbc\xaf\xf5\x73\x23\x1e\xd7" "\xab\x1c\xff\x77\x67\xcb\xc7\xf9\x46\xd8\xaf\x8b\xe1\x93\x99\x6f\xbb" "\xe9\xf2\xf6\xda\x97\x8f\x9f\x8d\x70\xf1\x7d\xe5\xf1\xbe\xea\xfd\x17" "\x4e\x73\xf1\x75\xfd\x93\xf0\x7a\xbf\xeb\x7b\xe5\xe3\xc7\x71\xc5\xe7" "\xfb\xdd\xf0\x3e\xe6\x5b\xdb\x3a\xcf\x77\x71\x7e\x7c\xe3\xfc\x58\xf7" "\xe3\xb7\x3e\xc5\xe3\x42\x38\x9f\x14\x17\xca\xfb\xe3\x52\x71\x7f\x5f" "\x7c\xfe\xa6\x9e\xc3\x8b\x9f\x43\x52\x5c\xb8\xb9\xf5\xfd\xef\xa4\xc7" "\xb9\x79\x45\x4f\x73\x39\x0b\x9f\x58\x98\x3e\x3e\x7f\xf2\xdc\x63\xd3" "\x67\xe7\x16\xce\x4e\x2f\x7c\xe2\x93\x87\x4e\x9c\x3a\x77\xf2\xec\xa1" "\xd6\x67\x79\x1e\xfa\xc8\xa0\xf5\x2f\x9f\x9f\xb6\xb4\xce\x4f\xb3\x73" "\x7b\xef\x2d\x66\x36\x17\x45\x71\xaa\x98\x59\x83\x13\xd6\xd5\x19\x7f" "\xf3\xab\xe1\xc6\x7f\xfa\x91\x23\xb3\xfb\x66\xee\x98\x9d\x3b\x7a\xf8" "\xdc\xd1\xb3\x8f\x9c\x9e\x3b\x73\xec\xc8\xc2\xc2\x91\xb9\xd9\x85\x3b" "\x0e\x1f\x3d\x3a\xf7\xf1\x41\xeb\xcf\xcf\xde\xbf\x6b\xf7\x81\x3d\xfb" "\x76\xef\x3c\x36\x3f\x7b\xff\xfe\x03\x07\xf6\x1c\xd8\x39\x7f\xf2\x54" "\x73\x18\xe5\xa0\x06\xd8\x3b\xf3\xd1\x9d\x27\xcf\x1c\x6a\xad\xb2\x70" "\xff\xbd\x07\x76\xdd\x77\xdf\xbd\x33\x3b\x4f\x9c\x9a\x9d\xbb\x7f\xdf" "\xcc\xcc\xce\x73\x83\xd6\x6f\xfd\x6c\xda\xd9\x5c\xfb\xd7\x77\x9e\x99" "\x3b\x7e\xf8\xec\xfc\x89\xb9\x9d\x0b\xf3\x9f\x9c\xbb\x7f\xd7\x81\xbd" "\x7b\x77\x0f\xfc\x34\xc0\x13\xa7\x8f\x2e\x4c\x4d\x9f\x39\x77\x72\xfa" "\xdc\xc2\xdc\x99\xe9\xf2\xb9\x4c\x9d\x6d\xdd\xdc\xfc\xd9\x37\x68\x7d" "\xea\x69\xe1\xdf\xca\xf7\xb3\xdd\x1a\xe5\x07\xf1\x15\xef\xbe\x7b\x6f" "\xfa\x7c\xd6\xa6\xa7\x3e\xbd\xec\x43\x95\x8b\x74\x7d\x80\xe8\xa5\xf0" "\x59\x34\xff\xf0\x92\xd3\xfb\x87\xf9\x3e\xf6\xfd\x13\xa1\x26\x99\xf4" "\xff\x00\x00\x00\x90\x83\xd8\xf7\x6f\x0c\x35\xd1\xff\x03\x00\x00\x40" "\x6d\xc4\xbe\x7f\x53\xa8\x89\xfe\x1f\x00\x00\x00\x6a\x23\xf6\xfd\x93" "\xa1\x26\x99\xf4\xff\xf2\xff\xf2\xff\xc3\xe5\xff\xcb\xfb\x47\x99\xff" "\xef\x95\x9f\x2f\xe4\xff\x2b\x95\xff\x3f\xfd\xb1\x32\x57\xba\xde\xf3" "\xff\x31\x3f\x2f\xff\x9f\x87\x6b\x9c\xff\x5f\xf5\xf6\xe5\xff\xe5\xff" "\xeb\x97\xff\x1f\x3e\x3f\xbf\xde\xc7\x2f\xff\x2f\xff\xcf\x52\x55\xcb" "\xff\xc7\xbe\x7f\x73\x51\x64\xd9\xff\x03\x00\x00\x40\x0e\x62\xdf\xbf" "\x25\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe\xeb\x42\x4d\xf4\xff" "\x00\x00\x00\x50\x1b\xb1\xef\x7f\x51\xa8\x49\x26\xfd\xbf\xfc\xff\x50" "\xf9\xff\xdd\x83\x02\x57\xf5\xcf\xff\x8f\xfe\xfa\xff\xf2\xff\xf2\xff" "\x6b\x92\xff\x8f\x2f\x8e\xfc\x7f\x36\x56\x9c\xbf\x7f\xff\xc3\x1d\xdf" "\xca\xff\x07\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xac\xda\xc4\xb2" "\xf7\x5c\xab\xfc\x7f\xec\xfb\xaf\x0f\x35\xc9\xa4\xff\x07\x00\x00\x80" "\x1c\xc4\xbe\xff\xc5\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\xdf" "\x10\x6a\xa2\xff\x07\x00\x00\x80\xda\x88\x7d\xff\xd6\x50\x93\x4c\xfa" "\x7f\xf9\x7f\xd7\xff\x97\xff\x97\xff\xaf\x75\xfe\x7f\xb5\xd7\xff\x6f" "\x1b\x8c\xfc\xff\xfa\xe0\xfa\xff\xfd\xc9\xff\x0f\x70\xc5\xf9\xff\x49" "\xf9\xff\xf5\x98\xff\x9f\x18\xed\xf8\xab\x9d\xff\x1f\x38\x7c\xf9\x7f" "\xae\x8a\xaa\x5d\xff\x3f\xf6\xfd\x2f\x09\x35\xc9\xa4\xff\x07\x00\x00" "\x80\x1c\xc4\xbe\xff\xa5\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7" "\xbf\x2c\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe\x1b\x43\x4d\x32" "\xe9\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\x7b\x6f\x7f\xf0\xf5" "\xff\xcb\xaf\xe4\xff\xab\x45\xfe\xbf\x3f\xf9\xff\x01\x5c\xff\x3f\xaf" "\xfc\xff\x88\xc7\x5f\xed\xfc\xff\xa8\xaf\xff\x3f\xf1\x60\xf7\xfa\xf2" "\xff\xf4\x52\xb5\xfc\x7f\xec\xfb\x5f\x1e\x6a\x92\x49\xff\x0f\x00\x00" "\x00\x39\x88\x7d\xff\x4d\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7" "\xbf\x22\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe\x6d\xa1\x26\x99" "\xf4\xff\xf2\xff\x57\x23\xff\xff\xd3\xd6\xda\xf2\xff\xf2\xff\xdd\xf3" "\x43\xfe\xbf\x6e\xf9\xff\x92\xfc\x7f\xb5\xc8\xff\xf7\x27\xff\x3f\x80" "\xfc\xbf\xfc\xbf\xfc\xff\x70\xf9\xff\x1e\x1f\x7e\x25\xff\x4f\x2f\x55" "\xcb\xff\xc7\xbe\xff\xe6\x50\x93\x4c\xfa\x7f\x00\x00\x00\xc8\x41\xec" "\xfb\x6f\x09\x35\x59\xa6\xff\x5f\x1c\xf2\x6f\xdb\x00\x00\x00\x40\x75" "\xc4\xbe\xff\xff\x85\x9a\xf8\xfb\x3f\x00\x00\x00\xd4\x46\xec\xfb\xb7" "\x87\x9a\x64\xd2\xff\xcb\xff\xbb\xfe\xbf\xfc\x7f\x5e\xf9\xff\xbb\x37" "\xca\xff\xcb\xff\xd7\x9b\xfc\x7f\x7f\xf2\xff\x03\xc8\xff\xcb\xff\xcb" "\xff\x0f\x79\xfd\xff\xa5\x56\x92\xff\xdf\x34\xe8\xc1\xa8\x8d\xaa\xe5" "\xff\x63\xdf\xff\xca\x50\x93\x4c\xfa\x7f\x00\x00\x00\xc8\x41\xec\xfb" "\x5f\x15\x6a\xa2\xff\x07\x00\x00\x80\xda\x88\x7d\xff\xab\x43\x4d\xf4" "\xff\x00\x00\x00\x50\x1b\xb1\xef\x9f\x0a\x35\xc9\xa4\xff\x97\xff\xaf" "\x57\xfe\xff\x4f\xff\xfa\xc9\x57\x17\xf2\xff\xf2\xff\x03\xb6\x5f\xd3" "\xfc\x7f\x9c\x06\xf2\xff\x99\x93\xff\xef\x4f\xfe\x7f\x00\xf9\x7f\xf9" "\x7f\xf9\xff\x35\xc9\xff\x93\x8f\xaa\xe5\xff\x63\xdf\x7f\x6b\xa8\x49" "\x26\xfd\x3f\x00\x00\x00\xe4\x20\xf6\xfd\xb7\x85\x9a\xe8\xff\x01\x00" "\x00\xa0\x36\x62\xdf\x7f\x7b\xa8\x89\xfe\x1f\x00\x00\x00\x6a\x23\xf6" "\xfd\x3b\x42\x4d\x32\xe9\xff\xe5\xff\xeb\x95\xff\x8f\xe4\xff\xe5\xff" "\xfb\x6d\xbf\xa6\xf9\xff\x44\xfe\x3f\x6f\xf2\xff\x3d\xb4\x1d\xa4\xf2" "\xff\x03\xc8\xff\xcb\xff\x67\x9f\xff\x8f\xef\x7e\xe5\xff\x19\x8d\xaa" "\xe5\xff\x63\xdf\xff\x9a\x50\x93\x4c\xfa\x7f\x00\x00\x00\xc8\x41\xec" "\xfb\xef\x08\x35\xd1\xff\x03\x00\x00\x40\x6d\xc4\xbe\xff\xb5\xa1\x26" "\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\xdf\x19\x6a\x92\x49\xff\x2f\xff" "\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xdf\x7b\xfb\xf2\xff\xeb\x93\xfc\x7f" "\x7f\x2b\xcd\xff\x6f\x94\xff\x97\xff\x97\xff\xcf\x2c\xff\xef\xfa\xff" "\x8c\x56\xd5\xf2\xff\xb1\xef\x7f\x5d\xa8\x49\x26\xfd\x3f\x00\x00\x00" "\xe4\x20\xf6\xfd\x77\x85\x9a\xe8\xff\x01\x00\x00\xa0\x36\xe2\xbf\xdf" "\x2c\xff\xdd\xab\xfe\x1f\x00\x00\x00\xea\x28\xf6\xfd\x3b\x43\x4d\x32" "\xe9\xff\xe5\xff\xe5\xff\x73\xca\xff\x37\xe4\xff\xe5\xff\xe5\xff\x6b" "\x4f\xfe\xbf\x3f\xd7\xff\x1f\x40\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f\x91" "\xaa\x5a\xfe\x3f\xf6\xfd\xaf\x0f\x35\xc9\xa4\xff\x07\x00\x00\x80\x1c" "\xc4\xbe\xff\x9e\x50\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb\xa7\x43" "\x4d\xf4\xff\x00\x00\x00\x50\x1b\xb1\xef\x9f\x09\x35\xc9\xa4\xff\x97" "\xff\x97\xff\xcf\x29\xff\xef\xfa\xff\xf2\xff\xf2\xff\xf5\x27\xff\xdf" "\xdf\x28\xf2\xff\x8b\xe7\xe5\xff\xe5\xff\x7b\x93\xff\xaf\x60\xfe\xbf" "\x28\xe4\xff\xb9\xa6\xaa\x96\xff\x8f\x7d\xff\xae\x50\x93\x4c\xfa\x7f" "\x00\x00\x00\xc8\x41\xec\xfb\x77\x87\x9a\xe8\xff\x01\x00\x00\xa0\x36" "\x62\xdf\xbf\x27\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe\x7b\x43" "\x4d\x32\xe9\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\x7b\x6f\x5f" "\xfe\x7f\x7d\x92\xff\xef\xcf\xf5\xff\x07\x90\xff\x97\xff\xaf\x5b\xfe" "\xdf\xf5\xff\xb9\xc6\xaa\x96\xff\x8f\x7d\xff\x7d\xa1\x26\x99\xf4\xff" "\x00\x00\x00\x90\x83\xd8\xf7\xef\x0d\x35\xd1\xff\x03\x00\x00\x40\x6d" "\xc4\xbe\x7f\x5f\xa8\x49\xe8\xff\x7b\xfd\xbb\x6e\x00\x00\x00\x60\x7d" "\x89\x7d\xff\xfe\x50\x93\x4c\xfe\xfe\x2f\xff\x5f\x93\xfc\xff\x6f\xfe" "\x7d\xc7\xb6\xe5\xff\xe5\xff\xfb\x6d\x7f\x34\xf9\xff\xcd\xf2\xff\xa1" "\xca\xff\x57\x4b\x4d\xf3\xff\xdd\x87\xc5\x15\x93\xff\x1f\x40\xfe\xff" "\xaa\xe5\xe7\x8b\xb1\x91\x0c\xf1\x9a\x8d\x5f\xfe\x5f\xfe\x9f\x2b\x53" "\xb5\xfc\x7f\xec\xfb\x0f\x84\x9a\x64\xd2\xff\x03\x00\x00\x40\x0e\x62" "\xdf\xff\x86\x50\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb\xff\x7f\xa8" "\x89\xfe\x1f\x00\x00\x00\x6a\x23\xf6\xfd\x3f\x13\x6a\x92\x49\xff\x2f" "\xff\x5f\x93\xfc\x7f\x17\xf9\x7f\xf9\xff\x7e\xdb\x77\xfd\x7f\xf9\xff" "\x3a\xab\x69\xfe\x7f\x64\x6a\x95\xff\x1f\x93\xff\x5f\x4f\xf9\x7f\xd7" "\xff\x97\xff\x1f\xb4\x3e\xf5\x74\xf5\xf3\xff\xf1\xab\xe1\xf2\xff\xb1" "\xef\xbf\x3f\xd4\x24\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe\x9f\x0d" "\x35\xd1\xff\x03\x00\x00\x40\x6d\xc4\xbe\xff\x8d\xa1\x26\xfa\x7f\x00" "\x00\x00\xa8\x8d\xd8\xf7\x1f\x0c\x35\xc9\xa4\xff\x97\xff\x97\xff\xbf" "\x5a\xf9\xff\x0b\x63\xf2\xff\xdd\xf3\x23\xaf\xfc\xff\x1b\x8b\x6e\x55" "\xcc\xff\x37\x27\x8f\xfc\x7f\xbd\x54\x38\xff\x3f\x31\xcc\xf6\xe5\xff" "\x5d\xff\x5f\xfe\x7f\x4d\xc6\xdf\xfd\xa3\x66\x24\xe3\x97\xff\x97\xff" "\x67\xa9\xaa\x5d\xff\x3f\xf6\xfd\x6f\x0a\x35\xc9\xa4\xff\x07\x00\x00" "\x80\x1c\xc4\xbe\xff\x81\x50\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb" "\xdf\x1c\x6a\xa2\xff\x07\x00\x00\x80\xda\x88\x7d\xff\x5b\x42\x4d\x32" "\xe9\xff\xe5\xff\xe5\xff\x5d\xff\x5f\xfe\xdf\xf5\xff\x7b\x6f\x5f\xfe" "\x7f\x7d\xaa\x70\xfe\x7f\x28\xf2\xff\xf2\xff\xf2\xff\xeb\x77\xfc\xf2" "\xff\xf2\xff\x2c\x55\xb5\xfc\x7f\xec\xfb\x1f\x0c\x35\xc9\xa4\xff\x07" "\x00\x00\x80\x1c\xc4\xbe\xff\xad\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d" "\xd8\xf7\xbf\x2d\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe\xb7\x87" "\x9a\x64\xd2\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xf7\xde\xbe" "\xfc\xff\xfa\x24\xff\xdf\x9f\xfc\xff\x00\xf2\xff\xf2\xff\xf2\xff\xf2" "\xff\x8c\x54\xd5\xf2\xff\xb1\xef\xff\xb9\x50\x93\x4c\xfa\x7f\x00\x00" "\x00\xc8\x41\xec\xfb\x1f\x0a\x35\xd1\xff\x03\x00\x00\x40\x6d\xc4\xbe" "\xff\x1d\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\xbf\x33\xd4\x24" "\x93\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xbf\xf7\xf6\xe5\xff" "\xd7\x27\xf9\xff\xfe\xe4\xff\x07\x90\xff\x97\xff\x97\xff\x97\xff\x67" "\xa4\xaa\x96\xff\x8f\x7d\xff\xbb\x42\x4d\x32\xe9\xff\x01\x00\x00\x20" "\x07\xb1\xef\xff\xf9\x50\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb\xdf" "\x1d\x6a\xa2\xff\x07\x00\x00\x80\xda\x88\x7d\xff\x2f\x84\x9a\x64\xd2" "\xff\xcb\xff\xcb\xff\x57\x2b\xff\xbf\x78\xbe\x7d\x3d\xf9\x7f\xf9\xff" "\x62\x54\xf9\xff\xe6\x4a\xf2\xff\x59\x90\xff\xef\x4f\xfe\x7f\x80\x1e" "\xf9\xff\x4d\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x5c\xb1\xaa\xe5\xff\x63" "\xdf\xff\x9e\x50\x93\x4c\xfa\x7f\x00\x00\x00\xc8\x41\xec\xfb\xdf\x1b" "\x6a\xa2\xff\x07\x00\x00\x80\xda\x88\x7d\xff\xfb\x42\x4d\xf4\xff\x00" "\x00\x00\x50\x1b\xb1\xef\x7f\x38\xd4\x24\x93\xfe\x5f\xfe\x3f\xcb\xfc" "\x7f\x7a\xca\xd5\xcb\xff\xbb\xfe\xbf\xfc\xbf\xeb\xff\xcb\xff\xaf\x8e" "\xfc\x7f\x7f\xf2\xff\x03\xb8\xfe\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x23\x55" "\xb5\xfc\x7f\xec\xfb\x1f\x09\x35\xc9\xa4\xff\x07\x00\x00\x80\x1c\xc4" "\xbe\xff\xfd\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\xff\x62\xa8" "\x89\xfe\x1f\x00\x00\x00\x6a\x23\xf6\xfd\x1f\x08\x35\xc9\xa4\xff\x97" "\xff\xcf\x32\xff\x5f\xe1\xeb\xff\xd7\x2d\xff\x3f\xde\x31\x3f\x72\xca" "\xff\x4f\xb6\xbd\x9e\x69\x5e\xca\xff\xcb\xff\xaf\x01\xf9\xff\xfe\xe4" "\xff\x07\x90\xff\x97\xff\xaf\x72\xfe\x3f\xcc\xe6\xcd\xcb\xac\x2f\xff" "\x4f\x15\x55\x2d\xff\x1f\xfb\xfe\x0f\x86\x9a\x64\xd2\xff\x03\x00\x00" "\x40\x0e\x62\xdf\xff\x4b\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7" "\xff\x72\xa8\x89\xfe\x1f\x00\x00\x00\x6a\x23\xf6\xfd\xbf\x12\x6a\x92" "\x49\xff\x5f\xc3\xfc\xff\x85\x42\xfe\x5f\xfe\xbf\x32\xf9\xff\xce\xf9" "\x91\x53\xfe\xdf\xf5\xff\x97\x92\xff\x5f\x1b\xf2\xff\xfd\xc9\xff\x0f" "\x20\xff\x2f\xff\x5f\xe5\xfc\xff\x00\xf2\xff\x54\x51\xd5\xf2\xff\xb1" "\xef\xff\xd5\x50\x93\x65\x1b\xbf\x1f\xfc\xd7\x10\x4f\x13\x00\x00\x00" "\xa8\x90\xd8\xf7\x7f\x28\xd4\x24\x93\xbf\xff\x03\x00\x00\x40\x0e\x62" "\xdf\x7f\x28\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe\x47\x43\x4d" "\x32\xe9\xff\x6b\x98\xff\x5f\xe5\xf5\xff\xe3\x15\x55\xe5\xff\xe5\xff" "\x47\x9d\xff\x1f\x93\xff\x97\xff\x97\xff\x5f\x03\xa3\xcb\xff\xbf\xe2" "\xfa\xa2\x90\xff\x97\xff\x97\xff\x97\xff\x97\xff\x97\xff\x67\x35\xaa" "\x96\xff\x8f\x7d\xff\xe1\x50\x93\x4c\xfa\x7f\x00\x00\x00\xc8\x41\xec" "\xfb\x7f\x2d\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe\x23\xa1\x26" "\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\xcf\x86\x9a\x64\xd2\xff\x5f\xc3" "\xfc\xff\x44\x35\xf3\xff\xae\xff\x7f\xa5\xf9\xff\x9f\xc8\xff\xbb\xfe" "\x7f\x20\xff\xdf\x9b\xfc\xff\xda\x70\xfd\xff\xfe\xe4\xff\x07\x90\xff" "\x97\xff\x97\xff\x97\xff\x67\xa4\xaa\x96\xff\x8f\x7d\xff\x5c\xa8\x49" "\x26\xfd\x3f\x00\x00\x00\xd4\x58\xfa\x75\x70\xec\xfb\x8f\x86\x9a\xe8" "\xff\x01\x00\x00\xa0\x36\x62\xdf\x7f\x2c\xd4\x44\xff\x0f\x00\x00\x00" "\xb5\x11\xfb\xfe\x0f\x87\x9a\x64\xd2\xff\xbb\xfe\xbf\xfc\xbf\xeb\xff" "\x5f\x8b\xfc\xff\x78\xc7\xf2\xf2\xff\x25\xf9\x7f\xf9\xff\x51\x90\xff" "\xef\x4f\xfe\x7f\x00\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\x46\xaa\x6a\xf9" "\xff\xd8\xf7\xcf\x87\x9a\x64\xd2\xff\x03\x00\x00\x40\x0e\x62\xdf\xff" "\x91\x50\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb\x3f\x1a\x6a\xa2\xff" "\x07\x00\x00\x80\xda\x88\x7d\xff\xf1\x50\x93\x4c\xfa\x7f\xf9\x7f\xf9" "\xff\xdc\xf3\xff\x8d\xa2\xb8\xe0\xfa\xff\xa3\xcd\xff\x6f\x92\xff\xef" "\x49\xfe\x7f\x6d\xc8\xff\xf7\x27\xff\x3f\x80\xfc\xff\x5a\xe6\xe7\xaf" "\x1f\xc9\xa0\xaf\xdd\xf8\x97\x90\xff\x97\xff\x67\xa9\xaa\xe5\xff\x63" "\xdf\x7f\x22\xd4\x24\x93\xfe\xff\xff\xd8\xbb\x8f\x26\xbb\xce\x6a\x8f" "\xc3\x1b\x63\x4b\xdd\x23\xf8\x08\x8c\x19\x31\x84\x91\xf9\x08\x4c\x99" "\x51\xc5\x98\x68\x93\x83\x65\x72\x06\x93\x73\x30\x39\xe7\x60\xa2\xc9" "\x39\xe7\x68\x93\x73\x34\xd1\x50\xd5\x94\x5b\x6b\x2d\xa9\xfb\x1c\xed" "\x2d\xa9\x8f\xfa\xec\xfd\xbe\xcf\x33\x59\x57\xba\x16\x7d\x84\x1b\x73" "\xff\x57\xf5\xab\x17\x00\x00\x00\x7a\x90\xbb\xff\xbe\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\x7f\xbf\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xbf\x7f\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x7b\xef\xff\x87\xad\xbc" "\xff\x7f\xf0\xaf\x6f\xad\xff\xf7\xfe\xff\x7a\xfa\xff\xe3\xb1\xd2\xdf" "\x5f\xbe\xfe\xaf\x3b\x57\x14\x7e\xce\xfe\xff\x2e\x77\xbd\xfa\x5e\xfa" "\x7f\xfd\xbf\xfe\x7f\x94\xf7\xff\xf5\xff\xfa\x7f\x0e\x9b\x5b\xff\x9f" "\xbb\xff\x01\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x81\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x55\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\x5f\x1d\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\xff\x40\xff\x7f\xa3\xfe\x5f\xff\xbf\x6c\xde\xff\x1f\xa7\xff\x9f\xa0" "\xff\xd7\xff\xeb\xff\xf5\xff\x6c\xd4\xdc\xfa\xff\xdc\xfd\x0f\x8a\x5b" "\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x0f\x8e\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x87\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x43\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\x5f\x4a\xff\x7f\xc2\xfb" "\xff\x87\x7e\x3f\xfa\x7f\xfd\xff\x3a\xfa\xff\x71\xfa\xff\x09\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xcf\x46\xcd\xad\xff\xcf\xdd\xff\xb0\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xf0\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\x7f\x44\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x32" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\xff\xa5\xf4\xff\xc7\xf4\xfe\xbf" "\xfe\x5f\xff\xbf\x70\xd7\x0f\x67\xfe\x99\xa0\xff\x5f\xa5\xff\x9f\x30" "\xd1\xff\x0f\x83\xfe\x7f\xcc\x79\xf7\xf3\xeb\x7f\x7b\xcb\xf9\xfc\xe7" "\xa0\xff\xd7\xff\xb3\x6a\x6e\xfd\x7f\xee\xfe\x47\xc5\x2d\x77\x1f\x86" "\x13\x17\xfb\x9b\x04\x00\x00\x00\x66\x25\x77\xff\xa3\xe3\x96\x4e\xfe" "\xfc\x1f\x00\x00\x00\x7a\x90\xbb\xff\x9a\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\x3f\x15\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xbf\xfe\xeb\xeb\xff\x97\xc9\xfb\xff\xe3\x8e\xde\xff\xdf\xf9\x8e" "\xf7\xb9\x77\xbf\xfd\xbf\xf7\xff\xc7\x79\xff\x7f\xd3\xfd\xff\x6d\xdf" "\x19\xfa\x7f\x96\x6d\x6e\xfd\x7f\xee\xfe\x6b\xe3\x96\x4e\xf6\x3f\x00" "\x00\x00\xf4\x20\x77\xff\x63\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\xb1\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb8\xb8\xa5\x93" "\xfd\xaf\xff\x6f\xad\xff\xbf\xfd\x81\x5f\x77\x56\xff\xbf\x5f\xbb\xe8" "\xff\xf5\xff\xfa\x7f\xfd\x7f\xeb\xf4\xff\xe3\xbc\xff\x3f\x61\xff\x1f" "\x73\xbb\xf5\x43\xfd\xbf\xfe\xdf\xfb\xff\xfa\x7f\x8e\x66\x6e\xfd\x7f" "\xee\xfe\xc7\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x27\xc4" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x13\xe3\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\x49\x71\x4b\x27\xfb\x5f\xff\xdf\x5a\xff\x7f\xf0" "\xd7\x79\xff\x5f\xff\xbf\xee\xeb\xeb\xff\xf5\xff\x2d\xd3\xff\x8f\xd3" "\xff\x4f\x68\xe5\xfd\xff\x8b\xfc\xae\xd9\x76\x3f\x7f\x54\xdb\xfe\xfc" "\xfa\x7f\xfd\x3f\xab\xe6\xd6\xff\xe7\xee\x7f\x72\xdc\xd2\xc9\xfe\x07" "\x00\x00\x80\x1e\xe4\xee\x7f\x4a\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\x3f\x35\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x16\xb7\x74" "\xb2\xff\xf5\xff\xfa\xff\x65\xf4\xff\xf9\x15\xe6\xd4\xff\xef\xed\xed" "\x1d\xfa\x1e\xd2\xff\x9f\xb6\xf4\xfe\x3f\xe9\xff\x97\x49\xff\x3f\x4e" "\xff\x3f\xa1\x95\xfe\xff\x22\x6d\xbb\x9f\x5f\xfa\xe7\xd7\xff\xeb\xff" "\x59\x35\xb7\xfe\x3f\x77\xff\xd3\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4" "\x20\x77\xff\x33\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x99\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xac\xb8\xa5\x93\xfd\xaf\xff" "\xd7\xff\x2f\xa3\xff\xf7\xfe\xbf\xfe\xdf\xfb\xff\xfa\xff\xf3\xa3\xff" "\x1f\xa7\xff\x9f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x6c\xd4\xdc\xfa\xff" "\xdc\xfd\xd7\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x67\xc7" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x73\xe2\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\xb9\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xeb\xbf\xbe\xfe\x7f\x99\xf4\xff\xe3\xf4\xff\x13\x3a\xef" "\xff\x87\x53\xfa\x7f\xfd\xbf\xfe\x9f\xcd\x9a\x51\xff\x7f\xd6\xaf\xda" "\x19\x9e\x17\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x9f\x1f\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x2f\x88\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x17\xc6\x2d\x9d\xec\x7f\xfd\xff\x6c\xfa\xff\xfd\x9c" "\xaf\xad\xfe\x7f\x77\x18\x06\xfd\xff\xd0\x69\xff\xbf\x7b\xd6\xdf\xcf" "\xfa\xbe\xd4\xff\xeb\xff\x8f\x81\xfe\x7f\x9c\xfe\x7f\x42\xe7\xfd\xff" "\xb6\xfb\xf9\xa5\x7f\x7e\xfd\xbf\xfe\x9f\xc3\x76\xce\xf9\xbf\xd9\xd6" "\xfb\xff\xb9\xfb\x5f\x74\xf8\xf3\x75\xb2\xff\x01\x00\x00\xa0\x07\xb9" "\xfb\x5f\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x2f\x89\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x97\xc6\x2d\x9d\xec\x7f\xfd\xff\x6c" "\xfa\xff\x7d\x6d\xf5\xff\xde\xff\x3f\xfc\xfd\xd1\x53\xff\xef\xfd\xff" "\x55\xfa\xff\xe3\xa1\xff\x1f\xa7\xff\x9f\xa0\xff\xd7\xff\xeb\xff\xf5" "\xff\x6c\xd4\x55\x37\x9d\xfe\xbf\x67\x0f\xdb\x56\xff\x9f\xbb\xff\x65" "\x71\xd3\x89\x2b\x2e\xfa\xb7\x08\x00\x00\x00\xcc\x4c\xee\xfe\x97\xc7" "\x2d\x9d\xfc\xf9\x3f\x00\x00\x00\xf4\x20\x77\xff\x2b\xe2\x16\xfb\x1f" "\x00\x00\x00\x16\xea\xba\x95\x9f\xc9\xdd\xff\xca\xb8\xa5\x93\xfd\xaf" "\xff\xdf\x6c\xff\x7f\xe2\xac\x9f\xd3\xff\xeb\xff\x0f\x7f\x7f\xe8\xff" "\xf5\xff\xfa\xff\x4b\x4f\xff\x3f\x4e\xff\x3f\x41\xff\xaf\xff\xd7\xff" "\xeb\xff\xd9\xa8\xb9\xf5\xff\xb9\xfb\x5f\x15\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\xaf\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\x57\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x6b\xe2\x96\x4e\xf6" "\xbf\xfe\xdf\xfb\xff\xfa\x7f\xfd\xff\x54\xff\x7f\xe6\x39\x54\xfd\xbf" "\xfe\x7f\xfe\xf4\xff\xe3\xf4\xff\x13\xf4\xff\xfa\xff\x91\xcf\x7f\xf8" "\xbf\x9f\x0e\xdb\x40\xff\x7f\xf2\xcc\xff\xa8\xff\xa7\x0d\x17\xd0\xff" "\xef\xed\xed\x5d\x73\xc9\xfb\xff\xdc\xfd\xaf\x8d\x5b\x3a\xd9\xff\x00" "\x00\x00\xd0\x83\xdc\xfd\xaf\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\xd7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\xe3\xb6\xdd\xbf\x3b\x0c\xc3" "\x1b\xf6\x7f\xd4\xdf\xfe\xd7\xff\x77\xda\xff\xe7\xb7\xfa\xb2\xfa\xff" "\x53\xc3\xa0\xff\xf7\xfe\xbf\xfe\x5f\xff\x3f\x4e\xff\x3f\x4e\xff\x3f" "\x41\xff\xaf\xff\xf7\xfe\xbf\xfe\x9f\x8d\x9a\xdb\xfb\xff\xb9\xfb\xdf" "\x18\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xdf\x14\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\xb7\xc4\x2d\x9d\xec\x7f\xfd\x7f\xa7\xfd\xbf\xf7\xff\xf5\xff" "\xfa\xff\xe3\xee\xff\x6f\x1d\xf4\xff\xc7\x62\x11\xfd\xff\xee\xb9\xbf" "\xfe\xdc\xfb\xff\x6b\xf5\xff\xfa\xff\x11\xdd\xf5\xff\xf7\xb8\xdb\x81" "\x1f\xea\xff\xf5\xff\xac\x9a\x5b\xff\x9f\xbb\xff\xad\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\x6d\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xf6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x47\xdc" "\x74\x79\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\xbf\xfe" "\x31\xbf\xff\x7f\x62\x18\x06\xfd\xff\x06\x2c\xa2\xff\x1f\x31\xf7\xfe" "\x7f\x33\xef\xff\x1f\xfe\x4f\xf9\x19\xfa\x7f\xfd\xff\x92\x3f\xbf\xfe" "\x5f\xff\xcf\xaa\xb9\xf5\xff\xb9\xfb\xdf\x19\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\xdf\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\xef\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xf7\xc4\x2d\x9d\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x6f\xbe\xff\xbf\x76\x11\xfd\xbf\xf7" "\xff\x37\x44\xff\x3f\x6e\x1e\xfd\xff\xb9\xe9\xff\xf5\xff\x4b\xfe\xfc" "\xfa\x7f\xfd\x3f\xe7\x6f\x5b\xfd\x7f\xee\xfe\xf7\xc6\x2d\x9d\xec\x7f" "\x00\x00\x00\xe8\x41\xee\xfe\xf7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\xfb\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x03\x71\x4b" "\x27\xfb\x5f\xff\xaf\xff\xbf\x90\xfe\x3f\x3f\xa7\xfe\xbf\xad\xfe\xff" "\xe4\xb1\xf4\xff\xa7\x86\xe1\xbc\xfb\xff\x9d\x03\xff\x7a\x9d\xbc\xff" "\xaf\xff\xdf\x10\xfd\xff\xb8\xf3\xe9\xff\xf7\xbf\xb7\xf5\xff\xfa\x7f" "\xfd\x7f\xaf\xfd\xff\x75\xfa\x7f\x36\x69\x6e\xef\xff\xe7\xee\xbf\x21" "\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x30\x6e\xfd\xbf\x6e" "\xed\x7f\x00\x00\x00\x68\x46\xee\xfe\x0f\xc5\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x87\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xef\xfd\x7f\xfd" "\x7f\xf3\xef\xff\xeb\xff\xbb\xa2\xff\x1f\xe7\xfd\xff\x09\xfa\x7f\xfd" "\xbf\xfe\xdf\xfb\xff\x6c\xd4\xdc\xfa\xff\xdc\xfd\x1f\x89\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\x1f\x8d\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x8f\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x8d\x71" "\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xa7\xff\x1e\xea" "\xff\xdb\xa0\xff\x1f\x77\x3c\xfd\xff\xae\xfe\x5f\xff\x5f\xfd\xfc\xed" "\xe2\x3f\x05\xfa\x7f\xfd\xff\xd4\xaf\xa7\x4d\x73\xeb\xff\x73\xf7\x7f" "\x3c\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x22\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x19\xb7\xd8\xff\x00\x00\x00\xb0\x48" "\x97\xaf\xf9\xb9\xdc\xfd\x9f\x8a\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x5f\xff\xf5\xf5\xff\xcb\xb4\x95\xfe\x3f\xbf\x29\xf4" "\xff\xde\xff\x0f\xfd\xf4\xff\x77\x3a\xf0\xa3\xa5\xbd\xff\x7f\xf8\xbf" "\xbf\xf4\xff\xfa\x7f\x36\x6f\x6e\xfd\x7f\xee\xfe\x4f\xc7\x2d\x9d\xec" "\x7f\x00\x00\x00\xe8\x41\xee\xfe\xcf\xc4\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x67\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x73\x71" "\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\xbf\xbe\xfe" "\x7f\x99\xbc\xff\x3f\x4e\xff\x3f\x41\xff\xbf\xd5\xf7\xf3\x97\xfe\xf9" "\xf5\xff\xfa\x7f\x56\xcd\xad\xff\xcf\xdd\xff\xf9\xb8\xa5\x93\xfd\x0f" "\x00\x00\x00\x3d\xc8\xdd\xff\x85\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\x62\xdc\x62\xff\x03\x00\x00\x40\x33\xf6\x77\x7f\xc6\x65\x1d" "\xee\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xff\xfa\xfa\xff\x65" "\xd2\xff\x8f\xd3\xff\x4f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6a\x6e" "\xfd\xff\x97\xf6\x7f\xd5\xce\xf0\xe5\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x3d\xc8\xdd\xff\x95\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x6a" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x2d\x6e\xe9\x64\xff\xeb" "\xff\xf5\xff\xcb\xe8\xff\xf7\xf6\xf6\xae\xd1\xff\xeb\xff\x0f\xfe\x7e" "\xce\xf4\xff\x37\xeb\xff\x29\xfa\xff\x71\xfa\xff\x09\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xcf\x46\xcd\xad\xff\xcf\xdd\xff\xf5\xb8\xa5\x93\xfd\x0f" "\x00\x00\x00\x3d\xc8\xdd\xff\x8d\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\x66\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x2b\x6e\xe9" "\x64\xff\xeb\xff\x67\xd0\xff\xef\xe8\xff\xbd\xff\xaf\xff\x1f\xbc\xff" "\xbf\xda\xff\x5f\x76\xfa\x1f\xca\xfa\xff\x0b\xa3\xff\x1f\xa7\xff\x9f" "\xd0\x62\xff\xbf\x73\xfe\xbf\xfd\x6d\xf7\xf3\x47\x75\xc9\x3e\xff\x8e" "\xfe\x5f\xff\xcf\xc5\x9a\x5b\xff\x9f\xbb\xff\xdb\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\x3b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xdd\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x5e\xdc\xd2" "\xc9\xfe\xd7\xff\x1f\x5f\xff\x7f\xdb\xbf\x77\xbd\xbc\xff\xbf\x3b\xac" "\xff\xfc\xfa\x7f\xfd\xbf\xfe\xdf\xfb\xff\x97\x9a\xfe\x7f\x9c\xfe\x7f" "\x42\x8b\xfd\xff\x05\xd0\xff\x7b\xff\x5f\xff\xcf\xa6\xcd\xad\xff\xcf" "\xdd\xff\xfd\xb8\xe5\xe0\xf0\xbb\xe2\xc2\x7e\x97\x00\x00\x00\xc0\x9c" "\xe4\xee\xff\x41\xdc\xd2\xc9\x9f\xff\x03\x00\x00\x40\x0f\x72\xf7\xff" "\x30\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x14\xb7\x74\xb2\xff" "\xf5\xff\x33\x78\xff\xbf\xc1\xfe\xdf\xfb\xff\xeb\xbf\x3f\xf4\xff\xb3" "\xee\xff\x2f\xd3\xff\xb7\xe1\x02\xfb\xfb\x1b\x0e\xff\x84\xfe\x3f\xe8" "\xff\xf5\xff\xfa\x7f\xfd\xff\x91\xfa\xff\xfc\x6e\xd6\xff\xf7\x6e\x6e" "\xfd\x7f\xee\xfe\x1f\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\x9f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x4d\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\x7f\x73\xdc\x72\xd6\xfe\x5f\xd7\x76\xb7\x42" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\xbf\xbe\xfe\x7f\x99\xbc\xff" "\x3f\xee\x7c\xfb\xff\x93\xc3\xd1\xfa\xff\xd4\x7d\xff\xbf\xb3\xf2\xaf" "\xaf\xff\xbf\x84\xb6\xfd\xf9\xf5\xff\xde\xff\x67\xd5\xdc\xfa\xff\xdc" "\xfd\x3f\x8d\x5b\xfc\xf9\x3f\x00\x00\x00\x2c\xce\x15\xe7\xf8\xf9\xdc" "\xfd\x3f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9f\xc7\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\x2f\xe2\x96\x5b\x2e\xdb\xd6\x47\x3a" "\x56\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xff\xf5\xf5\xff\xcb\xa4" "\xff\x1f\xe7\xfd\xff\x09\xde\xff\xdf\x44\x3f\x7f\xa5\xfe\xbf\x8d\xfe" "\x7f\x18\xf4\xff\x1c\xdd\xdc\xfa\xff\xdc\xfd\xbf\x8c\x5b\xfc\xf9\x3f" "\x00\x00\x00\x34\x23\x77\xff\xaf\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\xd7\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x9b\xb8\xa5" "\x93\xfd\xaf\xff\xd7\xff\x1f\xb1\xff\xdf\x4f\x33\xf5\xff\xa7\xe9\xff" "\x4f\xd3\xff\xaf\xa7\xff\x3f\x1e\xfa\xff\x71\xfa\xff\x09\xfa\x7f\xef" "\xff\xeb\xff\xbd\xff\xcf\x46\xcd\xad\xff\xcf\xdd\xff\xdb\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xbb\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xff\x7d\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x21" "\x6e\xe9\x64\xff\x6f\xad\xff\x8f\x7f\xab\xf5\xff\x8b\xef\xff\xbd\xff" "\xaf\xff\xd7\xff\xeb\xff\x67\x45\xff\x3f\xae\xd1\xfe\x7f\x77\x18\x06" "\xfd\xff\x06\x6c\xbb\x9f\x5f\xfa\xe7\xd7\xff\xeb\xff\x59\x35\xb7\xfe" "\x3f\x77\xff\x1f\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x9f" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xcf\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\x97\xb8\xa5\x93\xfd\xef\xfd\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x5f\xff\xf5\xf5\xff\xcb\xa4\xff\x1f\xd7\x68\xff\x7f" "\xe4\xf7\xff\xeb\x6f\x94\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x51\x73\xeb" "\xff\x73\xf7\xff\x35\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff" "\x2d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x6f\x89\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xbf\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\xaf\xff\xfa\xfa\xff\x65\xd2\xff\x8f\xdb\x66\xff\x7f" "\xcf\x3b\x4c\x7f\xd9\x6d\xf5\xff\x45\xff\x9f\x1f\x41\xff\xaf\xff\xd7" "\xff\xb3\x11\x73\xeb\xff\x73\xf7\xff\x23\x6e\xe9\x64\xff\x03\x00\x00" "\x40\x0f\x72\xf7\xff\x33\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff" "\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x8e\x5b\x3a\xd9\xff" "\x13\xfd\xff\xc9\xfa\x0b\xf5\xff\xa3\xf4\xff\x07\x3f\xbf\xfe\x7f\xfd" "\xf7\x87\xfe\x5f\xff\xaf\xff\xbf\xf4\xf4\xff\xe3\xbc\xff\x3f\x41\xff" "\xef\xfd\x7f\xfd\xbf\xfe\x9f\x8d\x9a\x5b\xff\x9f\xbb\xff\x3f\x71\x4b" "\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xd6\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\xff\x6f\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff" "\x2f\x6e\xe9\x64\xff\x7b\xff\x7f\x49\xfd\xff\x95\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x9f\xa0\xff\x1f\xa7\xff\x9f\xa0\xff\xd7\xff\xeb\xff" "\xf5\xff\x6c\xd4\xdc\xfa\xff\xdc\xfd\xff\x0f\x00\x00\xff\xff\xb6\xbd" "\x4c\x9e", 25077); syz_mount_image( /*fs=*/0x200000000000, /*dir=*/0x2000000004c0, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x20108c0, /*opts=*/0x200000000940, /*chdir=*/1, /*size=*/0x61f5, /*img=*/0x2000000075c0); break; case 1: // mount$bind arguments: [ // src: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 2e 2e 2f 66 69 6c 65 30 00} (length // 0x11) // } // type: nil // flags: mount_flags = 0x101091 (8 bytes) // data: const = 0x0 (8 bytes) // ] memcpy((void*)0x2000000002c0, ".\000", 2); memcpy((void*)0x200000000200, "./file0/../file0\000", 17); syscall(__NR_mount, /*src=*/0x2000000002c0ul, /*dst=*/0x200000000200ul, /*type=*/0ul, /*flags=MS_SHARED|MS_SYNCHRONOUS|MS_RDONLY|MS_DIRSYNC|MS_BIND*/ 0x101091ul, /*data=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; if ((reason = setup_usb())) printf("the reproducer may not work as expected: USB injection setup " "failed: %s\n", reason); if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); if ((reason = setup_swap())) printf("the reproducer may not work as expected: swap setup failed: %s\n", reason); use_temporary_dir(); do_sandbox_none(); return 0; }