// https://syzkaller.appspot.com/bug?id=ef5c7d291bbe0e188ef011cd311245a93c1501f0 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_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 initialize_tun(void) { 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 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 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 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define XT_TABLE_SIZE 1536 #define XT_MAX_ENTRIES 10 struct xt_counters { uint64_t pcnt, bcnt; }; struct ipt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_entries; unsigned int size; }; struct ipt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_table_desc { const char* name; struct ipt_getinfo info; struct ipt_replace replace; }; static struct ipt_table_desc ipv4_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; static struct ipt_table_desc ipv6_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; #define IPT_BASE_CTL 64 #define IPT_SO_SET_REPLACE (IPT_BASE_CTL) #define IPT_SO_GET_INFO (IPT_BASE_CTL) #define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1) struct arpt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_entries; unsigned int size; }; struct arpt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_table_desc { const char* name; struct arpt_getinfo info; struct arpt_replace replace; }; static struct arpt_table_desc arpt_tables[] = { {.name = "filter"}, }; #define ARPT_BASE_CTL 96 #define ARPT_SO_SET_REPLACE (ARPT_BASE_CTL) #define ARPT_SO_GET_INFO (ARPT_BASE_CTL) #define ARPT_SO_GET_ENTRIES (ARPT_BASE_CTL + 1) static void checkpoint_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; if (table->info.valid_hooks == 0) continue; struct ipt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, level, IPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_arptables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_arptables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; if (table->info.valid_hooks == 0) continue; struct arpt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } else { } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, SOL_IP, ARPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } #define NF_BR_NUMHOOKS 6 #define EBT_TABLE_MAXNAMELEN 32 #define EBT_CHAIN_MAXNAMELEN 32 #define EBT_BASE_CTL 128 #define EBT_SO_SET_ENTRIES (EBT_BASE_CTL) #define EBT_SO_GET_INFO (EBT_BASE_CTL) #define EBT_SO_GET_ENTRIES (EBT_SO_GET_INFO + 1) #define EBT_SO_GET_INIT_INFO (EBT_SO_GET_ENTRIES + 1) #define EBT_SO_GET_INIT_ENTRIES (EBT_SO_GET_INIT_INFO + 1) struct ebt_replace { char name[EBT_TABLE_MAXNAMELEN]; unsigned int valid_hooks; unsigned int nentries; unsigned int entries_size; struct ebt_entries* hook_entry[NF_BR_NUMHOOKS]; unsigned int num_counters; struct ebt_counter* counters; char* entries; }; struct ebt_entries { unsigned int distinguisher; char name[EBT_CHAIN_MAXNAMELEN]; unsigned int counter_offset; int policy; unsigned int nentries; char data[0] __attribute__((aligned(__alignof__(struct ebt_replace)))); }; struct ebt_table_desc { const char* name; struct ebt_replace replace; char entrytable[XT_TABLE_SIZE]; }; static struct ebt_table_desc ebt_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "broute"}, }; static void checkpoint_ebtables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (size_t i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_INFO, &table->replace, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->replace.entries_size > sizeof(table->entrytable)) exit(1); table->replace.num_counters = 0; table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_ENTRIES, &table->replace, &optlen)) exit(1); } close(fd); } static void reset_ebtables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; if (table->replace.valid_hooks == 0) continue; struct ebt_replace replace; memset(&replace, 0, sizeof(replace)); strcpy(replace.name, table->name); socklen_t optlen = sizeof(replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INFO, &replace, &optlen)) exit(1); replace.num_counters = 0; table->replace.entries = 0; for (unsigned h = 0; h < NF_BR_NUMHOOKS; h++) table->replace.hook_entry[h] = 0; if (memcmp(&table->replace, &replace, sizeof(table->replace)) == 0) { char entrytable[XT_TABLE_SIZE]; memset(&entrytable, 0, sizeof(entrytable)); replace.entries = entrytable; optlen = sizeof(replace) + replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_ENTRIES, &replace, &optlen)) exit(1); if (memcmp(table->entrytable, entrytable, replace.entries_size) == 0) continue; } for (unsigned j = 0, h = 0; h < NF_BR_NUMHOOKS; h++) { if (table->replace.valid_hooks & (1 << h)) { table->replace.hook_entry[h] = (struct ebt_entries*)table->entrytable + j; j++; } } table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (setsockopt(fd, SOL_IP, EBT_SO_SET_ENTRIES, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_net_namespace(void) { checkpoint_ebtables(); checkpoint_arptables(); checkpoint_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); checkpoint_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void reset_net_namespace(void) { reset_ebtables(); reset_arptables(); reset_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); reset_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void mount_cgroups(const char* dir, const char** controllers, int count) { if (mkdir(dir, 0777)) { return; } char enabled[128] = {0}; int i = 0; for (; i < count; i++) { if (mount("none", dir, "cgroup", 0, controllers[i])) { continue; } umount(dir); strcat(enabled, ","); strcat(enabled, controllers[i]); } if (enabled[0] == 0) { if (rmdir(dir) && errno != EBUSY) exit(1); return; } if (mount("none", dir, "cgroup", 0, enabled + 1)) { if (rmdir(dir) && errno != EBUSY) exit(1); } if (chmod(dir, 0777)) { } } static void mount_cgroups2(const char** controllers, int count) { if (mkdir("/syzcgroup/unified", 0777)) { return; } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { if (rmdir("/syzcgroup/unified") && errno != EBUSY) exit(1); return; } if (chmod("/syzcgroup/unified", 0777)) { } int control = open("/syzcgroup/unified/cgroup.subtree_control", O_WRONLY); if (control == -1) return; int i; for (i = 0; i < count; i++) if (write(control, controllers[i], strlen(controllers[i])) < 0) { } close(control); } static void setup_cgroups() { const char* unified_controllers[] = {"+cpu", "+io", "+pids"}; const char* net_controllers[] = {"net", "net_prio", "devices", "blkio", "freezer"}; const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit", "memory"}; if (mkdir("/syzcgroup", 0777)) { return; } mount_cgroups2(unified_controllers, sizeof(unified_controllers) / sizeof(unified_controllers[0])); mount_cgroups("/syzcgroup/net", net_controllers, sizeof(net_controllers) / sizeof(net_controllers[0])); mount_cgroups("/syzcgroup/cpu", cpu_controllers, sizeof(cpu_controllers) / sizeof(cpu_controllers[0])); write_file("/syzcgroup/cpu/cgroup.clone_children", "1"); write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1"); } static void setup_cgroups_loop() { int pid = getpid(); char file[128]; char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); write_file(file, "32"); snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(file, sizeof(file), "%s/memory.soft_limit_in_bytes", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.limit_in_bytes", cgroupdir); write_file(file, "%d", 300 << 20); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); } static void setup_cgroups_test() { char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } } static void initialize_cgroups() { if (mkdir("./syz-tmp/newroot/syzcgroup", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/unified", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/cpu", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/net", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/syzcgroup/unified", "./syz-tmp/newroot/syzcgroup/unified", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/cpu", "./syz-tmp/newroot/syzcgroup/cpu", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/net", "./syz-tmp/newroot/syzcgroup/net", NULL, bind_mount_flags, NULL)) { } } static void setup_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); initialize_cgroups(); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_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); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_tun(); initialize_wifi_devices(); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_loop() { setup_cgroups_loop(); checkpoint_net_namespace(); } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } reset_net_namespace(); } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); setup_cgroups_test(); write_file("/proc/self/oom_score_adj", "1000"); 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_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0) && errno != EBUSY) { return NULL; } if (!write_file("/proc/sys/fs/binfmt_misc/register", ":syz0:M:0:\x01::./file0:") || !write_file("/proc/sys/fs/binfmt_misc/register", ":syz1:M:1:\x02::./file0:POC")) return "write(/proc/sys/fs/binfmt_misc/register) failed"; return NULL; } static const char* setup_usb() { if (chmod("/dev/raw-gadget", 0666)) return "failed to chmod /dev/raw-gadget"; return NULL; } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #define 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; } 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) { setup_loop(); int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: NONFAILING(memcpy((void*)0x20000000, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200002c0, "./bus\000", 6)); NONFAILING(memcpy( (void*)0x20000300, "\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\x34\x2c\x71\x75\x6f\x74\x61\x2c\x65" "\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\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\x34\x2c\x75\x6d\x61\x73\x6b\x3d\x30\x30\x30" "\x37\x2c\x75\x73\x72\x71\x75\x6f\x74\x61\x2c\x65\x72\x72\x6f\x72\x73" "\x3d\x72\x65\x6d\x6f\x75\x6e\x74\x2d\x72\x6f\x00\x6e\x6f\x64\x69\x73" "\x63\x61\x72\x64\x2c\x72\x65\x73\x69\x7a\x65\x3d\x30\x78\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x31\x30\x30\x30\x30\x2c\x75\x6d\x61" "\x73\x6b\x3d\x30\x78\x30\x10\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x32\x2c\x71\x75\x6f\x74\x61\x2c\x67\x69\x5b\x3d\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 199)); NONFAILING(*(uint8_t*)0x200003c7 = 0); NONFAILING(memcpy((void*)0x200003c8, ",resize=0x0000000000008045,resize,uid>", 38)); NONFAILING(sprintf((char*)0x200003ee, "%020llu", (long long)-1)); NONFAILING(*(uint8_t*)0x20000402 = 0); NONFAILING(memcpy( (void*)0x20000440, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\xa5\x34\xb5" "\x7a\xa8\x4a\x84\x90\x9b\x16\x68\x29\x4d\xe2\xa4\x84\x40\x81\x36\x07" "\x38\x70\xe9\x01\xe5\x8a\x12\xb9\x6e\x15\x91\x02\x4a\x02\x4a\x2b\x4b" "\x71\xe5\x0b\x07\x4e\xfc\x05\x20\x24\xb8\x21\xc4\x11\x71\xe0\x8a\xd4" "\x03\x57\x6e\x9c\x38\x11\xc9\x46\x02\xf5\xc4\xa0\xb1\x9f\x27\x9e\xdd" "\xec\x66\xed\xda\xde\x59\x7b\x3e\x1f\xc9\x99\xf9\xcd\x33\xeb\x7d\xc6" "\xdf\x9d\x7d\xc9\xcc\xec\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\x7c\xef\xbb\xdf\x5f\x69\x45\xc4\x8d\x9f\xa5\x05" "\x4b\x11\x9f\x89\x4e\x44\x3b\x62\xa1\xac\x97\x23\x62\x61\x79\x29\xaf" "\xdf\x8d\x88\xe7\x63\xa7\x39\x9e\x8b\x88\xde\x5c\x44\x79\xfb\x9d\x7f" "\x9e\x89\x78\x3d\x22\x3e\x3e\x13\xb1\xb5\xbd\xbe\x5a\x2e\xbe\xb4\xcf" "\x7e\x7c\xe7\x0f\x7f\xff\xcd\x0f\x9e\x7a\xfb\x6f\xbf\xef\x5d\xf8\xef" "\x1f\xef\x75\xde\x18\xb7\xde\xfd\xfb\xbf\xf8\xcf\x9f\x1e\x1c\x6e\x9b" "\x01\x00\x00\xa0\x69\x8a\xa2\x28\x5a\xe9\x63\xfe\xd9\xf4\xf9\xbe\x5d" "\x77\xa7\x00\x80\xa9\xc8\xaf\xff\x45\x92\x97\x9f\xfa\xfa\x97\xff\x7c" "\xfb\xcf\xb3\xd4\x1f\xb5\x5a\xad\x56\xab\xa7\x50\x57\x15\xa3\x3d\xa8" "\x16\x11\xb1\x51\xbd\x4d\xf9\x9e\xc1\xe1\x78\x00\x38\x61\x36\xe2\x93" "\xba\xbb\x40\x8d\xe4\xdf\x68\xdd\x88\x78\xaa\xee\x4e\x00\x33\xad\x55" "\x77\x07\x38\x16\x5b\xdb\xeb\xab\xad\x94\x6f\xab\xfa\x7a\xb0\xbc\xdb" "\x9e\xcf\x05\x19\xc8\x7f\xa3\xf5\xe8\xfa\x8e\x71\xd3\x49\x86\xcf\x31" "\x99\xd6\xe3\x6b\x33\x3a\xf1\xec\x98\xfe\x2c\x4c\xa9\x0f\xb3\x24\xe7" "\xdf\x1e\xce\xff\xc6\x6e\x7b\x3f\xad\x77\xdc\xf9\x4f\xcb\xb8\xfc\xfb" "\xbb\x97\x3e\x35\x4e\xce\xbf\x33\x9c\xff\x90\xd3\x93\x7f\x7b\x64\xfe" "\x4d\x95\xf3\xef\x1e\x28\xff\x8e\xfc\x01\x00\x00\x00\x00\x60\x86\xe5" "\xff\xff\x5f\xaa\xf9\xf8\xef\xdc\xe1\x37\x65\x5f\x9e\x74\xfc\x77\x79" "\x4a\x7d\x00\x00\x00\x00\x00\x00\x00\x80\xa3\x76\xd8\xf1\xff\x1e\x31" "\xfe\x1f\x00\x00\x00\xcc\xac\xf2\xb3\x7a\xe9\x57\x67\xf6\x96\x8d\xfb" "\x2e\xb6\x72\xf9\xf5\x56\xc4\xd3\x43\xeb\x03\x0d\x93\x2e\x96\x59\xac" "\xbb\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x24\xdd\xdd\x73" "\x78\xaf\xb7\x22\x7a\x11\xf1\xf4\xe2\x62\x51\x14\xe5\x4f\xd5\x70\x7d" "\x50\x87\xbd\xfd\x49\xd7\xf4\xed\x87\x26\xab\xfb\x49\x1e\x00\x00\x76" "\x7d\x7c\x66\xe8\x5a\xfe\x56\xc4\x7c\x44\x5c\x4f\xdf\xf5\xd7\x5b\x5c" "\x5c\x2c\x8a\xf9\x85\xc5\x62\xb1\x58\x98\xcb\xef\x67\xfb\x73\xf3\xc5" "\x42\xe5\x73\x6d\x9e\x96\xcb\xe6\xfa\xfb\x78\x43\xdc\xed\x17\xe5\x2f" "\x9b\xaf\xdc\xae\x6a\xd2\xe7\xe5\x49\xed\xc3\xbf\xaf\xbc\xaf\x7e\xd1" "\xd9\x47\xc7\x8e\x48\x2f\xfd\x35\xc7\x34\xd7\x14\x36\x00\x24\xbb\xaf" "\x46\x5b\x5e\x91\x4e\x99\xa2\x78\x66\xdc\x9b\x0f\x18\x60\xff\x3f\x85" "\x96\x62\xa9\xee\xc7\x15\xb3\xaf\xee\x87\x29\x00\x00\x00\x70\xfc\x8a" "\xa2\x28\x5a\xe9\xeb\xbc\xcf\xa6\x63\xfe\xed\xba\x3b\x05\x00\x4c\x45" "\x7e\xfd\x1f\x3e\x2e\x70\xa8\xba\x3d\xa6\x3d\xe2\x68\x7e\xbf\x5a\xad" "\x56\xab\xd5\xea\x4f\x55\x57\x15\xa3\x3d\xa8\x16\x11\xb1\x51\xbd\x4d" "\xf9\x9e\xc1\x70\xfc\x00\x70\xc2\x6c\xc4\x27\x75\x77\x81\x1a\xc9\xbf" "\xd1\xba\x11\xf1\x7c\xdd\x9d\x00\x66\x5a\xab\xee\x0e\x70\x2c\xb6\xb6" "\xd7\x57\x5b\x29\xdf\x56\xf5\xf5\x20\x8d\xef\x9e\xcf\x05\x19\xc8\x7f" "\xa3\xb5\x73\xbb\x7c\xfb\x51\xd3\x49\x86\xcf\x31\x99\xd6\xe3\x6b\x33" "\x3a\xf1\xec\x98\xfe\x3c\x37\xa5\x3e\xcc\x92\x9c\x7f\x7b\x38\xff\x1b" "\xbb\xed\xfd\xb4\xde\x71\xe7\x3f\x2d\xe3\xf2\xef\xef\x5c\x32\xd7\x3c" "\x39\xff\xce\x70\xfe\x43\x4e\x4f\xfe\xed\x91\xf9\x37\x55\xce\xbf\x7b" "\xa0\xfc\x3b\xf2\x07\x00\x00\x00\x00\x80\x19\x96\xff\xff\x7f\xc9\xf1" "\xdf\xbc\xc9\x00\x00\x00\x00\x00\x00\x00\x70\xe2\x6c\x6d\xaf\xaf\xe6" "\xeb\x5e\xf3\xf1\xff\xcf\x8d\x58\xcf\xf5\x9f\xa7\x53\xce\xbf\x75\xd0" "\xfc\x17\xd2\xbc\xfc\x4f\xb4\x9c\x7f\x7b\x28\xff\x97\x87\xd6\xeb\x54" "\xe6\x1f\x5e\xdb\xdb\xff\xff\xbd\xbd\xbe\xfa\xdb\x7b\xff\xfa\x6c\x9e" "\xee\x37\xff\xb9\x3c\xd3\x4a\x8f\xac\x56\x7a\x44\xb4\xd2\x3d\xb5\xba" "\x69\x7a\x98\xad\x7b\xdc\x66\xaf\xd3\x2f\xef\xa9\xd7\x6a\x77\xba\xe9" "\x9c\x9f\xa2\xf7\x6e\xdc\x8a\xdb\xb1\x16\x17\x07\xd6\x6d\xa7\xbf\xc7" "\x5e\xfb\xca\x40\x7b\xd9\xd3\xde\x40\xfb\xa5\x81\xf6\xee\x63\xed\x97" "\x07\xda\x7b\xe9\x7b\x07\x8a\x85\xdc\x7e\x3e\x56\xe3\xc7\x71\x3b\xde" "\xd9\x69\x2f\xdb\xe6\x26\x6c\xff\xfc\x84\xf6\x62\x42\x7b\xce\xbf\xe3" "\xf9\xbf\x91\x72\xfe\xdd\xca\x4f\x99\xff\x62\x6a\x6f\x0d\x4d\x4b\x0f" "\x3f\x6a\x3f\xb6\xdf\x57\xa7\xa3\xee\xe7\xad\x5b\x9f\xff\xf9\xc5\xe3" "\xdf\x9c\x89\x36\xa3\xf3\x68\xdb\xaa\xca\xed\x3b\x57\x43\x7f\x76\xfe" "\x26\x4f\xf5\xe3\xa7\x77\xd7\xee\x9c\xbf\x7f\xf3\xde\xbd\x3b\x2b\x91" "\x26\x03\x4b\x2f\x45\x9a\x1c\xb1\x9c\x7f\x6f\xe7\x67\x6e\xef\xf9\xff" "\xc5\xdd\xf6\xfc\xbc\x5f\xdd\x5f\x1f\x7e\xd4\x3f\x70\xfe\xb3\x62\x33" "\xba\x63\xf3\x7f\xb1\x32\x5f\x6e\xef\x2b\x53\xee\x5b\x1d\x72\xfe\xfd" "\xf4\x93\xf3\x7f\x27\xb5\x8f\xde\xff\x0f\x94\xff\xef\xfe\xfa\xf2\xb5" "\x29\x6d\xcd\x64\x4f\xda\xff\x5f\xad\xa1\x3f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf0\x24\x45\x51\xec\x5c\x22\xfa\x56\x44\x5c" "\x49\xd7\xff\xd4\x75\x6d\x26\x00\x30\x5d\xf9\xf5\xbf\x48\xf2\x72\xb5" "\x5a\xad\x56\xab\xd5\xa7\xaf\xae\x2a\x46\x7b\xb3\x5a\x44\xc4\x5f\x1e" "\xdd\x60\x6e\xd4\x6f\x01\x00\x4e\x80\xff\x45\xc4\x3f\xea\xee\x04\xb5" "\x91\x7f\x83\xe5\xef\xfb\x2b\xa7\x2f\xd5\xdd\x19\x60\xaa\xee\x7e\xf0" "\xe1\x0f\x6f\xde\xbe\xbd\x76\xe7\x6e\xdd\x3d\x01\x00\x00\x00\x00\x00" "\x00\x00\x3e\xad\x3c\xfe\xe7\x72\x65\xfc\xe7\x97\x22\x62\x69\x68\xbd" "\x81\xf1\x5f\xaf\xc5\xf2\x61\xc7\x7f\xed\xe6\x99\x47\x03\x8c\x1e\xf1" "\x40\xdf\x63\x6c\xb6\xfb\x9d\x76\x65\xb8\xf1\x17\x62\x67\x7c\xee\xf3" "\xe3\xc6\xff\x3e\x17\x8f\x8f\xff\x9d\xc7\xc4\xed\x54\xb7\x63\x8c\xde" "\x84\xf6\xfe\x84\xf6\x49\x97\x58\xcc\x8f\x5c\xba\x97\xd6\xc8\x0b\x3d" "\x2a\x72\xfe\x2f\x54\xc6\x3b\x2f\xf3\x3f\x3b\x34\xfc\xfa\x21\xc6\x7f" "\x9d\x29\x4f\x1a\xff\x75\x78\xcc\xfb\x26\xc8\xf9\x9f\xab\x3c\x9e\xcb" "\xfc\xbf\x34\xb4\x5e\x35\xff\xe2\xd7\x33\x97\xff\xc6\x7e\x57\xdc\x8c" "\xf6\x40\xfe\x17\xee\xbd\xff\x93\x0b\x77\x3f\xf8\xf0\xb5\x5b\xef\xdf" "\x7c\x6f\xed\xbd\xb5\x1f\x5d\x5e\x59\xb9\x78\xf9\xca\x95\xab\x57\xaf" "\x5e\x78\xf7\xd6\xed\xb5\x8b\xbb\xff\x1e\x4f\xaf\x67\x40\xce\x3f\x8f" "\x7d\xed\x3c\xd0\x66\xc9\xf9\xe7\xcc\xe5\xdf\x2c\x39\xff\x2f\xa4\x5a" "\xfe\xcd\x92\xf3\xff\x62\xaa\xe5\xdf\x2c\x39\xff\xfc\x7e\x4f\xfe\xcd" "\x92\xf3\xcf\x9f\x7d\xe4\xdf\x2c\x39\xff\x57\x52\x2d\xff\x66\xc9\xf9" "\x7f\x39\xd5\xf2\x6f\x96\xad\xed\xf5\xb9\x32\xff\x57\x53\x2d\xff\x66" "\xc9\xfb\xff\x57\x52\x2d\xff\x66\xc9\xf9\xbf\x96\x6a\xf9\x37\x4b\xce" "\xff\x7c\xaa\xe5\xdf\x2c\x39\xff\x0b\xa9\xde\x47\xfe\xbe\x1e\xfe\x14" "\xc9\xf9\xe7\x23\x5c\xf6\xff\x66\xc9\xf9\xaf\xa4\x5a\xfe\xcd\x92\xf3" "\xbf\x94\x6a\xf9\x37\x4b\xce\xff\x72\xaa\xe5\xdf\x2c\x39\xff\xd7\x53" "\x2d\xff\x66\xc9\xf9\x7f\x35\xd5\xf2\x6f\x96\x9c\xff\x95\x54\xcb\xbf" "\x59\x72\xfe\x5f\x4b\xf5\x3e\xf3\x9f\x74\xda\x33\x27\x44\xce\xff\x6a" "\xaa\xed\xff\xcd\x92\xf3\xff\x7a\xaa\xe5\xdf\x2c\x39\xff\x6f\xa4\x5a" "\xfe\xcd\x92\xf3\x7f\x23\xd5\xf2\x6f\x96\x9c\xff\x37\x53\x2d\xff\x66" "\xc9\xf9\x7f\x2b\xd5\xf2\x6f\x96\x9c\xff\xb7\x53\x2d\xff\x66\xc9\xf9" "\xbf\x99\x6a\xf9\x37\xcb\xde\xf7\xff\x9b\x31\x63\xc6\x4c\x9e\xa9\xfb" "\x99\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x36\x8d\xd3\x89" "\xeb\xde\x46\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xcf\x0e" "\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x40\x00\x00\x00\x00" "\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xb0\x77\x6f\x31\x72\xdd\x77\x1d\xc0\xcf\xec\xcd\x6b" "\xa7\x69\xdc\x36\x4d\x9d\xe0\x36\x6b\xc7\x75\x5d\x67\x93\x5d\x5f\xe2" "\x4b\xc1\xc4\x4d\x93\x34\x24\x2d\x25\xd7\x36\x5c\x62\x1b\xef\xda\xd9" "\xd6\xb7\x78\x6d\x9a\x84\x48\x76\x49\x4b\x23\xd5\x81\x0a\x15\x35\x3c" "\x00\x6d\x15\x41\x24\x84\x6a\x50\x1f\x0a\x0a\x25\x0f\x88\xcb\x13\x81" "\x87\xf2\x82\x8a\x90\x2a\x11\x21\x37\x4a\x2b\x2a\x01\x2a\x59\x34\x73" "\xfe\xff\xff\xce\xcc\xce\xce\xec\x7a\x27\xeb\xd9\x73\x3e\x1f\xc9\xfe" "\xed\xce\x9c\x99\x73\xe6\xcc\x99\xd9\xfd\xae\xfd\xdd\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd4" "\xdb\xf0\x91\xc9\x2f\x56\xb2\x2c\xab\xfe\xa9\xfd\xb5\x36\xcb\xde\x56" "\xfd\x78\xf5\xc8\xda\xda\x65\x1f\xba\xd2\x5b\x08\x00\x00\x00\x2c\xd5" "\xff\xd5\xfe\x7e\xe3\x9a\x74\xc1\xfe\x05\xdc\xa8\x6e\x99\xbf\x7b\xdf" "\x3f\x7e\x6b\x66\x66\x66\x26\xfb\x54\xff\xef\x0e\x7e\x65\x66\x26\x5d" "\x31\x92\x65\x83\xab\xb2\xac\x76\x5d\x74\xf1\xdf\x1f\xad\xd4\x2f\x13" "\x3c\x9b\x0d\x57\xfa\xea\x3e\xef\xeb\xb0\xfa\xfe\x0e\xd7\x0f\x74\xb8" "\x7e\xb0\xc3\xf5\x43\x1d\xae\x5f\xd5\xe1\xfa\xe1\x0e\xd7\xcf\xd9\x01" "\x73\xac\xce\x7f\x1e\x53\xbb\xb3\x4d\xb5\x0f\xd7\xe6\xbb\x34\xbb\x36" "\x1b\xac\x5d\xb7\xa9\xc5\xad\x9e\xad\xac\xea\xeb\x8b\x3f\xcb\xa9\xa9" "\xd4\x6e\x33\x33\x78\x24\x9b\xca\x8e\x65\x93\xd9\x78\xc3\xf2\xf9\xb2" "\x95\xda\xf2\x2f\x6f\xa8\xae\xeb\x9e\x2c\xae\xab\x6f\xf5\xec\xba\xd6" "\x57\x8f\x90\x1f\x3e\x73\x38\x6e\x43\x25\xec\xe3\x4d\x0d\xeb\x9a\xbd" "\xcf\xe8\x07\x1f\xce\x46\x7e\xf4\xc3\x67\x0e\xff\xd1\x99\x4b\xd7\xb7" "\x9a\x1d\x77\x43\xc3\xfd\xe5\xdb\xb9\x65\x63\x75\x3b\x3f\x1f\x2e\xc9" "\xb7\xb5\x92\xad\x4a\xfb\x24\x6e\x67\x5f\xdd\x76\xae\x6f\xf1\x9c\xf4" "\x37\x6c\x67\xa5\x76\xbb\xea\xc7\xcd\xdb\xf9\xc6\x02\xb7\xb3\x7f\x76" "\x33\x97\x55\xf3\x73\x3e\x9c\xf5\xd5\x3e\x7e\xb5\xb6\x9f\x06\xea\x7f" "\xac\x97\xf6\xd3\xfa\x70\xd9\x7f\xdf\x94\x65\xd9\xf9\xd9\xcd\x6e\x5e" "\x66\xce\xba\xb2\xbe\x6c\x4d\xc3\x25\x7d\xb3\xcf\xcf\x70\x7e\x44\x56" "\xef\xa3\x7a\x28\xbd\x33\x1b\x58\xd4\x71\xba\x61\x01\xc7\x69\x75\x4e" "\x6c\x6a\x3c\x4e\x9b\x5f\x13\xf1\xf9\xdf\x10\x6e\x37\x30\xcf\x36\xd4" "\x3f\x4d\x3f\xf8\xdc\xd0\x9c\xe7\x7d\xb1\xc7\x69\x54\x7d\xd4\xf3\xbd" "\x56\x9a\x8f\xc1\x6e\xbf\x56\x7a\xe5\x18\x8c\xc7\xc5\xab\xb5\x07\xfd" "\x5c\xcb\x63\x70\x53\x78\xfc\xcf\x6c\x9e\xff\x18\x6c\x79\xec\xb4\x38" "\x06\xd3\xe3\xae\x3b\x06\x37\x76\x3a\x06\xfb\x86\xfa\x6b\xdb\x9c\x9e" "\x84\x4a\xed\x36\xb3\xc7\xe0\xb6\x86\xe5\xfb\x6b\x6b\xaa\xd4\xe6\x6b" "\x9b\xdb\x1f\x83\x63\x67\x8e\x9f\x1a\x9b\x7e\xea\xe9\x5b\xa6\x8e\x1f" "\x3a\x3a\x79\x74\xf2\xc4\x8e\x6d\xdb\xc6\x77\xec\xda\xb5\x67\xcf\x9e" "\xb1\x23\x53\xc7\x26\xc7\xf3\xbf\x2f\x73\x6f\xf7\xbe\x35\x59\x5f\x7a" "\x0d\x6c\x0c\xfb\x2e\xbe\x06\x3e\xd0\xb4\x6c\xfd\xa1\x3a\xf3\xf5\xee" "\xbd\x0e\x87\xdb\xbc\x0e\xd7\x36\x2d\xdb\xed\xd7\xe1\x40\xf3\x83\xab" "\x2c\xcf\x0b\x72\xee\x31\x9d\xbf\x36\x1e\xaa\xee\xf4\xe1\x0b\x7d\xd9" "\x3c\xaf\xb1\xda\xf3\xb3\x75\xe9\xaf\xc3\xf4\xb8\xeb\x5e\x87\x03\x75" "\xaf\xc3\x96\x5f\x53\x5a\xbc\x0e\x07\x16\xf0\x3a\xac\x2e\x73\x6a\x6b" "\xd3\xf7\x2c\x59\xeb\xef\x59\x06\xea\xfe\xb4\xda\x86\xb7\xea\x6b\xc1" "\xda\xba\x63\xb0\xf9\xfb\x91\xe6\x63\xb0\xdb\xdf\x8f\xf4\xca\x31\x38" "\x1c\x8e\x8b\x7f\xdd\x3a\xff\xd7\x82\xf5\x61\x7b\x9f\x1b\x5d\xec\xf7" "\x23\xfd\x73\x8e\xc1\xf4\x70\xc3\x7b\x4f\xf5\x92\xf4\xfd\xfe\xf0\x9e" "\xda\x68\x75\x5c\xde\x50\xbd\xe2\xaa\xa1\xec\xec\xf4\xe4\xe9\x5b\x9f" "\x3c\x74\xe6\xcc\xe9\x6d\x59\x18\xcb\xe2\x5d\x75\xc7\x4a\xf3\xf1\xba" "\xa6\xee\x31\x65\x73\x8e\xd7\xbe\x45\x1f\xaf\xfb\xa7\xde\xf7\xdc\x0d" "\x2d\x2e\x5f\x1b\xf6\xd5\xf0\x2d\xd5\xbf\x86\xe7\x7d\xae\xaa\xcb\xec" "\xbc\xb5\xfd\x73\x55\xfb\xea\xd6\x7a\x7f\x36\x5c\xba\x3d\x0b\xa3\xcb" "\x96\x7b\x7f\xb6\xfa\x6a\x5e\xdd\x9f\x29\x4b\xb6\xd9\x9f\xd5\x65\x3e" "\x3f\xb6\xf4\xef\xc5\x53\x2e\xad\x7b\xff\x1d\x9c\xe7\xfd\x37\xe6\xfe" "\x37\xf3\xf5\xa5\xbb\x7a\xb6\x7f\x70\x20\x7f\xfd\xf6\xa7\xbd\x33\xd8" "\xf0\x7e\xdc\xf8\x54\x0d\xd4\xde\xbb\x2a\xb5\x75\xbf\x31\xb6\xb0\xf7" "\xe3\xc1\xf0\x67\xb9\xdf\x8f\xaf\x6d\xf3\x7e\xbc\xae\x69\xd9\x6e\xbf" "\x1f\x0f\x36\x3f\xb8\xf8\x7e\x5c\xe9\xf4\xd3\x8e\xa5\x69\x7e\x3e\x87" "\xc3\x71\x72\x6c\xbc\xfd\xfb\x71\x75\x99\x75\xdb\x17\x7b\x4c\x0e\xb4" "\x7d\x3f\xbe\x29\xcc\x4a\xd8\xff\x1f\x0c\x49\x21\xe5\xa2\xba\x63\x67" "\xbe\xe3\x36\xad\x6b\x60\x60\x30\x3c\xae\x81\xb8\x86\xc6\xe3\x74\x47" "\xc3\xf2\x83\x21\x9b\x55\xd7\xf5\xd2\xf6\xcb\x3b\x4e\xb7\xdc\x94\xdf" "\x57\x7f\x7a\x74\xb3\x96\xeb\x38\x1d\x69\x5a\xb6\xdb\xc7\x69\x7a\xbf" "\x9a\xef\x38\xad\x74\xfa\xe9\xdb\xe5\x69\x7e\x3e\x87\xc3\x71\x71\xed" "\x8e\xf6\xc7\x69\x75\x99\x57\x76\x2e\xfd\xbd\x73\x75\xfc\xb0\xee\xbd" "\x73\xa8\xd3\x31\x38\xd8\x3f\x54\xdd\xe6\xc1\x74\x10\xe6\xef\xf7\x33" "\xab\xe3\x31\x78\x6b\x76\x38\x3b\x99\x1d\xcb\x26\x6a\xd7\x0e\xd5\x8e" "\xa7\x4a\x6d\x5d\xa3\xb7\x2d\xec\x18\x1c\x0a\x7f\x96\xfb\xbd\x72\x5d" "\x9b\x63\x70\x4b\xd3\xb2\xdd\x3e\x06\xd3\xd7\xb1\xf9\x8e\xbd\xca\xc0" "\xdc\x07\xdf\x05\xcd\xcf\xe7\x70\x38\x2e\x5e\xb8\xad\xfd\x31\x58\x5d" "\xe6\xce\xdd\xdd\xfd\xde\x75\x4b\xb8\x24\x2d\x53\xf7\xbd\x6b\xf3\xcf" "\xd7\xe6\xfb\x99\xd7\x0d\x4d\xbb\xe9\xad\xfc\x99\x57\x75\x3b\xff\x66" "\x77\xfb\x9f\xcd\x56\x97\x39\xb6\x67\xb1\x39\xb3\xfd\x7e\xba\x39\x5c" "\x72\x55\x8b\xfd\xd4\xfc\xfa\x9d\xef\x35\x35\x91\x2d\xcf\x7e\x5a\x17" "\xb6\xf3\xd2\x9e\xf9\xf7\x53\x75\x7b\xaa\xcb\x7c\x65\xef\x02\x8f\xa7" "\xfd\x59\x96\x9d\x7b\xe2\x8e\xda\xcf\x7b\xc3\xbf\xaf\xfc\xf9\xd9\xef" "\x7e\xab\xe1\xdf\x5d\x5a\xfd\x9b\xce\xb9\x27\xee\x78\xfd\xea\x23\x7f" "\xbb\x98\xed\x07\x60\xe5\x7b\x33\x1f\x6b\xf2\xaf\x75\x75\xff\x32\xb5" "\x90\x7f\xff\x07\x00\x00\x00\x56\x84\x98\xfb\xfb\xc2\x4c\xe4\x7f\x00" "\x00\x00\x28\x8c\x98\xfb\xe3\xff\x0a\x4f\xe4\x7f\x00\x00\x00\x28\x8c" "\x98\xfb\x07\xc2\x4c\x4a\x92\xff\xd7\xdd\x79\x69\xea\xcd\x73\x59\x6a" "\xe6\xcf\x04\xf1\xfa\xb4\x1b\xee\xcd\x97\x8b\x1d\xd7\xf1\xf0\xf9\xc8" "\xcc\xac\xea\xe5\x77\xbc\x38\xf9\xe3\xbf\x3c\xb7\xb0\x75\xf7\x65\x59" "\xf6\x93\x7b\x7f\xbd\xe5\xf2\xeb\xee\x8d\xdb\x95\x1b\x09\xdb\x79\xf1" "\xae\xc6\xcb\xe7\xde\xf0\xdc\x82\xd6\x7f\xf0\xe1\xd9\xe5\xea\xfb\xeb" "\x5f\x0b\xf7\x1f\x1f\xcf\x42\x0f\x83\x56\x15\xdc\xf1\x2c\xcb\x5e\xbe" "\xe6\xf9\xda\x7a\x46\x1e\xbd\x50\x9b\xaf\xdc\x7b\xb0\x36\x1f\x38\xff" "\xdc\xb3\xd5\x65\xde\xd8\x9b\x7f\x1e\x6f\xff\xda\xbb\xf2\xe5\x7f\x3f" "\x94\x7f\xf7\x1f\x39\xd4\x70\xfb\xd7\xc2\x7e\xf8\x7e\x98\xe3\xf7\xb5" "\xde\x1f\xf1\x76\xdf\xbc\xf0\xc1\xf5\xbb\x1f\x99\x5d\x5f\xbc\x5d\x65" "\xe3\xdb\x6b\x0f\xfb\x85\xc7\xf2\xfb\x8d\xbf\x27\xe7\xcb\xcf\xe6\xcb" "\xc7\xfd\x3c\xdf\xf6\xff\xd5\x97\x5e\xfa\x66\x75\xf9\x27\xdf\xdf\x7a" "\xfb\xcf\xf5\xb5\xde\xfe\x97\xc2\xfd\xbe\x18\xe6\xff\xbc\x37\x5f\xbe" "\xfe\x39\xa8\x7e\x1e\x6f\xf7\x85\xb0\xfd\x71\x7d\xf1\x76\xb7\x7e\xe3" "\x3b\x2d\xb7\xff\xe2\x17\xf3\xe5\x4f\xdd\x9d\x2f\x77\x30\xcc\xb8\xfe" "\x2d\xe1\xf3\x4d\x77\x5f\x9a\xaa\xdf\x5f\x4f\x56\x0e\x35\x3c\xae\xec" "\xa3\xf9\x72\x71\xfd\xe3\xdf\xfd\xed\xda\xf5\xf1\xfe\xe2\xfd\x37\x6f" "\xff\xf0\x81\x0b\x0d\xfb\xa3\xf9\xf8\x78\xe5\x9f\xf3\xfb\x19\x6b\x5a" "\x3e\x5e\x1e\xd7\x13\xfd\x45\xd3\xfa\xab\xf7\x53\x7f\x7c\xc6\xf5\xbf" "\xf4\x9b\x07\x1b\xf6\x73\xa7\xf5\x5f\x7c\xe0\xb5\xf7\x56\xef\xb7\x79" "\xfd\x37\x37\x2d\xd7\xdf\x74\xfb\xe6\xdf\xd8\xf4\x07\x5f\x78\xbe\xe5" "\xfa\xe2\xf6\xec\xff\xd3\x53\x0d\x8f\x67\xff\xfd\xe1\x75\x1c\xd6\xff" "\xc2\x63\xe1\x78\x0c\xd7\xff\xef\xc5\xe7\x1b\xd6\x1b\x1d\xbc\xbf\xf1" "\xfd\x27\x2e\xff\xb5\xb5\xe7\x1a\x1e\x4f\x74\xcf\x8f\xf2\xf5\x5f\xbc" "\xfd\x68\x6d\xfe\xc7\xc8\x8f\x7f\xef\xaa\xb7\x5d\xfd\xf6\xf3\x37\x56" "\xf7\x5d\x96\xbd\xfa\x60\x7e\x7f\x9d\xd6\x7f\xf4\x0f\x4f\x36\x6c\xff" "\xd7\xaf\xdb\x5a\x7b\x3e\xe2\xf5\xb1\xa3\xdf\xbc\xfe\xf9\xc4\xf5\x9f" "\xfe\xec\xe8\x89\x93\xd3\x67\xa7\x26\xea\xf6\x6a\xed\x77\xe7\x7c\x2c" "\xdf\x9e\x55\xc3\xab\xd7\x54\xb7\xf7\x9a\xf0\xde\xda\xfc\xf9\x81\x93" "\x67\x1e\x9f\x3c\x3d\x32\x3e\x32\x9e\x65\x23\xc5\xfd\x15\x7a\x97\xed" "\x1b\x61\xbe\x9e\x8f\xf3\x8b\xbd\xfd\xd6\x87\xc3\xf3\x79\xc3\x57\x5f" "\x5e\xb3\xf9\x9f\xbe\x14\x2f\xff\x97\x87\xf2\xcb\x2f\xdc\x97\x7f\xdd" "\xfa\x40\x58\xee\xcb\xe1\xf2\xb5\xf9\xf3\x37\x53\x59\xe2\xfa\x5f\xd8" "\x70\x5d\xed\xf5\x5d\x79\x25\xff\xbc\xa1\xc7\xde\x05\xeb\x37\xfd\xe7" "\x9e\x05\x2d\x18\x1e\x7f\xf3\xf7\x05\xf1\x78\x3f\xf5\xee\xc7\x6b\xfb" "\xa1\x7a\x5d\xed\xeb\x46\x7c\x5d\x2f\x71\xfb\xbf\x37\x91\xdf\xcf\xb7" "\xc3\x7e\x9d\x09\xbf\x99\x79\xe3\x75\xb3\xeb\xab\x5f\x3e\xfe\x6e\x84" "\x0b\x0f\xe6\xaf\xf7\x25\xef\xbf\xf0\x36\x17\x9f\xd7\x3f\x0e\xcf\xf7" "\xc7\xbf\x9f\xdf\x7f\xdc\xae\xf8\x78\xbf\x17\xbe\x8f\xf9\xce\xba\xc6" "\xf7\xbb\x78\x7c\x7c\xfb\x5c\x5f\xf3\xfd\xd7\x7e\x8b\xc7\xf9\xf0\x7e" "\x92\x9d\xcf\xaf\x8f\x4b\xc5\xfd\x7d\xe1\x8d\xeb\x5a\x6e\x5e\xfc\x3d" "\x24\xd9\xf9\xeb\x6b\x9f\xff\x4e\xba\x9f\xeb\x17\xf5\x30\xe7\x33\xfd" "\xd4\xf4\xd8\xb1\xa9\x13\x67\x9f\x1c\x3b\x33\x39\x7d\x66\x6c\xfa\xa9" "\xa7\x0f\x1c\x3f\x79\xf6\xc4\x99\x03\xb5\xdf\xe5\x79\xe0\xd3\x9d\x6e" "\x3f\xfb\xfe\xb4\xa6\xf6\xfe\x34\x31\xb9\x6b\x67\x36\xbe\x3a\xcb\xb2" "\x93\xd9\xf8\x32\xbc\x61\xbd\x35\xdb\x5f\xfd\x68\x61\xdb\x7f\xea\xe1" "\xc3\x13\xbb\xc7\x37\x4f\x4c\x1e\x39\x74\xf6\xc8\x99\x87\x4f\x4d\x9e" "\x3e\x7a\x78\x7a\xfa\xf0\xe4\xc4\xf4\xe6\x43\x47\x8e\x4c\x7e\xb6\xd3" "\xed\xa7\x26\xf6\x6d\xdb\xbe\x77\xc7\xee\xed\xa3\x47\xa7\x26\xf6\xed" "\xd9\xbb\x77\xc7\xde\xd1\xa9\x13\x27\xab\x9b\x91\x6f\x54\x07\xbb\xc6" "\x3f\x33\x7a\xe2\xf4\x81\xda\x4d\xa6\xf7\xed\xdc\xbb\xed\xb6\xdb\x76" "\x8e\x8f\x1e\x3f\x39\x31\xb9\x6f\xf7\xf8\xf8\xe8\xd9\x4e\xb7\xaf\x7d" "\x6d\x1a\xad\xde\xfa\xd7\x46\x4f\x4f\x1e\x3b\x74\x66\xea\xf8\xe4\xe8" "\xf4\xd4\xd3\x93\xfb\xb6\xed\xdd\xb5\x6b\x7b\xc7\xdf\x06\x78\xfc\xd4" "\x91\xe9\x91\xb1\xd3\x67\x4f\x8c\x9d\x9d\x9e\x3c\x3d\x96\x3f\x96\x91" "\x33\xb5\x8b\xab\x5f\xfb\x3a\xdd\x9e\x62\x9a\xfe\xb7\xfc\xfb\xd9\x66" "\x95\xfc\x17\xf1\x65\x9f\xb8\x79\x57\xfa\xfd\xac\x55\x2f\x7e\x6e\xde" "\xbb\xca\x17\x69\xfa\x05\xa2\x97\xc2\xef\xa2\xf9\x87\x77\x9c\xda\xb3" "\x90\xcf\x63\xee\x1f\x0c\x33\x29\x49\xfe\x07\x00\x00\x80\x32\x88\xb9" "\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x55\x98\x89\xfc" "\x0f\x00\x00\x00\x85\x11\x73\xff\x70\x98\x49\x49\xf2\xbf\xfe\xbf\xfe" "\xff\xc2\xfa\xff\xf9\xf5\xfa\xff\xe5\xea\xff\x9f\x7a\x22\xef\x95\xae" "\xf4\xfe\x7f\xec\xcf\xeb\xff\x97\xc3\x15\xee\xff\x2f\x79\xfd\x5d\xe8" "\xff\xdf\xd8\xee\xca\x45\xf6\xff\x7f\xeb\xcf\xf4\xff\xf5\xff\x97\xb1" "\x3f\xbf\x24\x7d\x57\x7e\xfb\xf5\xff\xf5\xff\x99\xab\xd7\xfa\xff\x31" "\xf7\xaf\xce\xb2\x52\xe6\x7f\x00\x00\x00\x28\x83\x98\xfb\xd7\x84\x99" "\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x5f\x15\x66\x22\xff\x03\x00\x00" "\x40\x61\xc4\xdc\xff\xb6\x30\x93\x92\xe4\x7f\xfd\xff\x05\xf5\xff\xb7" "\x77\x2a\x5c\x15\xbf\xff\xef\xfc\xff\xfa\xff\xd9\xca\xec\xff\xc7\x27" "\x47\xff\xbf\x34\x16\xdd\xbf\x7f\xe4\xa1\x86\x4f\x0b\xd0\xff\x6f\xcb" "\xf9\xff\x3b\xd0\xff\x5f\xb9\xfd\xff\x1e\xd8\x7e\xfd\x7f\xfd\x7f\x9a" "\x0d\xce\x7b\xcd\x95\xea\xff\xc7\xdc\x7f\x75\x98\x49\x49\xf2\x3f\x00" "\x00\x00\x94\x41\xcc\xfd\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0\x30\x62" "\xee\xbf\x26\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x6d\x98\x49" "\x49\xf2\xbf\xfe\xbf\xf3\xff\xeb\xff\xeb\xff\x17\xba\xff\xbf\xd4\xf3" "\xff\xd7\x6d\x8c\xfe\xff\xca\xe0\xfc\xff\xed\xe9\xff\x77\x70\xd9\xfd" "\xff\x61\xfd\xff\x95\xd8\xff\x1f\xec\xee\xf6\xf7\x76\xff\xbf\xe3\xe6" "\x77\xb3\xff\x3f\x94\xe9\xff\x13\xf4\xda\xf9\xff\x63\xee\x7f\x47\x98" "\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\xef\x0c\x33\x91\xff\x01" "\x00\x00\xa0\x30\x62\xee\x7f\x57\x98\x89\xfc\x0f\x00\x00\x00\x85\x11" "\x73\xff\xb5\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xad\xd7\xdf\xf9\xfc\xff\xf9\x47\xfa\xff\xbd\x45\xff\xbf\x3d\xfd" "\xff\x0e\x9c\xff\xbf\x5c\xfd\xff\x2e\x6f\x7f\x6f\xf7\xff\xbb\x7d\xfe" "\xff\xc1\xbb\x9a\x6f\xef\xfc\xff\xb4\xd2\x6b\xfd\xff\x98\xfb\xdf\x1d" "\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\x75\x61\x26\xf2\x3f" "\x00\x00\x00\x14\x46\xcc\xfd\xef\x09\x33\x91\xff\x01\x00\x00\xa0\x30" "\x62\xee\x5f\x17\x66\x52\x92\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xdf\x7a\xfd\x9d\xfb\xff\x39\xfd\xff\xde\xa2\xff\xdf\x9e\xfe\x7f" "\x07\xfa\xff\xfa\xff\xfa\xff\x0b\xeb\xff\xb7\xf8\xe6\x57\xff\x9f\x56" "\x7a\xad\xff\x1f\x73\xff\xf5\x61\x26\x25\xc9\xff\x00\x00\x00\x50\x06" "\x31\xf7\xdf\x10\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xff\x53\x61" "\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\xeb\xc3\x4c\x4a\x92\xff\xd7" "\xdd\x79\xe9\x91\xaf\xd6\x3e\xd2\xff\xcf\xf4\xff\xf5\xff\x4b\xd0\xff" "\xbf\x79\x48\xff\x5f\xff\xbf\xd8\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f" "\xff\x5f\xff\x7f\x81\xe7\xff\x9f\x6b\x31\xfd\xff\x55\x9d\xee\x8c\xc2" "\xe8\xb5\xfe\x7f\xcc\xfd\xef\x0d\x33\x29\x49\xfe\x07\x00\x00\x80\x32" "\x88\xb9\xff\x7d\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x37\x86" "\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x8f\x84\x99\xac\xbc\xfc\xff" "\xc9\xbe\xcb\xb8\x91\xf3\xff\x17\xab\xff\xff\x27\x7f\xfd\xc2\x8d\x99" "\xfe\xbf\xfe\x7f\x87\xf5\x17\xb4\xff\x1f\x0f\x03\xfd\xff\x92\xd3\xff" "\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\x7f\xfd\xff\x65\xe9\xff\x53\x1e\xbd" "\xd6\xff\x8f\xb9\x7f\x43\x98\xc9\xca\xcb\xff\x00\x00\x00\xc0\x3c\x62" "\xee\xdf\x18\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x53\x98\x89" "\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xa6\x30\x93\x92\xe4\x7f\xfd\xff" "\x62\xf5\xff\x23\xfd\x7f\xfd\xff\x76\xeb\x2f\x68\xff\x3f\xd1\xff\x2f" "\x37\xfd\xff\x16\xea\x5e\xa4\x2b\xa4\xff\x3f\xa2\xff\xaf\xff\xbf\x12" "\xb7\xbf\x18\xfd\xff\xf8\xdd\xaf\xfe\x3f\xdd\xd1\x6b\xfd\xff\x98\xfb" "\xdf\x1f\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xe6\x30\x13" "\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x0f\x84\x99\xc8\xff\x00\x00\x00" "\x50\x18\x31\xf7\x6f\x09\x33\x29\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xbf\x52\xfd\xff\x21\xfd\xff\xb4\x57\xf5\xff\xbb\x47\xff\xbf\xbd" "\xc5\xf6\xff\x87\x9c\xff\x5f\xff\x5f\xff\xbf\x64\xfd\x7f\xe7\xff\xa7" "\xbb\x7a\xad\xff\x1f\x73\xff\x07\xc3\x4c\x4a\x92\xff\x01\x00\x00\xa0" "\x0c\x62\xee\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xff\xbf\x99" "\xff\xbf\x57\xf9\x1f\x00\x00\x00\x8a\x28\xe6\xfe\xd1\x30\x93\x92\xe4" "\xff\x25\xf4\xff\x67\xfa\xf5\xff\x13\xfd\xff\xc6\xed\xef\xd5\xfe\x7f" "\x45\xff\xbf\xa7\xfa\xff\xce\xff\x3f\xbb\x57\xf5\xff\xbb\x47\xff\xbf" "\xbd\x15\x72\xfe\x7f\xfd\xff\x1e\xea\xff\x57\x2f\xd7\xff\xd7\xff\xd7" "\xff\xe7\x72\xf5\x5a\xff\x3f\xe6\xfe\x5b\xc2\x4c\x4a\x92\xff\x01\x00" "\x00\xa0\x0c\x62\xee\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9" "\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x3c\xcc\xa4\x24" "\xf9\xdf\xf9\xff\x4b\xd7\xff\x5f\x55\xe6\xfe\xbf\xf3\xff\xeb\xff\xeb" "\xff\x17\x9f\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\x3b\xff\x7f\xd1\xfa\xff" "\x59\xa6\xff\xcf\x15\xd5\x6b\xfd\xff\x98\xfb\xb7\x85\x99\x94\x24\xff" "\x03\x00\x00\x40\x19\xc4\xdc\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\xc2" "\x88\xb9\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xce\x30" "\x93\x92\xe4\x7f\xfd\xff\xd2\xf5\xff\x4b\x7d\xfe\x7f\xfd\x7f\xfd\x7f" "\xfd\xff\xe2\xd3\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\xff\xa2\xf5\xff" "\x9d\xff\x9f\x2b\xac\xd7\xfa\xff\x31\xf7\xdf\x16\x66\x52\x92\xfc\x0f" "\x00\x00\x00\x65\x10\x73\xff\xae\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23" "\xe6\xfe\xdd\x61\x26\x21\xff\xb7\xfa\x7f\xdd\x00\x00\x00\xc0\xca\x12" "\x73\xff\x9e\x30\x93\x92\xfc\xfb\xbf\xfe\x7f\x41\xfa\xff\xbf\xf1\xf7" "\x0d\xeb\xd6\xff\xd7\xff\x6f\xb7\xfe\xee\xf4\xff\x57\xeb\xff\x87\xa9" "\xff\xdf\x5b\x0a\xda\xff\x6f\x7e\x59\x5c\x36\xfd\xff\x0e\xf4\xff\xf5" "\xff\xf5\xff\xf5\xff\xe9\xaa\x5e\xeb\xff\xc7\xdc\xbf\x37\xcc\xa4\x24" "\xf9\x1f\x00\x00\x00\xca\x20\xe6\xfe\x0f\x85\x99\xc8\xff\x00\x00\x00" "\x50\x18\x31\xf7\xff\x74\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff" "\xcf\x84\x99\x94\x24\xff\xeb\xff\x17\xa4\xff\xdf\x44\xff\x5f\xff\xbf" "\xdd\xfa\x9d\xff\x5f\xff\xbf\xc8\x0a\xda\xff\xef\x9a\x42\xf5\xff\xfb" "\xf4\xff\xf5\xff\x7b\x6b\xfb\xf5\xff\xf5\xff\x99\xeb\xad\xef\xff\xc7" "\x8f\x16\xd6\xff\x8f\xb9\x7f\x5f\x98\x49\x49\xf2\x3f\x00\x00\x00\x94" "\x41\xcc\xfd\x3f\x1b\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x7b" "\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xfe\x30\x93\x92\xe4\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xb7\xa6\xff\x7f\x7b\xd6\xac\x17\xfb" "\xff\xd5\x83\x67\xd9\xfa\xff\x83\xfa\xff\xcb\x41\xff\xbf\xbd\x42\xf5" "\xff\x9d\xff\x5f\xff\xbf\xc7\xb6\x5f\xff\x5f\xff\x9f\xb9\x7a\xed\xfc" "\xff\x31\xf7\x7f\x38\xcc\xa4\x24\xf9\x1f\x00\x00\x00\xca\x20\xe6\xfe" "\x3b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x3f\x12\x66\x22\xff" "\x03\x00\x00\x40\x61\xc4\xdc\x7f\x67\x98\x49\x49\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xf3\xff\xb7\x5e\xbf\xf3\xff\xaf\x4c\xfa\xff\xed" "\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f" "\xe6\xfe\xbb\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\xbf\x3b" "\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\xa3\x61\x26\xf2\x3f\x00" "\x00\x00\x14\x46\xcc\xfd\xf7\x84\x99\x94\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xb7\x5e\xbf\xfe\xff\xca\xa4\xff\xdf\x9e\xfe\x7f" "\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\xff" "\xb9\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\xef\x0d\x33\x91" "\xff\x01\x00\x00\xa0\x30\x62\xee\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80" "\xc2\x88\xb9\xff\x63\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xad\xd7\xaf\xff\xbf\x32\xe9\xff\xb7\xa7\xff\xdf\x81\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x5d\xd5\x6b\xfd\xff\x98\xfb\x3f\x1e\x66" "\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xcf\x87\x99\xc8\xff\x00" "\x00\x00\x50\x18\x31\xf7\x7f\x22\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88" "\xb9\xff\x17\xc2\x4c\x4a\x92\xff\xf5\xff\xf5\xff\x7b\xab\xff\x3f\x73" "\xae\xfe\x76\xfa\xff\xfa\xff\x59\xb7\xfa\xff\xd5\x1b\xe9\xff\x97\x82" "\xfe\x7f\x7b\xfa\xff\x1d\xb4\xe8\xff\xaf\xd2\xff\xd7\xff\xd7\xff\xd7" "\xff\xe7\xb2\xf5\x5a\xff\x3f\xe6\xfe\xfb\xc3\x4c\x4a\x92\xff\x01\x00" "\x00\xa0\x0c\x62\xee\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9" "\xff\xc1\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x87\xc2\x4c\x4a" "\x92\xff\xf5\xff\x4b\xd9\xff\x4f\x0f\xb9\xf7\xfa\xff\xce\xff\xaf\xff" "\xef\xfc\xff\xfa\xff\x4b\xa3\xff\xdf\x9e\xfe\x7f\x07\xce\xff\xaf\xff" "\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\x87\xc3\x4c\x4a\x92" "\xff\x01\x00\x00\xa0\x0c\x62\xee\x7f\x24\xcc\x44\xfe\x07\x00\x00\x80" "\xc2\x88\xb9\xff\x93\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x9f" "\x0a\x33\x29\x49\xfe\xd7\xff\x2f\x65\xff\xbf\x87\xcf\xff\x7f\xe5\xfa" "\xff\xd5\xc7\xd0\xfd\xfe\xff\x40\xc3\xf1\x51\xa6\xfe\xff\x70\xdd\xf3" "\x99\x8e\x4b\xfd\x7f\xfd\xff\x65\xa0\xff\xdf\x9e\xfe\x7f\x07\xfa\xff" "\xa1\x3f\x9f\xf5\xe9\xff\xf7\x60\xff\x3f\x1c\xcd\xab\xe7\xb9\xbd\xfe" "\x3f\xbd\xa8\xd7\xfa\xff\x31\xf7\x3f\x1a\x66\x52\x92\xfc\x0f\x00\x00" "\x00\x65\x10\x73\xff\x2f\x86\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7" "\xff\x52\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\x2f\x87\x99\x94" "\x24\xff\xeb\xff\xeb\xff\xeb\xff\x3b\xff\xbf\xf3\xff\xb7\x5e\xbf\xfe" "\xff\xca\xa4\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xce\xff\xdf\xcb\xfd\xff" "\x0e\xf4\xff\xe9\x45\xbd\xd6\xff\x8f\xb9\xff\x57\xc2\x4c\xe6\x0d\x7e" "\xaf\xff\xd7\x02\x1e\x26\x00\x00\x00\xd0\x43\x62\xee\x7f\x2c\xcc\xa4" "\x24\xff\xfe\x0f\x00\x00\x00\x65\x10\x73\xff\x81\x30\x13\xf9\x1f\x00" "\x00\x00\x0a\x23\xe6\xfe\x83\x61\x26\x25\xc9\xff\xfa\xff\xcd\xfd\xff" "\x78\x46\x55\xfd\x7f\xfd\xff\x15\xd7\xff\x1f\xd0\xff\xcf\xe9\xff\x97" "\x5b\xf7\xfa\xff\xef\xb9\x3a\xcb\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x59\x8a\x5e\xeb\xff\xc7\xdc\x7f\x28\xcc\xa4\x24\xf9\x1f" "\x00\x00\x00\xca\x20\xe6\xfe\x5f\x0d\x33\x91\xff\x01\x00\x00\xa0\x30" "\x62\xee\x3f\x1c\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x3f\x11\x66" "\x52\x92\xfc\xaf\xff\xef\xfc\xff\xdd\xea\xff\xff\x44\xff\xff\x4a\xf7" "\xff\x9d\xff\x3f\xd0\xff\x2f\x37\xe7\xff\x6f\x4f\xff\xbf\x03\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xba\xaa\xd7\xfa\xff\x31\xf7\x4f\x86\x99\x94" "\x24\xff\x03\x00\x00\x40\x81\xa5\x1f\x07\xc7\xdc\x7f\x24\xcc\x44\xfe" "\x07\x00\x00\x80\xc2\x88\xb9\xff\x68\x98\x89\xfc\x0f\x00\x00\x00\x85" "\x11\x73\xff\xe3\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff\xce\xff\x7f\x25" "\xfa\xff\x03\x0d\xcb\xeb\xff\xe7\xf4\xff\xf5\xff\xbb\x41\xff\xbf\x3d" "\xfd\xff\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xaa\x5e\xeb\xff\xc7" "\xdc\x3f\x15\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xa7\xc3" "\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x3f\x13\x66\x22\xff\x03\x00" "\x00\x40\x61\xc4\xdc\x7f\x2c\xcc\xa4\x24\xf9\x5f\xff\x5f\xff\xbf\xec" "\xfd\xff\x4a\x96\x9d\x77\xfe\x7f\xfd\xff\x56\xeb\xd7\xff\x5f\x99\xf4" "\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea\xb5" "\xfe\xff\xff\xb3\x77\x1f\xcf\x75\x9d\xe7\x1d\xc7\xaf\x28\x8a\x04\xb2" "\x48\xf2\x27\x64\x9d\x55\x96\xc9\x4a\xd9\x64\x9f\x6d\x76\x99\xf1\x5a" "\xae\x72\x2f\x94\xdc\xbb\x2d\x57\x59\xee\x72\xef\xbd\xca\x45\xee\xbd" "\x77\xcb\x45\xee\xbd\xca\x55\xf6\x0c\x3d\x02\x9f\xe7\x21\x01\x5c\x9c" "\x03\x12\x87\xb8\xe7\xbc\xef\xe7\xb3\x79\x42\x46\x14\x2e\x4c\x26\x99" "\x5f\x38\xdf\x79\x73\xf7\x5f\x13\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07" "\xb9\xfb\xef\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xf7\x88\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x7b\xc6\x2d\x9d\xec\x7f\xfd\xbf" "\xfe\xbf\xf7\xfe\x7f\xb5\x91\xf7\xff\x77\xff\xf3\xfa\xff\x73\xf4\xff" "\xfa\xff\x29\xec\xeb\xef\x4f\x5e\xdc\xaf\x3f\xb0\xff\xff\x8f\xff\xbc" "\xf6\xff\xf5\xff\xfa\x7f\xfd\xff\x20\xfd\xbf\xfe\x5f\xff\xcf\x5e\x73" "\xeb\xff\x73\xf7\xdf\x2b\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7" "\xdf\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xef\x13\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xd7\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\xbf" "\x8f\xfe\xff\xe4\x4a\xff\x7f\xc8\xfe\xff\x56\xfd\xbf\xfe\x7f\xd9\xbc" "\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x99\xd4\xdc\xfa" "\xff\xdc\xfd\xf7\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xf7" "\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xfb\xc7\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\x03\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xdf\x47" "\xff\xdf\xc2\xfb\xff\xa7\xbc\xff\xbf\xe7\xfb\xd1\xff\xeb\xff\xd7\xd1" "\xff\x0f\xd3\xff\x8f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x26\x35\xb7\xfe" "\x3f\x77\xff\x03\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x83" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xc1\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\x90\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\x97\xd2\xff\x1f\xd3\xfb\xff\xfa\x7f\xfd\xff\xc2\xdd\xbc\x3a\xff\xbf" "\x13\xf4\xff\xfb\xe9\xff\x47\x8c\xf4\xff\xab\x95\xfe\x7f\xc8\xa1\xfb" "\xf9\xf5\xdf\xde\x72\x3e\xff\x01\xf4\xff\xfa\x7f\xf6\x9b\x5b\xff\x9f" "\xbb\xff\xa1\x71\xcb\x7f\xaf\x56\xa7\x2e\xf5\x9b\x04\x00\x00\x00\x66" "\x25\x77\xff\xc3\xe2\x96\x4e\xfe\xfe\x1f\x00\x00\x00\x7a\x90\xbb\xff" "\x4c\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x5f\x17\xb7\x74\xb2\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfe\xeb\xeb\xff\x97\xe9\x70" "\xfd\xfd\xe9\x03\x7f\xbd\xfe\x3f\x1c\xd8\xff\xff\xfb\xbf\x5e\x73\xb7" "\x7e\xfb\x7f\xef\xff\x0f\xf3\xfe\xbf\xfe\x5f\xff\xcf\x5e\x73\xeb\xff" "\x73\xf7\x5f\x1f\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x1f\x1e" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x8f\x88\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x47\xc6\x2d\x9d\xec\x7f\xfd\x7f\x6b\xfd\xff\x95" "\xbb\x7e\xdd\x05\xfd\xff\x4e\xed\xa2\xff\xd7\xff\x4f\xd5\xff\xdf\xb8" "\x75\xfe\xf7\x4b\xff\xaf\xff\x9f\x93\xa3\xf6\xf7\xfa\xff\xd0\xf5\xfb" "\xff\xdb\xf5\x43\xfd\xbf\xfe\x5f\xff\xaf\xff\xe7\x68\xe6\xd6\xff\xe7" "\xee\x7f\x54\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x74\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x26\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x1f\x1b\xb7\x74\xb2\xff\x17\xd5\xff\x9f\xbd\x52\xff" "\xef\xfd\x7f\xfd\xff\x4c\xfa\xff\x95\xf7\xff\xf5\xff\x33\xa5\xff\x1f" "\xa6\xff\x1f\xd1\xca\xfb\xff\x97\xf8\xa7\x66\xd3\xfd\xfc\x51\x6d\xfa" "\xf3\xeb\xff\xf5\xff\xec\x37\xb7\xfe\x3f\x77\xff\xe3\xe2\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\xe3\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x09\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xc4\xb8" "\xa5\x93\xfd\xbf\xa8\xfe\xdf\xfb\xff\x1d\xf7\xff\xf9\x15\xf4\xff\xfa" "\xff\xcb\xdf\xff\x27\xfd\xff\x32\xe9\xff\x87\xe9\xff\x47\xb4\xd2\xff" "\x5f\xa2\x4d\xf7\xf3\x4b\xff\xfc\xfa\x7f\xfd\x3f\xfb\xcd\xad\xff\xcf" "\xdd\xff\xa4\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xe4\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x4a\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\x3f\x35\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xcb\xe8\xff" "\xbd\xff\xaf\xff\xf7\xfe\xbf\xfe\xff\x70\xf4\xff\xc3\xf4\xff\x23\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\x49\xcd\xad\xff\xcf\xdd\x7f\x43\xdc\xd2" "\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x5a\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\x3f\x3d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f" "\x11\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfe\xeb" "\xeb\xff\x97\x49\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xeb\xff" "\x99\xd4\x8c\xfa\xff\x0b\x7e\xd5\xd6\xea\x99\x71\x4b\x27\xfb\x1f\x00" "\x00\x00\x7a\x90\xbb\xff\x59\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xec\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x31\x6e\xe9\x64" "\xff\xeb\xff\x67\xd3\xff\xef\xe4\x7c\x6d\xf5\xff\xdb\xab\xd5\xea\x92" "\xfb\xff\xff\xd1\xff\x2f\xbb\xff\xdf\xbe\xe0\xf7\xb3\xfe\x5c\xea\xff" "\xf5\xff\xc7\x40\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xeb\xff" "\x99\xd4\x8c\xfa\xff\x9d\x1f\xe7\xee\x7f\x4e\xdc\xd2\xc9\xfe\x07\x00" "\x00\x80\x1e\xe4\xee\xbf\x29\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x9f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xcf\x8b\x5b\x3a\xd9" "\xff\xfa\xff\xd9\xf4\xff\x3b\xda\xea\xff\xbd\xff\xbf\xf7\xcf\x47\x4f" "\xfd\xbf\xf7\xff\xf7\xd3\xff\x1f\x0f\xfd\xff\x30\xfd\xff\x08\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x73\xf7\x3f\x3f\x6e\x3a\x75" "\xd5\x25\x7f\x8b\x00\x00\x00\xc0\xcc\xe4\xee\x7f\x41\xdc\xd2\xc9\xdf" "\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf\x30\x6e\xb1\xff\x01\x00\x00\x60" "\xa1\x6e\xd8\xf7\x33\xb9\xfb\x5f\x14\xb7\x74\xb2\xff\xf5\xff\xd3\xf6" "\xff\xa7\x2e\xf8\x39\xfd\xbf\xfe\x7f\xef\x9f\x8f\xf9\xf6\xff\x57\xec" "\xaa\x94\xf5\xff\xe7\xe8\xff\x97\x49\xff\x3f\x4c\xff\x3f\x42\xff\xaf" "\xff\xd7\xff\xeb\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\x2f\x8e\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\x37\xc7\x2d\xf6\x3f\x00\x00\x00\x2c" "\xc4\x2d\xff\x3c\xf6\x4f\xe4\xee\x7f\x49\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xbf\x34\x6e\xe9\x64\xff\xeb\xff\xbd\xff\xaf\xff\xd7\xff" "\x7b\xff\x7f\xfd\xd7\xd7\xff\x2f\x93\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f" "\xff\xbf\xd9\xfe\xff\xf4\xf9\xff\x52\xff\x4f\x1b\x2e\xa2\xff\x3f\x7b" "\xf6\xec\x99\xcb\xde\xff\xe7\xee\x7f\x59\xdc\xd2\xc9\xfe\x07\x00\x00" "\x80\x1e\xe4\xee\x7f\x79\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf" "\x22\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x19\xb7\x74\xb2\xff" "\xf5\xff\x97\xa3\xff\x3f\x57\x2b\xce\xba\xff\xcf\x3f\xea\xcb\xea\xff" "\xaf\x5b\xad\xe6\xde\xff\x9f\xd1\xff\xeb\xff\x0f\xa4\xff\x3f\x1e\xfa" "\xff\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xf7\xff\xf5\xff\x4c\x6a\x6e\xef" "\xff\xe7\xee\x7f\x55\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f" "\x75\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x26\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\x5f\x1b\xb7\x74\xb2\xff\xf5\xff\xde\xff\x5f" "\x50\xff\xef\xfd\x7f\xfd\xff\xae\xef\x67\x61\xfd\xff\x9d\x2b\xfd\xff" "\xb1\x58\x44\xff\xbf\x7d\xf0\xd7\x9f\x7b\xff\x7f\xbd\xfe\x5f\xff\x3f" "\xa0\xbb\xfe\xff\x7f\xff\x6b\xd7\x0f\xf5\xff\xfa\x7f\xf6\x9b\x5b\xff" "\x9f\xbb\xff\x75\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xf5" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x86\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\x7f\x63\xdc\x74\xb2\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xfa\xff\xf5\x5f\xff\x98\xdf\xff\x3f\xb5\x5a\xad\xf4\xff" "\x13\x58\x44\xff\x3f\x60\xee\xfd\xbf\xf7\xff\xf5\xff\x43\xba\xeb\xff" "\xf7\xd0\xff\xeb\xff\xd9\x6f\x6e\xfd\x7f\xee\xfe\x37\xc5\x2d\x9d\xec" "\x7f\x00\x00\x00\xe8\x41\xee\xfe\x37\xc7\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x5b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xad\x71" "\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x9b\xef\xff\xaf\x5f\x44" "\xff\xef\xfd\xff\x89\xe8\xff\x87\xe9\xff\x47\xe8\xff\xf5\xff\xfa\x7f" "\xfd\x3f\xc7\x62\x53\xfd\x7f\xee\xfe\xb7\xc5\x2d\x9d\xec\x7f\x00\x00" "\x00\xe8\x41\xee\xfe\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x3b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x9d\x71\x4b\x27\xfb" "\x5f\xff\xaf\xff\xbf\x98\xfe\x3f\x3f\xa7\xfe\xbf\xad\xfe\xff\xf4\xec" "\xfa\xff\xad\x5d\xff\xbe\x4e\xde\xff\xd7\xff\x4f\x44\xff\x3f\x4c\xff" "\x3f\x42\xff\xaf\xff\xd7\xff\xdf\xa0\xff\x67\x4a\x73\x7b\xff\x3f\x77" "\xff\xbb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xbb\xe3\xd6" "\xff\xeb\xd6\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x25\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\xdf\x13\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xef" "\xff\xeb\xff\x9b\x7f\xff\x5f\xff\xdf\x15\xfd\xff\x30\xfd\xff\x08\xfd" "\xbf\xfe\x5f\xff\xef\xfd\x7f\x26\x35\xb7\xfe\x3f\x77\xff\x7b\xe3\x96" "\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xfb\xe2\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\xfd\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f" "\x6b\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xb9\xdf" "\x43\xfd\x7f\x1b\xf4\xff\xc3\x8e\xa7\xff\xdf\xd6\xff\xeb\xff\xab\x9f" "\xbf\x22\xfe\xa7\x40\xff\xaf\xff\x1f\xfb\xf5\xb4\x69\x6e\xfd\x7f\xee" "\xfe\x0f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x0f\xc6\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x87\xe2\x16\xfb\x1f\x00\x00\x00" "\x16\xe9\xe4\x9a\x9f\xcb\xdd\xff\xe1\xb8\xa5\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xf5\x5f\x5f\xff\xbf\x4c\xfa\xff\x61\xde\xff" "\x3f\xc8\x3f\xdd\x74\xe1\x8f\xf4\xff\x87\xed\xe7\xff\x6d\xd7\x8f\x96" "\xf6\xfe\xff\xde\xff\xfb\xa5\xff\xd7\xff\x33\xbd\xb9\xf5\xff\xb9\xfb" "\x3f\x12\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x3f\x1a\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8b\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x8f\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe\xbf\x99\xfe\xff\xae" "\x0f\xa1\xff\xd7\xff\xeb\xff\xbb\xa7\xff\x1f\xa6\xff\x1f\xd1\xdb\xfb" "\xff\xa7\x77\xff\x70\xd3\xef\xe7\x1f\xd5\xa6\x3f\xbf\xfe\x5f\xff\xcf" "\x7e\x73\xeb\xff\x73\xf7\x7f\x22\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f" "\x72\xf7\x7f\x32\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x15\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\x9d\xdd\x9f\x71\x59\x87\xfb\x5f\xff\xbf" "\xb1\xfe\x7f\xe7\xdf\xaf\xff\xf7\xfe\xbf\xfe\x5f\xff\xaf\xff\x9f\x96" "\xfe\x7f\x98\xfe\x7f\x44\x6f\xfd\xff\x1e\x9b\xee\xe7\x97\xfe\xf9\xf5" "\xff\xfa\x7f\xf6\x9b\x5b\xff\xff\xe9\x9d\x5f\xb5\xb5\xfa\x4c\xdc\xd2" "\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x6c\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\x7f\x2e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f" "\x1f\xb7\x74\xb2\xff\xf5\xff\xde\xff\x5f\x46\xff\x7f\xf6\xec\xd9\x33" "\xfa\x7f\xfd\xff\xee\xef\xe7\x7c\xff\x7f\xbb\xfe\x9f\xa2\xff\x1f\xa6" "\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e\xfd\x7f\xee\xfe" "\x2f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x2f\xc6\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\x97\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x44\xdc\xd2\xc9\xfe\xd7\xff\xcf\xa0\xff\xdf\xd2\xff\x7b" "\xff\x5f\xff\xbf\xf2\xfe\xbf\xfe\x7f\x22\xfa\xff\xf5\xb6\xe3\xea\xff" "\x47\xb4\xd8\xff\x6f\x1d\xfe\xdb\xdf\x74\x3f\x7f\x54\x9b\xfe\xfc\xfa" "\x7f\xfd\x3f\xfb\xcd\xad\xff\xff\xf2\xce\xaf\xda\x5a\x7d\x25\x6e\xe9" "\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x35\x6e\xd9\xb7\xff\x6f\x3b" "\xc6\x4f\x05\x00\x00\x00\x4c\x29\x77\xff\xd7\xe2\x16\x7f\xff\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xf5\xb8\xa5\x93\xfd\xaf\xff\x3f\xbe\xfe\xff" "\xae\xff\xec\x7a\x79\xff\x7f\x7b\xb5\xfe\xf3\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xff\xe5\xa6\xff\x1f\xa6\xff\x1f\xd1\x62\xff\x7f\x11\x36\xdd\xcf" "\x2f\xfd\xf3\xeb\xff\xf5\xff\xec\x37\xb7\xfe\x3f\x77\xff\x37\xe2\x96" "\xdd\xc3\xef\xaa\x8b\xfb\x2e\x01\x00\x00\x80\x39\xc9\xdd\xff\xcd\xb8" "\xa5\x93\xbf\xff\x07\x00\x00\x80\x1e\xe4\xee\xbf\x2d\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\xbf\x15\xb7\x74\xb2\xff\xf5\xff\x33\x78\xff" "\xbf\xc1\xfe\xff\x78\xde\xff\xdf\xd2\xff\xeb\xff\xa7\xec\xff\x4f\xe8" "\xff\xdb\xa0\xff\x1f\xa6\xff\x1f\xa1\xff\xd7\xff\xeb\xff\x27\xea\xff" "\xf3\x4f\xb3\xfe\xbf\x77\x73\xeb\xff\x73\xf7\x7f\x3b\x6e\xe9\x64\xff" "\x03\x00\x00\x40\x0f\x72\xf7\x7f\x27\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xbf\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xb7\xc7\x2d" "\x17\xec\xff\x75\x6d\x77\x2b\xf4\xff\xfa\xff\xe5\xf6\xff\xde\xff\xd7" "\xff\x7b\xff\x5f\xff\xbf\x5f\xdb\xfd\xff\xd6\x21\xfe\x0d\xdb\x83\xff" "\xdd\xc3\xf6\xff\xa7\x57\x47\xeb\xff\x93\xfe\x5f\xff\xaf\xff\xef\xb5" "\xff\xf7\xfe\x3f\xe7\xcc\xad\xff\xcf\xdd\xff\xbd\xb8\xc5\xdf\xff\x03" "\x00\x00\xc0\xe2\x5c\x75\xc0\xcf\xe7\xee\xff\x7e\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xff\x20\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x7f\x18\xb7\xdc\x71\x62\x53\x1f\xe9\x58\xe9\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\xfd\xd7\xd7\xff\x2f\x53\xdb\xfd\xff\xd1\x79\xff\x7f\x84" "\xfe\x7f\x8a\x7e\xfe\x6a\xfd\x7f\x1b\xfd\xff\x6a\xa5\xff\xe7\xe8\xe6" "\xd6\xff\xe7\xee\xff\x51\xdc\xe2\xef\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x7f\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x89\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x9f\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\xff" "\x88\xfd\xff\x4e\x9a\xd9\x72\xff\xbf\xbd\xd2\xff\xeb\xff\xcf\xd1\xff" "\x2f\x83\xfe\x7f\x98\xfe\x7f\x84\xfe\xdf\xfb\xff\xfa\x7f\xef\xff\x33" "\xa9\xb9\xf5\xff\xb9\xfb\x7f\x16\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07" "\xb9\xfb\x7f\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x88\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x5f\xc6\x2d\x9d\xec\xff\x8d\xf5" "\xff\xf1\x1f\xb5\xfe\x7f\xb3\xfd\xff\x09\xef\xff\xef\xf0\xfe\xbf\xfe" "\x7f\xdd\xd7\xd7\xff\x2f\x93\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xaf" "\xff\xd7\xff\x33\xa9\xb9\xf5\xff\xb9\xfb\x7f\x15\xb7\x74\xb2\xff\x01" "\x00\x00\xa0\x07\xb9\xfb\x7f\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xbf\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xdf\xc6\x2d\x9d" "\xec\x7f\xef\xff\xf7\xdd\xff\x4f\xf0\xfe\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xcf\x8a\xfe\x7f\x98\xfe\x7f\xbd\xfa\x8d\xd2\xff\xeb\xff\xf5\xff" "\xfa\x7f\x26\x35\xb7\xfe\x3f\x77\xff\xef\xe2\x96\x4e\xf6\x3f\x00\x00" "\x00\xf4\x20\x77\xff\xef\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x8e\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x43\xdc\xd2\xc9\xfe" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xfa\xaf\xaf\xff\x5f\x26\xfd" "\xff\xb0\x4d\xf6\xff\xff\xf7\x2f\xe3\x5f\xd6\xfb\xff\x1b\xef\xff\xf3" "\x23\xe8\xff\xf5\xff\xfa\x7f\x26\x31\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\x3f\xd2\xff\x9f\xae\x7f\x50\xff\x3f\x48\xff\xbf" "\xfb\xf3\x6f\xac\xff\xcf\x0f\xa2\xff\x1f\xfc\xfa\xfa\x7f\xfd\x7f\xcb" "\xf4\xff\xc3\xbc\xff\x3f\x42\xff\xef\xfd\x7f\xfd\xbf\xfe\x9f\x49\xcd" "\xad\xff\xcf\xdd\xff\xd7\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd" "\x7f\x67\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x2d\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xff\x1e\xb7\x74\xb2\xff\xbd\xff\xbf\xa4" "\xfe\xff\x6a\xfd\xbf\xf7\xff\xf5\xff\xfa\x7f\xfd\xff\x08\xfd\xff\x30" "\xfd\xff\x08\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x73\xf7" "\xff\x23\x00\x00\xff\xff\x0e\x45\x4c\xca", 25085)); NONFAILING(syz_mount_image( /*fs=*/0x20000000, /*dir=*/0x200002c0, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_DIRSYNC*/ 0x2010880, /*opts=*/0x20000300, /*chdir=*/1, /*size=*/0x61fd, /*img=*/0x20000440)); break; case 1: NONFAILING(memcpy((void*)0x200002c0, ".\000", 2)); NONFAILING(memcpy((void*)0x20000200, "./file0/../file0\000", 17)); syscall(__NR_mount, /*src=*/0x200002c0ul, /*dst=*/0x20000200ul, /*type=*/0ul, /*flags=MS_SHARED|MS_SYNCHRONOUS|MS_RDONLY|MS_DIRSYNC|MS_BIND*/ 0x101091ul, /*data=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_sysctl(); setup_cgroups(); const char* reason; (void)reason; if ((reason = setup_binfmt_misc())) printf("the reproducer may not work as expected: binfmt_misc setup failed: " "%s\n", reason); if ((reason = setup_usb())) printf("the reproducer may not work as expected: USB injection setup " "failed: %s\n", reason); if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }