// https://syzkaller.appspot.com/bug?id=ae8b4ef43577baca36221858209f7df824fe372a // 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 #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 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 initialize_tun(void) { tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 200; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { exit(1); } char sysctl[64]; sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/accept_dad", TUN_IFACE); write_file(sysctl, "0"); sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/router_solicitations", TUN_IFACE); write_file(sysctl, "0"); int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); netlink_add_addr4(&nlmsg, sock, TUN_IFACE, LOCAL_IPV4); netlink_add_addr6(&nlmsg, sock, TUN_IFACE, LOCAL_IPV6); uint64_t macaddr = REMOTE_MAC; struct in_addr in_addr; inet_pton(AF_INET, REMOTE_IPV4, &in_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in_addr, sizeof(in_addr), &macaddr, ETH_ALEN); struct in6_addr in6_addr; inet_pton(AF_INET6, REMOTE_IPV6, &in6_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in6_addr, sizeof(in6_addr), &macaddr, ETH_ALEN); macaddr = LOCAL_MAC; netlink_device_change(&nlmsg, sock, TUN_IFACE, true, 0, &macaddr, ETH_ALEN, NULL); close(sock); } static int runcmdline(char* cmdline) { int ret = system(cmdline); if (ret) { } return ret; } 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)) { } if (symlink("/dev/binderfs", "./binderfs")) { } } 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); } 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(); } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } #define SWAP_FILE "./swap-file" #define SWAP_FILE_SIZE (128 * 1000 * 1000) static const char* setup_swap() { swapoff(SWAP_FILE); unlink(SWAP_FILE); int fd = open(SWAP_FILE, O_CREAT | O_WRONLY | O_CLOEXEC, 0600); if (fd == -1) return "swap file open failed"; fallocate(fd, FALLOC_FL_ZERO_RANGE, 0, SWAP_FILE_SIZE); close(fd); char cmdline[64]; sprintf(cmdline, "mkswap %s", SWAP_FILE); if (runcmdline(cmdline)) return "mkswap failed"; if (swapon(SWAP_FILE, SWAP_FLAG_PREFER) == 1) return "swapon failed"; return NULL; } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); close_fds(); 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; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x4000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // } // } // chdir: int8 = 0x0 (1 bytes) // size: len = 0x496e (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x496e) // } // ] // returns fd_dir memcpy((void*)0x200000000040, "bcachefs\000", 9); memcpy((void*)0x200000004940, "./file0\000", 8); *(uint8_t*)0x200000000000 = -1; memcpy( (void*)0x200000004980, "\x78\x9c\xec\xdd\x0b\x98\x1c\x65\x81\x2f\xfc\xb7\xba\x7b\xee\xe9\x64\x12" "\x43\x08\xa0\x71\x48\x14\x44\x6e\x09\x37\x91\x04\x77\x02\xe1\xee\x42\x36" "\xa2\xcb\xc9\x92\x13\x30\x93\xc8\x25\x12\x0c\x61\x51\x58\xdd\x80\xeb\x8a" "\x70\x22\x7c\xe8\xf2\xec\xca\xd9\xc3\x91\xf0\xc8\x61\xcf\xc7\x07\xc8\xae" "\x7a\xcc\x03\x8a\x02\x82\xae\x02\xe2\xe2\xe5\x08\xc2\x59\xd1\x3d\x1b\xb9" "\xb8\x88\x80\x06\xe6\x7b\x66\xa6\x6b\xd2\x5d\xd3\x35\xdd\xd3\x53\x15\x40" "\x7e\x3f\x65\x2a\x55\xfd\xd6\xff\x7d\xbb\xba\xa6\xab\xde\x77\xba\xaa\x03" "\x00\x00\x00\xaf\x0b\xf7\x7c\xe2\xbc\xdf\xae\xf9\xde\x95\x37\xfe\xf8\xac" "\xd3\xee\xdf\x78\xf8\xf3\x4f\x87\x9e\xe2\xf0\xf2\xce\xca\xe3\x9d\xf1\x3f" "\x0e\x7d\xc5\x9a\xc8\x0e\x54\x2e\x95\x4b\xa1\xce\x7e\xd1\xb5\xe8\xa2\x9f" "\xcf\x79\xe7\x71\xf3\x36\x3e\xfe\xe0\xa7\x7b\xb6\xfd\xe2\x13\x5f\xbd\xe4" "\xeb\x07\xf7\xff\xd5\x89\x47\xdc\x7c\xee\xd3\x87\x7f\xe5\xe0\xb3\xff\xbc" "\x51\x6e\xbc\x1b\xed\xbc\x7d\x3e\xfa\x7e\x14\xc2\xba\xa7\x67\x5e\x73\xcb" "\xa6\xf7\xce\x1e\x5a\x16\x85\x10\x8a\x51\x61\x63\x08\xd3\x2f\x2e\xdc\x39" "\x3d\x4a\x44\xf4\xfd\x2e\x84\x30\x50\x29\x57\x2e\xcd\x19\xfe\xf9\xd8\x9d" "\x23\x0f\x5e\xf2\xd5\x8f\x9f\x31\x34\xdd\x78\x79\x47\xcd\x4a\xd3\x12\x21" "\xf6\xf7\xd7\xb7\x99\x21\x84\x9e\x10\xc2\x95\x95\xf9\x4b\x6e\xfd\xd6\xa2" "\xff\x39\xfb\x84\x7d\x6e\x7e\xf1\xcb\xa7\x7c\x69\xd3\x8d\x57\x84\x42\x5c" "\xb2\x2f\x74\x54\xed\x57\xa1\x7f\xea\x69\x59\xb6\x63\xe7\xaa\x7f\x6f\xfb" "\xcb\x10\x86\xf6\xc2\xd9\x95\xfd\x30\x9a\x44\xbb\x96\x86\x10\xba\xab\xe6" "\x1b\xed\xc6\xcd\xee\xe6\xfb\x56\xa6\x85\xc4\xfc\x21\x89\x72\x3b\x25\xe6" "\x0b\x89\xf9\x5d\x2b\xd3\xc5\x95\xe9\xcc\xca\x74\x76\x65\x3a\xa5\x32\x4d" "\xfe\xf2\xc7\x39\xbb\x27\xa6\xc9\xdf\xef\xac\x9c\xfd\x52\x73\xe5\xe2\x76" "\x16\x33\xaa\x77\xe7\xc4\x7c\x5b\x46\xb9\xb1\xe4\x76\x4d\x9a\x53\x99\xee" "\x1b\xd5\x6f\x4f\xa3\xbc\xa8\xf2\x1a\x0e\xfd\x57\x6e\xb5\x91\x4d\x18\xda" "\xde\x5d\x21\x84\x8b\x2b\xf3\xf1\xdb\xf6\xd0\xfe\x30\x75\xe8\xb1\x52\x5f" "\x62\x8d\x29\xe1\xdd\xe1\x8f\xc3\x89\x61\x49\x38\x2a\x1c\x1d\x8e\x09\xc7" "\x86\xe3\xc3\x71\xe1\x84\xb0\x34\x74\x8f\x29\x5b\x4e\x29\x3b\x3d\x5a\x1a" "\xa6\x8c\x29\x1d\x85\xde\xa8\x58\x69\x53\x31\x0a\x85\x28\x94\x46\x37\xcb" "\x92\x28\x84\xf6\xaa\xb2\xd3\x46\xd7\x29\xd4\xbc\xb6\x43\xfb\x77\x47\x9d" "\xe7\x19\x2f\x8f\x03\x37\x56\xfe\xd1\x53\x59\xd6\x13\xcd\x18\xb3\xce\x60" "\x1d\xf1\x63\x9f\x5d\xf7\x42\xff\x15\xb7\x76\x7f\x6b\x76\xbd\x8d\x3a\x94" "\x79\x62\x54\xc9\x8f\x5a\xca\x3f\xa6\xeb\x8a\x27\xfb\x2e\x7b\xc7\x8a\xde" "\xb4\xfc\x39\x71\x7e\xa1\xa5\xfc\xae\x3b\x7f\xb4\xf8\x93\x17\x86\xdb\x53" "\xf3\x8f\x8d\xf3\x8b\x2d\xe5\x3f\xbe\xc7\x1d\xd3\xde\xb3\xeb\xe0\x77\x52" "\xf3\x4f\x8e\xf3\x4b\x51\x2b\xf9\xfb\x7d\xee\xa5\x3d\x4f\xfc\xfe\x5e\x87" "\xa5\xe6\x0f\xc4\xf9\x9d\x2d\xb5\xff\xce\x5b\xb6\x2e\xde\x72\xe8\x96\xdd" "\x52\xf3\x17\xc5\xf9\x5d\x2d\xe5\x5f\x76\xe3\xc9\x27\x3d\xf9\x83\xab\x17" "\xa4\xe6\x1f\x12\xe7\x77\xb7\x94\xff\xf0\xac\x7f\xfa\xfd\x6d\x1f\x7c\xec" "\xdb\x9d\x69\xf9\x67\xc4\xf9\x3d\x2d\xe5\xdf\x7e\xd4\x8c\xa5\x97\x3e\xf8" "\xeb\x2d\xa9\xfb\xff\x3e\x71\xfe\x94\x96\xf2\x57\x3e\xb3\xe9\xae\x65\x6d" "\x87\x1f\x9d\xba\x7d\x66\xc5\xf9\xe5\x96\xf2\x1f\xbd\xee\x85\xad\x9b\xcf" "\xee\xba\x28\x35\x7f\x6d\x9c\x3f\xb5\xa5\xfc\x2f\xec\x77\xc3\xfd\x6f\x99" "\x7d\xd3\xe6\xd4\xed\x33\x37\xce\x9f\xd6\x52\xfe\xe6\xcb\xee\x3e\xf2\xa3" "\xcf\x7e\xed\xa1\xd4\xf6\xcf\x8e\xf3\x7b\x5b\xca\x5f\xb1\xe0\x9b\xd7\x9f" "\xfa\xf6\xad\x17\xa4\xee\x3f\xcb\xe3\xfc\x99\x2d\xe5\xdf\x3d\x7d\xdb\x2e" "\xcb\x5e\x1e\xd8\x6b\x4c\xfb\xdf\x5d\x79\x37\x5f\xdf\xe8\x08\x0b\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xaf\x5f\xe5\x52\xb9\x34\x34\xbd\xe7\x13\xe7\xfd\x76\xcd\xf7\xae" "\xbc\xf1\xc7\x67\x9d\x76\xff\xc6\xc3\x9f\x7f\xba\x6b\xd1\x45\x3f\x9f\xf3" "\xce\xe3\xe6\x6d\x7c\xfc\xc1\x4f\xf7\x6c\xfb\xc5\x27\xbe\x7a\xc9\xd7\x0f" "\xee\xff\xab\x13\x8f\xb8\xf9\xdc\xa7\x0f\xff\xca\xc1\x67\xff\x79\xa3\xdc" "\xce\xce\x91\xe9\xce\xf1\x7c\x08\xd1\xf7\xa3\x10\xd6\x3d\x3d\xf3\x9a\x5b" "\x36\xbd\x77\xf6\xd0\xb2\x28\x84\x50\x8c\x0a\x1b\x43\x98\x7e\x71\xe1\xce" "\xe9\x51\x22\xa2\xef\x77\x21\x84\x81\x4a\xb9\x72\x69\xce\xf0\xcf\xc7\xee" "\x1c\x79\xf0\x92\xaf\x7e\xfc\x8c\xa1\xe9\xc6\xcb\x3b\x6a\x56\x9a\x96\x08" "\x49\x3e\xaf\xd0\x53\x8c\xdb\x53\xd3\xce\x70\xe8\x84\x36\x1b\xaf\x11\x33" "\x43\x08\x3d\x21\x84\x2b\x2b\xf3\x97\xdc\xfa\xad\x45\xff\x73\xf6\x09\xfb" "\xdc\xfc\xe2\x97\x4f\xf9\xd2\xa6\x1b\xaf\x08\x85\xb8\x64\x5f\xe8\xa8\xda" "\xaf\x42\xff\xd4\xd3\xb2\x6c\xc7\xce\x55\xff\xde\xf6\x97\x21\x0c\xed\x85" "\xb3\x2b\xfb\x61\x34\x89\x76\x2d\x0d\x21\x74\x57\xcd\x37\xda\x8d\x9b\xdd" "\xcd\xf7\xad\x4c\x0b\x89\xf9\x43\x12\xe5\x76\x4a\xcc\x17\x12\xf3\xbb\x56" "\xa6\x8b\x2b\xd3\x99\x95\xe9\xec\xca\x74\x4a\x65\x9a\xfc\xe5\x8f\x73\x76" "\x4f\x4c\x93\xbf\xdf\x59\x39\xfb\xa5\xe6\xca\xc5\xed\x2c\x66\x54\xef\xce" "\x89\xf9\xb6\x10\x06\x07\x07\xff\x32\xa3\xf4\xb1\xdb\x35\x69\x4e\x65\xba" "\x6f\x54\xbf\x3d\x8d\xf2\xa2\xca\x6b\x38\xf4\x5f\xb9\xd5\x46\x36\x61\x68" "\x7b\x77\x85\x10\x2e\xae\xcc\xc7\x6f\xdb\x43\xfb\xc3\xd4\xa1\xc7\x4a\x7d" "\x89\x35\xa6\x84\x77\x87\x3f\x0e\x27\x86\x25\xe1\xa8\x70\x74\x38\x26\x1c" "\x1b\x8e\x0f\xc7\x85\x13\xc2\xd2\xd0\x3d\xa6\x6c\x39\xa5\xec\xf4\x68\x69" "\x98\x32\xa6\x74\x14\x7a\xa3\x62\xa5\x4d\xc5\x28\x14\xa2\x50\x1a\xdd\x2c" "\x4b\xa2\x10\xda\xab\xca\x4e\x1b\x5d\xa7\x30\xf4\xda\x8e\x1a\xda\xbf\x3b" "\xea\x3c\xcf\x78\x79\x1c\xb8\xb1\xf2\x8f\x9e\xca\xb2\x9e\x68\xc6\x98\x75" "\x06\xeb\x88\x1f\xfb\xec\xba\x17\xfa\xaf\xb8\xb5\xfb\x5b\xb3\xeb\x6d\xd4" "\xa1\xcc\x13\xa3\x4a\x7e\xd4\x52\xfe\x31\x5d\x57\x3c\xd9\x77\xd9\x3b\x56" "\xf4\xa6\xe5\xcf\x89\xf3\x0b\x2d\xe5\x77\xdd\xf9\xa3\xc5\x9f\xbc\x30\xdc" "\x9e\x9a\x7f\x6c\x9c\x5f\x6c\x29\xff\xf1\x3d\xee\x98\xf6\x9e\x5d\x07\xbf" "\x93\x9a\x7f\x72\x9c\x5f\x8a\x5a\xc9\xdf\xef\x73\x2f\xed\x79\xe2\xf7\xf7" "\x3a\x2c\x35\x7f\x20\xce\xef\x6c\xa9\xfd\x77\xde\xb2\x75\xf1\x96\x43\xb7" "\xec\x96\x9a\xbf\x28\xce\xef\x6a\x29\xff\xb2\x1b\x4f\x3e\xe9\xc9\x1f\x5c" "\xbd\x20\x35\xff\x90\x38\xbf\xbb\xa5\xfc\x87\x67\xfd\xd3\xef\x6f\xfb\xe0" "\x63\xdf\xee\x4c\xcb\x3f\x23\xce\xef\x69\x29\xff\xf6\xa3\x66\x2c\xbd\xf4" "\xc1\x5f\x6f\x49\xdd\xff\xf7\x89\xf3\xa7\xb4\x94\xbf\xf2\x99\x4d\x77\x2d" "\x6b\x3b\xfc\xe8\xd4\xed\x33\x2b\xce\x2f\xb7\x94\xff\xe8\x75\x2f\x6c\xdd" "\x7c\x76\xd7\x45\xa9\xf9\x6b\xe3\xfc\xa9\x2d\xe5\x7f\x61\xbf\x1b\xee\x7f" "\xcb\xec\x9b\x36\xa7\x6e\x9f\xb9\x71\xfe\xb4\x96\xf2\x37\x5f\x76\xf7\x91" "\x1f\x7d\xf6\x6b\x0f\xa5\xb6\x7f\xf6\x70\x7e\xd4\x13\x7a\x5b\xca\x5f\xb1" "\xe0\x9b\xd7\x9f\xfa\xf6\xad\x17\xa4\xee\x3f\xcb\xe3\xf6\xcf\x6c\x29\xff" "\xee\xe9\xdb\x76\x59\xf6\xf2\xc0\x5e\xa9\xed\x5f\xdf\xe8\x08\x0b\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xaf\x5e\x0b\xd7" "\xee\x72\xcc\xcf\xa6\xec\xd6\xd1\x55\x99\x2f\x97\x46\xa6\x77\x16\x46\xa6" "\x6d\x95\xe5\x43\x8b\x87\xca\xac\x5c\xf9\xfe\x55\x67\x1c\xb0\x72\xd5\xfa" "\xd5\xa7\x6f\x58\x5d\x27\xaf\x2d\x44\xa1\x7b\x68\x1a\x8d\x7d\x6c\x70\x70" "\x70\xb0\xbd\xb7\x76\xd9\x8c\x30\x52\x70\x46\xf4\xa6\xa6\xca\xc7\xed\xec" "\xfe\xc6\xda\x55\x1b\xcf\xba\xe7\xea\x10\xe6\xef\xf4\xd0\x9c\xce\xd4\xe7" "\x77\xf3\xed\x4b\x8e\x98\x5f\xe7\x67\x42\xd4\x3f\xb8\xe5\xa0\xbd\xcf\xbd" "\x76\xc9\x55\x0b\x46\x16\x4c\xaf\x3c\x8f\xe9\x29\xed\x0a\x89\x76\xc5\x2d" "\xd8\xf7\xa4\x6d\xbd\x7f\x73\xdf\x39\x0f\x87\x30\x7f\xd6\x43\x73\x4a\xa9" "\xed\xda\xff\xef\x36\x1f\x56\xdb\xa2\x91\x25\x23\x5b\xba\x4a\x61\x7b\x7b" "\xc2\x04\xda\xd3\x95\x73\x7b\xda\x42\x61\xdc\xd7\x79\x74\x6b\x56\xda\xd5" "\x51\x59\xb1\x23\xea\x6e\xaa\x7c\xfc\xba\x77\xae\x39\x73\xed\xea\x03\x42" "\x68\x0f\x33\x47\x96\x47\x73\x87\xf7\xc9\xae\xd4\x67\x32\x22\x6e\x56\xbc" "\xdf\xbe\x7f\xc3\xfa\xd5\xab\x57\x9e\x7f\xee\xc0\xe9\x1b\x56\xaf\x3c\x67" "\xdd\xc0\xea\xf3\x56\x5e\xb0\xfe\xcc\x0d\x1b\x56\x9f\x13\x3f\x9f\x52\xea" "\xf3\x19\x72\x53\x62\xbe\x5c\xd9\x2e\xe5\x68\xb7\xa6\xca\xc7\xed\x9d\x37" "\xfc\xb3\x18\xfa\x12\xed\x0c\x29\xf5\xc6\xda\x42\xcf\x84\xda\x37\x54\x7e" "\x78\x1a\xed\x52\xb3\xbc\x30\x4e\xf9\xee\x3a\xe5\x77\x1a\xae\x6f\xec\x7e" "\x93\x96\x3f\xa3\xd2\xbe\xaf\x27\xda\xd9\x13\x7a\x87\x9f\x62\x4f\x34\x63" "\x4c\xd6\x60\x1d\xf1\x63\x2b\x16\x7c\xf3\xfa\x53\xdf\xbe\xf5\x82\xb4\xdf" "\xf0\x68\xf9\x48\x45\x5d\xa1\x3c\x32\x8d\xde\x58\xbf\xe0\xc6\xf7\xd5\xcc" "\xf6\x46\xc5\xe1\x69\x5f\x4a\xfd\xd5\xfb\xdb\xfa\xc4\xfe\x56\x28\x46\x63" "\x5e\x85\xf8\xf5\xac\x5e\xef\x23\x89\xf5\x92\xef\x65\xd5\xeb\x75\x56\xd6" "\xeb\x8c\xe6\x86\x8d\x89\xf5\x8a\xa1\x38\xf6\x79\x27\xd6\x0f\x75\x72\x3e" "\x35\x26\x67\xac\xe4\xf6\x8e\x25\xde\xef\xd7\x9e\x79\xce\xd9\x75\xd6\x9e" "\xf8\xfb\x64\xde\xef\x4b\xaf\xb6\xf7\xc9\x19\x95\xed\xf3\x6a\x3b\xbe\xbd" "\x72\xc7\xdd\x42\xa2\x5d\xc7\xdf\xba\xe9\xef\xb7\xfe\xed\xb2\xa3\x46\x16" "\x34\x3a\xae\x8c\x96\x6e\xf2\xb8\x92\x2c\x5f\x73\x5c\x39\x30\x9b\xf3\x9a" "\x8e\x3a\xe5\x1b\x6d\xdf\x8e\x94\xed\x7b\xf2\x87\x3f\xf3\xb3\x81\x2f\xce" "\xdd\x3b\xbb\xd7\xfd\x81\xe7\xd6\xdc\x7d\xd5\xd2\xbb\xa6\x8f\x2c\xf0\xfb" "\x3a\xb9\xf3\x9a\xd1\xad\x19\xef\x47\x95\x15\x3b\x53\xf6\xbf\x64\xf9\x8e" "\xea\xfd\x6f\xbf\x55\xeb\xd6\x0e\x8c\xcc\x57\x1f\x37\xfa\xa2\x16\xce\x6f" "\x86\xf6\xde\xa1\x33\x9a\xd5\x2b\xcf\x1c\x3a\xbd\x49\x96\x6f\xf4\x3e\x54" "\x4a\x39\x9f\xbd\x6e\x41\xdb\xb6\x2f\xff\xe2\x03\x1f\x1b\xda\x1f\x9f\x7d" "\x73\xf7\xe8\xf2\x3d\x13\x19\x4d\xee\x8f\x5d\xfd\x83\x7f\xbd\x72\x70\xaf" "\x17\x7f\x7a\xc4\x87\xb6\xb7\x2b\x4c\xa0\x5d\x5d\x3b\xa8\x5d\x75\xb7\xeb" "\xc0\xea\x0f\xaf\x1c\x58\xbd\xe6\xf4\xf3\xd7\x6e\x88\x57\x1c\x3a\x17\x1d" "\x6f\x7f\x89\xdb\xd5\x36\xfa\x7e\x55\x99\x46\xd3\x6b\xca\x76\xa6\x94\x3f" "\xef\x23\x17\x9e\x7d\xfa\xda\xb5\xab\xd7\x9f\xb7\x7d\x7b\x8d\xf7\x3a\xb6" "\xa5\xbc\x8e\x5f\xe9\xbb\x7e\xdd\x5e\xef\x7b\xe8\x57\xd9\xbd\xaf\xec\xb2" "\xe9\x27\xf7\xae\xbd\x77\xe0\x80\xed\xed\x0a\x13\x68\x57\x57\x4a\xbb\xe2" "\x96\x25\x7f\x9b\x5a\x6d\x57\xd6\xaf\x63\xfc\xfb\x1b\x9f\xc5\xce\x68\xf0" "\x3a\x76\x8c\x79\x1d\xf3\xfb\x47\x68\x62\xff\x78\xa5\x8e\x3b\x59\x1d\x0f" "\xe3\x96\x0d\x64\xd4\xae\x9e\xca\x7b\xe9\x44\xfb\x25\x9f\x5d\xf7\x42\xff" "\x15\xb7\x76\x7f\x2b\xb5\x5f\x72\x62\x54\xc9\x8f\x5a\xca\xff\xf8\x8a\x6b" "\x1f\xb9\x77\xe0\xf2\x42\x6a\xfe\x11\x71\x7e\xa1\xa5\xfc\xae\x3b\x7f\xb4" "\xf8\x93\x17\x86\xdb\x53\xf3\x8f\x8d\xf3\x8b\x2d\xe5\x3f\xbe\xc7\x1d\xd3" "\xde\xb3\xeb\xe0\x77\x52\xf3\x4f\x8e\xf3\x4b\x51\x2b\xf9\x7f\xbb\x66\xe9" "\x53\xbf\xfc\xbb\xb3\x7f\x5d\xa7\x4b\x35\x92\xff\xc6\x38\xbf\xb3\xa5\xf6" "\xdf\x79\xcb\xd6\xc5\x5b\x0e\xdd\xb2\x5b\x6a\xfb\x17\xc5\xf9\x5d\x2d\xe5" "\x5f\x76\xe3\xc9\x27\x3d\xf9\x83\xab\x17\xa4\xe6\x1f\x12\xe7\xf7\xb4\x94" "\x7f\xfb\x51\x33\x96\x5e\xfa\xe0\xaf\xb7\xa4\xe6\xef\x13\xe7\x4f\x69\x29" "\x7f\xe5\x33\x9b\xee\x5a\xd6\x76\xf8\xd1\xa9\xf9\xb3\xe2\xfc\x72\x4b\xf9" "\x47\xaf\x9c\xba\xe8\x84\xab\x56\xec\x97\xfa\xfa\xee\x11\xe7\x4f\x6d\x29" "\xff\x0b\xfb\xdd\x70\xff\x5b\x66\xdf\xb4\x39\xb5\xfd\x73\xe3\xfc\x69\x2d" "\xe5\x6f\xbe\xec\xee\x23\x3f\xfa\xec\xd7\x1e\x4a\xcd\x9f\x3d\x9c\x1f\xf5" "\x84\x99\x2d\xe5\xff\xc9\x0d\x2f\x87\xf2\x3d\xdf\x3d\x3f\x75\xfb\x54\x06" "\x62\x86\x7e\x4e\x09\x21\x5c\xf2\xd5\x8f\x9f\x31\x32\x5f\x18\x1d\xd3\x0d" "\x95\xd3\xde\x7a\xfd\x97\x78\x79\xb3\xe3\x53\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xec\x18\xf1\xf5\xff\xf1\xf5\x16\xf1\xf5\xff\xf7\x55\x3e\x24" "\x1a\x7f\x0e\xbf\xd9\xeb\x28\x00\x5e\xab\x6a\xef\x17\x71\xce\xba\x81\xd5" "\x95\x77\xbb\x0b\xd6\xad\xaf\xbe\x02\x7e\xb2\x9f\xdb\x9f\x9d\x52\x7f\xfc" "\xb9\xfd\xe6\xdb\x31\xb9\xeb\x2b\x52\xdb\xb1\xc7\x44\xdb\x31\xb9\xeb\x54" "\x52\xaf\x63\xd8\x27\xd1\x8e\xa1\xe3\xcf\x48\x63\xce\x5e\xfd\x91\x95\xab" "\x4e\x5f\x75\xc6\xea\x95\x67\xad\x3b\x7f\xfd\x39\xa7\xaf\x5d\xb9\x66\xed" "\xf9\xe5\xca\x7d\x3c\xca\x17\xd7\xbf\x2f\xc7\x65\x89\xf9\xf8\x6a\xf4\xb4" "\xfb\x72\x34\xba\xec\xa1\xd1\x7d\x40\x92\xf5\xc5\xfa\x12\xd9\xcd\xd6\xd7" "\xfc\xeb\x31\xb9\xeb\x62\x52\x5f\x8f\xb9\x13\xdd\x2f\x26\x77\x7d\x5a\x6a" "\x3b\x8e\x9d\x68\x3b\x26\x77\x1d\x5e\x6a\x3b\x8e\x98\x68\x3b\x26\x77\x3d" "\x51\x6a\x3b\x2a\xd7\x13\x35\xdf\x8e\xc9\x5d\x17\x97\xda\x8e\x45\x13\xdd" "\x1e\x93\xbb\x7e\x2e\xb5\x1d\x87\x4c\xb4\x1d\x93\xbb\xce\x31\xb5\x1d\x27" "\x4f\xb4\x1d\x93\xbb\x1e\x35\xb5\x1d\x27\xd6\x6b\x47\xeb\xf7\x43\xfa\x7f" "\x13\xf3\x8d\xde\x07\x93\xe5\xe3\xfe\x46\xda\xfb\xee\xc6\x86\xf7\x43\x1a" "\xbf\x7d\xff\xdf\x04\xdb\x97\x2c\x3f\xd9\xf6\x35\x3a\x0e\x5d\x99\x98\x6f" "\x6f\x54\xdf\xf8\xd5\x35\x7c\x7e\xc9\xfa\xe2\xe7\xb7\xfb\x70\x1d\xdb\xef" "\x36\xd1\x6c\x7d\x8d\xee\x47\x95\x7c\xbd\xd3\xee\x17\x15\x8d\x53\x7e\x38" "\xff\xe2\xe6\xef\x5f\x15\x26\x78\x7f\xac\x7a\xf9\x69\xf7\xaf\x4a\x6b\xff" "\xf4\xd4\xf2\x53\xc6\xdd\x3e\xc9\xd7\xa3\x6d\xf8\x2a\xcd\xb1\xf9\x69\xe5" "\xdf\x1a\xa6\x0e\xe7\xbf\xf5\xe2\x39\xf5\x2b\x78\xd5\x8a\x5e\x91\x4b\x49" "\x87\xb6\xd7\xf0\x34\x7a\x6d\x6e\xaf\x1d\xbd\xcd\x7a\x42\x69\xb8\xca\x7a" "\xc7\xa1\x21\xf7\xa5\x34\xe8\x94\x0b\x6e\xfc\xef\xd3\xcf\xb8\xf4\xc3\xbd" "\x95\x36\x2f\x4b\x3c\x1e\x9d\x12\x35\xcc\x1f\xef\x38\xb7\xe8\xa2\x47\x7f" "\xb9\x75\xf3\x92\x93\xe2\xfc\x64\x3b\xa2\x53\x47\x16\xb4\x55\xee\x07\x97" "\xf6\xfb\x17\xc2\xb1\x35\x73\xd5\xf7\xdf\xf9\xaf\x51\xed\xfd\x47\xea\xdd" "\xef\xed\xb1\x4a\xbb\xaa\xd7\xdb\x9c\x58\xaf\xbd\xce\x6d\x89\xe2\xf5\x1a" "\xde\xaf\x2e\xd4\xde\xaf\xae\x54\x75\xbf\xba\x50\xe7\x79\x57\xb7\xe3\x1f" "\x9b\x68\x7f\xbd\xfb\xd5\x6d\x69\xa2\xfd\xf1\x7a\x8d\xdb\xff\xa7\xa9\xed" "\xaf\xf7\xfa\x56\xb7\xe3\x9f\x5b\x6c\xff\x43\x13\x68\x7f\xf5\x7d\xf2\x7e" "\x92\x58\xaf\x58\xe7\xee\x4b\x69\xbb\x51\x75\xce\xbf\x8e\xc9\x19\x7b\xc7" "\xbd\xf8\xf9\x3e\x96\xd8\xaf\xab\x73\x7e\xd5\x44\x4e\x33\xf7\xff\x7b\x6e" "\x4c\xce\x58\xc9\xdf\xaf\x7a\x39\x2f\x67\xd4\x9e\x8e\x42\xeb\xed\xd9\x51" "\xfd\xbc\xd4\xf1\x90\x64\x3f\x2f\xa3\xfb\x09\x15\xe3\xfb\xd2\x55\xe6\xdb" "\xa3\xf6\x9a\xb2\xc9\xfb\x09\xc5\xe5\xa3\xf7\x57\xee\xa7\xd3\xe0\x7e\x3f" "\xc5\x94\xfb\x41\x6d\x98\xfa\x17\xb3\xee\x38\xfe\xb4\xe7\x33\xba\xdf\x4f" "\x57\xff\xe0\x1d\x37\x3d\xf0\xd4\xe5\x67\x2c\x5c\x15\x46\xdb\x15\x26\xd0" "\xae\xee\x94\x76\xc5\x2d\xdb\xb5\x94\x4d\xbb\x1a\xf5\x1b\x6e\x4d\xcc\x37" "\x3a\xaf\x4e\x96\xaf\xed\x37\x94\x46\xdb\xdf\x7c\xbf\x66\xfc\xf3\xea\x64" "\x7d\x8d\xee\xf3\x5a\xaf\x7c\xbd\xf3\xde\xf4\xf3\xd8\xfa\xf9\x53\x53\xca" "\x37\xbe\x0f\xeb\x29\x89\x05\x23\xdb\x37\x6d\x3f\xaf\x7e\x7f\x7f\x26\xf1" "\xfe\x51\x28\x8d\x3d\x2e\xc4\xeb\x57\xaf\xf7\x7c\x62\xbd\xb6\x3a\x6f\x30" "\x9d\xa3\xd3\xaa\xf7\xbd\xc4\x7a\x9d\xc9\x9d\xb6\xea\x75\xed\x4c\x4c\xdb" "\x2a\x6b\xa6\x9d\xcf\x57\xbd\x2e\x7d\x43\xcf\xbc\xba\xde\x72\x31\xf9\x3e" "\x39\xf6\x40\x96\xac\x77\x76\x9d\xf6\xcf\x1a\x93\x33\x56\xc3\xf7\xdb\x49" "\xbe\xcf\xc5\xed\x6a\x6f\xf0\x3e\x37\x3b\xa5\xfc\xc5\x4d\xbe\xcf\xbd\x52" "\xf7\x2b\x9d\xe8\x7d\x54\xbb\x53\xda\x15\x3f\xef\xb7\xcd\xcb\xa6\x5d\xa3" "\xe3\x0f\x3b\xe8\x7d\x6b\xb2\xef\x93\x13\x1d\x5f\x69\xf8\x3e\xf3\xdf\xc7" "\xbe\xcf\xf4\x8d\xb3\x9f\x55\xbf\x5f\x6c\x2a\x36\x7e\x9f\x19\x5d\xbf\x6a" "\xbd\xcf\x16\x1b\xbf\xcf\xd4\xfb\x3d\xbd\x26\xb1\x5e\x67\x9d\x1b\x45\x47" "\x89\xf5\xe3\xe9\xf6\xf7\x99\xba\x5b\x61\xdc\xf7\x99\x7f\x68\xe2\x7d\x26" "\xd9\xee\x7f\xab\xbc\x5f\x64\x35\x8e\x78\x4b\x62\xbe\xd1\x7e\x94\x2c\x9f" "\xf7\x38\xe2\x17\x27\xd8\xbe\x64\xf9\xbc\xc7\x11\x3f\x9d\x98\x6f\x6b\x54" "\xdf\xf8\xd5\x35\x7c\x7e\x9f\xbe\xb8\x76\x7e\xb2\xe3\x88\x8d\x9e\x5f\xd6" "\xe3\xc6\x13\x1d\xa7\x8e\xa5\x3e\xbf\x49\x9e\xcf\x25\xf7\xe7\x46\xe3\xa4" "\xf5\xca\xd7\xbb\x6f\xff\x78\xe7\x7f\x61\x82\xe7\x97\xf5\xce\x17\xd3\xce" "\xff\xd2\xda\x5f\x6e\x71\x9c\x74\xec\xfe\x3d\xfe\x38\x69\xbd\xf2\x13\x1b" "\xa7\x1e\x3f\x3f\x59\xfe\xb5\x3e\x0e\xbb\xa3\xc7\x15\x5f\xdb\xe3\xb0\xe3" "\x8f\x5d\xe7\xb1\x2d\x5b\x1d\x87\x3d\xf0\xd2\x1b\xde\xf6\x3f\xae\xdd\x78" "\x79\xea\x38\xec\x69\xdb\xc7\x61\x5b\x19\x2f\xd9\xef\x73\x2f\xed\x79\xe2" "\xf7\xf7\x3a\x2c\xf5\xfe\x96\x03\xcd\x8e\xc3\xd6\x8e\x73\x56\x9f\x4f\xbd" "\xb5\xd4\xda\x38\xec\x3e\xa5\xe6\xc7\x61\x1b\xb7\xef\x98\xd4\xf6\xbd\xb3" "\xc5\xf6\xf5\x4f\xa0\x7d\x8d\xc7\x59\x6b\xcf\x73\x27\x32\x4e\xfc\x27\x4d" "\xb4\xbf\xde\x38\xeb\x29\x4d\xb4\xbf\xf9\x71\xe2\xff\x54\xdb\xfe\x42\xf3" "\xe3\xc4\x67\xb6\xd8\xfe\x73\x27\xd0\xfe\xea\xf3\xe5\x0b\x4a\xd9\x8c\x13" "\x6f\x1c\x93\xd3\xda\x38\xf1\xa7\x32\x6a\xcf\x55\x19\xb5\xe7\x9a\x26\x72" "\x9a\x19\x27\xbe\x7e\x4c\xce\x58\xcd\x8c\x5b\xdf\x94\x51\x7b\xbe\x34\x89" "\xf6\xe4\x7f\x7f\xe5\x7c\xbf\x57\x29\xca\xe8\xfe\xc1\x8d\xce\x93\x01\x00" "\x00\x00\xc8\x47\x7c\xfd\x7f\x4f\x65\xbe\x5c\x1a\x19\x0b\x3b\x32\x31\x26" "\x5a\xf3\x79\xa0\x81\x75\x2b\x07\xce\x3c\x6f\xd5\xe9\xeb\x07\xce\x5b\xb9" "\xe6\xf4\xf3\x36\x54\x7d\x08\xb3\xd1\xe7\x4e\xb2\xfe\xfb\x6a\xab\x7f\xcf" "\x4d\xbb\xfe\xb2\xf9\xbf\xe7\x36\x7f\x1d\x4b\x98\xe0\x75\x32\xf9\x7e\xcf" "\xfb\x94\xba\xed\x4f\x6f\xcf\x94\x09\xb5\xbf\x7a\xdc\xb4\xad\x72\x3d\x5b" "\xac\xde\xb8\x69\x33\xe3\xd3\x53\xc7\xe4\x8c\x1d\xe7\x6e\xf8\x39\xb6\x49" "\x7e\x4e\xe5\x1f\x13\xf3\x8d\xf6\xbb\x64\xf9\xb8\xfd\xad\x7f\x4e\x65\xfc" "\xfd\x22\x59\x5f\xa3\xcf\x11\xd4\x2b\x5f\xef\xef\xfc\xe9\x7f\xb7\xaf\x9f" "\xdf\x93\x52\x7e\x28\xbd\x95\x71\xea\x87\x67\xfd\xd3\xef\x6f\xfb\xe0\x63" "\xdf\x4e\x1d\xa7\x3e\x63\xa4\xa2\xc6\x7f\x67\x5a\x5e\x33\xd7\x3d\xc1\xef" "\xff\xaf\xde\xff\x26\xf2\xfd\xff\xd5\xeb\xb5\x8f\xfd\x8a\xe8\xd4\xef\xff" "\xaf\xdd\xdf\x5b\xff\xfe\xff\x46\xbf\x7f\x79\xff\xde\x7c\x29\x31\xdf\xe8" "\xf7\x26\x59\x7e\xb2\xbf\x37\x8d\x3e\x5f\xf4\x99\xc4\x7c\xde\x9f\x9f\x4a" "\xd6\x17\x3f\xbf\xbc\xae\xc3\x4c\x6e\xcf\x46\xef\x0b\xf5\xca\xd7\x7b\x5f" "\x48\xfb\x3d\x4f\xcb\xef\x6a\xf1\xf3\x3f\x63\x5f\x9f\xf1\x3f\x9f\x93\x2c" "\xff\xda\xfe\x7c\xce\x8e\xff\xbc\xc9\x1f\xc0\xe7\x73\x52\x37\x4b\x3e\x9f" "\xcf\x69\xed\xfe\x2b\x8f\x5e\xf7\xc2\xd6\xcd\x67\x77\x5d\x94\x7a\x5c\x5b" "\xdb\xe4\xe7\x67\x36\x1e\x57\x33\x5b\x7d\xfc\xf9\x97\x26\x8e\x5b\xf5\x3e" "\x9f\xf2\xd3\xe4\x71\xab\x3c\xb6\xda\xe6\x3f\x9f\xf2\x67\x35\x73\xe5\x09" "\x1c\x77\x9f\x6c\xf1\xb8\xfb\x9b\x26\xda\x5f\xef\xb8\xfb\xfb\x26\xce\x33" "\x9b\x39\x5f\x2d\x45\x8d\x8f\xdf\xf1\xf3\x1d\xef\xf3\x14\xe5\x26\x72\x9a" "\x39\x0f\x98\x35\x26\x67\xac\xbc\xcf\x03\xfe\x57\x62\xbe\xd1\x71\x32\x59" "\x3e\xef\xf3\x80\x4f\x25\xe6\xf3\x3e\x0f\x48\xd6\x97\xf7\x79\x40\x72\x7b" "\x36\xea\x37\xd6\x2b\x5f\xef\x3c\x20\xfd\xb8\x5e\x3f\xbf\xbd\xc5\xf3\x80" "\xb1\xaf\xcf\xf8\xe7\x01\xc9\xf2\x7f\x00\xe7\x01\x3b\xf4\xb8\xf6\x9a\x3d" "\x0f\x88\x5e\xa9\xf3\x80\xd6\xee\x07\x77\xf7\xf4\x6d\xbb\x2c\x7b\x79\x60" "\xaf\xd4\xf3\x80\xf5\xcd\x9e\x07\x2c\xa9\x99\xad\x3e\x1e\x3e\x1c\xb5\x76" "\x1e\xf0\x48\x62\xbd\xf6\x99\x63\xab\x6d\xfa\x3c\x60\xe3\xa9\x35\xb3\x33" "\x27\x70\x1e\xf0\x54\x13\xed\xaf\x77\x1e\xf0\x5c\x13\xed\xaf\x77\x1e\xb0" "\x6d\xcc\xf1\xb2\xb5\xf3\x80\xb6\x42\x36\xe7\x01\x53\x9b\xc8\x69\xe6\x3c" "\x60\xe7\x31\x39\x63\xe5\x7d\x1e\x70\x45\x62\xbe\xd1\x71\x32\x59\x3e\xcb" "\xf3\x80\x03\xeb\x3c\xfe\xf9\xc4\x7c\x67\x83\xfa\x1a\xbd\x99\x34\x7a\x7e" "\xc9\xfa\x1a\x9d\x07\x34\xaa\x2f\xed\x38\x1d\xaf\x36\xf6\xbe\x43\xe3\x8f" "\x4f\xd7\xbb\x4f\xd1\x78\xaf\x6f\xf2\xf9\x34\x3a\x4e\x27\xcb\xbf\x66\x8f" "\xd3\xaf\xd0\x71\xe7\x0f\xee\x38\x1d\xd5\xfd\x67\x66\x5a\xbd\x3f\xc8\x31" "\x5d\x57\x3c\xd9\x77\xd9\x3b\x56\xa4\x1e\xa7\xe7\x34\x7b\x9c\x5e\x5a\x33" "\x5b\x7d\xbc\xfa\x61\xa1\xb5\xe3\xf4\xa3\x89\xf5\xda\xeb\xd4\xdd\xfc\x71" "\xba\xf6\x7a\x97\x68\x02\xc7\xe9\xa7\x9b\x68\x7f\xbd\xe3\xf4\x6f\x9b\x68" "\x7f\xbd\xe3\xf4\x4b\x63\x8e\x67\xad\x1d\xa7\xdb\x8b\xd9\x1c\xa7\xa7\x35" "\x91\xd3\xcc\x71\x7a\xf6\x98\x9c\xb1\xd2\x8e\xd3\x79\xdf\x3f\x32\xef\xfb" "\xb9\xe6\x7d\x1f\xce\xbc\xaf\x77\xcb\xfb\xbe\xaa\x79\xdf\x2f\x35\xef\xfb" "\x38\xe7\x7f\x3d\x4c\xbe\xf7\x3d\xce\xfb\xfe\xbd\xae\xe7\x01\x00\x00\x20" "\x0f\xf1\xe7\xff\xa7\x54\xe6\xe3\xcf\xff\x7f\x33\x51\x2e\xef\xfb\x2f\xc7" "\xe3\xab\xa9\xfd\xe3\x39\x71\xff\xdb\xf8\x56\xdd\x7c\xe3\x5b\x4d\x8e\x6f" "\xe5\xfb\x39\xf4\x89\x8c\x9f\x55\x67\xbd\x7a\xc6\xcf\xf2\xfd\x3c\xa3\xf1" "\xb9\x94\xfc\xe5\x71\xfb\xf3\xfd\x1c\x89\xf1\x3f\x00\x80\xd7\xb7\xb8\xff" "\x1f\x5f\x22\x13\x7f\xff\xff\x8b\xf1\x7c\x65\x9a\xf7\xf7\x62\xc7\xe7\xaf" "\xa9\xe7\xdf\x95\xf3\xd7\xf1\xda\xd1\x55\xd3\x8e\x7a\xfd\x98\x8e\x86\xed" "\x88\xfb\x31\xa9\xed\x58\xdb\xb8\x1d\xb5\xdb\xa3\x14\x75\x0f\x4d\x2f\x6e" "\xf2\xfe\xcd\x07\xbd\x67\x9f\x8d\x7f\x3f\x38\x38\x91\xfb\x37\x87\x49\xdc" "\x1f\x7a\x76\x83\xfc\x1d\xf5\xbd\xb5\xa9\xdf\xbb\x55\xf7\x7b\x6b\xf3\xfb" "\xde\xeb\xd4\x76\x4c\xf8\x7b\xaf\x27\xd7\x4f\x4f\xdd\xff\x66\x4d\xb4\x1d" "\x93\xfb\x3c\x4f\xea\xf6\x18\x1d\x8f\xc8\x7b\xbc\xcf\x78\x5c\xdd\x7c\xe3" "\x71\x4d\x8e\xc7\xbd\xb6\xc7\x83\x8c\xd7\x00\x00\x59\x8b\xfb\xff\x53\x2b" "\xf3\x23\x7f\xff\x2f\x4e\xe2\xef\xff\x93\x3b\xdf\x4d\x3d\xdf\x1a\xc8\xe6" "\xef\xff\x8d\xfa\x99\xfa\x33\x29\xf9\x27\xeb\x6f\x64\xfd\xf7\xff\xc1\x96" "\xfa\xdb\xf9\x8e\x2b\x4c\xf6\xef\xff\x8d\xc6\xcd\xf2\x1e\x9f\xc9\xa6\xbf" "\xd7\x36\x36\xff\x35\xf2\xf7\xff\x46\xe3\xa7\xfa\x93\x00\x00\xaf\x6f\x71" "\xff\x7f\x5a\x65\x3e\xfe\xfb\xff\xd7\x2a\xf3\xd3\x12\xe5\xf5\xbf\x53\xf2" "\x5f\x23\x7f\x4f\x6c\x3c\xbe\xf2\xea\xea\xdf\xc7\x7d\x13\xfd\x7b\xfd\xfb" "\xf0\x07\xf0\xf7\x5c\xfd\x7b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x20\x6f\xdb\x16\x3e\xb1\x62\xcd\xea\xe5\xb7\x95\x8a\x21" "\x44\x29\x65\x06\xeb\x88\x1f\x2b\xb6\xf7\xf7\xf7\xb5\x50\xef\x9f\xdc\xf0" "\x72\x28\xdf\xf3\xdd\xf3\xab\x97\x95\x4b\x2d\x04\x01\x00\x00\x00\x0d\xc5" "\xfd\xf0\xc2\xe8\x92\xce\x50\x2e\xbd\x25\x74\x46\x73\xc3\x35\xed\x21\x54" "\x77\xc9\x8b\x75\xd6\x1f\x48\x19\x34\x68\x8f\xe6\x86\x1b\x8b\x21\x14\xaa" "\x97\xd5\xe9\xdf\xc7\x63\x07\x43\xf5\x5d\x35\xa6\xbe\xb1\xe1\xd7\x54\xa6" "\xc7\xbe\x61\x64\x3a\xbb\x6a\xfd\x5b\x12\xf5\x15\xeb\xb4\x78\x38\xb1\x6d" "\x7b\xbd\xd5\xed\xbd\x2e\xb1\x7e\xa1\x18\x8d\x69\x40\x2b\x63\x1d\x00\x00" "\x00\xf0\x4a\x8b\xfb\xff\x5d\xa3\x4b\x7a\x43\xb9\xb4\x71\xb8\x3f\xdc\x17" "\x85\xd0\xd5\x60\xfd\xce\x78\x1a\xcd\x0d\x9f\x0a\xb5\xe5\xeb\x8d\x17\xec" "\x39\xce\x78\xc1\x7d\x85\xed\x79\xc3\xcb\xea\x94\xeb\xab\x2a\xff\x4c\x48" "\x94\xaf\x93\x5d\x5d\xfe\x4f\xa3\x44\xf9\xc2\xf8\xe5\x77\x2f\x25\xca\xd7" "\x79\x42\xd5\xe5\x1f\x8e\x86\x87\x16\xb6\x97\xaf\x33\xde\x71\x5a\x55\xf9" "\x4f\x25\xdb\xdf\x39\x7e\xfe\xdc\x64\xf9\x3a\x2f\x4e\x75\xf9\x5d\xda\x6a" "\xb7\x61\x7b\xcf\xf8\xe5\x8f\x2c\x26\xda\x3f\x65\xfc\xf2\x77\x94\x12\xe5" "\xcb\xe3\x97\x5f\x92\x2c\x3f\x75\xfc\xf2\x07\x85\x10\x3a\xaa\xcb\x4f\x1b" "\xbf\xfc\x47\x12\xfb\x5f\x7b\xef\xf8\xe5\x7f\x53\x48\xb4\x67\x66\x7a\xf9" "\xa1\xfd\xfb\xa2\x52\xed\xf6\xac\x37\x3e\x75\x67\x5c\xbe\x32\x30\x55\x3d" "\x3e\x35\xb7\x3d\xb9\xfe\xd8\x1d\x70\xf4\xf5\x4d\x44\x0f\xad\xbf\x71\xcc" "\xef\xd7\xd8\x1d\x72\xf4\x29\x27\xa2\x87\x9e\xef\xfa\xc4\xfa\xf5\xc6\xb7" "\xea\x34\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x68\x52\xfc\xfd\xff\x53\xa2\x1d\xfb\xfd\xff" "\x2b\x9f\xd9\x74\xd7\xb2\xb6\xc3\x8f\xae\x5e\xe6\xfb\xff\x01\x00\x00\x20" "\x1f\x71\x3f\x7c\xfb\x57\xc3\x75\x86\x72\x69\x5a\x28\x86\x5d\x86\xe7\x3e" "\x95\x28\x1f\x2f\xff\x74\xca\xf2\x2b\x53\x96\x7f\x26\x65\xf9\xe7\x33\x78" "\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x87\x2e\xbe\xfe\x7f" "\xda\x0e\xbe\xfe\x7f\xf3\x65\x77\x1f\xf9\xd1\x67\xbf\xf6\x50\xf5\x32\xd7" "\xff\x03\x00\x00\x40\x3e\xe2\x7e\x78\xc7\xe8\x92\xce\x50\x2e\x95\x42\x29" "\xbc\x79\x78\x2e\x39\x26\x10\x55\xc6\x03\x76\x70\x33\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xe0\x75\x2d\xbe\xfe\xbf\x14\x85\x50\x18\xa7\xdc" "\xb2\x94\xe5\x51\x7b\xe8\x6c\xa5\xde\x07\xa7\x5d\xb7\xef\xcf\xf7\xdd\x74" "\x73\xf5\xb2\x72\x69\x6b\xa1\x2b\xec\x36\x92\x5b\x59\x36\xaf\x32\x17\xdf" "\x63\x20\x4a\x4c\xd3\x54\x72\xa2\x8c\x72\x0a\x59\xe4\x0c\x0e\x0e\xbe\x94" "\x51\x7b\x4a\x19\xe5\xb4\x65\x94\xd3\x9e\x51\x4e\x47\x46\x39\x9d\x19\xe5" "\x74\x65\x94\xd3\x9d\x51\x4e\x4f\x46\x39\x53\x32\xca\x29\x67\x94\x33\x35" "\xa3\x9c\x69\x19\xe5\xf4\x66\x94\x33\x3d\xa3\x9c\x19\x19\xe5\xbc\x21\xa3" "\x9c\x99\x19\xe5\xec\x94\x51\xce\xac\x8c\x72\x76\xce\x28\x67\x76\x46\x39" "\xbb\x64\x94\xb3\x6b\x46\x39\xbb\x65\x94\xf3\xc6\x8c\x72\xde\x94\x51\xce" "\x9c\x8c\x72\xde\x9c\x51\x4e\x5f\x46\x39\xbb\x67\x94\x33\x37\xa3\x9c\x79" "\x19\xe5\xbc\x25\xa3\x9c\xb7\x16\xb2\xc9\xd9\x23\xa3\x9c\x3d\x33\xca\x79" "\x5b\x46\x39\x7b\x65\x94\xf3\xf6\x8c\x72\xf6\xce\x28\x67\x9f\x8c\x72\xf6" "\xcd\x28\x67\xbf\x8c\x72\xf6\xcf\x28\x67\x7e\x46\x39\x0b\x32\xca\x39\xa0" "\x26\xa7\x14\x5a\xcd\x39\x30\xa3\xf6\x1c\xd4\x5a\x4e\x67\x32\xe7\xe0\x8c" "\xda\x73\x48\x46\x39\xef\xc8\x28\xe7\xd0\x8c\x72\xde\x99\x51\xce\x61\x19" "\xe5\x2c\x6c\x2d\x67\xf0\xf7\xf1\x5d\x13\x2b\x39\x8b\x32\x6a\xcf\xe1\x19" "\xe5\xbc\x2b\xa3\x9c\x3f\xca\x28\xa7\x3f\xa3\x9c\xc5\x19\xe5\x1c\x91\x51" "\xce\x91\x19\xe5\x2c\xc9\x28\xe7\xa8\x8c\x72\x8e\xce\x28\xe7\x98\x8c\x72" "\x8e\xcd\x28\xe7\xb8\x8c\x72\x8e\xcf\x28\xe7\x84\x62\x36\x39\xef\xce\x28" "\xe7\x8f\x33\xca\x39\x31\xa3\x9c\x93\x32\xca\x59\x9a\x51\xce\x9f\x64\x94" "\xb3\x6c\xb2\x39\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x76\xe2\xef\xff\x8f\xc6" "\xf9\xfe\xff\xc1\x3a\xe2\xc7\x8a\xed\xfd\xfd\x7d\x2d\xd4\x7b\x4c\xd7\x15" "\x4f\xf6\x5d\xf6\x8e\x15\xd5\xcb\xca\xa5\x8b\xc2\xb4\xf0\xa6\xe1\xfa\x42" "\x6f\x6d\xf9\x8e\xca\x74\xdf\x93\xb6\xf5\xfe\xcd\x7d\xe7\x3c\x1c\xc2\xfc" "\x59\x0f\xcd\x29\xa5\xe6\xef\xff\x77\x9b\x0f\x9b\x5f\xe7\xe7\x18\x95\x27" "\xdd\x5b\xa9\x37\x4a\xa9\xf7\x63\xcb\xcf\x7a\xc3\xe2\xa8\xb0\x7f\x08\xf3" "\x77\x2a\xbe\x71\xd2\xf5\x46\xfd\x83\x87\xcf\xfb\xdd\x91\x9f\x2b\x14\x77" "\xad\xad\xbf\x90\xa8\x3f\xfe\xc6\xc8\xf3\xb7\xfe\xd1\x21\xef\xba\x7b\xd7" "\x1f\x0e\xd5\x3f\xde\xf3\xbe\xf9\xf6\x25\x47\xcc\xaf\xf3\x73\x6c\xfd\x97" "\x2c\x9e\x77\xfa\xc0\x63\x8f\xf4\xd5\xd6\x5f\x4c\xa9\x7f\xc3\xd4\xbf\x98" "\x75\xc7\xf1\xa7\x3d\x3f\x52\x7f\xe7\x64\xeb\xef\xea\x1f\xbc\xe3\xa6\x07" "\x9e\xba\xfc\x8c\x85\xab\x46\x16\x4c\xa9\xd4\x5f\x4a\xa9\xff\xba\x05\x6d" "\xdb\xbe\xfc\x8b\x0f\x7c\x6c\x63\x98\x5f\x7a\xf6\xcd\xdd\x13\xae\x3f\x7e" "\x7e\x6d\x29\xf9\x5f\xe9\xbb\x7e\xdd\x5e\xef\x7b\xe8\x57\x19\x3d\xbf\xa8" "\x7f\x70\x97\x4d\x3f\xb9\x77\xed\xbd\x03\x07\x8c\x2c\x88\xeb\x6f\x4f\xd4" "\xdf\x55\x99\x76\x7f\x63\xed\xaa\x8d\x67\xdd\x73\x75\x76\xf5\x6f\x39\x68" "\xef\x73\xaf\x5d\x72\xd5\x82\xda\xfa\x3b\x52\xea\x3f\xf9\xc3\x9f\xf9\xd9" "\xc0\x17\xe7\xee\x9d\x5d\xfd\x0f\x3c\xb7\xe6\xee\xab\x96\xde\x35\x3d\x35" "\x0a\x00\x00\xd8\xc1\xe2\x7e\xf8\xf6\x1e\x55\x67\x28\x97\x56\xa6\xf6\xc3" "\xe3\xfe\xc2\xc4\xfa\xe1\xd5\x3d\x85\xb8\x3f\x9c\x58\x27\xd1\x0f\x4f\xf6" "\x43\xe3\xf6\x25\xfb\xa1\x71\x4f\x65\xd7\x44\x5c\xab\xfd\xd0\xde\x94\x7e" "\x68\xfc\xbc\xe3\x7e\xe8\x50\xfd\x43\xfd\xd0\xb8\xfe\x3d\x43\xab\xf5\xff" "\xf5\xca\xc1\xbd\x5e\xfc\xe9\x11\x1f\xaa\xad\x3f\xd9\x4f\x8d\xeb\x4f\xf6" "\x53\x3b\x13\xdb\x67\x82\xf5\x37\xdd\x4f\x8d\xf3\x93\xfd\xd4\xd9\x95\xe5" "\x6f\x9b\xd7\x6c\xfd\x85\x44\xfd\xc7\xdf\xba\xe9\xef\xb7\xfe\xed\xb2\xa3" "\x6a\xeb\x6f\xb6\x9f\x1a\x3f\xff\x81\x96\x9f\xbf\x7e\x2a\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf0\xda\x10\x5f\xff\x5f\x8a\x42\x28\x86\x10\xa2" "\x10\xc2\xb2\x44\x99\x3c\xae\xff\xbf\x66\xd5\x73\x5f\xde\xf3\xb9\x03\x2f" "\xa8\x5e\x56\x2e\xfd\xd7\x62\x4f\xd8\x6d\xf8\xdf\xef\x49\x94\x2f\x56\xa6" "\x23\x1f\x33\x8f\x42\x5c\x67\x94\x98\xa6\x89\x73\x4f\xce\x29\xf7\xbd\x39" "\xe5\xbe\x2f\xa7\xdc\x3f\xcd\x29\xf7\x94\x9c\x72\xff\x53\x4e\xb9\xcb\x73" "\xca\xfd\xb3\x9c\x72\x4f\xcd\x29\x77\x45\x4e\xb9\xff\x39\xa7\xdc\x95\x39" "\xe5\x9e\x96\x53\xee\xe9\x39\xe5\xbe\x3f\xa7\xdc\x55\x39\xe5\x26\xaf\xd3" "\xc9\x2a\x77\x75\x4e\xb9\x6b\x72\xca\xfd\x40\x4e\xb9\x67\xe4\x94\x7b\x66" "\x4e\xb9\x67\xe5\x94\x7b\x76\x4e\xb9\x6b\x73\xca\xfd\x60\x4e\xb9\xe7\xe4" "\x94\xbb\x2e\xa7\xdc\x73\x73\xca\xfd\x50\x4e\xb9\xeb\x73\xca\x3d\x2f\xb1" "\xbc\x94\x51\xee\x86\x9c\x72\xcf\xcf\x29\xf7\xcf\x73\xca\xbd\x20\xa7\xdc" "\x0f\xe7\x94\xfb\x91\x9c\x72\x2f\xcc\x29\xf7\xa2\x9c\x72\xff\x22\xa7\xdc" "\x8f\xe6\x94\xfb\xb1\x9c\x72\xff\x32\xa7\xdc\x8d\x0d\x72\x3b\x5b\xcc\xbd" "\x2c\xb1\xbc\x50\x93\x5b\x6c\xb9\xbd\xff\x25\xb1\xbc\xad\x41\x6e\xf2\xf9" "\xa5\xe5\x6e\xca\x29\xf7\xd3\x39\xe5\x7e\x3d\xb1\xc1\xb2\xda\x1f\xee\xcc" "\x29\xf7\x1b\x39\xe5\x7e\x33\xa7\xdc\xbb\x72\xca\xbd\x3b\xa7\xdc\x7b\x72" "\xca\xfd\x56\x4e\xb9\xf7\xe6\x94\x7b\xdf\x04\x73\x9b\xfd\x7d\xfb\x76\x4e" "\xb9\xdf\xc9\x29\xf7\x9f\x73\xca\xfd\x6e\x4e\xb9\xdf\xcb\x29\xf7\xfe\x9c" "\x72\x1f\xc8\x29\xf7\xc1\x9c\x72\xbf\x9f\x53\xee\x43\x39\xe5\xfe\x20\xa7" "\xdc\x7f\xc9\x29\xf7\xe1\x9c\x72\x7f\x98\x53\xee\x8f\x72\xca\xfd\x71\x4e" "\xb9\x3f\x49\xe4\xb6\x65\x94\xfb\xbf\x73\xca\xfd\x69\x4e\xb9\x8f\xe4\x94" "\xfb\x68\x4e\xb9\x3f\xcb\x29\xf7\xb1\x9c\x72\x1f\xcf\x38\x17\x5e\x4d\xe2" "\xbf\xc3\x77\x8d\x2e\xe9\x0d\xe5\xd2\x82\x42\xbc\xff\x5f\x9c\x28\xdf\x5e" "\x99\x8e\xec\xff\x85\x96\x7f\xaf\x2e\xc9\x29\xf7\xe3\x39\xe5\xfe\x55\x4e" "\xb9\x9f\xc8\x29\xf7\xaf\x73\xca\xfd\x64\x4e\xb9\x97\xe6\x94\xfb\xa9\xc4" "\xf2\xac\xc6\x5b\x2e\xcf\x29\xf7\xca\xc4\xf2\xf6\x8c\x72\xff\x9f\x44\x4b" "\xb3\x6a\xef\x67\x12\xcb\xb3\xca\xbd\x3a\xb1\x3c\xab\xed\x70\x4d\x62\x79" "\x67\x83\xdc\x46\x03\x0d\x71\xee\x7f\xcb\x29\xf7\xf3\x39\xe5\x5e\x9f\x53" "\xee\x0d\x39\xe5\xfe\x43\x4e\xb9\x37\x25\x96\x77\x65\x94\xfb\x7f\x72\x3a" "\x1f\xfd\xd7\x9c\x72\x7f\x9e\x53\xee\x13\x39\xe5\xfe\x22\xa7\xdc\x5f\xe6" "\x94\xfb\x6f\x39\xe5\xfe\xdf\x9c\x72\xff\x3d\xa7\xdc\xad\x39\xe5\xfe\x2a" "\x91\xdb\x9e\x51\xee\x93\x39\xe5\x3e\x95\x53\xee\xd3\x39\xe5\x3e\x93\x53" "\xee\xaf\x73\xca\xfd\x8f\xc6\xb9\x2f\x0e\x0e\x0e\x4e\x38\xf7\xd9\x9c\xda" "\xfb\x9b\x9c\x72\x9f\xcb\x3c\x77\xe4\xc8\xfb\xdb\x9c\xda\xfb\x7c\x4e\xb9" "\x2f\xe4\x94\xfb\x62\x4e\xb9\xbf\xcb\x29\xf7\xf7\x39\xe5\x6e\xcb\x29\xf7" "\xa5\x9c\x72\x5f\xce\x29\x77\x30\xe3\x5c\x00\x00\x00\xc8\x42\x7c\xfd\xff" "\xd4\x28\xfd\x4f\x1b\x79\x5c\xff\xff\x85\xfd\x6e\xb8\xff\x2d\xb3\x6f\xda" "\x5c\xbd\xac\x9c\xfe\x35\x82\x00\x00\x00\xc0\x24\xc4\xfd\xf0\xf6\xd1\x25" "\x9d\xa1\x5c\x9a\x17\xe6\x85\x39\xaf\x68\xbb\x1a\x8b\x1a\x5e\x03\x0c\x00" "\x00\x00\x8c\x88\xfb\xff\x3d\xa3\x4b\x7a\x5f\x1b\xfd\xff\x28\x0a\x23\xff" "\x4b\x0c\x03\x44\x75\xff\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb9\x8a\xbf\xff\xbf\xbc" "\x83\xbf\xff\xff\xe8\x95\x53\x17\x9d\x70\xd5\x8a\xfd\xaa\x97\xf9\xfe\x7f" "\x00\x00\x00\xc8\x47\xdc\x0f\x2f\x8c\x2e\xe9\x0c\xe5\x52\x47\xe8\x08\x6f" "\xac\xcc\x1f\x55\x53\xbe\x14\x15\x87\xa7\x7d\x0d\xc6\x05\x00\x00\x00\x80" "\x57\x8f\xb8\xff\xdf\x35\xba\xa4\x37\x94\x4b\xe7\x6d\xef\xff\x6f\x5c\x52" "\x53\x7e\x66\x83\xfe\x7f\x71\xb4\x64\xed\xb8\xc1\xf6\xbc\xda\xe5\x53\x1a" "\xe4\x6d\x1f\x87\x38\xba\x66\xbd\x69\xcd\xae\xb7\xb1\x76\xbd\xea\xf1\x8b" "\x21\xcb\x12\xdb\x63\x7b\x7d\xc7\xd4\xae\x57\x68\xb6\x9d\xc7\xa6\xd6\x37" "\x7e\x3b\x6b\xd7\x9b\xda\xf4\x7a\xc7\xd5\xac\x57\x6e\x7a\x7b\x9e\x50\xb3" "\x5e\x4f\xd3\xf5\xfd\x71\xcd\x7a\x5d\x4d\xd7\x77\x52\xcd\x7a\x9d\x4d\xd7" "\xb7\xb4\x66\xbd\xa8\xe9\xfa\x6a\x5f\xd9\x42\xd3\xf5\xbd\x27\xd4\x56\xd8" "\x6c\x7d\xef\xad\x59\xad\xd8\x74\x7d\xef\xab\x59\xaf\xd7\xf8\x1a\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xb4\x6c\xdb\xc2\x27\x56\xac\x59\xbd\xfc\xb6\x9e\x28\x84\x28\xa5\xcc\x60" "\x1d\xf1\x63\xc5\xf6\xfe\xfe\xbe\x16\xea\xbd\xfd\xa8\x19\x4b\x2f\x7d\xf0" "\xd7\x5b\xaa\x97\x95\x4b\x2d\x04\x01\x00\x00\x00\x0d\xc5\xfd\xf0\xae\xd1" "\x25\x9d\xa1\x5c\x5a\x14\xda\xa2\x5d\x6a\xca\xc5\x63\x03\x97\x27\xd6\x4f" "\x2b\x77\x65\x93\xe5\x3e\xd3\xa0\x5c\xa1\x32\xbd\xba\x41\xb9\x78\xe8\xe0" "\x9a\x26\xf3\xfe\x5b\x93\xe5\x3e\xdf\x64\xb9\xeb\x9b\x2c\x77\x43\x93\xe5" "\xfe\xa1\xc9\x72\x37\x35\x28\x37\xa3\xb2\xa1\xbf\x9e\x36\xb8\x03\x00\x00" "\xc0\xeb\x42\xdc\xff\xef\x19\x5d\xd2\x1b\xca\xa5\xdd\x43\xb1\x32\xd7\xa8" "\x1f\xdf\x6c\x3f\x34\xee\x7e\xde\xd2\x64\xb9\x7f\x6c\xb2\xdc\x97\x9a\x6c" "\xdf\xff\x6a\x50\xae\x5d\x3f\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\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\x8d\xdb\xb6\xf0\x89\x15\x6b\x56\x2f\xbf\xad" "\x2b\x0a\x21\x4a\x29\x33\x58\x47\xfc\x58\xb1\xbd\xbf\xbf\xaf\x85\x7a\x2f" "\xbb\xf1\xe4\x93\x9e\xfc\xc1\xd5\x0b\xaa\x97\x95\x4b\x2d\x04\x01\x00\x00" "\x00\x0d\xc5\xfd\xf0\x8e\xd1\x25\x9d\xa1\x5c\xea\x0e\xdd\x61\xd6\xf0\x5c" "\x75\x5f\x7f\x48\x21\xb1\x7e\x14\xd2\xc7\x0d\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x20\x2b\xdb\x16\x3e\xb1\x62\xcd\xea\xe5\xb7\x75\x46\x21\x44\x29\x65\x06" "\xeb\x88\x1f\x2b\xb6\xf7\xf7\xf7\xb5\x50\xef\x9d\xb7\x6c\x5d\xbc\xe5\xd0" "\x2d\xbb\x55\x2f\x2b\x97\x5a\x08\x02\x00\x00\x00\x1a\x8a\xfb\xe1\x1d\xa3" "\x4b\x3a\x43\xb9\xd4\x19\x3a\xc3\x4e\xc3\x73\xf5\xc6\x04\x86\xfb\xff\xbd" "\x3b\xb0\x91\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\xee\x6d\x5b\xf8\xc4\x8a\x35" "\xab\x97\xdf\x16\x45\x21\x44\x29\x65\x06\xeb\x88\x1f\x2b\xb6\xf7\xf7\xf7" "\xb5\x50\xef\xc7\x57\x5c\xfb\xc8\xbd\x03\x97\x17\xaa\x97\x95\x4b\x2d\x04" "\x01\x00\x00\x00\x0d\xc5\xfd\xf0\xae\xd1\x25\x9d\xa1\x5c\xba\x28\x4c\x0b" "\x6f\x1a\xee\xf7\x87\xde\xda\xf2\x1d\x95\xe9\xbe\x27\x6d\xeb\xfd\x9b\xfb" "\xce\x79\x38\x84\xf9\xb3\x1e\x9a\x93\xde\x71\xdf\xff\xef\x36\x1f\x36\xbf" "\xce\xcf\x31\x2a\x23\x01\xbd\x95\x7a\xa3\x94\x7a\x3f\xb6\xfc\xac\x37\x2c" "\x8e\x0a\xfb\x87\x30\x7f\xa7\xe2\x1b\x27\x5d\x6f\xd4\x3f\x78\xf8\xbc\xdf" "\x1d\xf9\xb9\x42\x71\xd7\xda\xfa\x0b\x89\xfa\x3b\x2b\xd3\xf3\xb7\xfe\xd1" "\x21\xef\xba\x7b\xd7\x1f\x0e\xd5\x3f\xde\xf3\xbe\xf9\xf6\x25\x47\xcc\xaf" "\xf3\x73\x6c\xfd\x97\x2c\x9e\x77\xfa\xc0\x63\x8f\xf4\xd5\xd6\x5f\x4c\xa9" "\x7f\xc3\xd4\xbf\x98\x75\xc7\xf1\xa7\x3d\x3f\x52\x7f\xe7\x64\xeb\xef\xea" "\x1f\xbc\xe3\xa6\x07\x9e\xba\xfc\x8c\x85\xab\x46\x16\x4c\xa9\xd4\x5f\x4a" "\xa9\xff\xba\x05\x6d\xdb\xbe\xfc\x8b\x0f\x7c\x6c\x63\x98\x5f\x7a\xf6\xcd" "\xdd\x13\xae\x3f\x7e\x7e\x6d\x29\xf9\x5f\xe9\xbb\x7e\xdd\x5e\xef\x7b\xe8" "\x57\x19\x3d\xbf\xa8\x7f\x70\x97\x4d\x3f\xb9\x77\xed\xbd\x03\x07\x8c\x2c" "\x88\xeb\x6f\x4f\xd4\x1f\xef\xff\xdd\xdf\x58\xbb\x6a\xe3\x59\xf7\x5c\x9d" "\x5d\xfd\x5b\x0e\xda\xfb\xdc\x6b\x97\x5c\xb5\xa0\xb6\xfe\x8e\x94\xfa\x4f" "\xfe\xf0\x67\x7e\x36\xf0\xc5\xb9\x7b\x67\x57\xff\x03\xcf\xad\xb9\xfb\xaa" "\xa5\x77\x4d\x4f\x8d\x02\x00\x00\x5e\x27\xe2\xfe\xff\xf6\x9e\x46\x6f\x28" "\x97\x7a\x5f\xf1\x7e\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4c\xc4\xb6\x85\x4f\xac\x58\xb3\x7a" "\xf9\x6d\x85\x28\x84\x28\xa5\xcc\x60\x1d\xf1\x63\xc5\xf6\xfe\xfe\xbe\x16" "\xea\xed\xba\xf3\x47\x8b\x3f\x79\x61\xb8\xbd\x7a\x59\xb9\xd4\x42\x10\x00" "\x00\x00\xd0\x50\xdc\x0f\xef\x1a\x5d\xd2\x19\xca\xa5\xb7\x87\xf6\xd0\x3d" "\xdc\xef\x7f\xe0\xb9\x35\x77\x5f\xb5\xf4\xae\xe9\xa1\x77\xe4\xd1\x8e\xca" "\xb4\x73\xcd\x99\x6b\x57\xef\xb7\x6a\xdd\xda\x81\x91\xf9\xb8\xfc\xe1\xf3" "\x7e\x77\xe4\xe7\x0a\xc5\x5d\xe3\xf2\x51\x65\x3a\xd8\x11\xc2\x86\xbd\xd7" "\xac\x3b\xff\x9c\x91\x15\xda\x2a\xe5\x2f\x59\x3c\xef\xf4\x81\xc7\x1e\xe9" "\x8b\xcb\x17\x2a\xd3\xd2\x50\xfe\xfc\xed\xe5\xb6\x1c\xb4\xf7\xb9\xd7\x2e" "\xb9\x6a\x41\x5c\xae\xbd\xba\x1d\x07\x6c\x2f\xb7\xcb\xa6\x9f\xdc\xbb\xf6" "\xde\x81\x03\xe2\x72\x6d\xd5\xe5\x16\x6c\x2f\x77\xfc\xad\x9b\xfe\x7e\xeb" "\xdf\x2e\x3b\xaa\x6e\xde\x81\xdb\xcb\xdd\x71\xd3\x03\x4f\x5d\x7e\xc6\xc2" "\x55\x71\xbb\x8a\xd5\xe5\xaa\xda\xf7\xd7\x2b\x07\xf7\x7a\xf1\xa7\x47\x7c" "\x68\xb4\xfd\x95\x69\x77\xa5\x5e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x26\x67\xdb" "\xc2\x27\x56\xac\x59\xbd\xfc\xb6\x10\x85\xa1\xff\xd7\x35\x58\x47\xfc\x58" "\xb1\xbd\xbf\xbf\xaf\x85\x7a\x3f\xbb\xee\x85\xfe\x2b\x6e\xed\xfe\x56\xf5" "\xb2\x72\xa9\x85\x20\x00\x00\x00\xa0\xa1\xb8\x1f\xde\x35\xba\xa4\x33\x94" "\x4b\xf3\x42\x77\x34\xbd\xa6\x5c\x67\x65\x1c\xa0\xb3\x32\x5f\xea\x1d\x99" "\xee\xbf\xe1\x83\xe7\xee\x7f\xde\x47\x2e\xdc\xf7\xcc\x0f\x9e\xfe\x81\xd5" "\x1f\x58\x7d\xce\x81\x07\x1c\x7c\xc0\xc1\xef\x38\xf8\x9d\x07\x1f\xb4\xff" "\x9a\x33\xd7\xae\x9e\x3f\xf2\x33\x74\x34\xc8\x6b\xab\xe4\x9d\xf7\x91\x0b" "\xcf\x3e\x7d\xed\xda\xd5\xeb\xcf\x1b\x99\x9f\xd1\x60\xbd\x8e\x31\xeb\xe5" "\xf7\x8f\x8c\x36\x39\x00\x00\x00\xec\x70\x71\xff\xbf\x7b\x74\x49\x6f\x28" "\x97\xa6\x84\xf6\xa8\xbd\xa6\x5c\xb2\xdf\x5d\xac\xf4\xbb\xa3\xf7\x8f\x7c" "\x6a\x20\x59\x7e\x76\xa5\xfc\xec\xca\x7c\x7b\xa5\xfc\xc5\xef\x4f\xfb\x94" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xb4\x6e\xdb\xc2\x27\x56\xac\x59\xbd\xfc\xb6\x62\x14\x42" "\x94\x52\x66\xb0\x8e\xf8\xb1\x62\x7b\x7f\x7f\x5f\x0b\xf5\x3e\xbe\xc7\x1d" "\xd3\xde\xb3\xeb\xe0\x77\xaa\x97\x95\x4b\x2d\x04\x01\x00\x00\x00\x0d\xc5" "\xfd\xf0\xce\xd1\x25\x9d\xa1\x5c\xea\x0e\x6d\xa1\x67\xb8\xdf\x7f\xf9\xb6" "\x0f\x45\xff\xb1\xff\x9f\xcd\x6b\xeb\xad\x3c\xdc\xde\x1e\x3e\x7c\xfa\x86" "\x0d\xeb\x17\x8c\xfc\x8c\xcb\x1d\x53\x58\xb4\xff\xe3\x9f\xfb\x2f\x7b\x8c" "\x29\x77\xc0\xc8\xcf\x57\xe4\xc9\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x07\x63" "\xdb\xc2\x27\x56\xac\x59\xbd\xfc\xb6\x50\x0c\x21\x4a\x29\x33\x58\x47\xfc" "\x58\xb1\xbd\xbf\xbf\xaf\x85\x7a\x57\x2c\xf8\xe6\xf5\xa7\xbe\x7d\xeb\x05" "\xd5\xcb\xca\xa5\x16\x82\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xe0\x0f\x40\x7c\xfd\x7f\x29\x0a\xa1\x14\x46\xee\x01\x70\x5f" "\xe2\x46\x00\x79\x5c\xff\xbf\xe8\xa2\x47\x7f\xb9\x75\xf3\x92\x93\xaa\x97" "\x95\x4b\xcb\x0a\x3d\x61\xb7\xe1\x7f\x7f\x3b\xd1\x86\xf8\xd6\x00\xf3\x86" "\x7f\x46\x21\xae\x33\x2e\xb6\xb1\x41\x7d\x71\xee\x77\x72\xca\xfd\xe7\x9c" "\x72\xbf\x9b\x53\xee\xf7\x72\xca\xbd\x3f\xa7\xdc\x07\x72\xca\x7d\xb0\xb5" "\xdc\xd4\x3b\x55\xc4\xb9\xdf\xcf\xa9\xbd\x0f\xe5\x94\xfb\x83\x9c\x72\xff" "\x25\xa7\xdc\x87\xf3\xc8\xed\x0c\xe1\x87\x39\xb5\xf7\x47\x39\xe5\xfe\x38" "\xa7\xdc\x9f\x24\x72\xdb\x32\xca\xfd\xdf\x39\xe5\xfe\x34\xa7\xdc\x47\x72" "\xca\x7d\x34\xa7\xdc\x9f\xe5\x94\xfb\x58\x4e\xb9\x8f\xe7\x94\xfb\x7f\x72" "\xca\xfd\xd7\x9c\x72\x7f\x9e\x53\xee\x13\x39\xe5\xfe\x22\xa7\xdc\x5f\xe6" "\x94\xfb\x6f\x39\xe5\xfe\xdf\x9c\x72\xff\x3d\xa7\xdc\xad\x39\xe5\xfe\x2a" "\x91\xdb\x9e\x51\xee\x93\x39\xe5\x3e\x95\x53\xee\xd3\x39\xe5\x3e\x93\x53" "\xee\xaf\x73\xca\xfd\x8f\x9c\x72\x9f\xcd\x29\xf7\x37\x39\xe5\x3e\x97\x53" "\xee\x6f\x73\xca\x7d\x3e\xa7\xdc\x17\x72\xca\x7d\x31\xa7\xdc\xdf\xe5\x94" "\xfb\xfb\x26\x73\xc3\x04\x73\xb7\xe5\xd4\xde\x97\x72\xca\x7d\x39\xa7\xdc" "\xc1\x8c\x73\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x62\xd5\xdf\xff\xdf\x56" "\xf9\x5e\xb4\x65\x75\xca\xdd\x17\xd5\x5f\x3f\x6a\x0f\xbd\x9d\x55\xf3\xf5" "\xd6\xad\xe7\xc0\x4b\x6f\x78\xdb\xff\xb8\x76\xe3\xe5\xd5\xcb\xca\xa5\xad" "\x85\xae\xe1\xef\x71\x8b\x42\xb1\xb2\x2c\xed\x7b\xdb\x52\x9a\x33\x6a\x24" "\xa7\x90\x51\x4e\x31\xa3\x9c\x52\x46\x39\x6d\x19\xe5\xb4\x67\x94\xd3\x91" "\x51\x4e\x67\x13\x39\x2f\x0e\x36\xce\xe9\xca\xa8\x3d\xdd\x19\xe5\xf4\x64" "\x94\x33\x25\xa3\x9c\x72\x46\x39\x53\x33\xca\x99\x96\x51\x4e\x6f\x46\x39" "\xd3\x33\xca\x99\x91\x51\xce\x1b\x32\xca\x99\x99\x51\xce\x4e\x19\xe5\xcc" "\xca\x28\x67\xe7\x8c\x72\x66\x67\x94\xb3\x4b\x46\x39\xbb\x66\x94\xb3\x5b" "\x46\x39\x6f\xcc\x28\xe7\x4d\x19\xe5\xcc\xc9\x28\xe7\xcd\x19\xe5\xf4\x65" "\x94\xb3\x7b\x28\x65\x92\x33\x37\xa3\x9c\x79\x19\xe5\xbc\x25\xa3\x9c\xb7" "\x66\x94\xb3\x47\x46\x39\x7b\x66\x94\xf3\xb6\x8c\x72\xf6\xca\x28\xe7\xed" "\x19\xe5\xec\x9d\x51\xce\x3e\x71\x4e\x67\x98\x54\xce\xbe\x19\xb5\x67\xbf" "\x31\x39\x9d\x2d\xe5\xec\x9f\xf8\x9e\xea\xc2\x84\xbf\xa7\x7a\x24\x67\x7e" "\x46\x39\x0b\x32\xca\x39\x20\xa3\x9c\x03\x33\xca\x39\x28\xa3\x9c\x83\x33" "\xca\x39\x24\xa3\x9c\x77\x0c\xf7\xdd\xb7\xe7\x14\x5b\xcc\x39\x74\x74\xbe" "\x2f\xb1\xef\x4e\x6c\x7f\x7e\x67\x46\xed\x39\x2c\x74\x54\xe5\x44\x2d\xe7" "\x2c\xcc\xa8\x3d\x8b\x32\xca\x79\x57\xe2\x75\x6f\x35\xe7\x8f\x32\x6a\xcf" "\xe2\x8c\x72\x96\x64\xf4\xbc\x8e\x1b\x7d\x1f\x4d\xcb\x69\xb4\x23\x8e\xe4" "\xbc\x3b\xa3\x9c\x93\x32\xca\x59\x96\x51\xce\x7b\x33\xca\x39\x25\xa3\x9c" "\xe5\xa1\x3b\xbc\x3c\x6e\xce\xc6\xa6\x72\xfe\x2c\x74\x65\xd2\x9e\x53\x43" "\x77\x83\x9c\xe6\xda\x73\x4e\x94\xcd\x79\xc2\xba\x8c\x72\xce\xcd\x28\xe7" "\x43\x19\xe5\xac\xcf\x28\xe7\xbc\x8c\x72\x36\x64\x94\x73\x7e\x46\x39\x7f" "\x9e\x51\xce\x05\x0d\x73\x1a\xbd\xaf\x02\x00\xc4\xe2\xbf\xc3\xf7\x8c\x2e" "\xe9\x0d\xe5\xd2\xf9\xa3\xe3\x0a\xf1\xf2\xdd\x87\xcf\x35\xba\x46\x4b\x4d" "\xb4\xdf\xdc\x9d\x49\xce\xe1\xa3\xed\x99\xdc\x79\xfd\xbb\x32\x6a\xcf\xe2" "\x8c\xb6\xcf\x49\x0d\x73\x9a\xed\x87\xc5\xd2\xc6\x6f\x9a\xdb\x3e\xff\x39" "\xa3\xfe\xd3\xca\x44\x4e\xa9\xc5\x9c\xd3\x32\x6a\xcf\xfb\x33\xda\x7f\x06" "\x32\xca\xf9\xc0\xa4\x73\x00\x00\x00\x00\xf8\xff\xd9\xbb\x7f\x1f\x29\xca" "\x30\x0e\xe0\xef\xec\xce\x2e\x7b\xc0\xc2\x49\x88\x39\xd0\xe8\xc5\x06\x48" "\xc4\x5e\xa5\xb8\x00\x2a\x0a\x02\x81\xf8\x0b\xd1\x60\x22\x16\x02\xc6\x68" "\x2c\x94\xc4\x9c\xb5\xf1\x1f\x20\x92\x18\x88\x8d\x8d\x05\x31\x76\x24\x16" "\x14\xd8\x69\x0c\x25\xb1\xd0\x68\x42\x69\x63\x22\x32\x66\xf6\x66\x76\xf7" "\x9d\x9d\xbd\x9d\x10\x95\x04\x3e\x9f\xc2\x99\x9b\x7d\xbe\xef\x33\x33\x37" "\x92\x3c\x57\xec\x00\x00\xc0\xbd\xeb\xfd\x0f\x3f\x3a\xf5\xc6\xe9\xd3\x27" "\xdf\xb3\x63\xc7\x8e\x9d\xe1\xce\x9d\xfe\x97\x09\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x28\xdf\xff\xbf\x39\x99\xfe\x15\xf3\x59" "\x8d\xf2\xb3\x76\x77\x69\x69\xf1\x36\xfa\x3e\x76\xee\xef\x6d\x07\x7f\xdc" "\xf1\xc4\xf8\xb1\x7e\xfa\x40\x98\x0b\x9b\x06\xfb\x47\xaa\x81\x5d\x47\x1f" "\x5d\x3e\x9f\x65\x3f\x6c\xbc\xb0\xf3\x97\x9d\x9f\x7d\x3d\x3f\x65\xdd\x64" "\xeb\xca\x55\x14\xeb\x4c\xfd\xf6\xf4\xf2\xbd\x07\xf3\x45\x51\xb5\x5f\x72" "\x62\xb4\x4e\xed\xf5\xef\xfe\xf4\x83\x8f\xcf\x67\xd9\xae\xb3\xd7\x7f\xbb" "\x71\x71\xef\xa1\x72\x9d\xab\x95\x8e\xc9\x71\x5f\xe0\x0e\x00\x00\xc0\x9d" "\x57\xce\xe1\xfd\xe1\x91\x5e\xe8\xa7\x73\xc3\x39\xbc\x3a\xcf\x96\xca\xf9" "\x79\x61\xc6\xfc\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x77\x83\xf2\xfd" "\xff\x6b\xff\xe7\xf7\xff\x5f\xbb\xff\x9b\xbf\x2e\x9d\xf9\xf9\xfb\xf1\x63" "\xfd\xf4\x36\x16\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\x80" "\x7f\x41\xf9\xfe\xff\x7e\x12\x42\x6b\x4a\xcd\x7f\xf1\xfe\xff\xeb\x17\xfe" "\xbc\x71\xf1\xd4\xdc\xd9\xf1\x63\xfd\xf4\xdd\xb0\x26\x3c\xb8\xf2\xc3\xf2" "\xde\xa8\x7e\x73\xd2\x1e\x6c\x17\xa7\x9c\xcf\x28\xf7\x54\x94\x5b\xdf\x34" "\x17\x9e\x8e\x72\x1b\x1b\xf7\x8b\x73\xe9\x58\x2e\x77\xa4\x72\xdd\xa3\x7e" "\xcf\xc4\xb9\x56\xd3\xf3\xdc\x37\xb5\xdf\xea\xe7\x19\xe7\x36\x34\xce\x3d" "\x1b\xe5\xfa\x8d\xef\xe7\xfe\x28\xb7\xae\x71\xbf\xe7\xa3\xdc\x5c\xe3\x7e" "\x87\xa2\x5c\xaf\x71\xbf\xc3\x51\x2e\x69\xdc\x2f\xfe\xcd\xb6\x1a\xf7\x3b" "\x1a\xe2\x86\x4d\xfb\xbd\x10\xc5\xda\x8d\xfb\xbd\x18\xe5\xe6\x67\xe4\x02" "\x00\x00\x70\xd7\x2a\xe7\xf0\x75\xc3\x23\xbd\xd0\x4f\x0f\x86\x76\xf9\x63" "\x65\x0e\x1f\x1e\xaf\xcc\xaf\xa3\x79\x23\x3e\x3e\x6b\x9e\x1a\xad\xb7\xaf" "\xbe\x4f\x65\xfe\x1c\x1d\x3f\x5c\xdf\x3f\xbc\x14\x1d\x6f\x3c\x1f\x87\x97" "\xa7\xe6\x72\x57\x93\x30\xe5\x7a\xe3\x5c\x08\xe9\xe0\xbf\xbd\xa2\x5f\xaf" "\x3c\xef\xf9\x4a\xee\x8b\xc9\x5c\xde\x6b\xa1\xc8\x2d\x14\x47\xbb\xd5\x5c" "\x78\x25\x4e\x35\xfe\xbb\xc1\xb1\x28\xb7\xb6\xf1\x7d\x79\x35\xca\x35\x9e" "\xff\x97\x8f\x47\xb9\x59\x7f\xbf\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x33\xdc" "\x7c\xf2\xd7\xd7\xde\x3a\x79\xec\x52\xda\x0e\xa1\x35\xa5\x26\xab\x51\x7e" "\x96\x76\x97\x96\x16\x43\xd8\x3e\x56\xbe\x66\xb5\x7e\xd7\x92\x10\x3a\x21" "\x84\x2b\xf7\xdd\xdc\x72\xe4\xd6\x9b\x3b\xc6\x3f\xeb\xa7\xa7\x43\x27\x3c" "\x92\xef\x3e\x97\x65\x59\xbb\x2e\xdf\x1b\x36\x19\xd4\x5d\xba\x95\x65\xed" "\xba\xc2\x6d\x49\x7d\xff\x62\xfd\x3f\x42\x08\xed\x6e\xcd\xe7\x8b\x71\xdd" "\xd6\x2c\xcb\x5a\xdd\x9a\xb5\x2a\x75\x9f\x0c\xea\x6a\x6e\x60\xa5\x6e\x7f" "\x2b\xef\x5b\x73\xc2\x95\xba\x81\x6e\x3a\x59\x77\x22\xae\xcb\xaf\xbf\xd5" "\xed\xcd\x5c\xef\xc0\xa0\x6e\x6e\x66\xdd\x9e\x76\x08\x49\x77\xdd\xcc\xba" "\x33\xf9\x2d\xe9\xae\x9f\x59\xf7\x7b\x7e\x4b\xba\xfd\x99\x75\xef\x0c\xea" "\x36\xcc\xac\x7b\xfd\x56\x96\x25\xdd\x8d\x33\xeb\x2e\xe6\xcf\x45\x77\x7e" "\x66\xdd\x43\x83\xeb\xd8\x3c\xbd\xae\x78\xce\xbe\x6c\x85\x90\xb4\xc3\xe4" "\x83\xf0\x5d\xb1\xed\x2d\x0c\x36\x6f\x5f\x8e\x73\x07\xd2\x41\x6e\xf2\xc1" "\x18\xfe\xca\x2a\x4b\x16\xb9\xaf\x56\x9e\xeb\xc9\x07\x65\x78\x49\x95\x25" "\x8b\xeb\xf9\x3c\xcf\xb5\xda\xc9\xe4\x89\x4e\xfb\x9f\x1b\x00\x00\xb8\x67" "\x94\x73\xf8\x68\xe4\xeb\x85\x7e\xba\xa7\x9c\x43\x76\x27\x21\xd4\x8d\xab" "\xe1\xe1\xd5\xe7\xeb\x73\xad\x10\x3a\x75\xf3\xeb\x72\x5c\x97\xcf\x69\x9d" "\xee\xda\xc9\xba\xca\xfc\xf5\xf8\xca\x79\x4c\x9e\xc9\xa6\x62\xbb\x54\x99" "\x6f\x8a\xdc\x4f\x49\x08\x9d\x76\x98\x3c\x91\xa4\xd2\xa7\x92\xdb\xb6\xd2" "\x6f\x72\x60\xee\x4c\x9e\xea\x78\x6e\x7b\xde\xaf\xd7\x9e\x1c\x3c\xcb\x7e" "\xbd\xca\xb6\xc8\x5d\x19\xe4\x6a\x06\xd6\x32\xb7\x50\xd9\x16\xf7\x6f\x4b" "\x7e\x9e\x75\xf3\x5e\x79\x3f\x8a\xba\x6f\xf3\xf5\x5b\xe9\x64\x5d\x65\x1e" "\xbe\x9c\xd7\x75\xc6\xff\xc0\x53\xa9\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x1f" "\xf6\xea\x2e\xc4\x8a\xf2\x8f\x03\xf8\x6f\xce\x59\xff\xee\xee\xd9\x75\x5d" "\xf1\xaf\x9b\x81\x6c\x2f\x14\x86\x0a\x5e\x68\x16\x0a\x5a\xbe\x66\x6d\x8b" "\x19\x44\x24\x79\x21\x21\x59\x18\x05\x05\x49\x74\xb4\xa4\x30\x4c\x2f\xa2" "\x8b\xba\xcb\x28\x24\x42\x25\x7a\x41\xb1\x5a\xca\x84\x82\x44\x8b\xa8\x9b" "\x50\x88\x6e\x44\x2c\x82\xb2\xd2\x8c\x69\x67\x64\x1d\x77\x58\x99\x16\x82" "\xfa\x7c\x60\xf9\x9d\x67\xe6\x79\xbe\xfb\x9b\x67\x9e\xb3\x0b\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xff\x9c\xce\x96\xce\x96\xb4\x7e\xb2\xe5\x91\x9f\xef\xfb\x7c\xc7" "\xae\x6f\xee\x5f\x73\xb8\x39\xff\x97\x53\x6d\xf3\x36\x7e\x37\xf5\x86\xe5" "\x57\x35\x8f\x1f\x79\xbe\x71\xe6\xfb\x2d\xfb\x36\x7f\x38\x7b\xc1\xd3\x7d" "\x37\xed\x7e\xe8\xd4\xfc\xf7\x66\xaf\x7f\x74\xc4\xe0\xb9\x83\x65\x72\x36" "\x6c\x8d\x48\x8e\x26\x11\x1b\x4e\x4d\x7c\x79\xcf\xb6\x3b\x7b\xd2\x6b\x49" "\x44\xd4\x93\x5a\x33\xa2\x7b\x53\x6d\xa0\x3b\x29\x24\xf4\xfe\x16\x11\x6b" "\xb3\x79\x9d\xf5\xc1\x6e\x8f\x0d\x0c\xde\xdc\xbc\xef\xa9\x75\x69\x6d\x3e" "\x37\xf6\x82\x45\x5d\x85\x90\xe2\x73\x45\xa3\x9e\xf7\x33\x58\x5b\x2f\xec" "\x97\x7f\x97\x89\x11\xd1\x88\x88\x1d\xd9\x78\xf3\xde\x43\xf3\xde\xe8\x59" "\x31\x7d\xf7\xaf\xef\xde\xf5\xce\xb6\x5d\xdb\xa3\x96\xcf\xec\x8d\xb1\x43" "\xce\x55\x2c\x18\xb7\x66\x34\xfb\x98\x3c\xe4\xf3\x99\x27\x23\xd2\x53\xd8" "\x93\x9d\xc3\xe4\x6f\xf4\xd5\x1f\x11\xed\x43\xc6\x23\x1d\xe3\x4b\x3d\xe6" "\x33\xb2\x5a\x2b\x8c\xe7\x14\xe6\xfd\xbf\x30\xae\x15\xc6\x53\xb2\xba\x30" "\xab\xe9\xfb\x88\xe6\xe0\xb3\xa7\x3a\xb2\x5a\xfc\xf2\xe7\x39\x57\x14\x6a" "\xf1\xfb\x3d\x5a\xd6\x9f\xbd\xb4\x79\x79\x9f\xf5\x51\xfa\xbd\x93\x0b\xe3" "\x31\xa3\x94\x9b\x2b\xee\x6b\xd1\xd4\xac\xce\x48\x86\xef\x67\xa4\xbc\x24" "\x7b\x87\xe9\x4f\x67\xd5\x26\x2f\x41\xba\xdf\x6d\x11\xb1\x29\x1b\xe7\x7f" "\xb6\xd3\xf3\x30\x2e\xbd\xd7\xd2\x5b\x58\xd1\x11\xb7\xc6\x6d\xd1\x17\x8b" "\x62\x71\x2c\x89\xa5\xb1\x2c\x6e\x89\xe5\xb1\x22\xfa\xa3\xfd\xa2\xb9\x9d" "\x25\x73\xbb\x93\xfe\xe8\xb8\x68\x76\x12\xe3\x93\x7a\xd6\x53\x3d\x89\x5a" "\x12\x2d\xe7\xb7\x65\x51\x12\xf1\xbf\x21\x73\xbb\xce\xaf\xa9\x5d\xf0\x6e" "\xd3\xf3\x3d\x76\x98\xe7\xcc\xaf\xe7\x81\xcd\xec\x43\x23\xbb\xd6\x48\x26" "\x5c\xb4\xe6\xdc\x30\xf2\x7b\x2f\x6c\x38\xbd\x60\xfb\xde\xf6\x43\x3d\xc3" "\x6d\x6a\x9a\xd9\x97\x64\xf9\x49\xa5\xfc\xa5\x6d\xdb\x4f\xf6\x6e\xbd\x7e" "\xf5\xf8\xb2\xfc\xa9\x79\x7e\xad\x52\x7e\xdb\xc0\xd7\x0b\x9f\x79\x3c\x0e" "\x94\xe6\x2f\xcb\xf3\xeb\x95\xf2\x8f\x5f\xf3\x7e\xd7\x1d\x53\xce\x7d\x56" "\x9a\xbf\x2a\xcf\x6f\x49\xaa\xe4\xcf\x7c\xe9\xec\xb5\x7d\x47\xa7\xdd\x58" "\x9a\xbf\x36\xcf\x6f\xad\xd4\xff\xc0\x9e\x13\x0b\xf7\xcf\xdd\x7f\x79\x69" "\xfe\xbc\x3c\xbf\xad\x52\xfe\xd6\x5d\xab\x6e\x3f\xf9\xe5\x8b\xb3\x4a\xf3" "\xe7\xe4\xf9\xed\x95\xf2\xbf\x9a\xf4\xf6\xef\x6f\x3d\x78\xec\xd3\xd6\xb2" "\xfc\x75\x79\x7e\xa3\x52\xfe\x81\xc5\x13\xfa\x9f\x3d\xf2\xe3\xfe\xd2\xf3" "\x3f\x3d\xcf\xef\xa8\x94\x7f\xef\x0f\xdb\x3e\x5e\x39\x66\xfe\x92\xd2\xfd" "\x99\x94\xe7\x77\x56\xca\xff\xf6\x95\xd3\x27\x76\xae\x6f\xdb\x58\x9a\xff" "\x40\x9e\x3f\xae\x52\xfe\x6b\x33\x5f\x3f\x7c\x75\xcf\x9b\x3b\x4b\xf7\xe7" "\xca\x3c\xbf\xab\x52\xfe\xce\xad\x07\x6f\x7e\xe2\xa7\x0f\xbe\x28\xed\xbf" "\xe7\xaf\xfc\xa4\x11\xe3\x2b\xe5\xaf\x9e\xf5\xd1\xab\xf7\x5c\x77\xe2\xb1" "\xd2\xf3\x73\x77\xde\xff\xc4\x4a\xf9\x07\xbb\xcf\x5c\xb6\xf2\x8f\xb5\xd3" "\x4a\xfb\x7f\x78\xa4\xff\xb0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xdf\xf1\x67\x00\x00\x00" "\xff\xff\x61\x91\x88\x1f", 18798); syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x200000004940, /*flags=MS_REC*/ 0x4000, /*opts=*/0x200000000000, /*chdir=*/0, /*size=*/0x496e, /*img=*/0x200000004980); } 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); const char* reason; (void)reason; if ((reason = setup_swap())) printf("the reproducer may not work as expected: swap setup failed: %s\n", reason); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { do_sandbox_none(); } } sleep(1000000); return 0; }