// https://syzkaller.appspot.com/bug?id=8e8c180cd71c401f3a4e5361a0cf1886a3846f62 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static 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_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev, const void* addr, int addrsize) { struct ifaddrmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120; hdr.ifa_scope = RT_SCOPE_UNIVERSE; hdr.ifa_index = if_nametoindex(dev); netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize); netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize); return netlink_send(nlmsg, sock); } static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in_addr in_addr; inet_pton(AF_INET, addr, &in_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr)); if (err < 0) { } } static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in6_addr in6_addr; inet_pton(AF_INET6, addr, &in6_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr)); if (err < 0) { } } static void netlink_add_neigh(struct nlmsg* nlmsg, int sock, const char* name, const void* addr, int addrsize, const void* mac, int macsize) { struct ndmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ndm_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ndm_ifindex = if_nametoindex(name); hdr.ndm_state = NUD_PERMANENT; netlink_init(nlmsg, RTM_NEWNEIGH, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, NDA_DST, addr, addrsize); netlink_attr(nlmsg, NDA_LLADDR, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; static int tunfd = -1; #define TUN_IFACE "syz_tun" #define LOCAL_MAC 0xaaaaaaaaaaaa #define REMOTE_MAC 0xaaaaaaaaaabb #define LOCAL_IPV4 "172.20.20.170" #define REMOTE_IPV4 "172.20.20.187" #define LOCAL_IPV6 "fe80::aa" #define REMOTE_IPV6 "fe80::bb" #define IFF_NAPI 0x0010 static void correct_dev_net_tun(void) { struct stat st; if (stat("/dev/net/tun", &st) == 0) { if (S_ISCHR(st.st_mode) && major(st.st_rdev) == 10 && minor(st.st_rdev) == 200) return; if (unlink("/dev/net/tun")) { } } if (mkdir("/dev/net", 0755) && errno != EEXIST) { } if (mknod("/dev/net/tun", S_IFCHR | 0666, makedev(10, 200))) { } if (chmod("/dev/net/tun", 0666)) { } } static void initialize_tun(void) { correct_dev_net_tun(); tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 200; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { exit(1); } char sysctl[64]; sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/accept_dad", TUN_IFACE); write_file(sysctl, "0"); sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/router_solicitations", TUN_IFACE); write_file(sysctl, "0"); int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); netlink_add_addr4(&nlmsg, sock, TUN_IFACE, LOCAL_IPV4); netlink_add_addr6(&nlmsg, sock, TUN_IFACE, LOCAL_IPV6); uint64_t macaddr = REMOTE_MAC; struct in_addr in_addr; inet_pton(AF_INET, REMOTE_IPV4, &in_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in_addr, sizeof(in_addr), &macaddr, ETH_ALEN); struct in6_addr in6_addr; inet_pton(AF_INET6, REMOTE_IPV6, &in6_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in6_addr, sizeof(in6_addr), &macaddr, ETH_ALEN); macaddr = LOCAL_MAC; netlink_device_change(&nlmsg, sock, TUN_IFACE, true, 0, &macaddr, ETH_ALEN, NULL); close(sock); } 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_tun(); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); flush_tun(); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static 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) ; } 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 < 4; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$xfs arguments: [ // fs: ptr[in, buffer] { // buffer: {78 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, fs_options[xfs_options]] { // fs_options[xfs_options] { // elems: array[fs_opt_elem[xfs_options]] { // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x96a4 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x96a7) // } // ] // returns fd_dir memcpy((void*)0x200000009680, "xfs\000", 4); memcpy((void*)0x2000000096c0, "./file0\000", 8); *(uint8_t*)0x2000000000c0 = 0; memcpy( (void*)0x200000012d80, "\x78\x9c\xec\xdd\x05\xb8\x65\x75\xc1\x78\xff\x3b\x4c\xd0\x43\x4b\xc8" "\x08\x12\xd2\xdd\xa1\xd2\xdd\x25\x88\x20\x5d\x52\x02\x2a\x9d\xa2\x08" "\x28\x65\x60\x90\x82\x94\x0a\x22\xa0\x20\x22\x82\x8a\x20\x48\x88\x89" "\x0a\x22\x28\xd2\xdd\xf1\x7f\x86\x99\x91\x71\x5c\xa0\xbe\xff\xf7\xfd" "\xa1\xae\xb5\x9e\xe7\xce\xb9\x67\x9f\xbd\xf7\xfd\x9e\xef\x67\x9f\xbd" "\xef\x8c\x3e\xec\x4d\x57\xd9\x70\x85\x81\x81\x09\x06\x46\x35\xf3\xc0" "\xb8\x9d\x76\xc2\x11\x73\x2f\xb3\xdf\xca\xd7\x9e\xb2\xdb\x43\x13\x5f" "\xb7\xd8\x21\xf7\x8c\x5e\x3c\xf9\xa8\x87\x11\xa3\x9f\x8e\x18\x34\xfa" "\x71\xbc\x81\x81\x81\xf1\x46\xef\x67\xf4\xb2\xe1\x7b\x5e\x72\xe9\x78" "\x03\x43\x5e\x5d\xfe\x5a\x13\x4f\x38\xd1\xa0\x49\x07\x06\x16\x1e\xfd" "\x74\xb9\xd1\x8f\x4b\x8c\x7a\x98\x62\xeb\x31\xeb\xbd\x32\x4e\xe3\x0e" "\x74\xd4\x0f\x39\x74\xe4\x77\x47\x8f\xfa\x7a\xb5\xc9\x46\xfe\x88\x91" "\xdf\x6c\xbd\xcb\xd5\x23\x97\x4d\x3e\xd6\xf6\x23\x37\xb9\xfa\xef\xde" "\xa8\xb4\x4d\x97\x5f\x75\x95\xd7\xac\xfe\xea\x36\xd2\x6a\xe8\xe8\xef" "\xc7\xfe\x1a\x36\xea\x6b\x8a\xcd\x07\x06\xa6\xd8\x74\x80\x8f\x8f\xb1" "\xd7\x1d\xf4\x26\xbc\xa5\x91\x3f\x73\xb9\x7d\x4f\xbd\xfa\xca\x37\xe1" "\x67\xff\xc7\xb5\xe9\xf2\xab\xae\x3e\x8e\xff\xc8\xcf\xe2\xe0\xd1\xcb" "\x96\x18\xf9\x19\x1f\xf7\x33\x68\x6c\xdc\xe3\xfc\x99\x13\xaf\x3c\x61" "\xf4\x14\x0e\x1a\x3d\x67\x43\xc6\xf9\xac\xfc\x47\xb4\xe9\xf2\xab\xac" "\x35\xf0\xfa\xe7\xf9\x81\x49\x8f\xdd\x72\xf0\x2b\xa3\xce\x9b\xe3\x0f" "\x8c\xba\x50\x4c\x38\x30\x30\x30\xd1\xe8\xf3\xeb\x24\x6f\xb6\x4b\xfd" "\xff\x6b\xc3\x8d\xd7\xde\x6c\xe4\xf9\x7e\xcc\xf3\xd1\xec\x43\xc6\x9c" "\x0b\xe8\xb8\x98\x7d\xd5\x1b\x0f\x1b\x79\x68\x8c\x3a\x4f\x0c\x3f\x77" "\xcc\xb5\xa0\xaa\xaa\xaa\xfe\x33\x5a\x7e\x85\x45\x56\x84\xeb\xff\x04" "\x63\x7e\xaf\xa5\xeb\xff\x52\xe7\xed\x77\x5d\xd7\xff\xaa\xaa\xaa\xff" "\xdc\x56\x5f\x7e\x85\x45\x46\x5e\xeb\xc7\xb9\xfe\x4f\xf2\x46\xd7\xff" "\xfd\x6e\x5b\x73\xcb\x51\xff\xf6\xbf\xdc\x12\xa3\xb6\x7a\xf9\xcd\x7d" "\x13\x55\x55\x55\xf5\x2f\xb5\xca\xea\x78\xfd\x9f\xfc\x8d\xae\xff\xcb" "\x1e\xb3\xf6\xf1\x5d\xff\xab\xaa\xaa\xfe\x73\xdb\x60\xed\x57\xaf\xff" "\x93\x8c\x73\xfd\x9f\xfa\x8d\xae\xff\xb3\x3e\xb0\xfb\xa5\xa3\xd7\x1b" "\xf3\x7b\xc3\x4b\x63\xed\x72\xd0\x58\xff\x7b\xc2\x0b\x63\x2d\x1f\x3c" "\xd6\xf2\xe7\xc7\x5a\x3e\x74\xac\xfd\x8c\xbd\xfe\xb0\xb1\x96\x3f\x3b" "\xd6\xf2\xf1\x47\xbe\x06\xeb\x4f\x3e\x30\x30\x7c\xcf\xd1\xcb\x5f\x7c" "\x6d\xf1\xf0\x43\x07\x06\x06\x66\x1e\xbd\xfc\xb9\xb1\x96\x9f\xfe\xda" "\xff\x4f\x67\xc4\x90\xb1\x96\x9f\x31\xd6\xf2\x61\x63\x2d\x3f\x73\xf4" "\x58\x47\x2e\x1f\x7f\xac\xe5\xe7\x8c\xb5\xfe\x04\x6f\x30\xd5\x55\x55" "\x55\xff\x36\x6d\xb0\xc8\x2a\x2b\x0e\x8c\xf5\xff\xb3\x1f\xbd\x78\xba" "\x31\xaf\xd3\xf5\xff\xc0\xcb\x6f\x9a\xe1\xcd\x1a\x6f\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\xd5\x7f\x62\x2f\x3f\x74\xc5\x55\xaf\xdd\xf3\xfd\xe0\x81\xb1\xee\x5d" "\xfd\xd7\x7b\x58\x8f\xfe\xef\x02\x0e\xba\xe8\xea\x5b\x6e\x79\xd3\x06" "\xfa\xef\xd1\xa0\xbf\xff\xef\x21\x1e\xfa\x66\x8f\xe9\xff\x6f\x23\x9d" "\x27\x38\x7f\xe6\x81\x81\xdd\x37\x7e\xb3\x87\x52\x6f\x42\xff\x31\xf7" "\xaa\xaf\xff\x93\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9" "\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef" "\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2" "\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe" "\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x71\xaf\x73\xff\xff" "\xe5\xc6\x3c\x6e\x71\xd7\xce\x5b\x8c\x5e\x75\xa9\x15\xae\x19\x7a\xf7" "\x6b\x5b\x8e\x18\xd8\x79\xf4\x77\xa7\x9d\x70\xc4\xdc\x3b\xbf\x09\x63" "\x7f\x13\xfa\x6f\xbd\xff\xff\xc0\xce\x83\x06\x06\x46\xfb\x4e\x3e\xd2" "\x72\x9d\xe5\x37\xd8\x68\xce\x81\x81\x81\xbb\x87\x5e\xb3\xc2\xe2\x03" "\x7f\x7d\x6d\xc9\x91\xaf\x2d\x33\xe5\xe0\x81\xc1\xaf\x6e\x3a\xe7\xab" "\x7f\x0e\x1d\xf1\x3a\x7b\x5e\x7a\xd4\xc3\xc8\x83\x69\x60\xea\xbf\xee" "\xe3\xa2\x57\xf7\xbf\xfa\x2b\x67\x0c\x1e\x34\xce\x20\xc6\x6a\x8a\xcb" "\xce\x3e\x7b\xa7\x4d\x9f\x59\x74\xdc\xc7\x39\x5e\xff\x7d\x8c\x37\xe6" "\x9b\xe7\xef\x38\xe0\xa1\x57\x5e\x79\xe5\x95\xbf\x59\x38\xba\x09\x5e" "\x67\xe3\x31\xfb\x1f\xf3\x5e\xc6\x75\x1e\x3d\xf6\x39\x47\x8e\x7d\x81" "\x7d\x76\xdb\x73\x81\xbd\xf7\xdb\x7f\xbe\x9d\x77\xdb\x7a\xc7\xed\x77" "\xdc\x7e\xf7\x85\x17\x5d\x7c\x89\xc5\x17\x5e\x72\xa9\x45\x16\x5b\x60" "\x87\x9d\x77\xdd\x7e\xc1\x51\x7f\xbe\xce\x9c\xcd\xfc\xea\x9f\x83\xff" "\x99\x39\x9b\x64\xdc\x39\x7b\x68\xf9\xb1\xe7\x6c\xdc\xf7\xf6\x7a\x73" "\x36\xf3\x1b\xcf\xd9\xab\x7b\x9c\xe0\x86\x05\xe6\x1b\x33\x67\x43\xfe" "\xc5\x39\x1b\xfc\xc6\x73\x36\xf3\xce\xa3\x7f\xd0\x88\x81\xa1\x03\x5b" "\xbd\x3a\x35\x83\x06\x06\x46\x0c\x19\x3a\xb0\xef\xc8\x27\x0b\x8d\x3f" "\x30\x30\x62\xe8\xe8\x75\xa7\x1b\xb9\xee\xb2\x53\x8e\x37\x30\x70\xfc" "\x6b\x6f\x74\xe4\x77\xe3\xff\xf5\x18\x1c\x74\xe8\xc8\x75\x36\x5d\x65" "\xc3\x15\x5e\x1b\xd9\xdf\xbf\xc3\xbf\xff\x9c\xbe\xda\xe4\xa3\x1e\xc6" "\x4c\xfe\x88\xd1\x3f\x64\xc4\x78\xa3\x86\x38\xf3\xc0\x6b\x87\xe2\xf0" "\x3d\x2f\xb9\x74\xbc\x91\x73\xf1\x37\xd3\x3c\xf1\x84\x13\x0d\x9a\x74" "\x60\x60\xe1\xd1\x4f\x97\x1b\xfd\xb8\xd4\xa8\x87\xc9\x26\x1d\xb3\xde" "\x2b\xe3\x34\xee\x40\x47\xfd\x90\x91\xe7\x8e\x41\x47\x8f\xfa\x1a\xb5" "\x83\x91\x3f\x62\xe4\x37\x4f\x4f\x75\xdf\x6c\x23\xc7\x3b\xce\xf6\xff" "\x17\xfd\x8f\xae\xff\x7f\xe7\xb5\xe4\xa0\xbf\x4e\xd4\xa0\xd1\x5f\xa3" "\xd7\x19\xe5\xb5\xfc\xaa\xab\xbf\xf6\xb3\x5e\x9d\x86\x91\x73\x37\x78" "\xf4\xb2\x25\x46\x9a\x8c\x3b\x67\xff\x9b\xfd\xdd\x78\x67\x1e\x32\xe6" "\x60\xc0\xf1\xae\xb2\xfa\x0a\x8b\x8c\x5c\x3c\xce\xfc\x8f\xd9\x04\x8f" "\xaf\xa3\x0f\x98\xeb\xfa\x51\xc7\xd6\x72\x4b\x8c\xda\xea\xe5\xff\x31" "\x0a\x8d\x77\x92\x37\x18\xef\xea\xcb\xe3\x78\x27\x79\xa3\xf1\xde\x3c" "\xcb\x02\xe3\x8f\xda\xd5\xff\xda\x78\xc7\x39\xd7\xad\x35\xea\xc5\x7f" "\xe6\x5c\x37\xf0\xc6\xe7\xba\xc1\xb4\xfd\xf6\x37\x8d\x18\xf7\x5c\xb7" "\xe6\xeb\x0f\xf1\x6f\x3e\xc7\x63\xe6\x68\xfc\x71\x56\x7a\xbd\x73\xdd" "\xe4\x33\x5d\x75\xc8\xc8\xfd\x0f\xbc\xf1\xb9\x6e\xad\x91\x63\x1f\xfa" "\x37\xe7\xba\xf1\x06\x06\x46\x0c\x1e\x73\xae\x1b\x79\xe2\x1b\x36\x74" "\xe0\xf8\x91\x4f\x16\x1e\xf9\x64\xfc\xa1\x03\xe7\x8e\x7c\xb2\xc8\xab" "\x4f\x26\x1c\xb8\x7a\xe4\x93\xf9\xb7\xdd\x63\xd7\xed\x46\x2e\x98\x60" "\xcc\x9c\x2c\x38\x72\xbf\xcb\x4d\x39\xe8\x55\xf7\x39\xe7\x3b\xee\x9c" "\x57\x4e\x7a\xe5\x95\x21\xa3\xc7\x72\xfa\xf0\xbf\x1d\xeb\xe8\xe3\x63" "\xe6\xb1\xaf\xe7\xcb\x4f\x39\x6a\x32\xc7\x6c\x3b\x66\xbf\x23\x57\x1d" "\xb3\xdf\xe5\xa6\x19\xf5\xda\xb0\xd1\xfb\x3d\xe3\x5f\xd8\xef\x98\x6d" "\x69\xbc\xab\x4d\x3a\xea\xb5\xf1\x47\xef\xf7\xcc\x71\xf6\x3b\xf4\x0d" "\xf6\x3b\x66\xdb\xbf\xfb\x3c\xcc\x39\xe8\xaf\x27\xae\xd7\x39\xdf\xac" "\x32\xce\xf9\x66\xf4\xef\xb8\x63\x7e\xdc\xdf\x7c\x0d\x1b\xf5\x35\xc5" "\xe6\x03\x03\x53\x6c\x4a\xbe\xe3\xac\xfb\x0f\xcf\x99\xf4\xf9\x9d\xe0" "\x0d\xc6\xbb\xfc\x0a\x8b\xac\x38\x72\x7c\xe3\x7c\x7e\xff\x7a\x38\xd2" "\xe7\x77\xe8\x36\x8b\x1e\x34\x30\x30\x30\xe9\xa8\x8f\xc7\xf0\x73\xc7" "\x8c\xfd\x5f\x6c\xd0\xeb\x8d\x77\xc8\x1b\x8f\x77\x05\x18\xef\x90\x37" "\x1a\xef\xf4\xc7\x1e\xb6\xcc\xff\xc2\x78\x07\xc6\x1a\xef\xdf\x1c\x67" "\x4b\x8e\x18\x75\xac\x4c\x30\xfa\x38\x3b\xe7\x5f\x38\x7e\xc7\x6c\x3b" "\xee\x79\x6c\xe8\xab\xaf\x8e\x3a\xed\x4f\xf0\xcf\x9c\xc7\x66\xfe\xbb" "\xf3\xd8\x61\x83\xc7\x1b\x67\xb2\xc7\xea\xf5\x7e\x67\xdb\x0e\xd6\x1f" "\xf5\xfd\x74\x7f\xdd\xdb\xc3\xc3\xd7\xbe\x7f\xcc\xdc\x0f\x1d\x67\xbf" "\xff\xe8\x77\xb6\xb1\xde\xcb\x20\x38\x8f\x4d\x3e\xce\xdf\xe7\x06\xdd" "\x7e\xd7\xc0\x20\x9a\xf3\x05\xcf\x1e\xb4\xcd\xcb\xff\x60\xce\x87\x0e" "\xfc\xed\xdf\x2d\xc6\xcc\xf9\x98\x6d\xdf\x68\xce\xc7\xff\x67\xe6\x7c" "\xc6\x37\x9e\xf3\x7f\xf6\xf7\xe4\x39\x67\x1d\xf5\xfa\xd0\x71\xc6\x3f" "\xf6\x9c\x6f\xb5\xd8\x9e\xf3\x8c\x99\xf3\x61\xe3\xec\xf7\x1f\xcd\xf9" "\xf8\x6f\x7c\xed\xf8\xfb\x39\x5f\x6e\x60\x28\xcd\xf9\x7a\x47\x8e\x9a" "\xb7\x37\x3a\x9f\xbe\xde\x9c\x8f\xd9\x76\xcc\x9c\xbf\xea\x3f\xe5\x90" "\x81\x95\x07\x06\x06\x66\x1b\x3d\xe7\xc3\xfe\x99\x39\x9f\xee\x7f\xe7" "\x38\x9f\x08\xd6\x1f\xf5\xfd\xf6\x7f\x5d\x74\xd4\x86\x8f\xcc\x3b\x66" "\xce\xc7\x9d\xe3\x7f\x34\xe7\xc3\xfe\xd5\x39\x9f\xf9\xaf\xc7\xf9\x6c" "\xaf\xbe\x36\xcb\x78\x03\xc3\x86\x0d\xec\xbb\xf5\x3e\xfb\xec\xb5\xd0" "\xa8\x3f\xc7\x3c\x5d\x78\xd4\x9f\x7c\x2e\x3a\xf7\xf0\x51\xf3\xfc\x46" "\xd7\xd2\xd7\x33\x1a\xb3\xed\x1b\x7d\x2e\x86\xfc\x33\x46\x93\xff\x53" "\x46\x83\xfe\x91\xd1\x0c\x43\x5e\xcf\xe8\xb5\x8f\xd6\x96\x77\x3e\xb9" "\xff\xff\xf4\x5c\x34\xe4\x5f\x35\x1a\xe0\x73\xd1\x2d\x17\x8e\x9a\xb7" "\x37\xfa\xbd\xe8\xf5\xe6\x7c\xcc\xb6\x74\x1d\x9c\x7a\xac\xed\xc7\xfd" "\x7b\xe8\x06\x6b\xbf\xfa\x7b\xf7\x24\xe3\x5c\x07\xc7\x6c\x82\xd7\xc1" "\xdb\xd6\x9e\x7d\xdb\x31\xbb\x1c\xbd\xd9\x4b\xe3\x0c\x73\xcc\x75\xf5" "\x85\xb1\x96\x0f\x1e\x6b\xf9\xf3\x63\x2d\x1f\x3a\xd6\x7e\xc6\x5e\x7f" "\xd8\x58\xcb\x9f\x1d\x6b\xf9\xc8\xb7\x30\x6c\xac\xf5\xc7\xb0\x4e\x3e" "\xf2\xef\xbc\xa3\x97\xbf\xf8\xda\xea\xc3\x47\xfe\x25\x75\xe6\xd1\xcb" "\x9f\x1b\x6b\xf9\xe9\xaf\x6d\x3b\x62\xac\x7f\x32\x18\x7e\xc6\x58\xcb" "\xc7\x3a\x45\x0e\x3f\xf3\xb5\x43\x63\xc4\x58\xbf\x76\x0f\x3f\x67\xac" "\xf5\x5f\xef\x50\x79\xdd\xc6\xfc\x9b\xe4\xce\xe3\x9e\xe4\xeb\x9f\xad" "\x7f\xff\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf" "\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb" "\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77" "\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e" "\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf" "\xbb\xfc\xdd\xe5\xef\x2e\x7f\x71\xaf\x73\xff\xff\x43\x47\x3f\x2e\x77" "\xde\xd6\x5b\x6e\x3b\xfa\x76\x72\x43\xef\x3d\x76\xf8\xc9\x6f\xf6\x78" "\xdf\xe4\xfe\xab\xef\xff\x3f\xda\xf7\x6f\xee\xff\x7f\xf2\xf0\x63\xef" "\x1d\x6f\xe0\xaf\xaf\xbd\xe1\xfd\xd9\x47\xad\xf3\x6f\x79\x7f\xf6\x25" "\x46\x3d\x4c\xb1\xf5\x98\xf5\xc6\xbd\x3f\xf8\xb8\x03\x1d\xf5\x43\x5e" "\xff\xfe\xec\x3b\xde\x7c\xd5\x6e\xff\x8f\xee\xcf\xfe\x3f\x6a\xcc\x67" "\xf5\x9f\xb8\x2f\x5e\xe7\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77" "\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee" "\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d" "\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb" "\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9" "\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef" "\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xb8" "\xd7\xb9\xff\xff\xd5\xa3\x1f\x0f\x3d\x7e\xca\x4b\x86\x8d\xbe\x11\xfa" "\xd0\xe9\x6e\x99\xe2\xf9\x37\x7b\xbc\x6f\x72\xff\xd5\xf7\xff\x1f\xed" "\xfb\x37\xf7\xff\x7f\x7e\x8a\x5b\xa6\x1b\x6f\xe0\xaf\xaf\xbd\xe1\xfd" "\xff\x47\xad\xe3\xb8\xff\xff\xd1\xa7\xcd\x30\xfc\xdf\xf9\xfe\xff\x63" "\x3e\xab\xdd\xff\xbf\xfe\x41\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2" "\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe" "\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf" "\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb" "\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x79" "\x1d\x00\xea\xe2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb" "\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77" "\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\x2f\x8e" "\xef\xff\x3f\x68\xf4\xe3\xc0\xd5\xab\x0e\xbb\xf8\xd6\x91\x8f\x23\x9f" "\x5f\xb0\xd7\x8b\x67\xbf\xd9\xe3\x7d\x93\xfb\x6f\xbd\xff\xff\x04\xe7" "\xcf\x3c\x30\xb0\xfb\xc6\x6f\xf6\x50\xea\x4d\xa8\xf3\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2" "\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe" "\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf" "\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb" "\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77" "\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e" "\x7f\x77\xf9\xbb\xcb\x5f\xdc\xe8\xfb\xff\x0f\x8c\xba\xff\xff\x98\x06" "\x2d\xd7\x71\x81\xc1\xfd\xff\xff\xb3\x7b\x1d\xff\xe5\xf3\xc7\x2c\xfe" "\x2b\xe4\x8f\x59\xfc\x57\xcc\x1f\xb3\xf8\xaf\x94\x3f\x66\xf1\x5f\x39" "\x7f\xcc\xe2\xbf\x4a\xfe\x98\xc5\x7f\xd5\xfc\x31\x8b\xff\x6a\xf9\x63" "\x16\xff\xd5\xf3\xc7\x2c\xfe\x6b\xe4\x8f\x59\xfc\xd7\xcc\x1f\xb3\xf8" "\xaf\x95\x3f\x66\xf1\x5f\x3b\x7f\xcc\xe2\xbf\x4e\xfe\x98\xc5\x7f\xdd" "\xfc\x31\x8b\xff\x7a\xf9\x63\x16\xff\xf5\xf3\xc7\x2c\xfe\x1b\xe4\x8f" "\x59\xfc\x37\xcc\x1f\xb3\xf8\x6f\x94\x3f\x66\xf1\xdf\x38\x7f\xcc\xe2" "\xbf\x49\xfe\x98\xc5\xff\x3d\xf9\x63\x16\xff\x4d\xf3\xc7\x2c\xfe\x9b" "\xe5\x8f\x59\xfc\xdf\x9b\x3f\x66\xf1\xdf\x3c\x7f\xcc\xe2\xff\xbe\xfc" "\x31\x8b\xff\x16\xf9\x63\x16\xff\x2d\xf3\xc7\x2c\xfe\xef\xcf\x1f\xb3" "\xf8\x6f\x95\x3f\x66\xf1\xdf\x3a\x7f\xcc\xe2\xbf\x4d\xfe\x98\xc5\x7f" "\xdb\xfc\x31\x8b\xff\x76\xf9\x63\x16\xff\xed\xf3\xc7\x2c\xfe\x3b\xe4" "\x8f\x59\xfc\x77\xcc\x1f\xb3\xf8\xef\x94\x3f\x66\xf1\xdf\x39\x7f\xcc" "\xe2\xbf\x4b\xfe\x98\xc5\xff\x03\xf9\x63\x16\xff\x5d\xf3\xc7\x2c\xfe" "\xbb\xe5\x8f\x59\xfc\x77\xcf\x1f\xb3\xf8\xef\x91\x3f\x66\xf1\xdf\x33" "\x7f\xcc\xe2\xff\xc1\xfc\x31\x8b\xff\x5e\xf9\x63\x16\xff\xbd\xf3\xc7" "\x2c\xfe\xfb\xe4\x8f\x59\xfc\x3f\x94\x3f\x66\xf1\xff\x70\xfe\x98\xc5" "\xff\x23\xf9\x63\x16\xff\x7d\xf3\xc7\x2c\xfe\xfb\xe5\x8f\x59\xfc\xf7" "\xcf\x1f\xb3\xf8\x1f\x90\x3f\x66\xf1\x3f\x30\x7f\xcc\xe2\x7f\x50\xfe" "\x98\xc5\xff\xe0\xfc\x31\x8b\xff\x21\xf9\x63\x16\xff\x43\xf3\xc7\x2c" "\xfe\x87\xe5\x8f\x59\xfc\x0f\xcf\x1f\xb3\xf8\x1f\x91\x3f\x66\xf1\xff" "\x68\xfe\x98\xc5\xff\xc8\xfc\x31\x8b\xff\xc7\xf2\xc7\x2c\xfe\x1f\xcf" "\x1f\xb3\xf8\x1f\x95\x3f\x66\xf1\xff\x44\xfe\x98\xc5\xff\xe8\xfc\x31" "\x8b\xff\x31\xf9\x63\x16\xff\x63\xf3\xc7\x2c\xfe\x9f\xcc\x1f\xb3\xf8" "\x7f\x2a\x7f\xcc\xe2\x7f\x5c\xfe\x98\xc5\xff\xf8\xfc\x31\x8b\xff\x09" "\xf9\x63\x16\xff\x13\xf3\xc7\x2c\xfe\x27\xe5\x8f\x59\xfc\x3f\x9d\x3f" "\x66\xf1\xff\x4c\xfe\x98\xc5\xff\xb3\xf9\x63\x16\xff\xcf\xe5\x8f\x59" "\xfc\x4f\xce\x1f\xb3\xf8\x7f\x3e\x7f\xcc\xe2\xff\x85\xfc\x31\x8b\xff" "\x17\xf3\xc7\x2c\xfe\x5f\xca\x1f\xb3\xf8\x9f\x92\x3f\x66\xf1\x3f\x35" "\x7f\xcc\xe2\x7f\x5a\xfe\x98\xc5\xff\xf4\xfc\x31\x8b\xff\x19\xf9\x63" "\x16\xff\x33\xf3\xc7\x2c\xfe\x5f\xce\x1f\xb3\xf8\x9f\x95\x3f\x66\xf1" "\x3f\x3b\x7f\xcc\xe2\xff\x95\xfc\x31\x8b\xff\x39\xf9\x63\x16\xff\x73" "\xf3\xc7\x2c\xfe\xe7\xe5\x8f\x59\xfc\xcf\xcf\x1f\xb3\xf8\x5f\x90\x3f" "\x66\xf1\xff\x6a\xfe\x98\xc5\xff\x6b\xf9\x63\x16\xff\xaf\xe7\x8f\x59" "\xfc\x2f\xcc\x1f\xb3\xf8\x5f\x94\x3f\x66\xf1\xff\x46\xfe\x98\xc5\xff" "\xe2\xfc\x31\x8b\xff\x37\xf3\xc7\x2c\xfe\x97\xe4\x8f\x59\xfc\x2f\xcd" "\x1f\xb3\xf8\x5f\x96\x3f\x66\xf1\xff\x56\xfe\x98\xc5\xff\xdb\xf9\x63" "\x16\xff\xcb\xf3\xc7\x2c\xfe\x57\xe4\x8f\x59\xfc\xbf\x93\x3f\x66\xf1" "\xbf\x32\x7f\xcc\xe2\xff\xdd\xfc\x31\x8b\xff\x55\xf9\x63\x16\xff\xef" "\xe5\x8f\x59\xfc\xaf\xce\x1f\xb3\xf8\x7f\x3f\x7f\xcc\xe2\x7f\x4d\xfe" "\x98\xc5\xff\xda\xfc\x31\x8b\xff\x0f\xf2\xc7\x2c\xfe\x3f\xcc\x1f\xb3" "\xf8\xff\x28\x7f\xcc\xe2\x7f\x5d\xfe\x98\xc5\xff\xc7\xf9\x63\x16\xff" "\xeb\xf3\xc7\x2c\xfe\x37\xe4\x8f\x59\xfc\x7f\x92\x3f\x66\xf1\xbf\x31" "\x7f\xcc\xe2\x7f\x53\xfe\x98\xc5\xff\xa7\xf9\x63\x16\xff\x9b\xf3\xc7" "\x2c\xfe\xb7\xe4\x8f\x59\xfc\x6f\xcd\x1f\xb3\xf8\xdf\x96\x3f\x66\xf1" "\xff\x59\xfe\x98\xc5\xff\xf6\xfc\x31\x8b\xff\xcf\xf3\xc7\x2c\xfe\xbf" "\xc8\x1f\xb3\xf8\xff\x32\x7f\xcc\xe2\xff\xab\xfc\x31\x8b\xff\xaf\xf3" "\xc7\x2c\xfe\xbf\xc9\x1f\xb3\xf8\xdf\x91\x3f\x66\xf1\xff\x6d\xfe\x98" "\xc5\xff\x77\xf9\x63\x16\xff\xdf\xe7\x8f\x59\xfc\xef\xcc\x1f\xb3\xf8" "\xdf\x95\x3f\x66\xf1\xff\x43\xfe\x98\xc5\xff\xee\xfc\x31\x8b\xff\x1f" "\xf3\xc7\x2c\xfe\xf7\xe4\x8f\x59\xfc\xef\xcd\x1f\xb3\xf8\xff\x29\x7f" "\xcc\xe2\xff\xe7\xfc\x31\x8b\xff\x7d\xf9\x63\x16\xff\xbf\xe4\x8f\x59" "\xfc\xef\xcf\x1f\xb3\xf8\x3f\x90\x3f\x66\xf1\x7f\x30\x7f\xcc\xe2\xff" "\x50\xfe\x98\xc5\xff\xe1\xfc\x31\x8b\xff\x23\xf9\x63\x16\xff\x47\xf3" "\xc7\x2c\xfe\x8f\xe5\x8f\x59\xfc\x1f\xcf\x1f\xb3\xf8\x3f\x91\x3f\x66" "\xf1\x7f\x32\x7f\xcc\xe2\xff\x54\xfe\x98\xc5\xff\xe9\xfc\x31\x8b\xff" "\x33\xf9\x63\x16\xff\x67\xf3\xc7\x2c\xfe\xcf\xe5\x8f\x59\xfc\x9f\xcf" "\x1f\xb3\xf8\xbf\x90\x3f\x66\xf1\x7f\x31\x7f\xcc\xe2\xff\x52\xfe\x98" "\xc5\xff\xe5\xfc\x31\x8b\xff\x2b\xf9\x63\x12\xff\x57\xbf\xcd\xff\xef" "\xb3\xf8\x0f\xca\x1f\xb3\xf8\x8f\x97\x3f\x66\xf1\x1f\x9c\x3f\x66\xf1" "\x1f\x92\x3f\x66\xf1\x1f\x9a\x3f\x66\xf1\x1f\x96\x3f\x66\xf1\x1f\x3f" "\x7f\xcc\xe2\x3f\x41\xfe\x98\xc5\x7f\xc2\xfc\x31\x8b\xff\x44\xf9\x63" "\x16\xff\x89\xf3\xc7\x2c\xfe\x93\xe4\x8f\x59\xfc\x27\xcd\x1f\xb3\xf8" "\x0f\xcf\x1f\xb3\xf8\x4f\x96\x3f\x66\xf1\x9f\x3c\x7f\xcc\xe2\x3f\x45" "\xfe\x98\xc5\x7f\xca\xfc\x31\x8b\xff\x54\xf9\x63\x16\xff\xa9\xf3\xc7" "\x2c\xfe\xd3\xe4\x8f\x59\xfc\xdf\x92\x3f\x66\xf1\x9f\x36\x7f\xcc\xe2" "\x3f\x5d\xfe\x98\xc5\x7f\xfa\xfc\x31\x8b\xff\x0c\xf9\x63\x16\xff\xb7" "\xe6\x8f\x59\xfc\x67\xcc\x1f\xb3\xf8\x8f\xc8\x1f\xb3\xf8\xbf\x2d\x7f" "\xcc\xe2\x3f\x53\xfe\x98\xc5\x7f\xe6\xfc\x31\x8b\xff\xdb\xf3\xc7\x2c" "\xfe\xb3\xe4\x8f\x59\xfc\x67\xcd\x1f\xb3\xf8\xcf\x96\x3f\x66\xf1\x9f" "\x3d\x7f\xcc\xe2\xff\x8e\xfc\x31\x8b\xff\x1c\xf9\x63\x16\xff\x39\xf3" "\xc7\x2c\xfe\x73\xe5\x8f\x59\xfc\xe7\xce\x1f\xb3\xf8\xcf\x93\x3f\x66" "\xf1\x9f\x37\x7f\xcc\xe2\x3f\x5f\xfe\x98\xc5\x7f\xfe\xfc\x31\x8b\xff" "\x02\xf9\x63\x16\xff\x05\xf3\xc7\x2c\xfe\x0b\xe5\x8f\x59\xfc\x17\xce" "\x1f\xb3\xf8\x2f\x92\x3f\x66\xf1\x5f\x34\x7f\xcc\xe2\xbf\x58\xfe\x98" "\xc5\x7f\xf1\xfc\x31\x8b\xff\x12\xf9\x63\x16\xff\x25\xf3\xc7\x2c\xfe" "\x4b\xe5\x8f\x59\xfc\x97\xce\x1f\xb3\xf8\x2f\x93\x3f\x66\xf1\x5f\x36" "\x7f\xcc\xe2\xff\xce\xfc\x31\x8b\xff\xbb\xf2\xc7\x2c\xfe\xef\xce\x1f" "\xb3\xf8\x2f\x97\x3f\x66\xf1\x5f\x3e\x7f\xcc\xe2\xbf\x42\xfe\x98\xc5" "\x7f\xc5\xfc\x31\x8b\xff\x4a\xf9\x63\x16\xff\x95\xf3\xc7\x2c\xfe\xab" "\xe4\x8f\x59\xfc\x57\xcd\x1f\xb3\xf8\xaf\x96\x3f\x66\xf1\x5f\x3d\x7f" "\xcc\xe2\xbf\x46\xfe\x98\xc5\x7f\xcd\xfc\x31\x8b\xff\x5a\xf9\x63\x16" "\xff\xb5\xf3\xc7\x2c\xfe\xeb\xe4\x8f\x59\xfc\xd7\xcd\x1f\xb3\xf8\xaf" "\x97\x3f\x66\xf1\x5f\x7f\xe4\x7b\x1d\xfa\x66\x0d\xea\xdf\x37\x8b\xff" "\x06\x7d\xfe\x31\x8b\xff\x86\xf9\x63\x16\xff\x8d\xfe\x91\xff\x90\xff" "\xe3\x71\xfd\x9b\x66\xf1\xdf\xb8\xcf\x3f\x66\xf1\xdf\x24\x7f\xcc\xe2" "\xff\x9e\xfc\x31\x8b\xff\xa6\xf9\x63\x16\xff\xcd\xf2\xc7\x2c\xfe\xef" "\xcd\x1f\xb3\xf8\x6f\x9e\x3f\x66\xf1\x7f\x5f\xfe\x98\xc5\x7f\x8b\xfc" "\x31\x8b\xff\x96\xf9\x63\x16\xff\xf7\xe7\x8f\x59\xfc\xb7\xca\x1f\xb3" "\xf8\x6f\x9d\x3f\x66\xf1\xdf\x26\x7f\xcc\xe2\xbf\x6d\xfe\x98\xc5\x7f" "\xbb\xfc\x31\x8b\xff\xf6\xf9\x63\x16\xff\x1d\xf2\xc7\x2c\xfe\x3b\xe6" "\x8f\x59\xfc\x77\xca\x1f\xb3\xf8\xef\x9c\x3f\x66\xf1\xdf\x25\x7f\xcc" "\xe2\xff\x81\xfc\x31\x8b\xff\xae\xf9\x63\x16\xff\xdd\xf2\xc7\x2c\xfe" "\xbb\xe7\x8f\x59\xfc\xf7\xc8\x1f\xb3\xf8\xef\x99\x3f\x66\xf1\xff\x60" "\xfe\x98\xc5\x7f\xaf\xfc\x31\x8b\xff\xde\xf9\x63\x16\xff\x7d\xf2\xc7" "\x2c\xfe\x1f\xca\x1f\xb3\xf8\x7f\x38\x7f\xcc\xe2\xff\x91\xfc\x31\x8b" "\xff\xbe\xf9\x63\x16\xff\xfd\xf2\xc7\x2c\xfe\xfb\xe7\x8f\x59\xfc\x0f" "\xc8\x1f\xb3\xf8\x1f\x98\x3f\x66\xf1\x3f\x28\x7f\xcc\xe2\x7f\x70\xfe" "\x98\xc5\xff\x90\xfc\x31\x8b\xff\xa1\xf9\x63\x16\xff\xc3\xf2\xc7\x2c" "\xfe\x87\xe7\x8f\x59\xfc\x8f\xc8\x1f\xb3\xf8\x7f\x34\x7f\xcc\xe2\x7f" "\x64\xfe\x98\xc5\xff\x63\xf9\x63\x16\xff\x8f\xe7\x8f\x59\xfc\x8f\xca" "\x1f\xb3\xf8\x7f\x22\x7f\xcc\xe2\x7f\x74\xfe\x98\xc5\xff\x98\xfc\x31" "\x8b\xff\xb1\xf9\x63\x16\xff\x4f\xe6\x8f\x59\xfc\x3f\x95\x3f\x66\xf1" "\x3f\x2e\x7f\xcc\xe2\x7f\x7c\xfe\x98\xc5\xff\x84\xfc\x31\x8b\xff\x89" "\xf9\x63\x16\xff\x93\xf2\xc7\x2c\xfe\x9f\xce\x1f\xb3\xf8\x7f\x26\x7f" "\xcc\xe2\xff\xd9\xfc\x31\x8b\xff\xe7\xf2\xc7\x2c\xfe\x27\xe7\x8f\x59" "\xfc\x3f\x9f\x3f\x66\xf1\xff\x42\xfe\x98\xc5\xff\x8b\xf9\x63\x16\xff" "\x2f\xe5\x8f\x59\xfc\x4f\xc9\x1f\xb3\xf8\x9f\x9a\x3f\x66\xf1\x3f\x2d" "\x7f\xcc\xe2\x7f\x7a\xfe\x98\xc5\xff\x8c\xfc\x31\x8b\xff\x99\xf9\x63" "\x16\xff\x2f\xe7\x8f\x59\xfc\xcf\xca\x1f\xb3\xf8\x9f\x9d\x3f\x66\xf1" "\xff\x4a\xfe\x98\xc5\xff\x9c\xfc\x31\x8b\xff\xb9\xf9\x63\x16\xff\xf3" "\xf2\xc7\x2c\xfe\xe7\xe7\x8f\x59\xfc\x2f\xc8\x1f\xb3\xf8\x7f\x35\x7f" "\xcc\xe2\xff\xb5\xfc\x31\x8b\xff\xd7\xf3\xc7\x2c\xfe\x17\xe6\x8f\x59" "\xfc\x2f\xca\x1f\xb3\xf8\x7f\x23\x7f\xcc\xe2\x7f\x71\xfe\x98\xc5\xff" "\x9b\xf9\x63\x16\xff\x4b\xf2\xc7\x2c\xfe\x97\xe6\x8f\x59\xfc\x2f\xcb" "\x1f\xb3\xf8\x7f\x2b\x7f\xcc\xe2\xff\xed\xfc\x31\x8b\xff\xe5\xf9\x63" "\x16\xff\x2b\xf2\xc7\x2c\xfe\xdf\xc9\x1f\xb3\xf8\x5f\x99\x3f\x66\xf1" "\xff\x6e\xfe\x98\xc5\xff\xaa\xfc\x31\x8b\xff\xf7\xf2\xc7\x2c\xfe\x57" "\xe7\x8f\x59\xfc\xbf\x9f\x3f\x66\xf1\xbf\x26\x7f\xcc\xe2\x7f\x6d\xfe" "\x98\xc5\xff\x07\xf9\x63\xe3\xf8\xff\xe7\x4f\xd1\xeb\xf8\xff\x30\x7f" "\xcc\xf2\xf9\xff\x51\xfe\x98\xc5\xff\xba\xfc\x31\x8b\xff\x8f\xf3\xc7" "\x2c\xfe\xd7\xe7\x8f\x59\xfc\x6f\xc8\x1f\xb3\xf8\xff\x24\x7f\xcc\xe2" "\x7f\x63\xfe\x98\xc5\xff\xa6\xfc\x31\x8b\xff\x4f\xf3\xc7\x2c\xfe\x37" "\xe7\x8f\x59\xfc\x6f\xc9\x1f\xb3\xf8\xdf\x9a\x3f\x66\xf1\xbf\x2d\x7f" "\xcc\xe2\xff\xb3\xfc\x31\x8b\xff\xed\xf9\x63\x16\xff\x9f\xe7\x8f\x59" "\xfc\x7f\x91\x3f\x66\xf1\xff\x65\xfe\x98\xc5\xff\x57\xf9\x63\x16\xff" "\x5f\xe7\x8f\x59\xfc\x7f\x93\x3f\x66\xf1\xbf\x23\x7f\xcc\xe2\xff\xdb" "\xfc\x31\x8b\xff\xef\xf2\xc7\x2c\xfe\xbf\xcf\x1f\xb3\xf8\xdf\x99\x3f" "\x66\xf1\xbf\x2b\x7f\xcc\xe2\xff\x87\xfc\x31\x8b\xff\xdd\xf9\x63\x16" "\xff\x3f\xe6\x8f\x59\xfc\xef\xc9\x1f\xb3\xf8\xdf\x9b\x3f\x66\xf1\xff" "\x53\xfe\x98\xc5\xff\xcf\xf9\x63\x16\xff\xfb\xf2\xc7\x2c\xfe\x7f\xc9" "\x1f\xb3\xf8\xdf\x9f\x3f\x66\xf1\x7f\x20\x7f\xcc\xe2\xff\x60\xfe\x98" "\xc5\xff\xa1\xfc\x31\x8b\xff\xc3\xf9\x63\x16\xff\x47\xf2\xc7\x2c\xfe" "\x8f\xe6\x8f\x59\xfc\x1f\xcb\x1f\xb3\xf8\x3f\x9e\x3f\x66\xf1\x7f\x22" "\x7f\xcc\xe2\xff\x64\xfe\x98\xc5\xff\xa9\xfc\x31\x8b\xff\xd3\xf9\x63" "\x16\xff\x67\xf2\xc7\x2c\xfe\xcf\xe6\x8f\x59\xfc\x9f\xcb\x1f\xb3\xf8" "\x3f\x9f\x3f\x66\xf1\x7f\x21\x7f\xcc\xe2\xff\x62\xfe\x98\xc5\xff\xa5" "\xfc\x31\x8b\xff\xcb\xf9\x63\x16\xff\x57\xf2\xc7\x24\xfe\x83\x07\xf2" "\xc7\x2c\xfe\x83\xf2\xc7\x2c\xfe\xe3\xe5\x8f\x59\xfc\x07\xe7\x8f\x59" "\xfc\x87\xe4\x8f\x59\xfc\x87\xe6\x8f\x59\xfc\x87\xe5\x8f\x59\xfc\xc7" "\xcf\x1f\xb3\xf8\x4f\x90\x3f\x66\xf1\x9f\x30\x7f\xcc\xe2\x3f\x51\xfe" "\x98\xc5\x7f\xe2\xfc\x31\x8b\xff\x24\xf9\x63\x16\xff\x49\xf3\xc7\x2c" "\xfe\xc3\xf3\xc7\x2c\xfe\x93\xe5\x8f\x59\xfc\x27\xcf\x1f\xb3\xf8\x4f" "\x91\x3f\x66\xf1\x9f\x32\x7f\xcc\xe2\x3f\x55\xfe\x98\xc5\x7f\xea\xfc" "\x31\x8b\xff\x34\xf9\x63\x16\xff\xb7\xe4\x8f\x59\xfc\xa7\xcd\x1f\xb3" "\xf8\x4f\x97\x3f\x66\xf1\x9f\x3e\x7f\xcc\xe2\x3f\x43\xfe\x98\xc5\xff" "\xad\xf9\x63\x16\xff\x19\xf3\xc7\x2c\xfe\x23\xf2\xc7\x2c\xfe\x6f\xcb" "\x1f\xb3\xf8\xcf\x94\x3f\x66\xf1\x9f\x39\x7f\xcc\xe2\xff\xf6\xfc\x31" "\x8b\xff\x2c\xf9\x63\x16\xff\x59\xf3\xc7\x2c\xfe\xb3\xe5\x8f\x59\xfc" "\x67\xcf\x1f\xb3\xf8\xbf\x23\x7f\xcc\xe2\x3f\x47\xfe\x98\xc5\x7f\xce" "\xfc\x31\x8b\xff\x5c\xf9\x63\x16\xff\xb9\xf3\xc7\x2c\xfe\xf3\xe4\x8f" "\x59\xfc\xe7\xcd\x1f\xb3\xf8\xcf\x97\x3f\x66\xf1\x9f\x3f\x7f\xcc\xe2" "\xbf\x40\xfe\x98\xc5\x7f\xc1\xfc\x31\x8b\xff\x42\xf9\x63\x16\xff\x85" "\xf3\xc7\x2c\xfe\x8b\xe4\x8f\x59\xfc\x17\xcd\x1f\xb3\xf8\x2f\x96\x3f" "\x66\xf1\x5f\x3c\x7f\xcc\xe2\xbf\x44\xfe\x98\xc5\x7f\xc9\xfc\x31\x8b" "\xff\x52\xf9\x63\x16\xff\xa5\xf3\xc7\x2c\xfe\xcb\xe4\x8f\x59\xfc\x97" "\xcd\x1f\xb3\xf8\xbf\x33\x7f\xcc\xe2\xff\xae\xfc\x31\x8b\xff\xbb\xf3" "\xc7\x2c\xfe\xcb\xe5\x8f\x59\xfc\x97\xcf\x1f\xb3\xf8\xaf\x90\x3f\x66" "\xf1\x5f\x31\x7f\xcc\xe2\xbf\x52\xfe\x98\xc5\x7f\xe5\xfc\x31\x8b\xff" "\x2a\xf9\x63\x16\xff\x55\xf3\xc7\x2c\xfe\xab\xe5\x8f\x59\xfc\x57\xcf" "\x1f\xb3\xf8\xaf\x91\x3f\x66\xf1\x5f\x33\x7f\xcc\xe2\xbf\x56\xfe\x98" "\xc5\x7f\xed\xfc\x31\x8b\xff\x3a\xf9\x63\x16\xff\x75\xf3\xc7\x2c\xfe" "\xeb\xe5\x8f\x59\xfc\xd7\xcf\x1f\xb3\xf8\x6f\x90\x3f\x66\xf1\xdf\x30" "\x7f\xcc\xe2\xbf\x51\xfe\x98\xc5\x7f\xe3\xfc\x31\x8b\xff\x26\xf9\x63" "\x16\xff\xf7\xe4\x8f\x59\xfc\x37\xcd\x1f\xb3\xf8\x6f\x96\x3f\x66\xf1" "\x7f\x6f\xfe\x98\xc5\x7f\xf3\xfc\x31\x8b\xff\xfb\xf2\xc7\x2c\xfe\x5b" "\xe4\x8f\x59\xfc\xb7\xcc\x1f\xb3\xf8\xbf\x3f\x7f\xcc\xe2\xbf\x55\xfe" "\x98\xc5\x7f\xeb\xfc\x31\x8b\xff\x36\xf9\x63\x16\xff\x6d\xf3\xc7\x2c" "\xfe\xdb\xe5\x8f\x59\xfc\xb7\xcf\x1f\xb3\xf8\xef\x90\x3f\x66\xf1\xdf" "\x31\x7f\xcc\xe2\xbf\x53\xfe\x98\xc5\x7f\xe7\xfc\x31\x8b\xff\x2e\xf9" "\x63\x16\xff\x0f\xe4\x8f\x59\xfc\x77\xcd\x1f\xb3\xf8\xef\x96\x3f\x66" "\xf1\xdf\x3d\x7f\xcc\xe2\xbf\x47\xfe\x98\xc5\x7f\xcf\xfc\x31\x8b\xff" "\x07\xf3\xc7\x2c\xfe\x7b\xe5\x8f\x59\xfc\xf7\xce\x1f\xb3\xf8\xef\x93" "\x3f\x66\xf1\xff\x50\xfe\x98\xc5\xff\xc3\xf9\x63\x16\xff\x8f\xe4\x8f" "\x59\xfc\xf7\xcd\x1f\xb3\xf8\xef\x97\x3f\x66\xf1\xdf\x3f\x7f\xcc\xe2" "\x7f\x40\xfe\x98\xc5\xff\xc0\xfc\x31\x8b\xff\x41\xf9\x63\x16\xff\x83" "\xf3\xc7\x2c\xfe\x87\xe4\x8f\x59\xfc\x0f\xcd\x1f\xb3\xf8\x1f\x96\x3f" "\x66\xf1\x3f\x3c\x7f\xcc\xe2\x7f\x44\xfe\x98\xc5\xff\xa3\xf9\x63\x16" "\xff\x23\xf3\xc7\x2c\xfe\x1f\xcb\x1f\xb3\xf8\x7f\x3c\x7f\xcc\xe2\x7f" "\x54\xfe\x98\xc5\xff\x13\xf9\x63\x16\xff\xa3\xf3\xc7\x2c\xfe\xc7\xe4" "\x8f\x59\xfc\x8f\xcd\x1f\xb3\xf8\x7f\x32\x7f\xcc\xe2\xff\xa9\xfc\x31" "\x8b\xff\x71\xf9\x63\x16\xff\xe3\xf3\xc7\x2c\xfe\x27\xe4\x8f\x59\xfc" "\x4f\xcc\x1f\xb3\xf8\x9f\x94\x3f\x66\xf1\xff\x74\xfe\x98\xc5\xff\x33" "\xf9\x63\x16\xff\xcf\xe6\x8f\x59\xfc\x3f\x97\x3f\x66\xf1\x3f\x39\x7f" "\xcc\xe2\xff\xf9\xfc\x31\x8b\xff\x17\xf2\xc7\x2c\xfe\x5f\xcc\x1f\xb3" "\xf8\x7f\x29\x7f\xcc\xe2\x7f\x4a\xfe\x98\xc5\xff\xd4\xfc\x31\x8b\xff" "\x69\xf9\x63\x16\xff\xd3\xf3\xc7\x2c\xfe\x67\xe4\x8f\x59\xfc\xcf\xcc" "\x1f\xb3\xf8\x7f\x39\x7f\xcc\xe2\x7f\x56\xfe\x98\xc5\xff\xec\xfc\x31" "\x8b\xff\x57\xf2\xc7\x2c\xfe\xe7\xe4\x8f\x59\xfc\xcf\xcd\x1f\xb3\xf8" "\x9f\x97\x3f\x66\xf1\x3f\x3f\x7f\xcc\xe2\x7f\x41\xfe\x98\xc5\xff\xab" "\xf9\x63\x16\xff\xaf\xe5\x8f\x59\xfc\xbf\x9e\x3f\x66\xf1\xbf\x30\x7f" "\xcc\xe2\x7f\x51\xfe\x98\xc5\xff\x1b\xf9\x63\x16\xff\x8b\xf3\xc7\x2c" "\xfe\xdf\xcc\x1f\xb3\xf8\x5f\x92\x3f\x66\xf1\xbf\x34\x7f\xcc\xe2\x7f" "\x59\xfe\x98\xc5\xff\x5b\xf9\x63\x16\xff\x6f\xe7\x8f\x59\xfc\x2f\xcf" "\x1f\xb3\xf8\x5f\x91\x3f\x66\xf1\xff\x4e\xfe\x98\xc5\xff\xca\xfc\x31" "\x8b\xff\x77\xf3\xc7\x2c\xfe\x57\xe5\x8f\x59\xfc\xbf\x97\x3f\x66\xf1" "\xbf\x3a\x7f\xcc\xe2\xff\xfd\xfc\x31\x8b\xff\x35\xf9\x63\x16\xff\x6b" "\xf3\xc7\x2c\xfe\x3f\xc8\x1f\xb3\xf8\xff\x30\x7f\xcc\xe2\xff\xa3\xfc" "\x31\x8b\xff\x75\xf9\x63\x16\xff\x1f\xe7\x8f\x59\xfc\xaf\xcf\x1f\xb3" "\xf8\xdf\x90\x3f\x66\xf1\xff\x49\xfe\x98\xc5\xff\xc6\xfc\x31\x8b\xff" "\x4d\xf9\x63\x16\xff\x9f\xe6\x8f\x59\xfc\x6f\xce\x1f\xb3\xf8\xdf\x92" "\x3f\x66\xf1\xbf\x35\x7f\xcc\xe2\x7f\x5b\xfe\x98\xc5\xff\x67\xf9\x63" "\x16\xff\xdb\xf3\xc7\x2c\xfe\x3f\xcf\x1f\xb3\xf8\xff\x22\x7f\xcc\xe2" "\xff\xcb\xfc\x31\x8b\xff\xaf\xf2\xc7\x2c\xfe\xbf\xce\x1f\xb3\xf8\xff" "\x26\x7f\xcc\xe2\x7f\x47\xfe\x98\xc5\xff\xb7\xf9\x63\x16\xff\xdf\xe5" "\x8f\x59\xfc\x7f\x9f\x3f\x66\xf1\xbf\x33\x7f\xcc\xe2\x7f\x57\xfe\x98" "\xc5\xff\x0f\xf9\x63\x16\xff\xbb\xf3\xc7\x2c\xfe\x7f\xcc\x1f\xb3\xf8" "\xdf\x93\x3f\x66\xf1\xbf\x37\x7f\xcc\xe2\xff\xa7\xfc\x31\x8b\xff\x9f" "\xf3\xc7\x2c\xfe\xf7\xe5\x8f\x59\xfc\xff\x92\x3f\x66\xf1\xbf\x3f\x7f" "\xcc\xe2\xff\x40\xfe\x98\xc5\xff\xc1\xfc\x31\x8b\xff\x43\xf9\x63\x16" "\xff\x87\xf3\xc7\x2c\xfe\x8f\xe4\x8f\x59\xfc\x1f\xcd\x1f\xb3\xf8\x3f" "\x96\x3f\x66\xf1\x7f\x3c\x7f\xcc\xe2\xff\x44\xfe\x98\xc5\xff\xc9\xfc" "\x31\x8b\xff\x53\xf9\x63\x16\xff\xa7\xf3\xc7\x2c\xfe\xcf\xe4\x8f\x59" "\xfc\x9f\xcd\x1f\xb3\xf8\x3f\x97\x3f\x66\xf1\x7f\x3e\x7f\xcc\xe2\xff" "\x42\xfe\x98\xc5\xff\xc5\xfc\x31\x8b\xff\x4b\xf9\x63\x16\xff\x97\xf3" "\xc7\x2c\xfe\xaf\xe4\x8f\x49\xfc\x87\x0c\xe4\x8f\x59\xfc\x07\xe5\x8f" "\x59\xfc\xc7\xcb\x1f\xb3\xf8\x0f\xce\x1f\xb3\xf8\x0f\xc9\x1f\xb3\xf8" "\x0f\xcd\x1f\xb3\xf8\x0f\xcb\x1f\xb3\xf8\x8f\x9f\x3f\x66\xf1\x9f\x20" "\x7f\xcc\xe2\x3f\x61\xfe\x98\xc5\x7f\xa2\xfc\x31\x8b\xff\xc4\xf9\x63" "\x16\xff\x49\xf2\xc7\x2c\xfe\x93\xe6\x8f\x59\xfc\x87\xe7\x8f\x59\xfc" "\x27\xcb\x1f\xb3\xf8\x4f\x9e\x3f\x66\xf1\x9f\x22\x7f\xcc\xe2\x3f\x65" "\xfe\x98\xc5\x7f\xaa\xfc\x31\x8b\xff\xd4\xf9\x63\x16\xff\x69\xf2\xc7" "\x2c\xfe\x6f\xc9\x1f\xb3\xf8\x4f\x9b\x3f\x66\xf1\x9f\x2e\x7f\xcc\xe2" "\x3f\x7d\xfe\x98\xc5\x7f\x86\xfc\x31\x8b\xff\x5b\xf3\xc7\x2c\xfe\x33" "\xe6\x8f\x59\xfc\x47\xe4\x8f\x59\xfc\xdf\x96\x3f\x66\xf1\x9f\x29\x7f" "\xcc\xe2\x3f\x73\xfe\x98\xc5\xff\xed\xf9\x63\x16\xff\x59\xf2\xc7\x2c" "\xfe\xb3\xe6\x8f\x59\xfc\x67\xcb\x1f\xb3\xf8\xcf\x9e\x3f\x66\xf1\x7f" "\x47\xfe\x98\xc5\x7f\x8e\xfc\x31\x8b\xff\x9c\xf9\x63\x16\xff\xb9\xf2" "\xc7\x2c\xfe\x73\xe7\x8f\x59\xfc\xe7\xc9\x1f\xb3\xf8\xcf\x9b\x3f\x66" "\xf1\x9f\x2f\x7f\xcc\xe2\x3f\x7f\xfe\x98\xc5\x7f\x81\xfc\x31\x8b\xff" "\x82\xf9\x63\x16\xff\x85\xf2\xc7\x2c\xfe\x0b\xe7\x8f\x59\xfc\x17\xc9" "\x1f\xb3\xf8\x2f\x9a\x3f\x66\xf1\x5f\x2c\x7f\xcc\xe2\xbf\x78\xfe\x98" "\xc5\x7f\x89\xfc\x31\x8b\xff\x92\xf9\x63\x16\xff\xa5\xf2\xc7\x2c\xfe" "\x4b\xe7\x8f\x59\xfc\x97\xc9\x1f\xb3\xf8\x2f\x9b\x3f\x66\xf1\x7f\x67" "\xfe\x98\xc5\xff\x5d\xf9\x63\x16\xff\x77\xe7\x8f\x59\xfc\x97\xcb\x1f" "\xb3\xf8\x2f\x9f\x3f\x66\xf1\x5f\x21\x7f\xcc\xe2\xbf\x62\xfe\x98\xc5" "\x7f\xa5\xfc\x31\x8b\xff\xca\xf9\x63\x16\xff\x55\xf2\xc7\x2c\xfe\xab" "\xe6\x8f\x59\xfc\x57\xcb\x1f\xb3\xf8\xaf\x9e\x3f\x66\xf1\x5f\x23\x7f" "\xcc\xe2\xbf\x66\xfe\x98\xc5\x7f\xad\xfc\x31\x8b\xff\xda\xf9\x63\x16" "\xff\x75\xf2\xc7\x2c\xfe\xeb\xe6\x8f\x59\xfc\xd7\xcb\x1f\xb3\xf8\xaf" "\x9f\x3f\x66\xf1\xdf\x20\x7f\xcc\xe2\xbf\x61\xfe\x98\xc5\x7f\xa3\xfc" "\x31\x8b\xff\xc6\xf9\x63\x16\xff\x4d\xf2\xc7\x2c\xfe\xef\xc9\x1f\xb3" "\xf8\x6f\x9a\x3f\x66\xf1\xdf\x2c\x7f\xcc\xe2\xff\xde\xfc\x31\x8b\xff" "\xe6\xf9\x63\x16\xff\xf7\xe5\x8f\x59\xfc\xb7\xc8\x1f\xb3\xf8\x6f\x99" "\x3f\x66\xf1\x7f\x7f\xfe\x98\xc5\x7f\xab\xfc\x31\x8b\xff\xd6\xf9\x63" "\x16\xff\x6d\xf2\xc7\x2c\xfe\xdb\xe6\x8f\x59\xfc\xb7\xcb\x1f\xb3\xf8" "\x6f\x9f\x3f\x66\xf1\xdf\x21\x7f\xcc\xe2\xbf\x63\xfe\x98\xc5\x7f\xa7" "\xfc\x31\x8b\xff\xce\xf9\x63\x16\xff\x5d\xf2\xc7\x2c\xfe\x1f\xc8\x1f" "\xb3\xf8\xef\x9a\x3f\x66\xf1\xdf\x2d\x7f\xcc\xe2\xbf\x7b\xfe\x98\xc5" "\x7f\x8f\xfc\x31\x8b\xff\x9e\xf9\x63\x16\xff\x0f\xe6\x8f\x59\xfc\xf7" "\xca\x1f\xb3\xf8\xef\x9d\x3f\x66\xf1\xdf\x27\x7f\xcc\xe2\xff\xa1\xfc" "\x31\x8b\xff\x87\xf3\xc7\x2c\xfe\x1f\xc9\x1f\xb3\xf8\xef\x9b\x3f\x66" "\xf1\xdf\x2f\x7f\xcc\xe2\xbf\x7f\xfe\x98\xc5\xff\x80\xfc\x31\x8b\xff" "\x81\xf9\x63\x16\xff\x83\xf2\xc7\x2c\xfe\x07\xe7\x8f\x59\xfc\x0f\xc9" "\x1f\xb3\xf8\x1f\x9a\x3f\x66\xf1\x3f\x2c\x7f\xcc\xe2\x7f\x78\xfe\x98" "\xc5\xff\x88\xfc\x31\x8b\xff\x47\xf3\xc7\x2c\xfe\x47\xe6\x8f\x59\xfc" "\x3f\x96\x3f\x66\xf1\xff\x78\xfe\x98\xc5\xff\xa8\xfc\x31\x8b\xff\x27" "\xf2\xc7\x2c\xfe\x47\xe7\x8f\x59\xfc\x8f\xc9\x1f\xb3\xf8\x1f\x9b\x3f" "\x66\xf1\xff\x64\xfe\x98\xc5\xff\x53\xf9\x63\x16\xff\xe3\xf2\xc7\x2c" "\xfe\xc7\xe7\x8f\x59\xfc\x4f\xc8\x1f\xb3\xf8\x9f\x98\x3f\x66\xf1\x3f" "\x29\x7f\xcc\xe2\xff\xe9\xfc\x31\x8b\xff\x67\xf2\xc7\x2c\xfe\x9f\xcd" "\x1f\xb3\xf8\x7f\x2e\x7f\xcc\xe2\x7f\x72\xfe\x98\xc5\xff\xf3\xf9\x63" "\x16\xff\x2f\xe4\x8f\x59\xfc\xbf\x98\x3f\x66\xf1\xff\x52\xfe\x98\xc5" "\xff\x94\xfc\x31\x8b\xff\xa9\xf9\x63\x16\xff\xd3\xf2\xc7\x2c\xfe\xa7" "\xe7\x8f\x59\xfc\xcf\xc8\x1f\xb3\xf8\x9f\x99\x3f\x66\xf1\xff\x72\xfe" "\x98\xc5\xff\xac\xfc\x31\x8b\xff\xd9\xf9\x63\x16\xff\xaf\xe4\x8f\x59" "\xfc\xcf\xc9\x1f\xb3\xf8\x9f\x9b\x3f\x66\xf1\x3f\x2f\x7f\xcc\xe2\x7f" "\x7e\xfe\x98\xc5\xff\x82\xfc\x31\x8b\xff\x57\xf3\xc7\x2c\xfe\x5f\xcb" "\x1f\xb3\xf8\x7f\x3d\x7f\xcc\xe2\x7f\x61\xfe\x98\xc5\xff\xa2\xfc\x31" "\x8b\xff\x37\xf2\xc7\x2c\xfe\x17\xe7\x8f\x59\xfc\xbf\x99\x3f\x66\xf1" "\xbf\x24\x7f\xcc\xe2\x7f\x69\xfe\x98\xc5\xff\xb2\xfc\x31\x8b\xff\xb7" "\xf2\xc7\x2c\xfe\xdf\xce\x1f\xb3\xf8\x5f\x9e\x3f\x66\xf1\xbf\x22\x7f" "\xcc\xe2\xff\x9d\xfc\x31\x8b\xff\x95\xf9\x63\x16\xff\xef\xe6\x8f\x59" "\xfc\xaf\xca\x1f\xb3\xf8\x7f\x2f\x7f\xcc\xe2\x7f\x75\xfe\x98\xc5\xff" "\xfb\xf9\x63\x16\xff\x6b\xf2\xc7\x2c\xfe\xd7\xe6\x8f\x59\xfc\x7f\x90" "\x3f\x66\xf1\xff\x61\xfe\x98\xc5\xff\x47\xf9\x63\x16\xff\xeb\xf2\xc7" "\x2c\xfe\x3f\xce\x1f\xb3\xf8\x5f\x9f\x3f\x66\xf1\xbf\x21\x7f\xcc\xe2" "\xff\x93\xfc\x31\x8b\xff\x8d\xf9\x63\x16\xff\x9b\xf2\xc7\x2c\xfe\x3f" "\xcd\x1f\xb3\xf8\xdf\x9c\x3f\x66\xf1\xbf\x25\x7f\xcc\xe2\x7f\x6b\xfe" "\x98\xc5\xff\xb6\xfc\x31\x8b\xff\xcf\xf2\xc7\x2c\xfe\xb7\xe7\x8f\x59" "\xfc\x7f\x9e\x3f\x66\xf1\xff\x45\xfe\x98\xc5\xff\x97\xf9\x63\x16\xff" "\x5f\xe5\x8f\x59\xfc\x7f\x9d\x3f\x66\xf1\xff\x4d\xfe\x98\xc5\xff\x8e" "\xfc\x31\x8b\xff\x6f\xf3\xc7\x2c\xfe\xbf\xcb\x1f\xb3\xf8\xff\x3e\x7f" "\xcc\xe2\x7f\x67\xfe\x98\xc5\xff\xae\xfc\x31\x8b\xff\x1f\xf2\xc7\x2c" "\xfe\x77\xe7\x8f\x59\xfc\xff\x98\x3f\x66\xf1\xbf\x27\x7f\xcc\xe2\x7f" "\x6f\xfe\x98\xc5\xff\x4f\xf9\x63\x16\xff\x3f\xe7\x8f\x59\xfc\xef\xcb" "\x1f\xb3\xf8\xff\x25\x7f\xcc\xe2\x7f\x7f\xfe\x98\xc5\xff\x81\xfc\x31" "\x8b\xff\x83\xf9\x63\x16\xff\x87\xf2\xc7\x2c\xfe\x0f\xe7\x8f\x59\xfc" "\x1f\xc9\x1f\xb3\xf8\x3f\x9a\x3f\x66\xf1\x7f\x2c\x7f\xcc\xe2\xff\x78" "\xfe\x98\xc5\xff\x89\xfc\x31\x8b\xff\x93\xf9\x63\x16\xff\xa7\xf2\xc7" "\x2c\xfe\x4f\xe7\x8f\x59\xfc\x9f\xc9\x1f\xb3\xf8\x3f\x9b\x3f\x66\xf1" "\x7f\x2e\x7f\xcc\xe2\xff\x7c\xfe\x98\xc5\xff\x85\xfc\x31\x8b\xff\x8b" "\xf9\x63\x16\xff\x97\xf2\xc7\x2c\xfe\x2f\xe7\x8f\x59\xfc\x5f\xc9\x1f" "\x93\xf8\x0f\x1d\xc8\x1f\xb3\xf8\x0f\xca\x1f\xb3\xf8\x8f\x97\x3f\x66" "\xf1\x1f\x9c\x3f\x66\xf1\x1f\x92\x3f\x66\xf1\x1f\x9a\x3f\x66\xf1\x1f" "\x96\x3f\x66\xf1\x1f\x3f\x7f\xcc\xe2\x3f\x41\xfe\x98\xc5\x7f\xc2\xfc" "\x31\x8b\xff\x44\xf9\x63\x16\xff\x89\xf3\xc7\x2c\xfe\x93\xe4\x8f\x59" "\xfc\x27\xcd\x1f\xb3\xf8\x0f\xcf\x1f\xb3\xf8\x4f\x96\x3f\x66\xf1\x9f" "\x5c\xe4\x3f\xed\xbf\xb0\xae\xc5\x7f\x0a\x91\xff\xbf\x92\xc5\x7f\xca" "\xfc\x31\x8b\xff\x54\xf9\x63\x16\xff\xa9\xf3\xc7\x2c\xfe\xd3\xe4\x8f" "\x59\xfc\xdf\x92\x3f\x66\xf1\x9f\x36\x7f\xcc\xe2\x3f\x5d\xfe\x98\xc5" "\x7f\xfa\xfc\x31\x8b\xff\x0c\xf9\x63\x16\xff\xb7\xe6\x8f\x59\xfc\x67" "\xcc\x1f\xb3\xf8\x8f\xc8\x1f\xb3\xf8\xbf\x2d\x7f\xcc\xe2\x3f\x53\xfe" "\x98\xc5\x7f\xe6\xfc\x31\x8b\xff\xdb\xf3\xc7\x2c\xfe\xb3\xe4\x8f\x59" "\xfc\x67\xcd\x1f\xb3\xf8\xcf\x96\x3f\x66\xf1\x9f\x3d\x7f\xcc\xe2\xff" "\x8e\xfc\x31\x8b\xff\x1c\xf9\x63\x16\xff\x39\xf3\xc7\x2c\xfe\x73\xe5" "\x8f\x59\xfc\xe7\xce\x1f\xb3\xf8\xcf\x93\x3f\x66\xf1\x9f\x37\x7f\xcc" "\xe2\x3f\x5f\xfe\x98\xc5\x7f\xfe\xfc\x31\x8b\xff\x02\xf9\x63\x16\xff" "\x05\xf3\xc7\x2c\xfe\x0b\xe5\x8f\x59\xfc\x17\xce\x1f\xb3\xf8\x2f\x92" "\x3f\x66\xf1\x5f\x34\x7f\xcc\xe2\xbf\x58\xfe\x98\xc5\x7f\xf1\xfc\x31" "\x8b\xff\x12\xf9\x63\x16\xff\x25\xf3\xc7\x2c\xfe\x4b\xe5\x8f\x59\xfc" "\x97\xce\x1f\xb3\xf8\x2f\x93\x3f\x66\xf1\x5f\x36\x7f\xcc\xe2\xff\xce" "\xfc\x31\x8b\xff\xbb\xf2\xc7\x2c\xfe\xef\xce\x1f\xb3\xf8\x2f\x97\x3f" "\x66\xf1\x5f\x3e\x7f\xcc\xe2\xbf\x42\xfe\x98\xc5\x7f\xc5\xfc\x31\x8b" "\xff\x4a\xf9\x63\x16\xff\x95\xf3\xc7\x2c\xfe\xab\xe4\x8f\x59\xfc\x57" "\xcd\x1f\xb3\xf8\xaf\x96\x3f\x66\xf1\x5f\x3d\x7f\xcc\xe2\xbf\x46\xfe" "\x98\xc5\x7f\xcd\xfc\x31\x8b\xff\x5a\xf9\x63\x16\xff\xb5\xf3\xc7\x2c" "\xfe\xeb\xe4\x8f\x59\xfc\xd7\xcd\x1f\xb3\xf8\xaf\x97\x3f\x66\xf1\x5f" "\x3f\x7f\xcc\xe2\xbf\x41\xfe\x98\xc5\x7f\xc3\xfc\x31\x8b\xff\x46\xf9" "\x63\x16\xff\x8d\xf3\xc7\x2c\xfe\x9b\xe4\x8f\x59\xfc\xdf\x93\x3f\x66" "\xf1\xdf\x34\x7f\xcc\xe2\xbf\x59\xfe\x98\xc5\xff\xbd\xf9\x63\x16\xff" "\xcd\xf3\xc7\x2c\xfe\xef\xcb\x1f\xb3\xf8\x6f\x91\x3f\x66\xf1\xdf\x32" "\x7f\xcc\xe2\xff\xfe\xfc\x31\x8b\xff\x56\xf9\x63\x16\xff\xad\xf3\xc7" "\x2c\xfe\xdb\xe4\x8f\x59\xfc\xb7\xcd\x1f\xb3\xf8\x6f\x97\x3f\x66\xf1" "\xdf\x3e\x7f\xcc\xe2\xbf\x43\xfe\x98\xc5\x7f\xc7\xfc\x31\x8b\xff\x4e" "\xf9\x63\x16\xff\x9d\xf3\xc7\x2c\xfe\xbb\xe4\x8f\x59\xfc\x3f\x90\x3f" "\x66\xf1\xdf\x35\x7f\xcc\xe2\xbf\x5b\xfe\x98\xc5\x7f\xf7\xfc\x31\x8b" "\xff\x1e\xf9\x63\x16\xff\x3d\xf3\xc7\x2c\xfe\x1f\xcc\x1f\xb3\xf8\xef" "\x95\x3f\x66\xf1\xdf\x3b\x7f\xcc\xe2\xbf\x4f\xfe\x98\xc5\xff\x43\xf9" "\x63\x16\xff\x0f\xe7\x8f\x59\xfc\x3f\x92\x3f\x66\xf1\xdf\x37\x7f\xcc" "\xe2\xbf\x5f\xfe\x98\xc5\x7f\xff\xfc\x31\x8b\xff\x01\xf9\x63\x16\xff" "\x03\xf3\xc7\x2c\xfe\x07\xe5\x8f\x59\xfc\x0f\xce\x1f\xb3\xf8\x1f\x92" "\x3f\x66\xf1\x3f\x34\x7f\xcc\xe2\x7f\x58\xfe\x98\xc5\xff\xf0\xfc\x31" "\x8b\xff\x11\xf9\x63\x16\xff\x8f\xe6\x8f\x59\xfc\x8f\xcc\x1f\xb3\xf8" "\x7f\x2c\x7f\xcc\xe2\xff\xf1\xfc\x31\x8b\xff\x51\xf9\x63\x16\xff\x4f" "\xe4\x8f\x59\xfc\x8f\xce\x1f\xb3\xf8\x1f\x93\x3f\x66\xf1\x3f\x36\x7f" "\xcc\xe2\xff\xc9\xfc\x31\x8b\xff\xa7\xf2\xc7\x2c\xfe\xc7\xe5\x8f\x59" "\xfc\x8f\xcf\x1f\xb3\xf8\x9f\x90\x3f\x66\xf1\x3f\x31\xff\xbf\xeb\x50" "\x91\xff\x49\xf9\x63\x16\xff\x4f\xe7\x8f\x59\xfc\x3f\x93\x3f\x66\xf1" "\xff\x6c\xfe\x98\xc5\xff\x73\xf9\x63\x16\xff\x93\xf3\xc7\x2c\xfe\x9f" "\xcf\x1f\xb3\xf8\x7f\x21\x7f\xcc\xe2\xff\xc5\xfc\x31\x8b\xff\x97\xf2" "\xc7\x2c\xfe\xa7\xe4\x8f\x59\xfc\x4f\xcd\x1f\xb3\xf8\x9f\x96\x3f\x66" "\xf1\x3f\x3d\x7f\xcc\xe2\x7f\x46\xfe\x98\xc5\xff\xcc\xfc\x31\x8b\xff" "\x97\xf3\xc7\x2c\xfe\x67\xe5\x8f\x59\xfc\xcf\xce\x1f\xb3\xf8\x7f\x25" "\x7f\xcc\xe2\x7f\x4e\xfe\x98\xc5\xff\xdc\xfc\x31\x8b\xff\x79\xf9\x63" "\x16\xff\xf3\xf3\xc7\x2c\xfe\x17\xe4\x8f\x59\xfc\xbf\x9a\x3f\x66\xf1" "\xff\x5a\xfe\x98\xc5\xff\xeb\xf9\x63\x16\xff\x0b\xf3\xc7\x2c\xfe\x17" "\xe5\x8f\x59\xfc\xbf\x91\x3f\x66\xf1\xbf\x38\x7f\xcc\xe2\xff\xcd\xfc" "\x31\x8b\xff\x25\xf9\x63\x16\xff\x4b\xf3\xc7\x2c\xfe\x97\xe5\x8f\x59" "\xfc\xbf\x95\x3f\x66\xf1\xff\x76\xfe\x98\xc5\xff\xf2\xfc\x31\x8b\xff" "\x15\xf9\x63\x16\xff\xef\xe4\x8f\x59\xfc\xaf\xcc\x1f\xb3\xf8\x7f\x37" "\x7f\xcc\xe2\x7f\x55\xfe\x98\xc5\xff\x7b\xf9\x63\x16\xff\xab\xf3\xc7" "\x2c\xfe\xdf\xcf\x1f\xb3\xf8\x5f\x93\x3f\x66\xf1\xbf\x36\x7f\xcc\xe2" "\xff\x83\xfc\x31\x8b\xff\x0f\xf3\xc7\x2c\xfe\x3f\xca\x1f\xb3\xf8\x5f" "\x97\x3f\x66\xf1\xff\x71\xfe\x98\xc5\xff\xfa\xfc\x31\x8b\xff\x0d\xf9" "\x63\x16\xff\x9f\xe4\x8f\x59\xfc\x6f\xcc\x1f\xb3\xf8\xdf\x94\x3f\x66" "\xf1\xff\x69\xfe\x98\xc5\xff\xe6\xfc\x31\x8b\xff\x2d\xf9\x63\x16\xff" "\x5b\xf3\xc7\x2c\xfe\xb7\xe5\x8f\x59\xfc\x7f\x96\x3f\x66\xf1\xbf\x3d" "\x7f\xcc\xe2\xff\xf3\xfc\x31\x8b\xff\x2f\xf2\xc7\x2c\xfe\xbf\xcc\x1f" "\xb3\xf8\xff\x2a\x7f\xcc\xe2\xff\xeb\xfc\x31\x8b\xff\x6f\xf2\xc7\x2c" "\xfe\x77\xe4\x8f\x59\xfc\x7f\x9b\x3f\x66\xf1\xff\x5d\xfe\x98\xc5\xff" "\xf7\xf9\x63\x16\xff\x3b\xf3\xc7\x2c\xfe\x77\xe5\x8f\x59\xfc\xff\x90" "\x3f\x66\xf1\xbf\x3b\x7f\xcc\xe2\xff\xc7\xfc\x31\x8b\xff\x3d\xf9\x63" "\x16\xff\x7b\xf3\xc7\x2c\xfe\x7f\xca\x1f\xb3\xf8\xff\x39\x7f\xcc\xe2" "\x7f\x5f\xfe\x98\xc5\xff\x2f\xf9\x63\x16\xff\xfb\xf3\xc7\x2c\xfe\x0f" "\xe4\x8f\x59\xfc\x1f\xcc\x1f\xb3\xf8\x3f\x94\x3f\x66\xf1\x7f\x38\x7f" "\xcc\xe2\xff\x48\xfe\x98\xc5\xff\xd1\xfc\x31\x8b\xff\x63\xf9\x63\x16" "\xff\xc7\xf3\xc7\x2c\xfe\x4f\xe4\x8f\x59\xfc\x9f\xcc\x1f\xb3\xf8\x3f" "\x95\x3f\x66\xf1\x7f\x3a\x7f\xcc\xe2\xff\x4c\xfe\x98\xc5\xff\xd9\xfc" "\x31\x8b\xff\x73\xf9\x63\x16\xff\xe7\xf3\xc7\x2c\xfe\x2f\xe4\x8f\x59" "\xfc\x5f\xcc\x1f\xb3\xf8\xbf\x94\x3f\x66\xf1\x7f\x39\x7f\xcc\xe2\xff" "\x4a\xfe\x98\xc4\x7f\xd8\x40\xfe\x98\xc5\x7f\x50\xfe\x98\xc5\x7f\xbc" "\xfc\x31\x8b\xff\xe0\xfc\x31\x8b\xff\x90\xfc\x31\x8b\xff\xd0\xfc\x31" "\x8b\xff\xb0\xfc\x31\x8b\xff\xf8\xf9\x63\x16\xff\x09\xf2\xc7\x2c\xfe" "\x13\xe6\x8f\x59\xfc\x27\xca\x1f\xb3\xf8\x4f\x9c\x3f\x66\xf1\x9f\x24" "\x7f\xcc\xe2\x3f\x69\xfe\x98\xc5\x7f\x78\xfe\x98\xc5\x7f\xb2\xfc\x31" "\x8b\xff\xe4\xf9\x63\x16\xff\x29\xf2\xc7\x2c\xfe\x53\xe6\x8f\x59\xfc" "\xa7\xca\x1f\xb3\xf8\x4f\x9d\x3f\x66\xf1\x9f\x26\x7f\xcc\xe2\xff\x96" "\xfc\x31\x8b\xff\xb4\xf9\x63\x16\xff\xe9\xf2\xc7\x2c\xfe\xd3\xe7\x8f" "\x59\xfc\x67\xc8\x1f\xb3\xf8\xbf\x35\x7f\xcc\xe2\x3f\x63\xfe\x98\xc5" "\x7f\x44\xfe\x98\xc5\xff\x6d\xf9\x63\x16\xff\x99\xf2\xc7\x2c\xfe\x33" "\xe7\x8f\x59\xfc\xdf\x9e\x3f\x66\xf1\x9f\x25\x7f\xcc\xe2\x3f\x6b\xfe" "\x98\xc5\x7f\xb6\xfc\x31\x8b\xff\xec\xf9\x63\x16\xff\x77\xe4\x8f\x59" "\xfc\xe7\xc8\x1f\xb3\xf8\xcf\x99\x3f\x66\xf1\x9f\x2b\x7f\xcc\xe2\x3f" "\x77\xfe\x98\xc5\x7f\x9e\xfc\x31\x8b\xff\xbc\xf9\x63\x16\xff\xf9\xf2" "\xc7\x2c\xfe\xf3\xe7\x8f\x59\xfc\x17\xc8\x1f\xb3\xf8\x2f\x98\x3f\x66" "\xf1\x5f\x28\x7f\xcc\xe2\xbf\x70\xfe\x98\xc5\x7f\x91\xfc\xb1\xff\x52" "\xff\xf1\x07\xc6\xf1\x5f\x34\x7f\xec\xbf\xd4\xff\xd5\xc6\xf6\x5f\x2c" "\x7f\xcc\xe2\xbf\x78\xfe\x98\xc5\x7f\x89\xfc\x31\x8b\xff\x92\xf9\x63" "\x16\xff\xa5\xf2\xc7\x2c\xfe\x4b\xe7\x8f\x59\xfc\x97\xc9\x1f\xb3\xf8" "\x2f\x9b\x3f\x66\xf1\x7f\x67\xfe\x98\xc5\xff\x5d\xf9\x63\x16\xff\x77" "\xe7\x8f\x59\xfc\x97\xcb\x1f\xb3\xf8\x2f\x9f\x3f\x66\xf1\x5f\x21\x7f" "\xcc\xe2\xbf\x62\xfe\x98\xc5\x7f\xa5\xfc\x31\x8b\xff\xca\xf9\x63\x16" "\xff\x55\xf2\xc7\x2c\xfe\xab\xe6\x8f\x59\xfc\x57\xcb\x1f\xb3\xf8\xaf" "\x9e\x3f\x66\xf1\x5f\x23\x7f\xcc\xe2\xbf\x66\xfe\x98\xc5\x7f\xad\xfc" "\x31\x8b\xff\xda\xf9\x63\x16\xff\x75\xf2\xc7\x2c\xfe\xeb\xe6\x8f\x59" "\xfc\xd7\xcb\x1f\xb3\xf8\xaf\x9f\x3f\x66\xf1\xdf\x20\x7f\xcc\xe2\xbf" "\x61\xfe\x98\xc5\x7f\xa3\xfc\x31\x8b\xff\xc6\xf9\x63\x16\xff\x4d\xf2" "\xc7\x2c\xfe\xef\xc9\x1f\xb3\xf8\x6f\x9a\x3f\x66\xf1\xdf\x2c\x7f\xcc" "\xe2\xff\xde\xfc\x31\x8b\xff\xe6\xf9\x63\x16\xff\xf7\xe5\x8f\x59\xfc" "\xb7\xc8\x1f\xb3\xf8\x6f\x99\x3f\x66\xf1\x7f\x7f\xfe\x98\xc5\x7f\xab" "\xfc\x31\x8b\xff\xd6\xf9\x63\x16\xff\x6d\xf2\xc7\x2c\xfe\xdb\xe6\x8f" "\x59\xfc\xb7\xcb\x1f\xb3\xf8\x6f\x9f\x3f\x66\xf1\xdf\x21\x7f\xcc\xe2" "\xbf\x63\xfe\x98\xc5\x7f\xa7\xfc\x31\x8b\xff\xce\xf9\x63\x16\xff\x5d" "\xf2\xc7\x2c\xfe\x1f\xc8\x1f\xb3\xf8\xef\x9a\x3f\x66\xf1\xdf\x2d\x7f" "\xcc\xe2\xbf\x7b\xfe\x98\xc5\x7f\x8f\xfc\x31\x8b\xff\x9e\xf9\x63\x16" "\xff\x0f\xe6\x8f\x59\xfc\xf7\xca\x1f\xb3\xf8\xef\x9d\x3f\x66\xf1\xdf" "\x27\x7f\xcc\xe2\xff\xa1\xfc\x31\x8b\xff\x87\xf3\xc7\x2c\xfe\x1f\xc9" "\x1f\xb3\xf8\xef\x9b\x3f\x66\xf1\xdf\x2f\x7f\xcc\xe2\xbf\x7f\xfe\x98" "\xc5\xff\x80\xfc\x31\x8b\xff\x81\xf9\x63\x16\xff\x83\xf2\xc7\x2c\xfe" "\x07\xe7\x8f\x59\xfc\x0f\xc9\x1f\xb3\xf8\x1f\x9a\x3f\x66\xf1\x3f\x2c" "\x7f\xcc\xe2\x7f\x78\xfe\x98\xc5\xff\x88\xfc\x31\x8b\xff\x47\xf3\xc7" "\x2c\xfe\x47\xe6\x8f\x59\xfc\x3f\x96\x3f\x66\xf1\xff\x78\xfe\x98\xc5" "\xff\xa8\xfc\x31\x8b\xff\x27\xf2\xc7\x2c\xfe\x47\xe7\x8f\x59\xfc\x8f" "\xc9\x1f\xb3\xf8\x1f\x9b\x3f\x66\xf1\xff\x64\xfe\x98\xc5\xff\x53\xf9" "\x63\x16\xff\xe3\xf2\xc7\x2c\xfe\xc7\xe7\x8f\x59\xfc\x4f\xc8\x1f\xb3" "\xf8\x9f\x98\x3f\x66\xf1\x3f\x29\x7f\xcc\xe2\xff\xe9\xfc\x31\x8b\xff" "\x67\xf2\xc7\x2c\xfe\x9f\xcd\x1f\xb3\xf8\x7f\x2e\x7f\xcc\xe2\x7f\x72" "\xfe\x98\xc5\xff\xf3\xf9\x63\x16\xff\x2f\xe4\x8f\x59\xfc\xbf\x98\x3f" "\x66\xf1\xff\x52\xfe\x98\xc5\xff\x94\xfc\x31\x8b\xff\xa9\xf9\x63\x16" "\xff\xd3\xf2\xc7\x2c\xfe\xa7\xe7\x8f\x59\xfc\xcf\xc8\x1f\xb3\xf8\x9f" "\x99\x3f\x66\xf1\xff\x72\xfe\x98\xc5\xff\xac\xfc\x31\x8b\xff\xd9\xf9" "\x63\x16\xff\xaf\xe4\x8f\x59\xfc\xcf\xc9\x1f\xb3\xf8\x9f\x9b\x3f\x66" "\xf1\x3f\x2f\x7f\xcc\xe2\x7f\x7e\xfe\x98\xc5\xff\x82\xfc\x31\x8b\xff" "\x57\xf3\xc7\x2c\xfe\x5f\xcb\x1f\xb3\xf8\x7f\x3d\x7f\xcc\xe2\x7f\x61" "\xfe\x98\xc5\xff\xa2\xfc\x31\x8b\xff\x37\xf2\xc7\x2c\xfe\x17\xe7\x8f" "\x59\xfc\xbf\x99\x3f\x66\xf1\xbf\x24\x7f\xcc\xe2\x7f\x69\xfe\x98\xc5" "\xff\xb2\xfc\x31\x8b\xff\xb7\xf2\xc7\x2c\xfe\xdf\xce\x1f\xb3\xf8\x5f" "\x9e\x3f\x66\xf1\xbf\x22\x7f\xcc\xe2\xff\x9d\xfc\x31\x8b\xff\x95\xf9" "\x63\x16\xff\xef\xe6\x8f\x59\xfc\xaf\xca\x1f\xb3\xf8\x7f\x2f\x7f\xcc" "\xe2\x7f\x75\xfe\x98\xc5\xff\xfb\xf9\x63\x16\xff\x6b\xf2\xc7\x2c\xfe" "\xd7\xe6\x8f\x59\xfc\x7f\x90\x3f\x66\xf1\xff\x61\xfe\x98\xc5\xff\x47" "\xf9\x63\x16\xff\xeb\xf2\xc7\x2c\xfe\x3f\xce\x1f\xb3\xf8\x5f\x9f\x3f" "\x66\xf1\xbf\x21\x7f\xcc\xe2\xff\x93\xfc\x31\x8b\xff\x8d\xf9\x63\x16" "\xff\x9b\xf2\xc7\x2c\xfe\x3f\xcd\x1f\xb3\xf8\xdf\x9c\x3f\x66\xf1\xbf" "\x25\x7f\xcc\xe2\x7f\x6b\xfe\x98\xc5\xff\xb6\xfc\x31\x8b\xff\xcf\xf2" "\xc7\x2c\xfe\xb7\xe7\x8f\x59\xfc\x7f\x9e\x3f\x66\xf1\xff\x45\xfe\x98" "\xc5\xff\x97\xf9\x63\x16\xff\x5f\xe5\x8f\x59\xfc\x7f\x9d\x3f\x66\xf1" "\xff\x4d\xfe\x98\xc5\xff\x8e\xfc\x31\x8b\xff\x6f\xf3\xc7\x2c\xfe\xbf" "\xcb\x1f\xb3\xf8\xff\x3e\x7f\xcc\xe2\x7f\x67\xfe\x98\xc5\xff\xae\xfc" "\x31\x8b\xff\x1f\xf2\xc7\x2c\xfe\x77\xe7\x8f\x59\xfc\xff\x98\x3f\x66" "\xf1\xbf\x27\x7f\xcc\xe2\x7f\x6f\xfe\x98\xc5\xff\x4f\xf9\x63\x16\xff" "\x3f\xe7\x8f\x59\xfc\xef\xcb\x1f\xb3\xf8\xff\x25\x7f\xcc\xe2\x7f\x7f" "\xfe\x98\xc5\xff\x81\xfc\x31\x8b\xff\x83\xf9\x63\x16\xff\x87\xf2\xc7" "\x2c\xfe\x0f\xe7\x8f\x59\xfc\x1f\xc9\x1f\xb3\xf8\x3f\x9a\x3f\x66\xf1" "\x7f\x2c\x7f\xcc\xe2\xff\x78\xfe\x98\xc5\xff\x89\xfc\x31\x8b\xff\x93" "\xf9\x63\x16\xff\xa7\xf2\xc7\x2c\xfe\x4f\xe7\x8f\x59\xfc\x9f\xc9\x1f" "\xb3\xf8\x3f\x9b\x3f\x66\xf1\x7f\x2e\x7f\xcc\xe2\xff\x7c\xfe\x98\xc5" "\xff\x85\xfc\x31\x8b\xff\x8b\xf9\x63\x16\xff\x97\xf2\xc7\x2c\xfe\x2f" "\xe7\x8f\x59\xfc\x5f\xc9\x1f\x93\xf8\x8f\x3f\x90\x3f\x66\xf1\x1f\x94" "\x3f\x66\xf1\x1f\x2f\x7f\xcc\xe2\x3f\x38\x7f\xcc\xe2\x3f\x24\x7f\xcc" "\xe2\x3f\x34\x7f\xcc\xe2\x3f\x2c\x7f\xcc\xe2\x3f\x7e\xfe\x98\xc5\x7f" "\x82\xfc\x31\x8b\xff\x84\xf9\x63\x16\xff\x89\xf2\xc7\x2c\xfe\x13\xe7" "\x8f\x59\xfc\x27\xc9\x1f\xb3\xf8\x4f\x9a\x3f\x66\xf1\x1f\x9e\x3f\x66" "\xf1\x9f\x2c\x7f\xcc\xe2\x3f\x79\xfe\x98\xc5\x7f\x8a\xfc\x31\x8b\xff" "\x94\xf9\x63\x16\xff\xa9\xf2\xc7\x2c\xfe\x53\xe7\x8f\x59\xfc\xa7\xc9" "\x1f\xb3\xf8\xbf\x25\x7f\xcc\xe2\x3f\x6d\xfe\x98\xc5\x7f\xba\xfc\x31" "\x8b\xff\xf4\xf9\x63\x16\xff\x19\xf2\xc7\x2c\xfe\x6f\xcd\x1f\xb3\xf8" "\xcf\x98\x3f\x66\xf1\x1f\x91\x3f\x66\xf1\x7f\x5b\xfe\x98\xc5\x7f\xa6" "\xfc\x31\x8b\xff\xcc\xf9\x63\x16\xff\xb7\xe7\x8f\x59\xfc\x67\xc9\x1f" "\xb3\xf8\xcf\x9a\x3f\x66\xf1\x9f\x2d\x7f\xcc\xe2\x3f\x7b\xfe\x98\xc5" "\xff\x1d\xf9\x63\x16\xff\x39\xf2\xc7\x2c\xfe\x73\xe6\x8f\x59\xfc\xe7" "\xca\x1f\xb3\xf8\xcf\x9d\x3f\x66\xf1\x9f\x27\x7f\xcc\xe2\x3f\x6f\xfe" "\x98\xc5\x7f\xbe\xfc\x31\x8b\xff\xfc\xf9\x63\x16\xff\x05\xf2\xc7\x2c" "\xfe\x0b\xe6\x8f\x59\xfc\x17\xca\x1f\xb3\xf8\x2f\x9c\x3f\x66\xf1\x5f" "\x24\x7f\xcc\xe2\xbf\x68\xfe\x98\xc5\x7f\xb1\xfc\x31\x8b\xff\xe2\xf9" "\x63\x16\xff\x25\xf2\xc7\x2c\xfe\x4b\xe6\x8f\x59\xfc\x97\xca\x1f\xb3" "\xf8\x2f\x9d\x3f\x66\xf1\x5f\x26\x7f\xcc\xe2\xbf\x6c\xfe\x98\xc5\xff" "\x9d\xf9\x63\x16\xff\x77\xe5\x8f\x59\xfc\xdf\x9d\x3f\x66\xf1\x5f\x2e" "\x7f\xcc\xe2\xbf\x7c\xfe\x98\xc5\x7f\x85\xfc\x31\x8b\xff\x8a\xf9\x63" "\x16\xff\x95\xf2\xc7\x2c\xfe\x2b\xe7\x8f\x59\xfc\x57\xc9\x1f\xb3\xf8" "\xaf\x9a\x3f\x66\xf1\x5f\x2d\x7f\xcc\xe2\xbf\x7a\xfe\x98\xc5\x7f\x8d" "\xfc\x31\x8b\xff\x9a\xf9\x63\x16\xff\xb5\xf2\xc7\x2c\xfe\x6b\xe7\x8f" "\x59\xfc\xd7\xc9\x1f\xb3\xf8\xaf\x9b\x3f\x66\xf1\x5f\x2f\x7f\xcc\xe2" "\xbf\x7e\xfe\x98\xc5\x7f\x83\xfc\x31\x8b\xff\x86\xf9\x63\x16\xff\x8d" "\xf2\xc7\x2c\xfe\x1b\xe7\x8f\x59\xfc\x37\xc9\x1f\xb3\xf8\xbf\x27\x7f" "\xcc\xe2\xbf\x69\xfe\x98\xc5\x7f\xb3\xfc\x31\x8b\xff\x7b\xf3\xc7\x2c" "\xfe\x9b\xe7\x8f\x59\xfc\xdf\x97\x3f\x66\xf1\xdf\x22\x7f\xcc\xe2\xbf" "\x65\xfe\x98\xc5\xff\xfd\xf9\x63\x16\xff\xad\xf2\xc7\x2c\xfe\x5b\xe7" "\x8f\x59\xfc\xb7\xc9\x1f\xb3\xf8\x6f\x9b\x3f\x66\xf1\xdf\x2e\x7f\xcc" "\xe2\xbf\x7d\xfe\x98\xc5\x7f\x87\xfc\x31\x8b\xff\x8e\xf9\x63\x16\xff" "\x9d\xf2\xc7\x2c\xfe\x3b\xe7\x8f\x59\xfc\x77\xc9\x1f\xb3\xf8\x7f\x20" "\x7f\xcc\xe2\xbf\x6b\xfe\x98\xc5\x7f\xb7\xfc\x31\x8b\xff\xee\xf9\x63" "\x16\xff\x3d\xf2\xc7\x2c\xfe\x7b\xe6\x8f\x59\xfc\x3f\x98\x3f\x66\xf1" "\xdf\x2b\x7f\xcc\xe2\xbf\x77\xfe\x98\xc5\x7f\x9f\xfc\x31\x8b\xff\x87" "\xf2\xc7\x2c\xfe\x1f\xce\x1f\xb3\xf8\x7f\x24\x7f\xcc\xe2\xbf\x6f\xfe" "\x98\xc5\x7f\xbf\xfc\x31\x8b\xff\xfe\xf9\x63\x16\xff\x03\xf2\xc7\x2c" "\xfe\x07\xe6\x8f\x59\xfc\x0f\xca\x1f\xb3\xf8\x1f\x9c\x3f\x66\xf1\x3f" "\x24\x7f\xcc\xe2\x7f\x68\xfe\x98\xc5\xff\xb0\xfc\x31\x8b\xff\xe1\xf9" "\x63\x16\xff\x23\xf2\xc7\x2c\xfe\x1f\xcd\x1f\xb3\xf8\x1f\x99\x3f\x66" "\xf1\xff\x58\xfe\x98\xc5\xff\xe3\xf9\x63\x16\xff\xa3\xf2\xc7\x2c\xfe" "\x9f\xc8\x1f\xb3\xf8\x1f\x9d\x3f\x66\xf1\x3f\x26\x7f\xcc\xe2\x7f\x6c" "\xfe\x98\xc5\xff\x93\xf9\x63\x16\xff\x4f\xe5\x8f\x59\xfc\x8f\xcb\x1f" "\xb3\xf8\x1f\x9f\x3f\x66\xf1\x3f\x21\x7f\xcc\xe2\x7f\x62\xfe\x98\xc5" "\xff\xa4\xfc\x31\x8b\xff\xa7\xf3\xc7\x2c\xfe\x9f\xc9\x1f\xb3\xf8\x7f" "\x36\x7f\xcc\xe2\xff\xb9\xfc\x31\x8b\xff\xc9\xf9\x63\x16\xff\xcf\xe7" "\x8f\x59\xfc\xbf\x90\x3f\x66\xf1\xff\x62\xfe\x98\xc5\xff\x4b\xf9\x63" "\x16\xff\x53\xf2\xc7\x2c\xfe\xa7\xe6\x8f\x59\xfc\x4f\xcb\x1f\xb3\xf8" "\x9f\x9e\x3f\x66\xf1\x3f\x23\x7f\xcc\xe2\x7f\x66\xfe\x98\xc5\xff\xcb" "\xf9\x63\x16\xff\xb3\xf2\xc7\x2c\xfe\x67\xe7\x8f\x59\xfc\xbf\x92\x3f" "\x66\xf1\x3f\x27\x7f\xcc\xe2\x7f\x6e\xfe\x98\xc5\xff\xbc\xfc\x31\x8b" "\xff\xf9\xf9\x63\x16\xff\x0b\xf2\xc7\x2c\xfe\x5f\xcd\x1f\xb3\xf8\x7f" "\x2d\x7f\xcc\xe2\xff\xf5\xfc\x31\x8b\xff\x85\xf9\x63\x16\xff\x8b\xf2" "\xc7\x2c\xfe\xdf\xc8\x1f\xb3\xf8\x5f\x9c\x3f\x66\xf1\xff\x66\xfe\x98" "\xc5\xff\x92\xfc\x31\x8b\xff\xa5\xf9\x63\x16\xff\xcb\xf2\xc7\x2c\xfe" "\xdf\xca\x1f\xb3\xf8\x7f\x3b\x7f\xcc\xe2\x7f\x79\xfe\x98\xc5\xff\x8a" "\xfc\x31\x8b\xff\x77\xf2\xc7\x2c\xfe\x57\xe6\x8f\x59\xfc\xbf\x9b\x3f" "\x66\xf1\xbf\x2a\x7f\xcc\xe2\xff\xbd\xfc\x31\x8b\xff\xd5\xf9\x63\x16" "\xff\xef\xe7\x8f\x59\xfc\xaf\xc9\x1f\xb3\xf8\x5f\x9b\x3f\x66\xf1\xff" "\x41\xfe\x98\xc5\xff\x87\xf9\x63\x16\xff\x1f\xe5\x8f\x59\xfc\xaf\xcb" "\x1f\xb3\xf8\xff\x38\x7f\xcc\xe2\x7f\x7d\xfe\x98\xc5\xff\x86\xfc\x31" "\x8b\xff\x4f\xf2\xc7\x2c\xfe\x37\xe6\x8f\x59\xfc\x6f\xca\x1f\xb3\xf8" "\xff\x34\x7f\xcc\xe2\x7f\x73\xfe\x98\xc5\xff\x96\xfc\x31\x8b\xff\xad" "\xf9\x63\x16\xff\xdb\xf2\xc7\x2c\xfe\x3f\xcb\x1f\xb3\xf8\xdf\x9e\x3f" "\x66\xf1\xff\x79\xfe\x98\xc5\xff\x17\xf9\x63\x16\xff\x5f\xe6\x8f\x59" "\xfc\x7f\x95\x3f\x66\xf1\xff\x75\xfe\x98\xc5\xff\x37\xf9\x63\x16\xff" "\x3b\xf2\xc7\x2c\xfe\xbf\xcd\x1f\xb3\xf8\xff\x2e\x7f\xcc\xe2\xff\xfb" "\xfc\x31\x8b\xff\x9d\xf9\x63\x16\xff\xbb\xf2\xc7\x2c\xfe\x7f\xc8\x1f" "\xb3\xf8\xdf\x9d\x3f\x66\xf1\xff\x63\xfe\x98\xc5\xff\x9e\xfc\x31\x8b" "\xff\xbd\xf9\x63\x16\xff\x3f\xe5\x8f\x59\xfc\xff\x9c\x3f\x66\xf1\xbf" "\x2f\x7f\xcc\xe2\xff\x97\xfc\x31\x8b\xff\xfd\xf9\x63\x16\xff\x07\xf2" "\xc7\x2c\xfe\x0f\xe6\x8f\x59\xfc\x1f\xca\x1f\xb3\xf8\x3f\x9c\x3f\x66" "\xf1\x7f\x24\x7f\xcc\xe2\xff\x68\xfe\x98\xc5\xff\xb1\xfc\x31\x8b\xff" "\xe3\xf9\x63\x16\xff\x27\xf2\xc7\x2c\xfe\x4f\xe6\x8f\x59\xfc\x9f\xca" "\x1f\xb3\xf8\x3f\x9d\x3f\x66\xf1\x7f\x26\x7f\xcc\xe2\xff\x6c\xfe\x98" "\xc5\xff\xb9\xfc\x31\x8b\xff\xf3\xf9\x63\x16\xff\x17\xf2\xc7\x2c\xfe" "\x2f\xe6\x8f\x59\xfc\x5f\xca\x1f\xb3\xf8\xbf\x9c\x3f\x66\xf1\x7f\x25" "\x7f\x4c\xe2\x3f\xc1\x40\xfe\x98\xc5\x7f\x50\xfe\x98\xc5\x7f\xbc\xfc" "\x31\x8b\xff\xe0\xfc\x31\x8b\xff\x90\xfc\x31\x8b\xff\xd0\xfc\x31\x8b" "\xff\xb0\xfc\x31\x8b\xff\xf8\xf9\x63\x16\xff\x09\xf2\xc7\x2c\xfe\x13" "\xe6\x8f\x59\xfc\x27\xca\x1f\xb3\xf8\x4f\x9c\x3f\x66\xf1\x9f\x24\x7f" "\xcc\xe2\x3f\x69\xfe\x98\xc5\x7f\x78\xfe\x98\xc5\x7f\xb2\xfc\x31\x8b" "\xff\xe4\xf9\x63\x16\xff\x29\xf2\xc7\x2c\xfe\x53\xe6\x8f\x59\xfc\xa7" "\xca\x1f\xb3\xf8\x4f\x9d\x3f\x66\xf1\x9f\x26\x7f\xcc\xe2\xff\x96\xfc" "\x31\x8b\xff\xb4\xf9\x63\x16\xff\xe9\xf2\xc7\x2c\xfe\xd3\xe7\x8f\x59" "\xfc\x67\xc8\x1f\xb3\xf8\xbf\x35\x7f\xcc\xe2\x3f\x63\xfe\x98\xc5\x7f" "\x44\xfe\x98\xc5\xff\x6d\xf9\x63\x16\xff\x99\xf2\xc7\x2c\xfe\x33\xe7" "\x8f\x59\xfc\xdf\x9e\x3f\x66\xf1\x9f\x25\x7f\xcc\xe2\x3f\x6b\xfe\x98" "\xc5\x7f\xb6\xfc\x31\x8b\xff\xec\xf9\x63\x16\xff\x77\xe4\x8f\x59\xfc" "\xe7\xc8\x1f\xb3\xf8\xcf\x99\x3f\x66\xf1\x9f\x2b\x7f\xcc\xe2\x3f\x77" "\xfe\x98\xc5\x7f\x9e\xfc\x31\x8b\xff\xbc\xf9\x63\x16\xff\xf9\xf2\xc7" "\x2c\xfe\xf3\xe7\x8f\x59\xfc\x17\xc8\x1f\xb3\xf8\x2f\x98\x3f\x66\xf1" "\x5f\x28\x7f\xcc\xe2\xbf\x70\xfe\x98\xc5\x7f\x91\xfc\x31\x8b\xff\xa2" "\xf9\x63\x16\xff\xc5\xf2\xc7\x2c\xfe\x8b\xe7\x8f\x59\xfc\x97\xc8\x1f" "\xb3\xf8\x2f\x99\x3f\x66\xf1\x5f\x2a\x7f\xcc\xe2\xbf\x74\xfe\x98\xc5" "\x7f\x99\xfc\x31\x8b\xff\xb2\xf9\x63\x16\xff\x77\xe6\x8f\x59\xfc\xdf" "\x95\x3f\x66\xf1\x7f\x77\xfe\x98\xc5\x7f\xb9\xfc\x31\x8b\xff\xf2\xf9" "\x63\x16\xff\x15\xf2\xc7\x2c\xfe\x2b\xe6\x8f\x59\xfc\x57\xca\x1f\xb3" "\xf8\xaf\x9c\x3f\x66\xf1\x5f\x25\x7f\xcc\xe2\xbf\x6a\xfe\x98\xc5\x7f" "\xb5\xfc\x31\x8b\xff\xea\xf9\x63\x16\xff\x35\xf2\xc7\x2c\xfe\x6b\xe6" "\x8f\x59\xfc\xd7\xca\x1f\xb3\xf8\xaf\x9d\x3f\x66\xf1\x5f\x27\x7f\xcc" "\xe2\xbf\x6e\xfe\x98\xc5\x7f\xbd\xfc\x31\x8b\xff\xfa\xf9\x63\x16\xff" "\x0d\xf2\xc7\x2c\xfe\x1b\xe6\x8f\x59\xfc\x37\xca\x1f\xb3\xf8\x6f\x9c" "\x3f\x66\xf1\xdf\x24\x7f\xcc\xe2\xff\x9e\xfc\x31\x8b\xff\xa6\xf9\x63" "\x16\xff\xcd\xf2\xc7\x2c\xfe\xef\xcd\x1f\xb3\xf8\x6f\x9e\x3f\x66\xf1" "\x7f\x5f\xfe\x98\xc5\x7f\x8b\xfc\x31\x8b\xff\x96\xf9\x63\x16\xff\xf7" "\xe7\x8f\x59\xfc\xb7\xca\x1f\xb3\xf8\x6f\x9d\x3f\x66\xf1\xdf\x26\x7f" "\xcc\xe2\xbf\x6d\xfe\x98\xc5\x7f\xbb\xfc\x31\x8b\xff\xf6\xf9\x63\x16" "\xff\x1d\xf2\xc7\x2c\xfe\x3b\xe6\x8f\x59\xfc\x77\xca\x1f\xb3\xf8\xef" "\x9c\x3f\x66\xf1\xdf\x25\x7f\xcc\xe2\xff\x81\xfc\x31\x8b\xff\xae\xf9" "\x63\x16\xff\xdd\xf2\xc7\x2c\xfe\xbb\xe7\x8f\x59\xfc\xf7\xc8\x1f\xb3" "\xf8\xef\x99\x3f\x66\xf1\xff\x60\xfe\x98\xc5\x7f\xaf\xfc\x31\x8b\xff" "\xde\xf9\x63\x16\xff\x7d\xf2\xc7\x2c\xfe\x1f\xca\x1f\xb3\xf8\x7f\x38" "\x7f\xcc\xe2\xff\x91\xfc\x31\x8b\xff\xbe\xf9\x63\x16\xff\xfd\xf2\xc7" "\x2c\xfe\xfb\xe7\x8f\x59\xfc\x0f\xc8\x1f\xb3\xf8\x1f\x98\x3f\x66\xf1" "\x3f\x28\x7f\xcc\xe2\x7f\x70\xfe\x98\xc5\xff\x90\xfc\x31\x8b\xff\xa1" "\xf9\x63\x16\xff\xc3\xf2\xc7\x2c\xfe\x87\xe7\x8f\x59\xfc\x8f\xc8\x1f" "\xb3\xf8\x7f\x34\x7f\xcc\xe2\x7f\x64\xfe\x98\xc5\xff\x63\xf9\x63\x16" "\xff\x8f\xe7\x8f\x59\xfc\x8f\xca\x1f\xb3\xf8\x7f\x22\x7f\xcc\xe2\x7f" "\x74\xfe\x98\xc5\xff\x98\xfc\x31\x8b\xff\xb1\xf9\x63\x16\xff\x4f\xe6" "\x8f\x59\xfc\x3f\x95\x3f\x66\xf1\x3f\x2e\x7f\xcc\xe2\x7f\x7c\xfe\x98" "\xc5\xff\x84\xfc\x31\x8b\xff\x89\xf9\x63\x16\xff\x93\xf2\xc7\x2c\xfe" "\x9f\xce\x1f\xb3\xf8\x7f\x26\x7f\xcc\xe2\xff\xd9\xfc\x31\x8b\xff\xe7" "\xf2\xc7\x2c\xfe\x27\xe7\x8f\x59\xfc\x3f\x9f\x3f\x66\xf1\xff\x42\xfe" "\x98\xc5\xff\x8b\xf9\x63\x16\xff\x2f\xe5\x8f\x59\xfc\x4f\xc9\x1f\xb3" "\xf8\x9f\x9a\x3f\x66\xf1\x3f\x2d\x7f\xcc\xe2\x7f\x7a\xfe\x98\xc5\xff" "\x8c\xfc\x31\x8b\xff\x99\xf9\x63\x16\xff\x2f\xe7\x8f\x59\xfc\xcf\xca" "\x1f\xb3\xf8\x9f\x9d\x3f\x66\xf1\xff\x4a\xfe\x98\xc5\xff\x9c\xfc\x31" "\x8b\xff\xb9\xf9\x63\x16\xff\xf3\xf2\xc7\x2c\xfe\xe7\xe7\x8f\x59\xfc" "\x2f\xc8\x1f\xb3\xf8\x7f\x35\x7f\xcc\xe2\xff\xb5\xfc\x31\x8b\xff\xd7" "\xf3\xc7\x2c\xfe\x17\xe6\x8f\x59\xfc\x2f\xca\x1f\xb3\xf8\x7f\x23\x7f" "\xcc\xe2\x7f\x71\xfe\x98\xc5\xff\x9b\xf9\x63\x16\xff\x4b\xf2\xc7\x2c" "\xfe\x97\xe6\x8f\x59\xfc\x2f\xcb\x1f\xb3\xf8\x7f\x2b\x7f\xcc\xe2\xff" "\xed\xfc\x31\x8b\xff\xe5\xf9\x63\x16\xff\x2b\xf2\xc7\x2c\xfe\xdf\xc9" "\x1f\xb3\xf8\x5f\x99\x3f\x66\xf1\xff\x6e\xfe\x98\xc5\xff\xaa\xfc\x31" "\x8b\xff\xf7\xf2\xc7\x2c\xfe\x57\xe7\x8f\x59\xfc\xbf\x9f\x3f\x66\xf1" "\xbf\x26\x7f\xcc\xe2\x7f\x6d\xfe\x98\xc5\xff\x07\xf9\x63\x16\xff\x1f" "\xe6\x8f\x59\xfc\x7f\x94\x3f\x66\xf1\xbf\x2e\x7f\xcc\xe2\xff\xe3\xfc" "\x31\x8b\xff\xf5\xf9\x63\x16\xff\x1b\xf2\xc7\x2c\xfe\x3f\xc9\x1f\xb3" "\xf8\xdf\x98\x3f\x66\xf1\xbf\x29\x7f\xcc\xe2\xff\xd3\xfc\x31\x8b\xff" "\xcd\xf9\x63\x16\xff\x5b\xf2\xc7\x2c\xfe\xb7\xe6\x8f\x59\xfc\x6f\xcb" "\x1f\xb3\xf8\xff\x2c\x7f\xcc\xe2\x7f\x7b\xfe\x98\xc5\xff\xe7\xf9\x63" "\x16\xff\x5f\xe4\x8f\x59\xfc\x7f\x99\x3f\x66\xf1\xff\x55\xfe\x98\xc5" "\xff\xd7\xf9\x63\x16\xff\xdf\xe4\x8f\x59\xfc\xef\xc8\x1f\xb3\xf8\xff" "\x36\x7f\xcc\xe2\xff\xbb\xfc\x31\x8b\xff\xef\xf3\xc7\x2c\xfe\x77\xe6" "\x8f\x59\xfc\xef\xca\x1f\xb3\xf8\xff\x21\x7f\xcc\xe2\x7f\x77\xfe\x98" "\xc5\xff\x8f\xf9\x63\x16\xff\x7b\xf2\xc7\x2c\xfe\xf7\xe6\x8f\x59\xfc" "\xff\x94\x3f\x66\xf1\xff\x73\xfe\x98\xc5\xff\xbe\xfc\x31\x8b\xff\x5f" "\xf2\xc7\x2c\xfe\xf7\xe7\x8f\x59\xfc\x1f\xc8\x1f\xb3\xf8\x3f\x98\x3f" "\x66\xf1\x7f\x28\x7f\xcc\xe2\xff\x70\xfe\x98\xc5\xff\x91\xfc\x31\x8b" "\xff\xa3\xf9\x63\x16\xff\xc7\xf2\xc7\x2c\xfe\x8f\xe7\x8f\x59\xfc\x9f" "\xc8\x1f\xb3\xf8\x3f\x99\x3f\x66\xf1\x7f\x2a\x7f\xcc\xe2\xff\x74\xfe" "\x98\xc5\xff\x99\xfc\x31\x8b\xff\xb3\xf9\x63\x16\xff\xe7\xf2\xc7\x2c" "\xfe\xcf\xe7\x8f\x59\xfc\x5f\xc8\x1f\xb3\xf8\xbf\x98\x3f\x66\xf1\x7f" "\x29\x7f\xcc\xe2\xff\x72\xfe\x98\xc5\xff\x95\xfc\x31\x89\xff\x84\x03" "\xf9\x63\x16\xff\x41\xf9\x63\x16\xff\xf1\xf2\xc7\x2c\xfe\x83\xf3\xc7" "\x2c\xfe\x43\xf2\xc7\x2c\xfe\x43\xf3\xc7\x2c\xfe\xc3\xf2\xc7\x2c\xfe" "\xe3\xe7\x8f\x59\xfc\x27\xc8\x1f\xb3\xf8\x4f\x98\x3f\x66\xf1\x9f\x28" "\x7f\xcc\xe2\x3f\x71\xfe\x98\xc5\x7f\x92\xfc\x31\x8b\xff\xa4\xf9\x63" "\x16\xff\xe1\xf9\x63\x16\xff\xc9\xf2\xc7\x2c\xfe\x93\xe7\x8f\x59\xfc" "\xa7\xc8\x1f\xb3\xf8\x4f\x99\x3f\x66\xf1\x9f\x2a\x7f\xcc\xe2\x3f\x75" "\xfe\x98\xc5\x7f\x9a\xfc\x31\x8b\xff\x5b\xf2\xc7\x2c\xfe\xd3\xe6\x8f" "\x59\xfc\xa7\xcb\x1f\xb3\xf8\x4f\x9f\x3f\x66\xf1\x9f\x21\x7f\xcc\xe2" "\xff\xd6\xfc\x31\x8b\xff\x8c\xf9\x63\x16\xff\x11\xf9\x63\x16\xff\xb7" "\xe5\x8f\x59\xfc\x67\xca\x1f\xb3\xf8\xcf\x9c\x3f\x66\xf1\x7f\x7b\xfe" "\x98\xc5\x7f\x96\xfc\x31\x8b\xff\xac\xf9\x63\x16\xff\xd9\xf2\xc7\x2c" "\xfe\xb3\xe7\x8f\x59\xfc\xdf\x91\x3f\x66\xf1\x9f\x23\x7f\xcc\xe2\x3f" "\x67\xfe\x98\xc5\x7f\xae\xfc\x31\x8b\xff\xdc\xf9\x63\x16\xff\x79\xf2" "\xc7\x2c\xfe\xf3\xe6\x8f\x59\xfc\xe7\xcb\x1f\xb3\xf8\xcf\x9f\x3f\x66" "\xf1\x5f\x20\x7f\xcc\xe2\xbf\x60\xfe\x98\xc5\x7f\xa1\xfc\x31\x8b\xff" "\xc2\xf9\x63\x16\xff\x45\xf2\xc7\x2c\xfe\x8b\xe6\x8f\x59\xfc\x17\xcb" "\x1f\xb3\xf8\x2f\x9e\x3f\x66\xf1\x5f\x22\x7f\xcc\xe2\xbf\x64\xfe\x98" "\xc5\x7f\xa9\xfc\x31\x8b\xff\xd2\xf9\x63\x16\xff\x65\xf2\xc7\x2c\xfe" "\xcb\xe6\x8f\x59\xfc\xdf\x99\x3f\x66\xf1\x7f\x57\xfe\x98\xc5\xff\xdd" "\xf9\x63\x16\xff\xe5\xf2\xc7\x2c\xfe\xcb\xe7\x8f\x59\xfc\x57\xc8\x1f" "\xb3\xf8\xaf\x98\x3f\x66\xf1\x5f\x29\x7f\xcc\xe2\xbf\x72\xfe\x98\xc5" "\x7f\x95\xfc\x31\x8b\xff\xaa\xf9\x63\x16\xff\xd5\xf2\xc7\x2c\xfe\xab" "\xe7\x8f\x59\xfc\xd7\xc8\x1f\xb3\xf8\xaf\x99\x3f\x66\xf1\x5f\x2b\x7f" "\xcc\xe2\xbf\x76\xfe\x98\xc5\x7f\x9d\xfc\x31\x8b\xff\xba\xf9\x63\x16" "\xff\xf5\xf2\xc7\x2c\xfe\xeb\xe7\x8f\x59\xfc\x37\xc8\x1f\xb3\xf8\x6f" "\x98\x3f\x66\xf1\xdf\x28\x7f\xcc\xe2\xbf\x71\xfe\x98\xc5\x7f\x93\xfc" "\x31\x8b\xff\x7b\xf2\xc7\x2c\xfe\x9b\xe6\x8f\x59\xfc\x37\xcb\x1f\xb3" "\xf8\xbf\x37\x7f\xcc\xe2\xbf\x79\xfe\x98\xc5\xff\x7d\xf9\x63\x16\xff" "\x2d\xf2\xc7\x2c\xfe\x5b\xe6\x8f\x59\xfc\xdf\x9f\x3f\x66\xf1\xdf\x2a" "\x7f\xcc\xe2\xbf\x75\xfe\x98\xc5\x7f\x9b\xfc\x31\x8b\xff\xb6\xf9\x63" "\x16\xff\xed\xf2\xc7\x2c\xfe\xdb\xe7\x8f\x59\xfc\x77\xc8\x1f\xb3\xf8" "\xef\x98\x3f\x66\xf1\xdf\x29\x7f\xcc\xe2\xbf\x73\xfe\x98\xc5\x7f\x97" "\xfc\x31\x8b\xff\x07\xf2\xc7\x2c\xfe\xbb\xe6\x8f\x59\xfc\x77\xcb\x1f" "\xb3\xf8\xef\x9e\x3f\x66\xf1\xdf\x23\x7f\xcc\xe2\xbf\x67\xfe\x98\xc5" "\xff\x83\xf9\x63\x16\xff\xbd\xf2\xc7\x2c\xfe\x7b\xe7\x8f\x59\xfc\xf7" "\xc9\x1f\xb3\xf8\x7f\x28\x7f\xcc\xe2\xff\xe1\xfc\x31\x8b\xff\x47\xf2" "\xc7\x2c\xfe\xfb\xe6\x8f\x59\xfc\xf7\xcb\x1f\xb3\xf8\xef\x9f\x3f\x66" "\xf1\x3f\x20\x7f\xcc\xe2\x7f\x60\xfe\x98\xc5\xff\xa0\xfc\x31\x8b\xff" "\xc1\xf9\x63\x16\xff\x43\xf2\xc7\x2c\xfe\x87\xe6\x8f\x59\xfc\x0f\xcb" "\x1f\xb3\xf8\x1f\x9e\x3f\x66\xf1\x3f\x22\x7f\xcc\xe2\xff\xd1\xfc\x31" "\x8b\xff\x91\xf9\x63\x16\xff\x8f\xe5\x8f\x59\xfc\x3f\x9e\x3f\x66\xf1" "\x3f\x2a\x7f\xcc\xe2\xff\x89\xfc\x31\x8b\xff\xd1\xf9\x63\x16\xff\x63" "\xf2\xc7\x2c\xfe\xc7\xe6\x8f\x59\xfc\x3f\x99\x3f\x66\xf1\xff\x54\xfe" "\x98\xc5\xff\xb8\xfc\x31\x8b\xff\xf1\xf9\x63\x16\xff\x13\xf2\xc7\x2c" "\xfe\x27\xe6\x8f\x59\xfc\x4f\xca\x1f\xb3\xf8\x7f\x3a\x7f\xcc\xe2\xff" "\x99\xfc\x31\x8b\xff\x67\xf3\xc7\x2c\xfe\x9f\xcb\x1f\xb3\xf8\x9f\x9c" "\x3f\x66\xf1\xff\x7c\xfe\x98\xc5\xff\x0b\xf9\x63\x16\xff\x2f\xe6\x8f" "\x59\xfc\xbf\x94\x3f\x66\xf1\x3f\x25\x7f\xcc\xe2\x7f\x6a\xfe\x98\xc5" "\xff\xb4\xfc\x31\x8b\xff\xe9\xf9\x63\x16\xff\x33\xf2\xc7\x2c\xfe\x67" "\xe6\x8f\x59\xfc\xbf\x9c\x3f\x66\xf1\x3f\x2b\x7f\xcc\xe2\x7f\x76\xfe" "\x98\xc5\xff\x2b\xf9\x63\x16\xff\x73\xf2\xc7\x2c\xfe\xe7\xe6\x8f\x59" "\xfc\xcf\xcb\x1f\xb3\xf8\x9f\x9f\x3f\x66\xf1\xbf\x20\x7f\xcc\xe2\xff" "\xd5\xfc\x31\x8b\xff\xd7\xf2\xc7\x2c\xfe\x5f\xcf\x1f\xb3\xf8\x5f\x98" "\x3f\x66\xf1\xbf\x28\x7f\xcc\xe2\xff\x8d\xfc\x31\x8b\xff\xc5\xf9\x63" "\x16\xff\x6f\xe6\x8f\x59\xfc\x2f\xc9\x1f\xb3\xf8\x5f\x9a\x3f\x66\xf1" "\xbf\x2c\x7f\xcc\xe2\xff\xad\xfc\x31\x8b\xff\xb7\xf3\xc7\x2c\xfe\x97" "\xe7\x8f\x59\xfc\xaf\xc8\x1f\xb3\xf8\x7f\x27\x7f\xcc\xe2\x7f\x65\xfe" "\x98\xc5\xff\xbb\xf9\x63\x16\xff\xab\xf2\xc7\x2c\xfe\xdf\xcb\x1f\xb3" "\xf8\x5f\x9d\x3f\x66\xf1\xff\x7e\xfe\x98\xc5\xff\x9a\xfc\x31\x8b\xff" "\xb5\xf9\x63\x16\xff\x1f\xe4\x8f\x59\xfc\x7f\x98\x3f\x66\xf1\xff\x51" "\xfe\x98\xc5\xff\xba\xfc\x31\x8b\xff\x8f\xf3\xc7\x2c\xfe\xd7\xe7\x8f" "\x59\xfc\x6f\xc8\x1f\xb3\xf8\xff\x24\x7f\xcc\xe2\x7f\x63\xfe\x98\xc5" "\xff\xa6\xfc\x31\x8b\xff\x4f\xf3\xc7\x2c\xfe\x37\xe7\x8f\x59\xfc\x6f" "\xc9\x1f\xb3\xf8\xdf\x9a\x3f\x66\xf1\xbf\x2d\x7f\xcc\xe2\xff\xb3\xfc" "\x31\x8b\xff\xed\xf9\x63\x16\xff\x9f\xe7\x8f\x59\xfc\x7f\x91\x3f\x66" "\xf1\xff\x65\xfe\x98\xc5\xff\x57\xf9\x63\x16\xff\x5f\xe7\x8f\x59\xfc" "\x7f\x93\x3f\x66\xf1\xbf\x23\x7f\xcc\xe2\xff\xdb\xfc\x31\x8b\xff\xef" "\xf2\xc7\x2c\xfe\xbf\xcf\x1f\xb3\xf8\xdf\x99\x3f\x66\xf1\xbf\x2b\x7f" "\xcc\xe2\xff\x87\xfc\x31\x8b\xff\xdd\xf9\x63\x16\xff\x3f\xe6\x8f\x59" "\xfc\xef\xc9\x1f\xb3\xf8\xdf\x9b\x3f\x66\xf1\xff\x53\xfe\x98\xc5\xff" "\xcf\xf9\x63\x16\xff\xfb\xf2\xc7\x2c\xfe\x7f\xc9\x1f\xb3\xf8\xdf\x9f" "\x3f\x66\xf1\x7f\x20\x7f\xcc\xe2\xff\x60\xfe\x98\xc5\xff\xa1\xfc\x31" "\x8b\xff\xc3\xf9\x63\x16\xff\x47\xf2\xc7\x2c\xfe\x8f\xe6\x8f\x59\xfc" "\x1f\xcb\x1f\xb3\xf8\x3f\x9e\x3f\x66\xf1\x7f\x22\x7f\xcc\xe2\xff\x64" "\xfe\x98\xc5\xff\xa9\xfc\x31\x8b\xff\xd3\xf9\x63\x16\xff\x67\xf2\xc7" "\x2c\xfe\xcf\xe6\x8f\x59\xfc\x9f\xcb\x1f\xb3\xf8\x3f\x9f\x3f\x66\xf1" "\x7f\x21\x7f\xcc\xe2\xff\x62\xfe\x98\xc5\xff\xa5\xfc\x31\x8b\xff\xcb" "\xf9\x63\x16\xff\x57\xf2\xc7\x24\xfe\x13\x0d\xe4\x8f\x59\xfc\x07\xe5" "\x8f\x59\xfc\xc7\xcb\x1f\xb3\xf8\x0f\xce\x1f\xb3\xf8\x0f\xc9\x1f\xb3" "\xf8\x0f\xcd\x1f\xb3\xf8\x0f\xcb\x1f\xb3\xf8\x8f\x9f\x3f\x66\xf1\x9f" "\x20\x7f\xcc\xe2\x3f\x61\xfe\x98\xc5\x7f\xa2\xfc\x31\x8b\xff\xc4\xf9" "\x63\x16\xff\x49\xf2\xc7\x2c\xfe\x93\xe6\x8f\x59\xfc\x87\xe7\x8f\x59" "\xfc\x27\xcb\x1f\xb3\xf8\x4f\x9e\x3f\x66\xf1\x9f\x22\x7f\xcc\xe2\x3f" "\x65\xfe\x98\xc5\x7f\xaa\xfc\x31\x8b\xff\xd4\xf9\x63\x16\xff\x69\xf2" "\xc7\x2c\xfe\x6f\xc9\x1f\xb3\xf8\x4f\x9b\x3f\x66\xf1\x9f\x2e\x7f\xcc" "\xe2\x3f\x7d\xfe\x98\xc5\x7f\x86\xfc\x31\x8b\xff\x5b\xf3\xc7\x2c\xfe" "\x33\xe6\x8f\x59\xfc\x47\xe4\x8f\x59\xfc\xdf\x96\x3f\x66\xf1\x9f\x29" "\x7f\xcc\xe2\x3f\x73\xfe\x98\xc5\xff\xed\xf9\x63\x16\xff\x59\xf2\xc7" "\x2c\xfe\xb3\xe6\x8f\x59\xfc\x67\xcb\x1f\xb3\xf8\xcf\x9e\x3f\x66\xf1" "\x7f\x47\xfe\x98\xc5\x7f\x8e\xfc\x31\x8b\xff\x9c\xf9\x63\x16\xff\xb9" "\xf2\xc7\x2c\xfe\x73\xe7\x8f\x59\xfc\xe7\xc9\x1f\xb3\xf8\xcf\x9b\x3f" "\x66\xf1\x9f\x2f\x7f\xcc\xe2\x3f\x7f\xfe\x98\xc5\x7f\x81\xfc\x31\x8b" "\xff\x82\xf9\x63\x16\xff\x85\xf2\xc7\x2c\xfe\x0b\xe7\x8f\x59\xfc\x17" "\xc9\x1f\xb3\xf8\x2f\x9a\x3f\x66\xf1\x5f\x2c\x7f\xcc\xe2\xbf\x78\xfe" "\x98\xc5\x7f\x89\xfc\x31\x8b\xff\x92\xf9\x63\x16\xff\xa5\xf2\xc7\x2c" "\xfe\x4b\xe7\x8f\x59\xfc\x97\xc9\x1f\xb3\xf8\x2f\x9b\x3f\x66\xf1\x7f" "\x67\xfe\x98\xc5\xff\x5d\xf9\x63\x16\xff\x77\xe7\x8f\x59\xfc\x97\xcb" "\x1f\xb3\xf8\x2f\x9f\x3f\x66\xf1\x5f\x21\x7f\xcc\xe2\xbf\x62\xfe\x98" "\xc5\x7f\xa5\xfc\x31\x8b\xff\xca\xf9\x63\x16\xff\x55\xf2\xc7\x2c\xfe" "\xab\xe6\x8f\x59\xfc\x57\xcb\x1f\xb3\xf8\xaf\x9e\x3f\x66\xf1\x5f\x23" "\x7f\xcc\xe2\xbf\x66\xfe\x98\xc5\x7f\xad\xfc\x31\x8b\xff\xda\xf9\x63" "\x16\xff\x75\xf2\xc7\x2c\xfe\xeb\xe6\x8f\x59\xfc\xd7\xcb\x1f\xb3\xf8" "\xaf\x9f\x3f\x66\xf1\xdf\x20\x7f\xcc\xe2\xbf\x61\xfe\x98\xc5\x7f\xa3" "\xfc\x31\x8b\xff\xc6\xf9\x63\x16\xff\x4d\xf2\xc7\x2c\xfe\xef\xc9\x1f" "\xb3\xf8\x6f\x9a\x3f\x66\xf1\xdf\x2c\x7f\xcc\xe2\xff\xde\xfc\x31\x8b" "\xff\xe6\xf9\x63\x16\xff\xf7\xe5\x8f\x59\xfc\xb7\xc8\x1f\xb3\xf8\x6f" "\x99\x3f\x66\xf1\x7f\x7f\xfe\x98\xc5\x7f\xab\xfc\x31\x8b\xff\xd6\xf9" "\x63\x16\xff\x6d\xf2\xc7\x2c\xfe\xdb\xe6\x8f\x59\xfc\xb7\xcb\x1f\xb3" "\xf8\x6f\x9f\x3f\x66\xf1\xdf\x21\x7f\xcc\xe2\xbf\x63\xfe\x98\xc5\x7f" "\xa7\xfc\x31\x8b\xff\xce\xf9\x63\x16\xff\x5d\xf2\xc7\x2c\xfe\x1f\xc8" "\x1f\xb3\xf8\xef\x9a\x3f\x66\xf1\xdf\x2d\x7f\xcc\xe2\xbf\x7b\xfe\x98" "\xc5\x7f\x8f\xfc\x31\x8b\xff\x9e\xf9\x63\x16\xff\x0f\xe6\x8f\x59\xfc" "\xf7\xca\x1f\xb3\xf8\xef\x9d\x3f\x66\xf1\xdf\x27\x7f\xcc\xe2\xff\xa1" "\xfc\x31\x8b\xff\x87\xf3\xc7\x2c\xfe\x1f\xc9\x1f\xb3\xf8\xef\x9b\x3f" "\x66\xf1\xdf\x2f\x7f\xcc\xe2\xbf\x7f\xfe\x98\xc5\xff\x80\xfc\x31\x8b" "\xff\x81\xf9\x63\x16\xff\x83\xf2\xc7\x2c\xfe\x07\xe7\x8f\x59\xfc\x0f" "\xc9\x1f\xb3\xf8\x1f\x9a\x3f\x66\xf1\x3f\x2c\x7f\xcc\xe2\x7f\x78\xfe" "\x98\xc5\xff\x88\xfc\x31\x8b\xff\x47\xf3\xc7\x2c\xfe\x47\xe6\x8f\x59" "\xfc\x3f\x96\x3f\x66\xf1\xff\x78\xfe\x98\xc5\xff\xa8\xfc\x31\x8b\xff" "\x27\xf2\xc7\x2c\xfe\x47\xe7\x8f\x59\xfc\x8f\xc9\x1f\xb3\xf8\x1f\x9b" "\x3f\x66\xf1\xff\x64\xfe\x98\xc5\xff\x53\xf9\x63\x16\xff\xe3\xf2\xc7" "\x2c\xfe\xc7\xe7\x8f\x59\xfc\x4f\xc8\x1f\xb3\xf8\x9f\x98\x3f\x66\xf1" "\x3f\x29\x7f\xcc\xe2\xff\xe9\xfc\x31\x8b\xff\x67\xf2\xc7\x2c\xfe\x9f" "\xcd\x1f\xb3\xf8\x7f\x2e\x7f\xcc\xe2\x7f\x72\xfe\x98\xc5\xff\xf3\xf9" "\x63\x16\xff\x2f\xe4\x8f\x59\xfc\xbf\x98\x3f\x66\xf1\xff\x52\xfe\x98" "\xc5\xff\x94\xfc\x31\x8b\xff\xa9\xf9\x63\x16\xff\xd3\xf2\xc7\x2c\xfe" "\xa7\xe7\x8f\x59\xfc\xcf\xc8\x1f\xb3\xf8\x9f\x99\x3f\x66\xf1\xff\x72" "\xfe\x98\xc5\xff\xac\xfc\x31\x8b\xff\xd9\xf9\x63\x16\xff\xaf\xe4\x8f" "\x59\xfc\xcf\xc9\x1f\xb3\xf8\x9f\x9b\x3f\x66\xf1\x3f\x2f\x7f\xcc\xe2" "\x7f\x7e\xfe\x98\xc5\xff\x82\xfc\x31\x8b\xff\x57\xf3\xc7\x2c\xfe\x5f" "\xcb\x1f\xb3\xf8\x7f\x3d\x7f\xcc\xe2\x7f\x61\xfe\x98\xc5\xff\xa2\xfc" "\x31\x8b\xff\x37\xf2\xc7\x2c\xfe\x17\xe7\x8f\x59\xfc\xbf\x99\x3f\x66" "\xf1\xbf\x24\x7f\xcc\xe2\x7f\x69\xfe\x98\xc5\xff\xb2\xfc\x31\x8b\xff" "\xb7\xf2\xc7\x2c\xfe\xdf\xce\x1f\xb3\xf8\x5f\x9e\x3f\x66\xf1\xbf\x22" "\x7f\xcc\xe2\xff\x9d\xfc\x31\x8b\xff\x95\xf9\x63\x16\xff\xef\xe6\x8f" "\x59\xfc\xaf\xca\x1f\xb3\xf8\x7f\x2f\x7f\xcc\xe2\x7f\x75\xfe\x98\xc5" "\xff\xfb\xf9\x63\x16\xff\x6b\xf2\xc7\x2c\xfe\xd7\xe6\x8f\x59\xfc\x7f" "\x90\x3f\x66\xf1\xff\x61\xfe\x98\xc5\xff\x47\xf9\x63\x16\xff\xeb\xf2" "\xc7\x2c\xfe\x3f\xce\x1f\xb3\xf8\x5f\x9f\x3f\x66\xf1\xbf\x21\x7f\xcc" "\xe2\xff\x93\xfc\x31\x8b\xff\x8d\xf9\x63\x16\xff\x9b\xf2\xc7\x2c\xfe" "\x3f\xcd\x1f\xb3\xf8\xdf\x9c\x3f\x66\xf1\xbf\x25\x7f\xcc\xe2\x7f\x6b" "\xfe\x98\xc5\xff\xb6\xfc\x31\x8b\xff\xcf\xf2\xc7\x2c\xfe\xb7\xe7\x8f" "\x59\xfc\x7f\x9e\x3f\x66\xf1\xff\x45\xfe\x98\xc5\xff\x97\xf9\x63\x16" "\xff\x5f\xe5\x8f\x59\xfc\x7f\x9d\x3f\x66\xf1\xff\x4d\xfe\x98\xc5\xff" "\x8e\xfc\x31\x8b\xff\x6f\xf3\xc7\x2c\xfe\xbf\xcb\x1f\xb3\xf8\xff\x3e" "\x7f\xcc\xe2\x7f\x67\xfe\x98\xc5\xff\xae\xfc\x31\x8b\xff\x1f\xf2\xc7" "\x2c\xfe\x77\xe7\x8f\x59\xfc\xff\x98\x3f\x66\xf1\xbf\x27\x7f\xcc\xe2" "\x7f\x6f\xfe\x98\xc5\xff\x4f\xf9\x63\x16\xff\x3f\xe7\x8f\x59\xfc\xef" "\xcb\x1f\xb3\xf8\xff\x25\x7f\xcc\xe2\x7f\x7f\xfe\x98\xc5\xff\x81\xfc" "\x31\x8b\xff\x83\xf9\x63\x16\xff\x87\xf2\xc7\x2c\xfe\x0f\xe7\x8f\x59" "\xfc\x1f\xc9\x1f\xb3\xf8\x3f\x9a\x3f\x66\xf1\x7f\x2c\x7f\xcc\xe2\xff" "\x78\xfe\x98\xc5\xff\x89\xfc\x31\x8b\xff\x93\xf9\x63\x16\xff\xa7\xf2" "\xc7\x2c\xfe\x4f\xe7\x8f\x59\xfc\x9f\xc9\x1f\xb3\xf8\x3f\x9b\x3f\x66" "\xf1\x7f\x2e\x7f\xcc\xe2\xff\x7c\xfe\x98\xc5\xff\x85\xfc\x31\x8b\xff" "\x8b\xf9\x63\x16\xff\x97\xf2\xc7\x2c\xfe\x2f\xe7\x8f\x59\xfc\x5f\xc9" "\x1f\x93\xf8\x4f\x3c\x90\x3f\x66\xf1\x1f\x94\x3f\x66\xf1\x1f\x2f\x7f" "\xcc\xe2\x3f\x38\x7f\xcc\xe2\x3f\x24\x7f\xcc\xe2\x3f\x34\x7f\xcc\xe2" "\x3f\x2c\x7f\xcc\xe2\x3f\x7e\xfe\x98\xc5\x7f\x82\xfc\x31\x8b\xff\x84" "\xf9\x63\x16\xff\x89\xf2\xc7\x2c\xfe\x13\xe7\x8f\x59\xfc\x27\xc9\x1f" "\xb3\xf8\x4f\x9a\x3f\x66\xf1\x1f\x9e\x3f\x66\xf1\x9f\x2c\x7f\xcc\xe2" "\x3f\x79\xfe\x98\xc5\x7f\x8a\xfc\x31\x8b\xff\x94\xf9\x63\x16\xff\xa9" "\xf2\xc7\x2c\xfe\x53\xe7\x8f\x59\xfc\xa7\xc9\x1f\xb3\xf8\xbf\x25\x7f" "\xcc\xe2\x3f\x6d\xfe\x98\xc5\x7f\xba\xfc\x31\x8b\xff\xf4\xf9\x63\x16" "\xff\x19\xf2\xc7\x2c\xfe\x6f\x7d\x5d\xff\xad\xfe\xdf\x8c\xeb\xdf\x34" "\x8b\xff\x8c\x7d\xfe\x31\x8b\xff\x88\xfc\x31\x8b\xff\xdb\xf2\xc7\x2c" "\xfe\x33\xe5\x8f\x59\xfc\x67\xce\x1f\xb3\xf8\xbf\x3d\x7f\xcc\xe2\x3f" "\x4b\xfe\x98\xc5\x7f\xd6\xfc\x31\x8b\xff\x6c\xf9\x63\x16\xff\xd9\xf3" "\xc7\x2c\xfe\xef\xc8\x1f\xb3\xf8\xcf\x91\x3f\x66\xf1\x9f\x33\x7f\xcc" "\xe2\x3f\x57\xfe\x98\xc5\x7f\xee\xfc\x31\x8b\xff\x3c\xf9\x63\x16\xff" "\x79\xf3\xc7\x2c\xfe\xf3\xe5\x8f\x59\xfc\xe7\xcf\x1f\xb3\xf8\x2f\x90" "\x3f\x66\xf1\x5f\x30\x7f\xcc\xe2\xbf\x50\xfe\x98\xc5\x7f\xe1\xfc\x31" "\x8b\xff\x22\xf9\x63\x16\xff\x45\xf3\xc7\x2c\xfe\x8b\xe5\x8f\x59\xfc" "\x17\xcf\x1f\xb3\xf8\x2f\x91\x3f\x66\xf1\x5f\x32\x7f\xcc\xe2\xbf\x54" "\xfe\x98\xc5\x7f\xe9\xfc\x31\x8b\xff\x32\xf9\x63\x16\xff\x65\xf3\xc7" "\x2c\xfe\xef\xcc\x1f\xb3\xf8\xbf\x2b\x7f\xcc\xe2\xff\xee\xfc\x31\x8b" "\xff\x72\xf9\x63\x16\xff\xe5\xf3\xc7\x2c\xfe\x2b\xe4\x8f\x59\xfc\x57" "\xcc\x1f\xb3\xf8\xaf\x94\x3f\x66\xf1\x5f\x39\x7f\xcc\xe2\xbf\x4a\xfe" "\x98\xc5\x7f\xd5\xfc\x31\x8b\xff\x6a\xf9\x63\x16\xff\xd5\xf3\xc7\x2c" "\xfe\x6b\xe4\x8f\x59\xfc\xd7\xcc\x1f\xb3\xf8\xaf\x95\x3f\x66\xf1\x5f" "\x3b\x7f\xcc\xe2\xbf\x4e\xfe\x98\xc5\x7f\xdd\xfc\x31\x8b\xff\x7a\xf9" "\x63\x16\xff\xf5\xf3\xc7\x2c\xfe\x1b\xe4\x8f\x59\xfc\x37\xcc\x1f\xb3" "\xf8\x6f\x94\x3f\x66\xf1\xdf\x38\x7f\xcc\xe2\xbf\x49\xfe\x98\xc5\xff" "\x3d\xf9\x63\x16\xff\x4d\xf3\xc7\x2c\xfe\x9b\xe5\x8f\x59\xfc\xdf\x9b" "\x3f\x66\xf1\xdf\x3c\x7f\xcc\xe2\xff\xbe\xfc\x31\x8b\xff\x16\xf9\x63" "\x16\xff\x2d\xf3\xc7\x2c\xfe\xef\xcf\x1f\xb3\xf8\x6f\x95\x3f\x66\xf1" "\xdf\x3a\x7f\xcc\xe2\xbf\x4d\xfe\x98\xc5\x7f\xdb\xfc\x31\x8b\xff\x76" "\xf9\x63\x16\xff\xed\xf3\xc7\x2c\xfe\x3b\xe4\x8f\x59\xfc\x77\xcc\x1f" "\xb3\xf8\xef\x94\x3f\x66\xf1\xdf\x39\x7f\xcc\xe2\xbf\x4b\xfe\x98\xc5" "\xff\x03\xf9\x63\x16\xff\x5d\xf3\xc7\x2c\xfe\xbb\xe5\x8f\x59\xfc\x77" "\xcf\x1f\xb3\xf8\xef\x91\x3f\x66\xf1\xdf\x33\x7f\xcc\xe2\xff\xc1\xfc" "\x31\x8b\xff\x5e\xf9\x63\x16\xff\xbd\xf3\xc7\x2c\xfe\xfb\xe4\x8f\x59" "\xfc\x3f\x94\x3f\x66\xf1\xff\x70\xfe\x98\xc5\xff\x23\xf9\x63\x16\xff" "\x7d\xf3\xc7\x2c\xfe\xfb\xe5\x8f\x59\xfc\xf7\xcf\x1f\xb3\xf8\x1f\x90" "\x3f\x66\xf1\x3f\x30\x7f\xcc\xe2\x7f\x50\xfe\x98\xc5\xff\xe0\xfc\x31" "\x8b\xff\x21\xf9\x63\x16\xff\x43\xf3\xc7\x2c\xfe\x87\xe5\x8f\x59\xfc" "\x0f\xcf\x1f\xb3\xf8\x1f\x91\x3f\x66\xf1\xff\x68\xfe\x98\xc5\xff\xc8" "\xfc\x31\x8b\xff\xc7\xf2\xc7\x2c\xfe\x1f\xcf\x1f\xb3\xf8\x1f\x95\x3f" "\x66\xf1\xff\x44\xfe\x98\xc5\xff\xe8\xfc\x31\x8b\xff\x31\xf9\x63\x16" "\xff\x63\xf3\xc7\x2c\xfe\x9f\xcc\x1f\xb3\xf8\x7f\x2a\x7f\xcc\xe2\x7f" "\x5c\xfe\x98\xc5\xff\xf8\xfc\x31\x8b\xff\x09\xf9\x63\x16\xff\x13\xf3" "\xc7\x2c\xfe\x27\xe5\x8f\x59\xfc\x3f\x9d\x3f\x66\xf1\xff\x4c\xfe\x98" "\xc5\xff\xb3\xf9\x63\x16\xff\xcf\xe5\x8f\x59\xfc\x4f\xce\x1f\xb3\xf8" "\x7f\x3e\x7f\xcc\xe2\xff\x85\xfc\x31\x8b\xff\x17\xf3\xc7\x2c\xfe\x5f" "\xca\x1f\xb3\xf8\x9f\x92\x3f\x66\xf1\x3f\x35\x7f\xcc\xe2\x7f\x5a\xfe" "\x98\xc5\xff\xf4\xfc\x31\x8b\xff\x19\xf9\x63\x16\xff\x33\xf3\xc7\x2c" "\xfe\x5f\xce\x1f\xb3\xf8\x9f\x95\x3f\x66\xf1\x3f\x3b\x7f\xcc\xe2\xff" "\x95\xfc\x31\x8b\xff\x39\xf9\x63\x16\xff\x73\xf3\xc7\x2c\xfe\xe7\xe5" "\x8f\x59\xfc\xcf\xcf\x1f\xb3\xf8\x5f\x90\x3f\x66\xf1\xff\x6a\xfe\x98" "\xc5\xff\x6b\xf9\x63\x16\xff\xaf\xe7\x8f\x59\xfc\x2f\xcc\x1f\xb3\xf8" "\x5f\x94\x3f\x66\xf1\xff\x46\xfe\x98\xc5\xff\xe2\xfc\x31\x8b\xff\x37" "\xf3\xc7\x2c\xfe\x97\xe4\x8f\x59\xfc\x2f\xcd\x1f\xb3\xf8\x5f\x96\x3f" "\x66\xf1\xff\x56\xfe\x98\xc5\xff\xdb\xf9\x63\x16\xff\xcb\xf3\xc7\x2c" "\xfe\x57\xe4\x8f\x59\xfc\xbf\x93\x3f\x66\xf1\xbf\x32\x7f\xcc\xe2\xff" "\xdd\xfc\x31\x8b\xff\x55\xf9\x63\x16\xff\xef\xe5\x8f\x59\xfc\xaf\xce" "\x1f\xb3\xf8\x7f\x3f\x7f\xcc\xe2\x7f\x4d\xfe\x98\xc5\xff\xda\xfc\x31" "\x8b\xff\x0f\xf2\xc7\x2c\xfe\x3f\xcc\x1f\xb3\xf8\xff\x28\x7f\xcc\xe2" "\x7f\x5d\xfe\x98\xc5\xff\xc7\xf9\x63\x16\xff\xeb\xf3\xc7\x2c\xfe\x37" "\xe4\x8f\x59\xfc\x7f\x92\x3f\x66\xf1\xbf\x31\x7f\xcc\xe2\x7f\x53\xfe" "\x98\xc5\xff\xa7\xf9\x63\x16\xff\x9b\xf3\xc7\x2c\xfe\xb7\xe4\x8f\x59" "\xfc\x6f\xcd\x1f\xb3\xf8\xdf\x96\x3f\x66\xf1\xff\x59\xfe\x98\xc5\xff" "\xf6\xfc\x31\x8b\xff\xcf\xf3\xc7\x2c\xfe\xbf\xc8\x1f\xb3\xf8\xff\x32" "\x7f\xcc\xe2\xff\xab\xfc\x31\x8b\xff\xaf\xf3\xc7\x2c\xfe\xbf\xc9\x1f" "\xb3\xf8\xdf\x91\x3f\x66\xf1\xff\x6d\xfe\x98\xc5\xff\x77\xf9\x63\x16" "\xff\xdf\xe7\x8f\x59\xfc\xef\xcc\x1f\xb3\xf8\xdf\x95\x3f\x66\xf1\xff" "\x43\xfe\x98\xc5\xff\xee\xfc\x31\x8b\xff\x1f\xf3\xc7\x2c\xfe\xf7\xe4" "\x8f\x59\xfc\xef\xcd\x1f\xb3\xf8\xff\x29\x7f\xcc\xe2\xff\xe7\xfc\x31" "\x8b\xff\x7d\xf9\x63\x16\xff\xbf\xe4\x8f\x59\xfc\xef\xcf\x1f\xb3\xf8" "\x3f\x90\x3f\x66\xf1\x7f\x30\x7f\xcc\xe2\xff\x50\xfe\x98\xc5\xff\xe1" "\xfc\x31\x8b\xff\x23\xf9\x63\x16\xff\x47\xf3\xc7\x2c\xfe\x8f\xe5\x8f" "\x59\xfc\x1f\xcf\x1f\xb3\xf8\x3f\x91\x3f\x66\xf1\x7f\x32\x7f\xcc\xe2" "\xff\x54\xfe\x98\xc5\xff\xe9\xfc\x31\x8b\xff\x33\xf9\x63\x16\xff\x67" "\xf3\xc7\x2c\xfe\xcf\xe5\x8f\x59\xfc\x9f\xcf\x1f\xb3\xf8\xbf\x90\x3f" "\x66\xf1\x7f\x31\x7f\xcc\xe2\xff\x52\xfe\x98\xc5\xff\xe5\xfc\x31\x8b" "\xff\x2b\xf9\x63\x12\xff\x49\x06\xf2\xc7\x2c\xfe\x83\xf2\xc7\x2c\xfe" "\xe3\xe5\x8f\x59\xfc\x07\xe7\x8f\x59\xfc\x87\xe4\x8f\x59\xfc\x87\xe6" "\x8f\x59\xfc\x87\xe5\x8f\x59\xfc\xc7\xcf\x1f\xb3\xf8\x4f\x90\x3f\x66" "\xf1\x9f\x30\x7f\xcc\xe2\x3f\x51\xfe\x98\xc5\x7f\xe2\xfc\x31\x8b\xff" "\x24\xf9\x63\x16\xff\x49\xf3\xc7\x2c\xfe\xc3\xf3\xc7\x2c\xfe\x93\xe5" "\x8f\x59\xfc\x27\xcf\x1f\xb3\xf8\x4f\x91\x3f\x66\xf1\x9f\x32\x7f\xcc" "\xe2\x3f\x55\xfe\x98\xc5\x7f\xea\xfc\x31\x8b\xff\x34\xf9\x63\x16\xff" "\xb7\xe4\x8f\x59\xfc\xa7\xcd\x1f\xb3\xf8\x4f\x97\x3f\x66\xf1\x9f\x3e" "\x7f\xcc\xe2\x3f\x43\xfe\x98\xc5\xff\xad\xf9\x63\x16\xff\x19\xf3\xc7" "\x2c\xfe\x23\xf2\xc7\x2c\xfe\x6f\xcb\x1f\xb3\xf8\xcf\x94\x3f\x66\xf1" "\x9f\x39\x7f\xcc\xe2\xff\xf6\xfc\x31\x8b\xff\x2c\xf9\x63\x16\xff\x59" "\xf3\xc7\x2c\xfe\xb3\xe5\x8f\x59\xfc\x67\xcf\x1f\xb3\xf8\xbf\x23\x7f" "\xcc\xe2\x3f\x47\xfe\x98\xc5\x7f\xce\xfc\x31\x8b\xff\x5c\xf9\x63\x16" "\xff\xb9\xf3\xc7\x2c\xfe\xf3\xe4\x8f\x59\xfc\xe7\xcd\x1f\xb3\xf8\xcf" "\x97\x3f\x66\xf1\x9f\x3f\x7f\xcc\xe2\xbf\x40\xfe\x98\xc5\x7f\xc1\xfc" "\x31\x8b\xff\x42\xf9\x63\x16\xff\x85\xf3\xc7\x2c\xfe\x8b\xe4\x8f\x59" "\xfc\x17\xcd\x1f\xb3\xf8\x2f\x96\x3f\x66\xf1\x5f\x3c\x7f\xcc\xe2\xbf" "\x44\xfe\x98\xc5\x7f\xc9\xfc\x31\x8b\xff\x52\xf9\x63\x16\xff\xa5\xf3" "\xc7\x2c\xfe\xcb\xe4\x8f\x59\xfc\x97\xcd\x1f\xb3\xf8\xbf\x33\x7f\xcc" "\xe2\xff\xae\xfc\x31\x8b\xff\xbb\xf3\xc7\x2c\xfe\xcb\xe5\x8f\x59\xfc" "\x97\xcf\x1f\xb3\xf8\xaf\x90\x3f\x66\xf1\x5f\x31\x7f\xcc\xe2\xbf\x52" "\xfe\x98\xc5\x7f\xe5\xfc\x31\x8b\xff\x2a\xf9\x63\x16\xff\x55\xf3\xc7" "\x2c\xfe\xab\xe5\x8f\x59\xfc\x57\xcf\x1f\xb3\xf8\xaf\x91\x3f\x66\xf1" "\x5f\x33\x7f\xcc\xe2\xbf\x56\xfe\x98\xc5\x7f\xed\xfc\x31\x8b\xff\x3a" "\xf9\x63\x16\xff\x75\xf3\xc7\x2c\xfe\xeb\xe5\x8f\x59\xfc\xd7\xcf\x1f" "\xb3\xf8\x6f\x90\x3f\x66\xf1\xdf\x30\x7f\xcc\xe2\xbf\x51\xfe\x98\xc5" "\x7f\xe3\xfc\x31\x8b\xff\x26\xf9\x63\x16\xff\xf7\xe4\x8f\x59\xfc\x37" "\xcd\x1f\xb3\xf8\x6f\x96\x3f\x66\xf1\x7f\x6f\xfe\x98\xc5\x7f\xf3\xfc" "\x31\x8b\xff\xfb\xf2\xc7\x2c\xfe\x5b\xe4\x8f\x59\xfc\xb7\xcc\x1f\xb3" "\xf8\xbf\x3f\x7f\xcc\xe2\xbf\x55\xfe\x98\xc5\x7f\xeb\xfc\x31\x8b\xff" "\x36\xf9\x63\x16\xff\x6d\xf3\xc7\x2c\xfe\xdb\xe5\x8f\x59\xfc\xb7\xcf" "\x1f\xb3\xf8\xef\x90\x3f\x66\xf1\xdf\x31\x7f\xcc\xe2\xbf\x53\xfe\x98" "\xc5\x7f\xe7\xfc\x31\x8b\xff\x2e\xf9\x63\x16\xff\x0f\xe4\x8f\x59\xfc" "\x77\xcd\x1f\xb3\xf8\xef\x96\x3f\x66\xf1\xdf\x3d\x7f\xcc\xe2\xbf\x47" "\xfe\x98\xc5\x7f\xcf\xfc\x31\x8b\xff\x07\xf3\xc7\x2c\xfe\x7b\xe5\x8f" "\x59\xfc\xf7\xce\x1f\xb3\xf8\xef\x93\x3f\x66\xf1\xff\x50\xfe\x98\xc5" "\xff\xc3\xf9\x63\x16\xff\x8f\xe4\x8f\x59\xfc\xf7\xcd\x1f\xb3\xf8\xef" "\x97\x3f\x66\xf1\xdf\x3f\x7f\xcc\xe2\x7f\x40\xfe\x98\xc5\xff\xc0\xfc" "\x31\x8b\xff\x41\xf9\x63\x16\xff\x83\xf3\xc7\x2c\xfe\x87\xe4\x8f\x59" "\xfc\x0f\xcd\x1f\xb3\xf8\x1f\x96\x3f\x66\xf1\x3f\x3c\x7f\xcc\xe2\x7f" "\x44\xfe\x98\xc5\xff\xa3\xf9\x63\x16\xff\x23\xf3\xc7\x2c\xfe\x1f\xcb" "\x1f\xb3\xf8\x7f\x3c\x7f\xcc\xe2\x7f\x54\xfe\x98\xc5\xff\x13\xf9\x63" "\x16\xff\xa3\xf3\xc7\x2c\xfe\xc7\xe4\x8f\x59\xfc\x8f\xcd\x1f\xb3\xf8" "\x7f\x32\x7f\xcc\xe2\xff\xa9\xfc\x31\x8b\xff\x71\xf9\x63\x16\xff\xe3" "\xf3\xc7\x2c\xfe\x27\xe4\x8f\x59\xfc\x4f\xcc\x1f\xb3\xf8\x9f\x94\x3f" "\x66\xf1\xff\x74\xfe\x98\xc5\xff\x33\xf9\x63\x16\xff\xcf\xe6\x8f\x59" "\xfc\x3f\x97\x3f\x66\xf1\x3f\x39\x7f\xcc\xe2\xff\xf9\xfc\x31\x8b\xff" "\x17\xf2\xc7\x2c\xfe\x5f\xcc\x1f\xb3\xf8\x7f\x29\x7f\xcc\xe2\x7f\x4a" "\xfe\x98\xc5\xff\xd4\xfc\x31\x8b\xff\x69\xf9\x63\x16\xff\xd3\xf3\xc7" "\x2c\xfe\x67\xe4\x8f\x59\xfc\xcf\xcc\x1f\xb3\xf8\x7f\x39\x7f\xcc\xe2" "\x7f\x56\xfe\x98\xc5\xff\xec\xfc\x31\x8b\xff\x57\xf2\xc7\x2c\xfe\xe7" "\xe4\x8f\x59\xfc\xcf\xcd\x1f\xb3\xf8\x9f\x97\x3f\x66\xf1\x3f\x3f\x7f" "\xcc\xe2\x7f\x41\xfe\x98\xc5\xff\xab\xf9\x63\x16\xff\xaf\xe5\x8f\x59" "\xfc\xbf\x9e\x3f\x66\xf1\xbf\x30\x7f\xcc\xe2\x7f\x51\xfe\x98\xc5\xff" "\x1b\xf9\x63\x16\xff\x8b\xf3\xc7\x2c\xfe\xdf\xcc\x1f\xb3\xf8\x5f\x92" "\x3f\x66\xf1\xbf\x34\x7f\xcc\xe2\x7f\x59\xfe\x98\xc5\xff\x5b\xf9\x63" "\x16\xff\x6f\xe7\x8f\x59\xfc\x2f\xcf\x1f\xb3\xf8\x5f\x91\x3f\x66\xf1" "\xff\x4e\xfe\x98\xc5\xff\xca\xfc\x31\x8b\xff\x77\xf3\xc7\x2c\xfe\x57" "\xe5\x8f\x59\xfc\xbf\x97\x3f\x66\xf1\xbf\x3a\x7f\xcc\xe2\xff\xfd\xfc" "\x31\x8b\xff\x35\xf9\x63\x16\xff\x6b\xf3\xc7\x2c\xfe\x3f\xc8\x1f\xb3" "\xf8\xff\x30\x7f\xcc\xe2\xff\xa3\xfc\x31\x8b\xff\x75\xf9\x63\x16\xff" "\x1f\xe7\x8f\x59\xfc\xaf\xcf\x1f\xb3\xf8\xdf\x90\x3f\x66\xf1\xff\x49" "\xfe\x98\xc5\xff\xc6\xfc\x31\x8b\xff\x4d\xf9\x63\x16\xff\x9f\xe6\x8f" "\x59\xfc\x6f\xce\x1f\xb3\xf8\xdf\x92\x3f\x66\xf1\xbf\x35\x7f\xcc\xe2" "\x7f\x5b\xfe\x98\xc5\xff\x67\xf9\x63\x16\xff\xdb\xf3\xc7\x2c\xfe\x3f" "\xcf\x1f\xb3\xf8\xff\x22\x7f\xcc\xe2\xff\xcb\xfc\x31\x8b\xff\xaf\xf2" "\xc7\x2c\xfe\xbf\xce\x1f\xb3\xf8\xff\x26\x7f\xcc\xe2\x7f\x47\xfe\x98" "\xc5\xff\xb7\xf9\x63\x16\xff\xdf\xe5\x8f\x59\xfc\x7f\x9f\x3f\x66\xf1" "\xbf\x33\x7f\xcc\xe2\x7f\x57\xfe\x98\xc5\xff\x0f\xf9\x63\x16\xff\xbb" "\xf3\xc7\x2c\xfe\x7f\xcc\x1f\xb3\xf8\xdf\x93\x3f\x66\xf1\xbf\x37\x7f" "\xcc\xe2\xff\xa7\xfc\x31\x8b\xff\x9f\xf3\xc7\x2c\xfe\xf7\xe5\x8f\x59" "\xfc\xff\x92\x3f\x66\xf1\xbf\x3f\x7f\xcc\xe2\xff\x40\xfe\x98\xc5\xff" "\xc1\xfc\x31\x8b\xff\x43\xf9\x63\x16\xff\x87\xf3\xc7\x2c\xfe\x8f\xe4" "\x8f\x59\xfc\x1f\xcd\x1f\xb3\xf8\x3f\x96\x3f\x66\xf1\x7f\x3c\x7f\xcc" "\xe2\xff\x44\xfe\x98\xc5\xff\xc9\xfc\x31\x8b\xff\x53\xf9\x63\x16\xff" "\xa7\xf3\xc7\x2c\xfe\xcf\xe4\x8f\x59\xfc\x9f\xcd\x1f\xb3\xf8\x3f\x97" "\x3f\x66\xf1\x7f\x3e\x7f\xcc\xe2\xff\x42\xfe\x98\xc5\xff\xc5\xfc\x31" "\x8b\xff\x4b\xf9\x63\x16\xff\x97\xf3\xc7\x2c\xfe\xaf\xe4\x8f\x49\xfc" "\x27\x1d\xc8\x1f\xb3\xf8\x0f\xca\x1f\xb3\xf8\x8f\x97\x3f\x66\xf1\x1f" "\x9c\x3f\x66\xf1\x1f\x92\x3f\x66\xf1\x1f\x9a\x3f\x66\xf1\x1f\x96\x3f" "\x66\xf1\x1f\x3f\x7f\xcc\xe2\x3f\x41\xfe\x98\xc5\x7f\xc2\xfc\x31\x8b" "\xff\x44\xf9\x63\x16\xff\x89\xf3\xc7\x2c\xfe\x93\xe4\x8f\x59\xfc\x27" "\xcd\x1f\xb3\xf8\x0f\xff\x87\xfe\x93\xfd\xdf\x8e\xeb\xdf\x34\x8b\xff" "\x64\x7d\xfe\x31\x8b\xff\xe4\xf9\x63\x16\xff\x29\xf2\xc7\x2c\xfe\x53" "\xe6\x8f\x59\xfc\xa7\xca\x1f\xb3\xf8\x4f\x9d\x3f\x66\xf1\x9f\x26\x7f" "\xcc\xe2\xff\x96\xfc\x31\x8b\xff\xb4\xf9\x63\x16\xff\xe9\xf2\xc7\x2c" "\xfe\xd3\xe7\x8f\x59\xfc\x67\xc8\x1f\xb3\xf8\xbf\x35\x7f\xcc\xe2\x3f" "\x63\xfe\x98\xc5\x7f\x44\xfe\x98\xc5\xff\x6d\xf9\x63\x16\xff\x99\xf2" "\xc7\x2c\xfe\x33\xe7\x8f\x59\xfc\xdf\x9e\x3f\x66\xf1\x9f\x25\x7f\xcc" "\xe2\x3f\x6b\xfe\x98\xc5\x7f\xb6\xfc\x31\x8b\xff\xec\xf9\x63\x16\xff" "\x77\xe4\x8f\x59\xfc\xe7\xc8\x1f\xb3\xf8\xcf\x99\x3f\x66\xf1\x9f\x2b" "\x7f\xcc\xe2\x3f\x77\xfe\x98\xc5\x7f\x9e\xfc\x31\x8b\xff\xbc\xf9\x63" "\x16\xff\xf9\xf2\xc7\x2c\xfe\xf3\xe7\x8f\x59\xfc\x17\xc8\x1f\xb3\xf8" "\x2f\x98\x3f\x66\xf1\x5f\x28\x7f\xcc\xe2\xbf\x70\xfe\x98\xc5\x7f\x91" "\xfc\x31\x8b\xff\xa2\xf9\x63\x16\xff\xc5\xf2\xc7\x2c\xfe\x8b\xe7\x8f" "\x59\xfc\x97\xc8\x1f\xb3\xf8\x2f\x99\x3f\x66\xf1\x5f\x2a\x7f\xcc\xe2" "\xbf\x74\xfe\x98\xc5\x7f\x99\xfc\x31\x8b\xff\xb2\xf9\x63\x16\xff\x77" "\xe6\x8f\x59\xfc\xdf\x95\x3f\x66\xf1\x7f\x77\xfe\x98\xc5\x7f\xb9\xfc" "\x31\x8b\xff\xf2\xf9\x63\x16\xff\x15\xf2\xc7\x2c\xfe\x2b\xe6\x8f\x59" "\xfc\x57\xca\x1f\xb3\xf8\xaf\x9c\x3f\x66\xf1\x5f\x25\x7f\xcc\xe2\xbf" "\x6a\xfe\x98\xc5\x7f\xb5\xfc\x31\x8b\xff\xea\xf9\x63\x16\xff\x35\xf2" "\xc7\x2c\xfe\x6b\xe6\x8f\x59\xfc\xd7\xca\x1f\xb3\xf8\xaf\x9d\x3f\x66" "\xf1\x5f\x27\x7f\xcc\xe2\xbf\x6e\xfe\x98\xc5\x7f\xbd\xfc\x31\x8b\xff" "\xfa\xf9\x63\x16\xff\x0d\xf2\xc7\x2c\xfe\x1b\xe6\x8f\x59\xfc\x37\xca" "\x1f\xb3\xf8\x6f\x9c\x3f\x66\xf1\xdf\x24\x7f\xcc\xe2\xff\x9e\xfc\x31" "\x8b\xff\xa6\xf9\x63\x16\xff\xcd\xf2\xc7\x2c\xfe\xef\xcd\x1f\xb3\xf8" "\x6f\x9e\x3f\x66\xf1\x7f\x5f\xfe\x98\xc5\x7f\x8b\xfc\x31\x8b\xff\x96" "\xf9\x63\x16\xff\xf7\xe7\x8f\x59\xfc\xb7\xca\x1f\xb3\xf8\x6f\x9d\x3f" "\x66\xf1\xdf\x26\x7f\xcc\xe2\xbf\x6d\xfe\x98\xc5\x7f\xbb\xfc\x31\x8b" "\xff\xf6\xf9\x63\x16\xff\x1d\xf2\xc7\x2c\xfe\x3b\xe6\x8f\x59\xfc\x77" "\xca\x1f\xb3\xf8\xef\x9c\x3f\x66\xf1\xdf\x25\x7f\xcc\xe2\xff\x81\xfc" "\x31\x8b\xff\xae\xf9\x63\x16\xff\xdd\xf2\xc7\x2c\xfe\xbb\xe7\x8f\x59" "\xfc\xf7\xc8\x1f\xb3\xf8\xef\x99\x3f\x66\xf1\xff\x60\xfe\x98\xc5\x7f" "\xaf\xfc\x31\x8b\xff\xde\xf9\x63\x16\xff\x7d\xf2\xc7\x2c\xfe\x1f\xca" "\x1f\xb3\xf8\x7f\x38\x7f\xcc\xe2\xff\x91\xfc\x31\x8b\xff\xbe\xf9\x63" "\x16\xff\xfd\xf2\xc7\x2c\xfe\xfb\xe7\x8f\x59\xfc\x0f\xc8\x1f\xb3\xf8" "\x1f\x98\x3f\x66\xf1\x3f\x28\x7f\xcc\xe2\x7f\x70\xfe\x98\xc5\xff\x90" "\xfc\x31\x8b\xff\xa1\xf9\x63\x16\xff\xc3\xf2\xc7\x2c\xfe\x87\xe7\x8f" "\x59\xfc\x8f\xc8\x1f\xb3\xf8\x7f\x34\x7f\xcc\xe2\x7f\x64\xfe\x98\xc5" "\xff\x63\xf9\x63\x16\xff\x8f\xe7\x8f\x59\xfc\x8f\xca\x1f\xb3\xf8\x7f" "\x22\x7f\xcc\xe2\x7f\x74\xfe\x98\xc5\xff\x98\xfc\x31\x8b\xff\xb1\xf9" "\x63\x16\xff\x4f\xe6\x8f\xfd\xd7\xfb\x9f\x35\xf2\x37\xbf\x81\x49\x3f" "\x95\x3f\xf6\x5f\xef\x3f\xaa\x49\x8f\xcb\x1f\xb3\xf8\x1f\x9f\x3f\x66" "\xf1\x3f\x21\x7f\xcc\xe2\x7f\x62\xfe\x98\xc5\xff\xa4\xfc\x31\x8b\xff" "\xa7\xf3\xc7\x2c\xfe\x9f\xc9\x1f\xb3\xf8\x7f\x36\x7f\xcc\xe2\xff\xb9" "\xfc\x31\x8b\xff\xc9\xf9\x63\x16\xff\xcf\xe7\x8f\x59\xfc\xbf\x90\x3f" "\x66\xf1\xff\x62\xfe\x98\xc5\xff\x4b\xf9\x63\x16\xff\x53\xf2\xc7\x2c" "\xfe\xa7\xe6\x8f\x59\xfc\x4f\xcb\x1f\xb3\xf8\x9f\x9e\x3f\x66\xf1\x3f" "\x23\x7f\xcc\xe2\x7f\x66\xfe\x98\xc5\xff\xcb\xf9\x63\x16\xff\xb3\xf2" "\xc7\x2c\xfe\x67\xe7\x8f\x59\xfc\xbf\x92\x3f\x66\xf1\x3f\x27\x7f\xcc" "\xe2\x7f\x6e\xfe\x98\xc5\xff\xbc\xfc\x31\x8b\xff\xf9\xf9\x63\x16\xff" "\x0b\xf2\xc7\x2c\xfe\x5f\xcd\x1f\xb3\xf8\x7f\x2d\x7f\xcc\xe2\xff\xf5" "\xfc\x31\x8b\xff\x85\xf9\x63\x16\xff\x8b\xf2\xc7\x2c\xfe\xdf\xc8\x1f" "\xb3\xf8\x5f\x9c\x3f\x66\xf1\xff\x66\xfe\x98\xc5\xff\x92\xfc\x31\x8b" "\xff\xa5\xf9\x63\x16\xff\xcb\xf2\xc7\x2c\xfe\xdf\xca\x1f\xb3\xf8\x7f" "\x3b\x7f\xcc\xe2\x7f\x79\xfe\x98\xc5\xff\x8a\xfc\x31\x8b\xff\x77\xf2" "\xc7\x2c\xfe\x57\xe6\x8f\x59\xfc\xbf\x9b\x3f\x66\xf1\xbf\x2a\x7f\xcc" "\xe2\xff\xbd\xfc\x31\x8b\xff\xd5\xf9\x63\x16\xff\xef\xe7\x8f\x59\xfc" "\xaf\xc9\x1f\xb3\xf8\x5f\x9b\x3f\x66\xf1\xff\x41\xfe\x98\xc5\xff\x87" "\xf9\x63\x16\xff\x1f\xe5\x8f\x59\xfc\xaf\xcb\x1f\xb3\xf8\xff\x38\x7f" "\xcc\xe2\x7f\x7d\xfe\x98\xc5\xff\x86\xfc\x31\x8b\xff\x4f\xf2\xc7\x2c" "\xfe\x37\xe6\x8f\x59\xfc\x6f\xca\x1f\xb3\xf8\xff\x34\x7f\xcc\xe2\x7f" "\x73\xfe\x98\xc5\xff\x96\xfc\x31\x8b\xff\xad\xf9\x63\x16\xff\xdb\xf2" "\xc7\x2c\xfe\x3f\xcb\x1f\xb3\xf8\xdf\x9e\x3f\x66\xf1\xff\x79\xfe\x98" "\xc5\xff\x17\xf9\x63\x16\xff\x5f\xe6\x8f\x59\xfc\x7f\x95\x3f\x66\xf1" "\xff\x75\xfe\x98\xc5\xff\x37\xf9\x63\x16\xff\x3b\xf2\xc7\x2c\xfe\xbf" "\xcd\x1f\xb3\xf8\xff\x2e\x7f\xcc\xe2\xff\xfb\xfc\x31\x8b\xff\x9d\xf9" "\x63\x16\xff\xbb\xf2\xc7\x2c\xfe\x7f\xc8\x1f\xb3\xf8\xdf\x9d\x3f\x66" "\xf1\xff\x63\xfe\x98\xc5\xff\x9e\xfc\x31\x8b\xff\xbd\xf9\x63\x16\xff" "\x3f\xe5\x8f\x59\xfc\xff\x9c\x3f\x66\xf1\xbf\x2f\x7f\xcc\xe2\xff\x97" "\xfc\x31\x8b\xff\xfd\xf9\x63\x16\xff\x07\xf2\xc7\x2c\xfe\x0f\xe6\x8f" "\x59\xfc\x1f\xca\x1f\xb3\xf8\x3f\x9c\x3f\x66\xf1\x7f\x24\x7f\xcc\xe2" "\xff\x68\xfe\x98\xc5\xff\xb1\xfc\x31\x8b\xff\xe3\xf9\x63\x16\xff\x27" "\xf2\xc7\x2c\xfe\x4f\xe6\x8f\x59\xfc\x9f\xca\x1f\xb3\xf8\x3f\x9d\x3f" "\x66\xf1\x7f\x26\x7f\xcc\xe2\xff\x6c\xfe\x98\xc5\xff\xb9\xfc\x31\x8b" "\xff\xf3\xf9\x63\x16\xff\x17\xf2\xc7\x2c\xfe\x2f\xe6\x8f\x59\xfc\x5f" "\xca\x1f\xb3\xf8\xbf\x9c\x3f\x66\xf1\x7f\x25\x7f\x4c\xe2\x3f\x7c\x20" "\x7f\xcc\xe2\x3f\x28\x7f\xcc\xe2\x3f\x5e\xfe\x98\xc5\x7f\x70\xfe\x98" "\xc5\x7f\x48\xfe\x98\xc5\x7f\x68\xfe\x98\xc5\x7f\x58\xfe\x98\xc5\x7f" "\xfc\xfc\x31\x8b\xff\x04\xf9\x63\x16\xff\x09\xf3\xc7\x2c\xfe\x13\xe5" "\x8f\x59\xfc\x27\xce\x1f\xb3\xf8\x4f\x92\x3f\x66\xf1\x9f\x34\x7f\xcc" "\xe2\x3f\x3c\x7f\xcc\xe2\x3f\x59\xfe\x98\xc5\x7f\xf2\xfc\x31\x8b\xff" "\x14\xf9\x63\x16\xff\x29\xf3\xc7\x2c\xfe\x53\xe5\x8f\x59\xfc\xa7\xce" "\x1f\xb3\xf8\x4f\x93\x3f\x66\xf1\x7f\x4b\xfe\x98\xc5\x7f\xda\xfc\x31" "\x8b\xff\x74\xf9\x63\x16\xff\xe9\xf3\xc7\x2c\xfe\x33\xe4\x8f\x59\xfc" "\xdf\x9a\x3f\x66\xf1\x9f\x31\x7f\xcc\xe2\x3f\x22\x7f\xcc\xe2\xff\xb6" "\xfc\x31\x8b\xff\x4c\xf9\x63\x16\xff\x99\xf3\xc7\x2c\xfe\x6f\xcf\x1f" "\xb3\xf8\xcf\x92\x3f\x66\xf1\x9f\x35\x7f\xcc\xe2\x3f\x5b\xfe\x98\xc5" "\x7f\xf6\xfc\x31\x8b\xff\x3b\xf2\xc7\x2c\xfe\x73\xe4\x8f\x59\xfc\xe7" "\xcc\x1f\xb3\xf8\xcf\x95\x3f\x66\xf1\x9f\x3b\x7f\xcc\xe2\x3f\x4f\xfe" "\x98\xc5\x7f\xde\xfc\x31\x8b\xff\x7c\xf9\x63\x16\xff\xf9\xf3\xc7\x2c" "\xfe\x0b\xe4\x8f\x59\xfc\x17\xcc\x1f\xb3\xf8\x2f\x94\x3f\x66\xf1\x5f" "\x38\x7f\xcc\xe2\xbf\x48\xfe\x98\xc5\x7f\xd1\xfc\x31\x8b\xff\x62\xf9" "\x63\x16\xff\xc5\xf3\xc7\x2c\xfe\x4b\xe4\x8f\x59\xfc\x97\xcc\x1f\xb3" "\xf8\x2f\x95\x3f\x66\xf1\x5f\x3a\x7f\xcc\xe2\xbf\x4c\xfe\x98\xc5\x7f" "\xd9\xfc\x31\x8b\xff\x3b\xf3\xc7\x2c\xfe\xef\xca\x1f\xb3\xf8\xbf\x3b" "\x7f\xcc\xe2\xbf\x5c\xfe\x98\xc5\x7f\xf9\xfc\x31\x8b\xff\x0a\xf9\x63" "\x16\xff\x15\xf3\xc7\x2c\xfe\x2b\xe5\x8f\x59\xfc\x57\xce\x1f\xb3\xf8" "\xaf\x92\x3f\x66\xf1\x5f\x35\x7f\xcc\xe2\xbf\x5a\xfe\x98\xc5\x7f\xf5" "\xfc\x31\x8b\xff\x1a\xf9\x63\x16\xff\x35\xf3\xc7\x2c\xfe\x6b\xe5\x8f" "\x59\xfc\xd7\xce\x1f\xb3\xf8\xaf\x93\x3f\x66\xf1\x5f\x37\x7f\xcc\xe2" "\xbf\x5e\xfe\x98\xc5\x7f\xfd\xfc\x31\x8b\xff\x06\xf9\x63\x16\xff\x0d" "\xf3\xc7\x2c\xfe\x1b\xe5\x8f\x59\xfc\x37\xce\x1f\xb3\xf8\x6f\x92\x3f" "\x66\xf1\x7f\x4f\xfe\x98\xc5\x7f\xd3\xfc\x31\x8b\xff\x66\xf9\x63\x16" "\xff\xf7\xe6\x8f\x59\xfc\x37\xcf\x1f\xb3\xf8\xbf\x2f\x7f\xcc\xe2\xbf" "\x45\xfe\x98\xc5\x7f\xcb\xfc\x31\x8b\xff\xfb\xf3\xc7\x2c\xfe\x5b\xe5" "\x8f\x59\xfc\xb7\xce\x1f\xb3\xf8\x6f\x93\x3f\x66\xf1\xdf\x36\x7f\xcc" "\xe2\xbf\x5d\xfe\x98\xc5\x7f\xfb\xfc\x31\x8b\xff\x0e\xf9\x63\x16\xff" "\x1d\xf3\xc7\x2c\xfe\x3b\xe5\x8f\x59\xfc\x77\xce\x1f\xb3\xf8\xef\x92" "\x3f\x66\xf1\xff\x40\xfe\x98\xc5\x7f\xd7\xfc\x31\x8b\xff\x6e\xf9\x63" "\x16\xff\xdd\xf3\xc7\x2c\xfe\x7b\xe4\x8f\x59\xfc\xf7\xcc\x1f\xb3\xf8" "\x7f\x30\x7f\xcc\xe2\xbf\x57\xfe\x98\xc5\x7f\xef\xfc\x31\x8b\xff\x3e" "\xf9\x63\x16\xff\x0f\xe5\x8f\x59\xfc\x3f\x9c\x3f\x66\xf1\xff\x48\xfe" "\x98\xc5\x7f\xdf\xfc\x31\x8b\xff\x7e\xf9\x63\x16\xff\xfd\xf3\xc7\x2c" "\xfe\x07\xe4\x8f\x59\xfc\x0f\xcc\x1f\xb3\xf8\x1f\x94\x3f\x66\xf1\x3f" "\x38\x7f\xcc\xe2\x7f\x48\xfe\x98\xc5\xff\xd0\xfc\x31\x8b\xff\x61\xf9" "\x63\x16\xff\xc3\xf3\xc7\x2c\xfe\x47\xe4\x8f\x59\xfc\x3f\x9a\x3f\x66" "\xf1\x3f\x32\x7f\xcc\xe2\xff\xb1\xfc\x31\x8b\xff\xc7\xf3\xc7\x2c\xfe" "\x47\xe5\x8f\x59\xfc\x3f\x91\x3f\x66\xf1\x3f\x3a\x7f\xcc\xe2\x7f\x4c" "\xfe\x98\xc5\xff\xd8\xfc\x31\x8b\xff\x27\xf3\xc7\x2c\xfe\x9f\xca\x1f" "\xb3\xf8\x1f\x97\x3f\x66\xf1\x3f\x3e\x7f\xcc\xe2\x7f\x42\xfe\x98\xc5" "\xff\xc4\xfc\x31\x8b\xff\x49\xf9\x63\x16\xff\x4f\xe7\x8f\x59\xfc\x3f" "\x93\x3f\x66\xf1\xff\x6c\xfe\x98\xc5\xff\x73\xf9\x63\x16\xff\x93\xf3" "\xc7\x2c\xfe\x9f\xcf\x1f\xb3\xf8\x7f\x21\x7f\xcc\xe2\xff\xc5\xfc\x31" "\x8b\xff\x97\xf2\xc7\x2c\xfe\xa7\xe4\x8f\x59\xfc\x4f\xcd\x1f\xb3\xf8" "\x9f\x96\x3f\x66\xf1\x3f\x3d\x7f\xcc\xe2\x7f\x46\xfe\x98\xc5\xff\xcc" "\xfc\x31\x8b\xff\x97\xf3\xc7\x2c\xfe\x67\xe5\x8f\x59\xfc\xcf\xce\x1f" "\xb3\xf8\x7f\x25\x7f\xcc\xe2\x7f\x4e\xfe\x98\xc5\xff\xdc\xfc\x31\x8b" "\xff\x79\xf9\x63\x16\xff\xf3\xf3\xc7\x2c\xfe\x17\xe4\x8f\x59\xfc\xbf" "\x9a\x3f\x66\xf1\xff\x5a\xfe\x98\xc5\xff\xeb\xf9\x63\x16\xff\x0b\xf3" "\xc7\x2c\xfe\x17\xe5\x8f\x59\xfc\xbf\x91\x3f\x66\xf1\xbf\x38\x7f\xcc" "\xe2\xff\xcd\xfc\x31\x8b\xff\x25\xf9\x63\x16\xff\x4b\xf3\xc7\x2c\xfe" "\x97\xe5\x8f\x59\xfc\xbf\x95\x3f\x66\xf1\xff\x76\xfe\x98\xc5\xff\xf2" "\xfc\x31\x8b\xff\x15\xf9\x63\x16\xff\xef\xe4\x8f\x59\xfc\xaf\xcc\x1f" "\xb3\xf8\x7f\x37\x7f\xcc\xe2\x7f\x55\xfe\x98\xc5\xff\x7b\xf9\x63\x16" "\xff\xab\xf3\xc7\x2c\xfe\xdf\xcf\x1f\xb3\xf8\x5f\x93\x3f\x66\xf1\xbf" "\x36\x7f\xcc\xe2\xff\x83\xfc\x31\x8b\xff\x0f\xf3\xc7\x2c\xfe\x3f\xca" "\x1f\xb3\xf8\x5f\x97\x3f\x66\xf1\xff\x71\xfe\x98\xc5\xff\xfa\xfc\x31" "\x8b\xff\x0d\xf9\x63\x16\xff\x9f\xe4\x8f\x59\xfc\x6f\xcc\x1f\xb3\xf8" "\xdf\x94\x3f\x66\xf1\xff\x69\xfe\x98\xc5\xff\xe6\xfc\x31\x8b\xff\x2d" "\xf9\x63\x16\xff\x5b\xf3\xc7\x2c\xfe\xb7\xe5\x8f\x59\xfc\x7f\x96\x3f" "\x66\xf1\xbf\x3d\x7f\xcc\xe2\xff\xf3\xfc\x31\x8b\xff\x2f\xf2\xc7\x2c" "\xfe\xbf\xcc\x1f\xb3\xf8\xff\x2a\x7f\xcc\xe2\xff\xeb\xfc\x31\x8b\xff" "\x6f\xf2\xc7\x2c\xfe\x77\xe4\x8f\x59\xfc\x7f\x9b\x3f\x66\xf1\xff\x5d" "\xfe\x98\xc5\xff\xf7\xf9\x63\x16\xff\x3b\xf3\xc7\x2c\xfe\x77\xe5\x8f" "\x59\xfc\xff\x90\x3f\x66\xf1\xbf\x3b\x7f\xcc\xe2\xff\xc7\xfc\x31\x8b" "\xff\x3d\xf9\x63\x16\xff\x7b\xf3\xc7\x2c\xfe\x7f\xca\x1f\xb3\xf8\xff" "\x39\x7f\xcc\xe2\x7f\x5f\xfe\x98\xc5\xff\x2f\xf9\x63\x16\xff\xfb\xf3" "\xc7\x2c\xfe\x0f\xe4\x8f\x59\xfc\x1f\xcc\x1f\xb3\xf8\x3f\x94\x3f\x66" "\xf1\x7f\x38\x7f\xcc\xe2\xff\x48\xfe\x98\xc5\xff\xd1\xfc\x31\x8b\xff" "\x63\xf9\x63\x16\xff\xc7\xf3\xc7\x2c\xfe\x4f\xe4\x8f\x59\xfc\x9f\xcc" "\x1f\xb3\xf8\x3f\x95\x3f\x66\xf1\x7f\x3a\x7f\xcc\xe2\xff\x4c\xfe\x98" "\xc5\xff\xd9\xfc\x31\x8b\xff\x73\xf9\x63\x16\xff\xe7\xf3\xc7\x2c\xfe" "\x2f\xe4\x8f\x59\xfc\x5f\xcc\x1f\xb3\xf8\xbf\x94\x3f\x66\xf1\x7f\x39" "\x7f\xcc\xe2\xff\x4a\xfe\x98\xc4\x7f\xb2\x81\xfc\x31\x8b\xff\xa0\xfc" "\x31\x8b\xff\x78\xf9\x63\x16\xff\xc1\xf9\x63\x16\xff\x21\xf9\x63\x16" "\xff\xa1\xf9\x63\x16\xff\x61\xf9\x63\x16\xff\xf1\xf3\xc7\x2c\xfe\x13" "\xe4\x8f\x59\xfc\x27\xcc\x1f\xb3\xf8\x4f\x94\x3f\x66\xf1\x9f\x38\x7f" "\xcc\xe2\x3f\x49\xfe\x98\xc5\x7f\xd2\xfc\x31\x8b\xff\xf0\xfc\x31\x8b" "\xff\x64\xf9\x63\x16\xff\xc9\xf3\xc7\x2c\xfe\x53\xe4\x8f\x59\xfc\xa7" "\xcc\x1f\xb3\xf8\x4f\x95\x3f\x66\xf1\x9f\x3a\x7f\xcc\xe2\x3f\x4d\xfe" "\x98\xc5\xff\x2d\xf9\x63\x16\xff\x69\xf3\xc7\x2c\xfe\xd3\xe5\x8f\x59" "\xfc\xa7\xcf\x1f\xb3\xf8\xcf\x90\x3f\x66\xf1\x7f\x6b\xfe\x98\xc5\x7f" "\xc6\xfc\x31\x8b\xff\x88\xfc\x31\x8b\xff\xdb\xf2\xc7\x2c\xfe\x33\xe5" "\x8f\x59\xfc\x67\xce\x1f\xb3\xf8\xbf\x3d\x7f\xcc\xe2\x3f\x4b\xfe\x98" "\xc5\x7f\xd6\xfc\x31\x8b\xff\x6c\xf9\x63\x16\xff\xd9\xf3\xc7\x2c\xfe" "\xef\xc8\x1f\xb3\xf8\xcf\x91\x3f\x66\xf1\x9f\x33\x7f\xcc\xe2\x3f\x57" "\xfe\x98\xc5\x7f\xee\xfc\x31\x8b\xff\x3c\xf9\x63\x16\xff\x79\xf3\xc7" "\x2c\xfe\xf3\xe5\x8f\x59\xfc\xe7\xcf\x1f\xb3\xf8\x2f\x90\x3f\x66\xf1" "\x5f\x30\x7f\xcc\xe2\xbf\x50\xfe\x98\xc5\x7f\xe1\xfc\x31\x8b\xff\x22" "\xf9\x63\x16\xff\x45\xf3\xc7\x2c\xfe\x8b\xe5\x8f\x59\xfc\x17\xcf\x1f" "\xb3\xf8\x2f\x91\x3f\x66\xf1\x5f\x32\x7f\xcc\xe2\xbf\x54\xfe\x98\xc5" "\x7f\xe9\xfc\x31\x8b\xff\x32\xf9\x63\x16\xff\x65\xf3\xc7\x2c\xfe\xef" "\xcc\x1f\xb3\xf8\xbf\x2b\x7f\xcc\xe2\xff\xee\xfc\x31\x8b\xff\x72\xf9" "\x63\x16\xff\xe5\xf3\xc7\x2c\xfe\x2b\xe4\x8f\x59\xfc\x57\xcc\x1f\xb3" "\xf8\xaf\x94\x3f\x66\xf1\x5f\x39\x7f\xcc\xe2\xbf\x4a\xfe\x98\xc5\x7f" "\xd5\xfc\x31\x8b\xff\x6a\xf9\x63\x16\xff\xd5\xf3\xc7\x2c\xfe\x6b\xe4" "\x8f\x59\xfc\xd7\xcc\x1f\xb3\xf8\xaf\x95\x3f\x66\xf1\x5f\x3b\x7f\xcc" "\xe2\xbf\x4e\xfe\x98\xc5\x7f\xdd\xfc\x31\x8b\xff\x7a\xf9\x63\x16\xff" "\xf5\xf3\xc7\x2c\xfe\x1b\xe4\x8f\x59\xfc\x37\xcc\x1f\xb3\xf8\x6f\x94" "\x3f\x66\xf1\xdf\x38\x7f\xcc\xe2\xbf\x49\xfe\xd8\xff\xc7\x1e\x3d\x18" "\x0a\x62\x00\x50\x00\xab\x8d\x5f\xdb\xb6\xad\x31\x6a\xdb\xb6\x6d\xdb" "\xb6\x6d\xdb\xb6\xed\xf6\x6c\x2d\xf0\x26\xb8\x97\xac\x90\x96\xff\xcd" "\xfd\x47\x2d\xff\x5b\xf8\x8f\x5a\xfe\xb7\xf4\x1f\xb5\xfc\x6f\xe5\x3f" "\x6a\xf9\xdf\xda\x7f\xd4\xf2\xbf\x8d\xff\xa8\xe5\x7f\x5b\xff\x51\xcb" "\xff\x76\xfe\xa3\x96\xff\xed\xfd\x47\x2d\xff\x3b\xf8\x8f\x5a\xfe\x77" "\xf4\x1f\xb5\xfc\xef\xe4\x3f\x6a\xf9\xdf\xd9\x7f\xd4\xf2\xbf\x8b\xff" "\xa8\xe5\x7f\x57\xff\x51\xcb\xff\x6e\xfe\xa3\x96\xff\xdd\xfd\x47\x2d" "\xff\x7b\xf8\x8f\x5a\xfe\xf7\xf4\x1f\xb5\xfc\xef\xe5\x3f\x6a\xf9\xdf" "\xdb\x7f\xd4\xf2\xbf\x8f\xff\xa8\xe5\x7f\x5f\xff\x51\xcb\xff\x7e\xfe" "\xa3\x96\xff\xfd\xfd\x47\x2d\xff\x07\xf8\x8f\x5a\xfe\x0f\xf4\x1f\xb5" "\xfc\x1f\xe4\x3f\x6a\xf9\x3f\xd8\x7f\xd4\xf2\x7f\x88\xff\xa8\xe5\xff" "\x50\xff\x51\xcb\xff\x61\xfe\xa3\x96\xff\xc3\xfd\x47\x2d\xff\x47\xf8" "\x8f\x5a\xfe\x8f\xf4\x1f\xb5\xfc\x1f\xe5\x3f\x6a\xf9\x3f\xda\x7f\xd4" "\xf2\x7f\x8c\xff\xa8\xe5\xff\x58\xff\x51\xcb\xff\x71\xfe\xa3\x96\xff" "\xe3\xfd\x47\x2d\xff\x27\xf8\x8f\x5a\xfe\x4f\xf4\x1f\xb5\xfc\x9f\xe4" "\x3f\x6a\xf9\x3f\xd9\x7f\xd4\xf2\x7f\x8a\xff\xa8\xe5\xff\x54\xff\x51" "\xcb\xff\x69\xfe\xa3\x96\xff\xd3\xfd\x47\x2d\xff\x67\xf8\x8f\x5a\xfe" "\xcf\xf4\x1f\xb5\xfc\x9f\xe5\x3f\x6a\xf9\x3f\xdb\x7f\xd4\xf2\x7f\x8e" "\xff\xa8\xe5\xff\x5c\xff\x51\xcb\xff\x79\xfe\xa3\x96\xff\xf3\xfd\x47" "\x2d\xff\x17\xf8\x8f\x5a\xfe\x2f\xf4\x1f\xb5\xfc\x5f\xe4\x3f\x6a\xf9" "\xbf\xd8\x7f\xd4\xf2\x7f\x89\xff\xa8\xe5\xff\x52\xff\x51\xcb\xff\x65" "\xfe\xa3\x96\xff\xcb\xfd\x47\x2d\xff\x57\xf8\x8f\x5a\xfe\xaf\xf4\x1f" "\xb5\xfc\x5f\xe5\x3f\x6a\xf9\xbf\xda\x7f\xd4\xf2\x7f\x8d\xff\xa8\xe5" "\xff\x5a\xff\x51\xcb\xff\x75\xfe\xa3\x96\xff\xeb\xfd\x47\x2d\xff\x37" "\xf8\x8f\x5a\xfe\x6f\xf4\x1f\xb5\xfc\xdf\xe4\x3f\x6a\xf9\xbf\xd9\x7f" "\xd4\xf2\x7f\x8b\xff\xa8\xe5\xff\x56\xff\x51\xcb\xff\x6d\xfe\xa3\x96" "\xff\xdb\xfd\x47\x2d\xff\x77\xf8\x8f\x5a\xfe\xef\xf4\x1f\xb5\xfc\xdf" "\xe5\x3f\x6a\xf9\xbf\xdb\x7f\xd4\xf2\x7f\x8f\xff\xa8\xe5\xff\x5e\xff" "\x51\xcb\xff\x7d\xfe\xa3\x96\xff\xfb\xfd\x47\x2d\xff\x0f\xf8\x8f\x5a" "\xfe\x1f\xf4\x1f\xb5\xfc\x3f\xe4\x3f\x6a\xf9\x7f\xd8\x7f\xd4\xf2\xff" "\x88\xff\xa8\xe5\xff\x51\xff\x51\xcb\xff\x63\xfe\xa3\x96\xff\xc7\xfd" "\x47\x2d\xff\x4f\xf8\x8f\x5a\xfe\x9f\xf4\x1f\xb5\xfc\x3f\xe5\x3f\x6a" "\xf9\x7f\xda\x7f\xd4\xf2\xff\x8c\xff\xa8\xe5\xff\x59\xff\x51\xcb\xff" "\x73\xfe\xa3\x96\xff\xe7\xfd\x47\x2d\xff\x2f\xf8\x8f\x5a\xfe\x5f\xf4" "\x1f\xb5\xfc\xbf\xe4\x3f\x6a\xf9\x7f\xd9\x7f\xd4\xf2\xff\x8a\xff\xa8" "\xe5\xff\x55\xff\x51\xcb\xff\x6b\xfe\xa3\x96\xff\xd7\xfd\x47\x2d\xff" "\x6f\xf8\x8f\x5a\xfe\xdf\xf4\x1f\xb5\xfc\xbf\xe5\x3f\x6a\xf9\x7f\xdb" "\x7f\xd4\xf2\xff\x8e\xff\xa8\xe5\xff\x5d\xff\x51\xcb\xff\x7b\xfe\xa3" "\x96\xff\xf7\xfd\x47\x2d\xff\x1f\xf8\x8f\x5a\xfe\x3f\xf4\x1f\xb5\xfc" "\x7f\xe4\x3f\x6a\xf9\xff\xd8\x7f\xd4\xf2\xff\x89\xff\xa8\xe5\xff\x53" "\xff\x51\xcb\xff\x67\xfe\xa3\x96\xff\xcf\xfd\x47\x2d\xff\x5f\xf8\x8f" "\x5a\xfe\xbf\xf4\x1f\xb5\xfc\x7f\xe5\x3f\x6a\xf9\xff\xda\x7f\xd4\xf2" "\xff\x8d\xff\xa8\xe5\xff\x5b\xff\x51\xcb\xff\x77\xfe\xa3\x96\xff\xef" "\xfd\x47\x2d\xff\x3f\xf8\x8f\x5a\xfe\x7f\xf4\x1f\xb5\xfc\xff\xe4\x3f" "\x6a\xf9\xff\xd9\x7f\xd4\xf2\xff\x8b\xff\xa8\xe5\xff\x57\xff\x51\xcb" "\xff\x6f\xfe\xa3\x96\xff\xdf\xfd\x47\x2d\xff\x7f\xf8\x8f\x5a\xfe\xff" "\xf4\x1f\xb5\xfc\xff\xe5\x3f\x6a\xf9\xff\xdb\x7f\xd4\xf2\xff\x8f\xff" "\xa8\xe5\xff\x5f\xff\x51\xcb\xff\x7f\xfe\xa3\x96\xff\xff\xfd\x47\x2d" "\xff\x83\xfc\x47\x2d\xff\x83\xfd\x47\x2d\xff\x43\xfc\x47\x2d\xff\x43" "\xfd\x47\x2d\xff\xc3\xfc\x47\x2d\xff\xc3\xfd\x47\x2d\xff\x23\xfc\x47" "\x2d\xff\x23\xfd\x47\x2d\xff\xa3\xfc\x47\x2d\xff\xa3\xfd\x47\x2d\xff" "\x63\xfc\x47\x2d\xff\x63\xfd\x47\x2d\xff\xe3\xfc\x47\x2d\xff\xe3\xfd" "\x47\x2d\xff\x13\xfc\x47\x2d\xff\x13\xfd\x47\x25\xff\x03\x53\xf8\x8f" "\x5a\xfe\xa7\xf4\x1f\xb5\xfc\x4f\xe5\x3f\x6a\xf9\x9f\xda\x7f\xd4\xf2" "\x3f\x8d\xff\xa8\xe5\x7f\x5a\xff\x51\xcb\xff\x74\xfe\xa3\x96\xff\xe9" "\xfd\x47\x2d\xff\x33\xf8\x8f\x5a\xfe\x67\xf4\x1f\xb5\xfc\xcf\xe4\x3f" "\x6a\xf9\x9f\xd9\x7f\xd4\xf2\x3f\x8b\xff\xa8\xe5\x7f\x56\xff\x51\xcb" "\xff\x6c\xfe\xa3\x96\xff\xd9\xfd\x47\x2d\xff\x03\xfe\xa3\x96\xff\x39" "\xfc\x47\x2d\xff\x73\xfa\x8f\x5a\xfe\xe7\xf2\x1f\xb5\xfc\xcf\xed\x3f" "\x6a\xf9\x9f\xc7\x7f\xd4\xf2\x3f\xaf\xff\xa8\xe5\x7f\x3e\xff\x51\xcb" "\xff\xfc\xfe\xa3\x96\xff\x05\xfc\x47\x2d\xff\x0b\xfa\x8f\x5a\xfe\x17" "\xf2\x1f\xb5\xfc\x2f\xec\x3f\x6a\xf9\x5f\xc4\x7f\xd4\xf2\xbf\xa8\xff" "\xa8\xe5\x7f\x31\xff\x51\xcb\xff\xe2\xfe\xa3\x96\xff\x25\xfc\x47\x2d" "\xff\x4b\xfa\x8f\x5a\xfe\x97\xf2\x1f\xb5\xfc\x2f\xed\x3f\x6a\xf9\x5f" "\xc6\x7f\xd4\xf2\xbf\xac\xff\xa8\xe5\x7f\x39\xff\x51\xcb\xff\xf2\xfe" "\xa3\x96\xff\x15\xfc\x47\x2d\xff\x2b\xfa\x8f\x5a\xfe\x57\xf2\x1f\xb5" "\xfc\xaf\xec\x3f\x6a\xf9\x5f\xc5\x7f\xd4\xf2\xbf\xaa\xff\xa8\xe5\x7f" "\x35\xff\x51\xcb\xff\xea\xfe\xa3\x96\xff\x35\xfc\x47\x2d\xff\x6b\xfa" "\x8f\x5a\xfe\xd7\xf2\x1f\xb5\xfc\xaf\xed\x3f\x6a\xf9\x5f\xc7\x7f\xd4" "\xf2\xbf\xae\xff\xa8\xe5\x7f\x3d\xff\x51\xcb\xff\xfa\xfe\xa3\x96\xff" "\x0d\xfc\x47\x2d\xff\x1b\xfa\x8f\x5a\xfe\x37\xf2\x1f\xb5\xfc\x6f\xec" "\x3f\x6a\xf9\xdf\xc4\x7f\xd4\xf2\xbf\xa9\xff\xa8\xe5\x7f\x33\xff\xd1" "\x64\xf7\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x93\xd8\xb9\xff\x18\xaf\xeb\x02\x8e\xe3\x9f" "\x3b\xb8\x3b\x84\x02\x11\x23\xa4\xde\x40\x50\x81\xe0\x71\x72\xc7\x2f" "\x41\x45\x2b\x9a\x67\xe3\xac\xb0\xf5\x6b\x12\x4c\x4e\x81\x8e\x54\xbc" "\x19\x20\x0b\x4a\x2d\x6a\x6e\xe9\x64\xcb\x5a\xa4\xfe\x41\x5a\xab\x35" "\x36\x63\xad\x26\x65\xb6\xc5\x6c\x45\x4d\xfb\xe1\xdc\x82\x92\x7e\x8c" "\x75\x6a\x45\xb6\xc8\x3a\xf7\x85\xef\xf7\xbc\xfb\x7a\xdc\xfc\xbe\xcf" "\xf7\x9b\x3f\x78\x3c\xfe\xb8\xfb\x7e\x3e\xc7\xeb\x73\xc0\xf6\xbc\xcf" "\xe7\x3b\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xf0\xda\x69\xef\xb8\xbc\x67\x44\xdd\x80\x53\x23\xfa\x1f\x84\x9f\x77" "\x9e\xf8\x3c\xff\xdf\x1f\x5a\xb7\x67\xcf\xbe\xf1\x95\xcf\xe5\x2f\xbf" "\x67\x90\x4b\xd6\xf7\x3f\xe8\xed\xed\xed\xdd\x36\xe1\x17\xb7\x94\x0f" "\x9b\x8a\xa2\x28\x7d\xb7\xcb\xca\xc7\xa3\xaa\xc7\xa5\xeb\x6f\xdf\x3f" "\xf5\xec\xf2\x77\x2f\xee\xbb\xfb\xb6\xd9\x4b\xb7\x2c\x7f\x6c\xf7\xc6" "\x9e\x31\x3f\x5d\xb0\xfd\x48\xc3\x89\xb3\x0d\xc5\xea\xeb\xd6\x77\x75" "\x5e\x58\x5f\x14\x61\x44\x43\xb1\xb9\x74\x30\xaf\xae\x28\x42\x63\x43" "\x71\x57\xe9\xa0\xb5\x74\xd0\xd4\x50\x3c\x54\x3a\x68\x3b\x71\x70\x56" "\xf1\xa3\xd2\xc1\xdc\x6b\x6f\xe8\x5a\x5b\x3a\xf1\x8a\x6f\x0d\x67\x9c" "\xf6\x8e\x1d\xc5\x88\x01\xc5\x16\x03\x7e\x1a\xf4\xef\x7f\xfb\xfe\x4b" "\xdf\x5b\xf9\x3c\xc4\x25\x2b\x57\x1b\x59\x94\xfb\xbf\xe2\xfb\x4f\x34" "\x55\x7d\xad\xe2\x14\xfd\x57\xae\x1f\xea\xaa\xfb\xaf\xf9\x0f\x08\x9c" "\x52\x6d\xfd\xaf\x78\xbe\xf2\x79\x88\x4b\xbe\xe2\xfe\xdf\xfa\xb7\x8f" "\x1d\x1e\xec\x6b\xa7\xee\xbf\x72\xfd\x50\xaf\x7f\x48\x67\x90\xe7\xff" "\x01\x8d\x56\x3f\xf7\x57\x3d\xff\x4f\x1b\xe4\x92\x7d\xfb\xe6\x96\xc7" "\x47\x95\xfa\x5f\xb2\xf8\xbe\x0d\xe5\x53\x23\x5f\xcd\xf3\xff\xcb\xd7" "\x0f\x23\xaa\xfb\xaf\x1f\xf0\xfc\x5f\x7a\x8e\x1f\x59\x79\xfe\x6f\x2a" "\x8a\xd0\x30\xcc\xbf\x0e\x38\xa3\xb4\x77\x7c\xba\x67\xa8\xfb\xff\xd0" "\xfd\x8f\x9c\x5c\xb5\xa9\xeb\xdf\xff\xd6\x63\x87\x56\x95\xfa\x6f\xde" "\xf0\xc9\xe7\xca\xa7\x1a\x6a\xec\x7f\xe4\x10\xf7\xff\xba\x27\xab\x7e" "\xaf\x40\x6d\xda\x3b\x1e\xe8\xad\xba\xff\xd7\xd0\x7f\x31\x73\x90\x4b" "\xf6\xf5\xdf\x73\xeb\xd3\xc7\x4b\xfd\xff\x69\xff\x33\xe7\xf7\xfb\x5a" "\x2d\xfd\x37\x54\xf7\xdf\xd2\xbd\xf1\xc6\x96\x9b\xb7\x6c\x6d\x5e\xbf" "\x71\xcd\xf5\x9d\xd7\x77\x7e\xa2\x75\xfe\xc2\x45\x0b\x5b\x17\x5f\xd4" "\xb6\xa0\xe5\xc4\x23\xc1\xc9\x8f\xc3\xfc\x5b\x81\x33\xc3\xf0\xee\xff" "\xc5\xe8\xaa\x4d\x5d\x51\x74\xf6\xed\x2f\x78\x6e\xe5\xce\x52\xff\xd3" "\xd7\xaf\xfc\x6c\xf9\xd4\xa8\x1a\xfb\x6f\x1c\xf2\xfe\x3f\xcd\xfd\x1f" "\x06\x35\xbd\xbe\x68\x6c\x2c\x36\xaf\xe9\xee\xde\x34\xef\xe4\xc7\xca" "\x61\xeb\xc9\x8f\x27\x7f\xd9\x20\xfd\xd7\xf0\xfe\x7f\xc6\xac\xf2\x2f" "\xab\xbc\xef\xae\x2b\x8a\x49\x7d\xfb\x39\x37\x2e\x58\x5d\xea\xff\xc1" "\x63\x9f\x7b\xbc\x7c\xaa\xb1\xc6\xfe\x9b\x86\xec\xff\xb2\xc2\xfb\x7d" "\x18\x86\x61\xde\xff\xd7\x56\x6d\x06\xf4\x7f\x74\xc5\xd8\x67\x4b\xfd" "\x7f\xe9\xe1\x59\xdd\xe5\x53\xb5\xbe\xff\x1f\x35\x64\xff\x87\xdd\xff" "\x61\x38\xda\x3b\xaa\xfe\x85\x9f\xd7\x58\xa9\xff\x4b\xc6\xee\xfe\x7b" "\xdc\x3a\x9c\xe5\x9f\xff\x41\x3a\x39\xfa\x1f\x7f\xfc\xce\xab\xe2\xd6" "\x61\xb4\xfe\x21\x9d\x1c\xfd\x7f\xe4\xf6\x99\x4f\xc5\xad\xc3\x18\xfd" "\x43\x3a\x39\xfa\xff\xde\xda\x77\x2e\x8c\x5b\x87\xd7\xe9\x1f\xd2\xc9" "\xd1\xff\x3f\x27\xff\xf5\xfe\xb8\x75\x78\xbd\xfe\x21\x9d\x1c\xfd\x1f" "\x7a\xf6\x3f\x53\xe2\xd6\x61\xac\xfe\x21\x9d\x1c\xfd\xef\xba\xeb\xfd" "\x3b\xe3\xd6\x61\x9c\xfe\x21\x9d\x1c\xfd\xcf\xd8\x76\xe4\x8e\xb8\x75" "\x38\x5b\xff\x90\x4e\x8e\xfe\xd7\xd5\x5f\x35\x21\x6e\x1d\xc6\xeb\x1f" "\xd2\xc9\xd1\xff\xbb\x5e\x58\xf5\xed\xb8\x75\x38\x47\xff\x90\x4e\x8e" "\xfe\xc7\xed\xfc\xd7\xd2\xb8\x75\x98\xa0\x7f\x48\x27\x47\xff\x3d\xeb" "\xee\x7e\x32\x6e\x1d\xce\xd5\x3f\xa4\x93\xa3\xff\xaf\x4f\x5c\xf2\x8e" "\xb8\x75\x78\x83\xfe\x21\x9d\x1c\xfd\x7f\xe1\x8f\x73\x5e\x8c\x5b\x87" "\x89\xfa\x87\x74\x72\xf4\xff\xe8\x57\x77\x6c\x88\x5b\x87\x37\xea\x1f" "\xd2\xc9\xd1\xff\x0f\x3f\x30\x76\xb0\xff\x4f\xd8\xab\x10\x26\xe9\x1f" "\xd2\xc9\xd1\xff\xb1\x39\x7b\xf6\xc6\xad\xc3\x79\xfa\x87\x74\x72\xf4" "\xff\xbb\x43\x0f\x8f\x8b\x5b\x87\xc9\xfa\x87\x74\x72\xf4\x7f\xcf\x03" "\x53\xbf\x1c\xb7\x0e\x6f\xd2\x3f\xa4\x93\xa3\xff\x9b\x2e\xbf\xf5\x96" "\xb8\x75\x78\xb3\xfe\x21\x9d\x1c\xfd\x2f\x59\xf6\xcb\xc3\x71\xeb\x10" "\xf4\x0f\xe9\xe4\xe8\x7f\xe2\xcf\x1e\x5d\x15\xb7\x0e\x53\xf4\x0f\xe9" "\xe4\xe8\xff\x9a\xef\x6e\x38\x10\xb7\x0e\x53\xf5\x0f\xe9\xe4\xe8\x7f" "\xf3\x39\xdf\x5a\x1e\xb7\x0e\xd3\xf4\x0f\xe9\xe4\xe8\xbf\xad\xab\xe9" "\x89\xb8\x75\x78\x8b\xfe\x21\x9d\x1c\xfd\x4f\xbd\x77\xe2\xc6\xb8\x75" "\x98\xae\x7f\x48\x27\x47\xff\x57\xff\xf9\x91\xff\xc6\xad\xc3\x0c\xfd" "\x43\x3a\x39\xfa\xdf\xd7\xf8\xd4\xb9\x71\xeb\xf0\x56\xfd\x43\x3a\x39" "\xfa\xff\xdf\xe6\x4d\x9f\x89\x5b\x87\xb7\xe9\x1f\xd2\xc9\xd1\xff\xaf" "\xee\xbc\xf6\xe2\xb8\x75\x78\xbb\xfe\x21\x9d\x1c\xfd\x7f\xe5\x1f\x07" "\xbe\x19\xb7\x0e\x33\xf5\x0f\xe9\xe4\xe8\xff\xc8\xd2\x77\xff\x25\x6e" "\x1d\x66\xe9\x1f\xd2\xc9\xd1\xff\x77\x96\xf7\xdc\x14\xb7\x0e\xe7\xeb" "\x1f\xd2\xc9\xd1\xff\x6d\x7b\x5f\x3c\x18\xb7\x0e\xb3\xf5\x0f\xe9\xe4" "\xe8\xff\xc0\xc1\x0f\x7e\x38\x6e\x1d\xe6\xe8\x1f\xd2\xc9\xd1\xff\xec" "\x96\xb6\x7d\x71\xeb\x70\x81\xfe\x21\x9d\x1c\xfd\xaf\x79\xdf\xbd\xd3" "\xe2\xd6\xa1\x59\xff\x90\x4e\x8e\xfe\x57\xec\xf9\xfc\xd7\xe2\xd6\x61" "\xae\xfe\x21\x9d\x1c\xfd\x37\x3e\x3d\x7d\x54\xdc\x3a\xb4\xe8\x1f\xd2" "\xc9\xd1\xff\xde\x45\xbb\x1a\xe2\xd6\xe1\x42\xfd\x43\x3a\x39\xfa\x3f" "\xde\xbe\xec\x9e\xb8\x75\x98\xa7\x7f\x48\x27\x47\xff\xbf\x79\x64\x6e" "\x73\xdc\x3a\xb4\xea\x1f\xd2\xc9\xd1\xff\xee\xc7\xee\xf8\x41\xdc\x3a" "\xb4\xe9\x1f\xd2\xc9\xd1\xff\xf6\x19\x7f\xb8\x3a\x6e\x1d\xe6\xeb\x1f" "\xd2\xc9\xd1\xff\xfc\x6b\xae\xfc\x71\xdc\x3a\x2c\xd0\x3f\xa4\x93\xa3" "\xff\x49\xdf\xf8\xe8\xb6\xb8\x75\x58\xa8\x7f\x48\x27\x47\xff\x2b\x7f" "\xfb\xfc\xd1\xb8\x75\x58\xa4\x7f\x48\x27\x47\xff\xcd\x53\x3e\xf5\x60" "\xdc\x3a\x2c\xd6\x3f\xa4\x93\xa3\xff\xeb\x56\xff\x7a\x5e\xdc\x3a\x5c" "\xa4\x7f\x48\x27\x47\xff\x57\xee\xfa\xc9\x17\xe3\xd6\x61\x89\xfe\x21" "\x9d\x1c\xfd\xd7\x1d\xbd\xe1\xbc\xb8\x75\x58\xaa\x7f\x48\x27\x47\xff" "\xcf\x8c\x1e\xf3\x42\xdc\x3a\x5c\xac\x7f\x48\x27\x47\xff\x0f\x75\xdf" "\xbf\x3a\x6e\x1d\x2e\xd1\x3f\xa4\x93\xa3\xff\xdb\x77\xec\xfd\x7d\xdc" "\x3a\x5c\xaa\x7f\x48\x27\x47\xff\x07\xff\x3f\xf9\x8a\xb8\x75\x58\xa6" "\x7f\x48\xe7\xe6\x2d\x5b\x3f\xbe\xa6\xab\xab\x73\x93\x17\x5e\x78\xe1" "\x45\xdf\x8b\xd3\xfd\x93\x09\x48\xed\xe5\xe8\x4f\xf7\xef\x04\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38\x95\x1c\xff\x39\xd1\xe9\xfe" "\x33\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x12\x3b\x70\x20\x00\x00\x00\x00" "\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\xd8\x81\x03\x12\x00\x00\x00\x00\x41\xff\x5f\xb7\x23" "\x50\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x78\x2a\x00\x00\xff\xff\x5c\x42\x20\x43", 38567); syz_mount_image(/*fs=*/0x200000009680, /*dir=*/0x2000000096c0, /*flags=*/0, /*opts=*/0x2000000000c0, /*chdir=*/1, /*size=*/0x96a4, /*img=*/0x200000012d80); break; case 1: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x441 (4 bytes) // mode: open_mode = 0x14a (2 bytes) // ] // returns fd memcpy((void*)0x200000000080, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000080ul, /*flags=O_CREAT|O_APPEND|O_WRONLY*/ 0x441, /*mode=S_IWOTH|S_IXGRP|S_IXUSR|S_IRUSR*/ 0x14a); if (res != -1) r[0] = res; break; case 2: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x183341 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000080, "./file1\000", 8); syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000080ul, /*flags=O_TRUNC|O_SYNC|O_NOCTTY|O_CREAT|O_CLOEXEC|FASYNC|0x1*/ 0x183341, /*mode=*/0); break; case 3: // ioctl$FS_IOC_SETFSLABEL arguments: [ // fd: fd (resource) // cmd: const = 0x41009432 (4 bytes) // arg: ptr[in, buffer] { // buffer: {13 44 35 78 ef 2f e3 37 b6 43 e9 1c 00 62 15 10 13 f2 7c 57 // bf ee ef d6 1b 67 aa 48 35 56 f7 d3 d5 23 3c 1e d2 31 7b 0a 5a 71 f0 // 24 b9 e3 af fc e3 86 c6 99 ec 39 aa c2 37 86 c7 23 5a 39 1d 8a aa 1f // 81 1c 38 33 f1 ad 7b b3 af 99 40 a8 b6 97 82 62 23 30 63 71 be db 30 // 32 71 5d f9 84 5a b0 4c 6b 1d 93 d4 5d af 9e 67 05 9e c9 aa 56 92 23 // 81 ae 41 b8 13 3a 4e 44 6b 4a 5e 02 f5 51 82 3f 13 e6 64 7c c9 2e ee // f7 a8 2c ff 69 6c 9f 18 40 f5 85 73 93 dc f7 f4 5e 8b a4 d3 7d ce ca // 49 33 0f e3 15 b6 a0 03 86 1c ec 01 82 45 ad f5 ab c1 7f 9e 1d 1d ac // d7 db 3d c7 15 ed 21 0e 64 37 c4 8a 97 fc 67 28 0f 31 9f da 25 4c 41 // a3 3e 27 3d e3 a0 bb 42 66 3c 46 2e b1 a9 89 d0 2a 91 3d e8 4f aa 83 // f0 ca 7b ed 3e 88 c0 40 a7 67 d1 d0 a6 f0 55 9d 9f ce 60 83 e6 ca 62 // 11 a7 02 b8 03 05} (length 0x100) // } // ] memcpy((void*)0x200000000180, "\x13\x44\x35\x78\xef\x2f\xe3\x37\xb6\x43\xe9\x1c\x00\x62\x15\x10" "\x13\xf2\x7c\x57\xbf\xee\xef\xd6\x1b\x67\xaa\x48\x35\x56\xf7\xd3" "\xd5\x23\x3c\x1e\xd2\x31\x7b\x0a\x5a\x71\xf0\x24\xb9\xe3\xaf\xfc" "\xe3\x86\xc6\x99\xec\x39\xaa\xc2\x37\x86\xc7\x23\x5a\x39\x1d\x8a" "\xaa\x1f\x81\x1c\x38\x33\xf1\xad\x7b\xb3\xaf\x99\x40\xa8\xb6\x97" "\x82\x62\x23\x30\x63\x71\xbe\xdb\x30\x32\x71\x5d\xf9\x84\x5a\xb0" "\x4c\x6b\x1d\x93\xd4\x5d\xaf\x9e\x67\x05\x9e\xc9\xaa\x56\x92\x23" "\x81\xae\x41\xb8\x13\x3a\x4e\x44\x6b\x4a\x5e\x02\xf5\x51\x82\x3f" "\x13\xe6\x64\x7c\xc9\x2e\xee\xf7\xa8\x2c\xff\x69\x6c\x9f\x18\x40" "\xf5\x85\x73\x93\xdc\xf7\xf4\x5e\x8b\xa4\xd3\x7d\xce\xca\x49\x33" "\x0f\xe3\x15\xb6\xa0\x03\x86\x1c\xec\x01\x82\x45\xad\xf5\xab\xc1" "\x7f\x9e\x1d\x1d\xac\xd7\xdb\x3d\xc7\x15\xed\x21\x0e\x64\x37\xc4" "\x8a\x97\xfc\x67\x28\x0f\x31\x9f\xda\x25\x4c\x41\xa3\x3e\x27\x3d" "\xe3\xa0\xbb\x42\x66\x3c\x46\x2e\xb1\xa9\x89\xd0\x2a\x91\x3d\xe8" "\x4f\xaa\x83\xf0\xca\x7b\xed\x3e\x88\xc0\x40\xa7\x67\xd1\xd0\xa6" "\xf0\x55\x9d\x9f\xce\x60\x83\xe6\xca\x62\x11\xa7\x02\xb8\x03\x05", 256); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x41009432, /*arg=*/0x200000000180ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; use_temporary_dir(); do_sandbox_none(); return 0; }