// https://syzkaller.appspot.com/bug?id=0f2cf7b72ba525cc8d9f12a776ab45f440dadac4 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; //% 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; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {6d 61 63 63 65 6e 74 65 75 72 6f} (length 0xb) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nointegrity: buffer: {6e 6f 69 6e 74 65 67 72 69 74 79} // (length 0xb) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nointegrity: buffer: {6e 6f 69 6e 74 65 67 72 69 74 79} // (length 0xb) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // gid: fs_opt["gid", fmt[hex, gid]] { // name: buffer: {67 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // uid: fs_opt["uid", fmt[hex, uid]] { // name: buffer: {75 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // uid: fs_opt["uid", fmt[hex, uid]] { // name: buffer: {75 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x5f27 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5f27) // } // ] // returns fd_dir memcpy((void*)0x20005dc0, "jfs\000", 4); memcpy((void*)0x20005e00, "./file0\000", 8); memcpy((void*)0x20000100, "iocharset", 9); *(uint8_t*)0x20000109 = 0x3d; memcpy((void*)0x2000010a, "maccenteuro", 11); *(uint8_t*)0x20000115 = 0x2c; memcpy((void*)0x20000116, "nointegrity", 11); *(uint8_t*)0x20000121 = 0x2c; memcpy((void*)0x20000122, "nointegrity", 11); *(uint8_t*)0x2000012d = 0x2c; memcpy((void*)0x2000012e, "gid", 3); *(uint8_t*)0x20000131 = 0x3d; sprintf((char*)0x20000132, "0x%016llx", (long long)0); *(uint8_t*)0x20000144 = 0x2c; memcpy((void*)0x20000145, "uid", 3); *(uint8_t*)0x20000148 = 0x3d; sprintf((char*)0x20000149, "0x%016llx", (long long)0); *(uint8_t*)0x2000015b = 0x2c; memcpy((void*)0x2000015c, "grpquota", 8); *(uint8_t*)0x20000164 = 0x2c; memcpy((void*)0x20000165, "uid", 3); *(uint8_t*)0x20000168 = 0x3d; sprintf((char*)0x20000169, "0x%016llx", (long long)0); *(uint8_t*)0x2000017b = 0x2c; *(uint8_t*)0x2000017c = 0; memcpy( (void*)0x20005e40, "\x78\x9c\xec\xdd\x4b\x8f\x14\xd7\xd9\x07\xf0\xa7\x2f\xd3\x73\xe1\x35\x8c" "\x2c\xbd\x96\x85\xb2\x18\x63\xe7\x42\x30\x30\x5c\x0c\xb9\xdb\xde\x24\x52" "\x56\x91\x22\x36\x59\x81\xc6\x63\x0b\x05\x27\x11\x90\x28\xb6\x50\x18\x6b" "\x16\xf9\x06\x51\xb2\x48\x94\xec\xb3\xca\x27\xc8\x1e\x3e\x84\x17\x59\x06" "\x09\x92\x8d\x57\xa9\xa8\x66\xce\x81\x9a\xa2\x87\x1e\x02\xd3\xd5\x33\xe7" "\xf7\x93\x86\xaa\xa7\x4e\x55\xf7\x29\xfe\x5d\xd3\xdd\xd3\x55\x7d\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x1f\x7e\xff\xc7\xe7" "\x7a\x11\x71\xf5\x57\x69\xc1\x72\xc4\xff\xc5\x20\xa2\x1f\xb1\x58\xd7\x2b" "\x11\xb1\xb8\xb2\x9c\xd7\x1f\x46\xc4\xeb\xb1\xd5\x1c\xaf\xd5\xab\xcf\x47" "\xd4\xdb\x6f\xfd\x73\x2c\xe2\x62\x44\xdc\x3f\x1a\xf1\xf0\xd1\x9d\xb5\x7a" "\xf1\xf9\x3d\xf6\xe3\xdf\x47\xfe\xff\xd8\x3f\xff\xfa\x83\xd3\xbf\xff\xdb" "\xef\xee\x9d\xfc\xe3\xa9\xb7\xdb\xed\x7f\x5a\xff\xc7\xbd\x9f\xdc\x4d\xf7" "\x05\x00\x00\x00\x3c\x97\xaa\xaa\xaa\x5e\x7a\x9b\x7f\x3c\xbd\xbf\xef\x77" "\xdd\x29\x00\x60\x2a\xf2\xf3\x7f\x95\xe4\xe5\x6a\xb5\x5a\xad\x56\xab\x0f" "\x5f\xdd\x54\x8d\x77\xb7\x59\x44\xc4\x46\x73\x9b\xfa\x35\xc3\xdd\x71\x37" "\x06\x00\xcc\xae\x8d\xf8\xa2\xeb\x2e\xd0\x21\xf9\x17\x6d\x18\x11\x47\xba" "\xee\x04\x30\xd3\x9c\x77\x7f\x38\x3d\x7c\x74\x67\xad\x97\xf2\xed\x35\x9f" "\x0f\x56\xb6\xdb\xf3\xb9\x20\x3b\xf2\xdf\xe8\x3d\xbe\xbe\x63\xb7\xe9\x24" "\xed\x73\x4c\xa6\xf5\xf8\xda\x8c\x41\xbc\xba\x4b\x7f\x16\xa7\xd4\x87\x59" "\x92\xf3\xef\xb7\xf3\xbf\xba\xdd\x3e\x4a\xeb\xed\x77\xfe\xd3\xb2\x5b\xfe" "\xa3\xed\x4b\x9f\x8a\x93\xf3\x1f\xb4\xf3\x6f\x39\x3c\xf9\xf7\xc7\xe6\x5f" "\xaa\x9c\xff\xf0\xb9\xf2\x1f\xc8\x1f\x00\x00\x00\x00\x00\x66\x58\xfe\xfb" "\xff\x72\xc7\x9f\xff\xce\xbf\xf8\xae\xec\xc9\xb3\x3e\xff\x5d\x99\x52\x1f" "\x00\x00\x00\x00\x00\x00\x00\xe0\x65\x7b\xd1\xf1\xff\x1e\x33\xfe\x1f\x00" "\x00\x00\xcc\xac\xfa\xbd\x7a\xed\xcf\x47\x9f\x2c\xdb\xed\x3d\x76\xbd\xfc" "\x4a\x2f\xe2\x95\xd6\xfa\x40\x61\xd2\xc5\x32\x4b\x5d\xf7\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x4a\x32\xdc\x3e\x87\xf7\x4a\x2f\x62\x2e\x22" "\x5e\x59\x5a\xaa\xaa\xaa\xfe\x69\x6a\xd7\xcf\xeb\x45\xb7\x3f\xe8\x4a\xdf" "\x7f\x28\x59\xd7\xbf\xe4\x01\x00\x60\xdb\xfd\xa3\xad\x6b\xf9\x7b\x11\x0b" "\x11\x71\x25\x7d\xd7\xdf\xdc\xd2\xd2\x52\x55\x2d\x2c\x2e\x55\x4b\xd5\xe2" "\x7c\x7e\x3d\x3b\x9a\x5f\xa8\x16\x1b\xef\x6b\xf3\xb4\x5e\x36\x3f\xda\xc3" "\x0b\xe2\xe1\xa8\xaa\x6f\x6c\xa1\xb1\x5d\xd3\xa4\xf7\xcb\x93\xda\xdb\xb7" "\x57\xdf\xd7\xa8\x1a\xec\xa1\x63\xd3\xd1\x61\xe0\x00\x10\x11\xdb\xcf\x46" "\x0f\x3d\x23\x1d\x32\x55\x75\x2c\xba\x7e\x95\xc3\xc1\xe0\xf8\x3f\x7c\x1c" "\xff\xec\x45\xd7\x8f\x53\x00\x00\x00\x60\xff\x55\x55\x55\xf5\xd2\xd7\x79" "\x1f\x4f\x9f\xf9\xf7\xbb\xee\x14\x00\x30\x15\xf9\xf9\xbf\xfd\xb9\x80\x5a" "\xad\x56\xab\xd5\xea\xc3\x57\x37\x55\xe3\xdd\x6d\x16\x11\xb1\xd1\xdc\xa6" "\x7e\xcd\x70\x77\xdc\x8d\x01\x00\xb3\x6b\x23\xbe\xe8\xba\x0b\x74\x48\xfe" "\x45\x1b\x46\xc4\xeb\x5d\x77\x02\x98\x69\xbd\xae\x3b\xc0\xbe\x78\xf8\xe8" "\xce\x5a\x2f\xe5\xdb\x6b\x3e\x1f\xa4\xf1\xdd\xf3\xb9\x20\x3b\xf2\xdf\xe8" "\x6d\x6d\x97\xb7\x1f\x37\x9d\xa4\x7d\x8e\xc9\xb4\x1e\x5f\x9b\x31\x88\x57" "\x77\xe9\xcf\x6b\x53\xea\xc3\x2c\xc9\xf9\xf7\xdb\xf9\x5f\xdd\x6e\x1f\xa5" "\xf5\xf6\x3b\xff\x69\xd9\x2d\xff\x7a\x3f\x97\x3b\xe8\x4f\xd7\x72\xfe\x83" "\x76\xfe\x2d\x87\x27\xff\xfe\xd8\xfc\x4b\x95\xf3\x1f\x3e\x57\xfe\x03\xf9" "\x03\x00\x00\x00\x00\xc0\x0c\xcb\x7f\xff\x5f\xf6\xf9\x6f\xde\x65\x00\x00" "\x00\x00\x00\x00\x00\x38\x70\x1e\x3e\xba\xb3\x96\xaf\x7b\xcd\x9f\xff\x7f" "\x69\xcc\x7a\xae\xff\x3c\x9c\x72\xfe\x3d\xf9\x17\x29\xe7\xdf\x6f\xe5\xff" "\xb5\xd6\x7a\x83\xc6\xfc\x83\xf7\x9f\xe4\xff\xaf\x47\x77\xd6\x7e\xf4\x87" "\xcf\x8f\xe7\xe9\x5e\xf3\x9f\xcf\x33\xbd\xf4\xc8\xea\xa5\x47\x44\x2f\xdd" "\x53\x6f\x98\xa6\x2f\xb2\x77\x4f\xdb\x9c\x1b\x8c\xea\x7b\x9a\xeb\xf5\x07" "\xc3\x74\xce\x4f\x35\xf7\x61\x5c\x8f\x1b\xb1\x1e\xab\x3b\xd6\xed\xa7\xff" "\x8f\x27\xed\xe7\x76\xb4\xd7\x3d\x9d\xdb\xd1\x7e\x7e\x47\xfb\xf0\xa9\xf6" "\x0b\x3b\xda\xe7\xd2\xf7\x0e\x54\x8b\xb9\xfd\x4c\xac\xc5\xcf\xe3\x46\x7c" "\xb0\xd5\x5e\xb7\xcd\x4f\xd8\xff\x85\x09\xed\xd5\x84\xf6\x9c\xff\xc0\xf1" "\x5f\xa4\x9c\xff\xb0\xf1\x53\xe7\xbf\x94\xda\x7b\xad\x69\xed\xc1\x67\xfd" "\xa7\x8e\xfb\xe6\x74\xdc\xfd\xbc\xf7\xdb\x7b\xf7\x57\xf7\x7f\x77\x26\xda" "\x8c\xc1\xe3\x7d\x6b\xaa\xf7\xef\x44\x07\xfd\xd9\xfa\x3f\x39\x32\x8a\x5f" "\xde\x5a\xbf\x79\xe6\xd7\xd7\x6e\xdf\xbe\x79\x2e\xd2\x64\xc7\xd2\xf3\x91" "\x26\x2f\x59\xce\x7f\x2e\xfd\x3c\xfe\xfd\xff\xe6\x76\x7b\xfe\xbd\xdf\x3c" "\x5e\x1f\x7c\x36\x7a\xee\xfc\x67\xc5\x66\x0c\x77\xcd\xff\xcd\xc6\x7c\xbd" "\xbf\x27\xa7\xdc\xb7\x2e\xe4\xfc\x47\xe9\x27\xe7\xff\x41\x6a\x1f\x7f\xfc" "\x1f\xe4\xfc\x77\x3f\xfe\x4f\x75\xd0\x1f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x78\x96\xaa\xaa\xb6\x2e\x11\x7d\x2f\x22\x2e\xa5\xeb\x7f" "\xba\xba\x36\x13\x00\x98\xae\xfc\xfc\x5f\x25\x79\xb9\x5a\xad\x56\xab\xd5" "\xea\xc3\x57\x37\x55\xe3\xbd\xdb\x2c\x22\xe2\xef\xcd\x6d\xea\xd7\x0c\xbf" "\x19\x77\x63\x00\xc0\x2c\xfb\x4f\x44\x7c\xde\x75\x27\xe8\x8c\xfc\x0b\x96" "\xbf\xef\xaf\x9e\xbe\xd5\x75\x67\x80\xa9\xba\xf5\xc9\xa7\x3f\xbd\x76\xe3" "\xc6\xfa\xcd\x5b\x5d\xf7\x04\x00\x00\x00\x00\x00\x00\x00\xf8\x5f\xe5\xf1" "\x3f\x57\x1a\xe3\x3f\xbf\x15\x11\xcb\xad\xf5\x76\x8c\xff\xfa\x7e\xac\xbc" "\xe8\xf8\x9f\xc3\x3c\xf3\x78\x80\xd1\x97\x3c\xd0\xf7\x2e\x36\xfb\xa3\x41" "\xbf\x31\xdc\xf8\x1b\xf1\xec\xf1\xbf\x4f\xc4\xb3\xc7\xff\x1e\x4e\xb8\xbf" "\xb9\x09\xed\xa3\x09\xed\xf3\x13\xda\x17\x26\xb4\x8f\xbd\xd0\xa3\x21\xe7" "\xff\x46\x63\xbc\xf3\x3a\xff\xe3\xad\xe1\xd7\x4b\x18\xff\xb5\x3d\xe6\x7d" "\x09\x72\xfe\x27\x1a\x8f\xe7\x3a\xff\xaf\xb6\xd6\x6b\xe6\x5f\xfd\xe5\x20" "\xe7\xdf\xdf\x91\xff\xd9\xdb\x1f\xff\xe2\xec\xad\x4f\x3e\x3d\x7d\xfd\xe3" "\x6b\x1f\xad\x7f\xb4\xfe\xb3\x8b\xab\xab\x97\x2e\x5c\x7e\x67\xf5\xf2\xea" "\xd9\x0f\xaf\xdf\x58\x4f\xff\x76\xd8\xe3\xfd\x95\xf3\xcf\x63\x5f\x3b\x0f" "\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb\x92\xf3\xff\x72\xaa\xe5\x5f\x96\x9c\xff" "\x57\x52\x2d\xff\xb2\xe4\xfc\xf3\xeb\x3d\xf9\x97\x25\xe7\x9f\xdf\xfb\xc8" "\xbf\x2c\x39\xff\x93\xa9\x96\x7f\x59\x72\xfe\x5f\x4f\xb5\xfc\xcb\x92\xf3" "\x3f\x95\x6a\xf9\x97\x25\xe7\xff\x76\xaa\xe5\x5f\x96\x9c\xff\xe9\x54\xcb" "\xbf\x2c\x39\xff\x33\xa9\x96\x7f\x59\x72\xfe\x67\x53\x2d\xff\xb2\xe4\xfc" "\xf3\x27\x5c\xf2\x2f\x4b\xce\x3f\x9f\xd9\x20\xff\xb2\xe4\xfc\xcf\xa7\x5a" "\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc\xcb\x92\xf3\xbf\x98\x6a\xf9\x97\x25\xe7" "\xff\x4e\xaa\xe5\x5f\x96\x9c\xff\xa5\x54\xcb\xbf\x2c\x39\xff\xcb\xa9\x96" "\x7f\x59\x72\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\xff\x66\xaa\xe5\x5f\x96\x9c" "\xff\xb7\x52\x2d\xff\xb2\xe4\xfc\xbf\x9d\xea\x89\xf9\x2f\x4e\xa7\x5f\x4c" "\x47\xce\xff\x3b\xa9\x76\xfc\x97\x25\xe7\xff\xdd\x54\xcb\xbf\x2c\x39\xff" "\xef\xa5\x5a\xfe\x65\xc9\xf9\xbf\x9b\x6a\xf9\x97\xe5\xc9\xf7\xff\x9b\x31" "\x63\xc6\x4c\x9e\xe9\xfa\x37\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xd0\x36\x8d\xd3\x89\xbb\xde\x47\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\xff\xb2\x03\x07\x02\x00\x00\x00\x00" "\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85\x1d\x38\x10" "\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\x2a\xec\xdd\x5b\x8c\x9c\xe5\x7d\x3f\xf0\x77\x4f\xf6\xda\x10\xd8\x7f\x02" "\xc4\x7f\x42\x60\x6d\x1c\x30\xb0\xb0\xeb\x33\x4e\xeb\x60\x0e\x29\x14\x42" "\x9b\x26\x90\xb6\xe9\xc1\x71\xed\xb5\x71\xf0\x61\xeb\x5d\x87\x83\x90\x70" "\x44\x5a\x90\x8a\x5a\xa4\xe6\x82\x5c\x34\x21\x29\x52\xb9\xa9\x82\x92\xa8" "\xa2\x6a\x1a\x39\x52\xab\x44\x4a\xa4\x70\x95\xb6\x6a\x4b\xa8\x20\x15\x4a" "\x43\xeb\xa4\xbd\x48\xaa\x90\xad\x66\xde\xe7\x79\x76\x66\x3c\xbb\xb3\x9e" "\xd9\x5d\xcf\xbc\xef\xe7\x23\xe1\x9f\x77\xe6\x9d\x99\x67\x66\x9e\x99\xdd" "\xef\x9a\xef\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\xad\xf5\xb7\x4f\x3e\xd9\x97\x65\x59" "\xe5\xbf\xea\x1f\x23\x59\x76\x61\xe5\xef\x6b\x46\x47\x2a\x1f\x6e\x7c\xef" "\xf9\x5e\x21\x00\x00\x00\xd0\xa9\xb7\xaa\x7f\x9e\xb9\x38\x9d\xb0\x67\x11" "\x17\xaa\x39\xe6\x1b\x57\x7e\xe7\x2b\xb3\xb3\xb3\xb3\xd9\x2b\xdf\xbf\xee" "\x9d\x9f\x9e\x9d\x4d\x67\x8c\x66\xd9\xc8\xea\x2c\xab\x9e\x17\xbd\x71\xef" "\xdf\x6c\xac\x3d\x26\x78\x22\x1b\xee\xeb\xaf\xf9\xb8\xbf\xc5\xcd\x0f\xb4" "\x38\x7f\xb0\xc5\xf9\x43\x2d\xce\x5f\xd5\xe2\xfc\xd5\x2d\xce\x1f\x6e\x71" "\xfe\x6c\xab\x2b\xc8\xd6\xe4\xdf\x8f\xa9\x5e\xd9\xc6\xea\x5f\x47\xf2\x87" "\x34\xbb\x24\x1b\xaa\x9e\xb7\xb1\xc9\xa5\x9e\xe8\x5b\xdd\xdf\x1f\xbf\x97" "\x53\xd5\x57\xbd\xcc\xec\xd0\xc1\xec\x70\x76\x24\x9b\xcc\x26\xea\x8e\xcf" "\x8f\xed\xab\x1e\xff\xd5\xf5\x95\xdb\xba\x2b\x8b\xb7\xd5\x5f\x73\x5b\x57" "\x54\x76\xc8\x8f\x1e\xdb\x1f\xd7\xd0\x17\x1e\xe3\x8d\x75\xb7\x35\x77\x9d" "\xd1\x9b\xb7\x66\xa3\x3f\xfe\xd1\x63\xfb\x3f\xf8\x99\x57\x2f\x6f\x36\x5b" "\x3d\x0a\xf5\xd7\x97\xaf\x73\xd3\x86\xca\x3a\x3f\x15\x4e\xc9\xd7\xda\x97" "\xad\x4e\x8f\x49\x5c\x67\x7f\xcd\x3a\xaf\x68\xf2\x9c\x0c\xd4\xad\xb3\xaf" "\x7a\xb9\xca\xdf\x1b\xd7\x79\x66\x91\xeb\x1c\x98\x5b\xe6\x8a\x6a\x7c\xce" "\x87\xb3\xfe\xea\xdf\x5f\xae\x3e\x4e\x83\xb5\xdf\xd6\x4b\x8f\xd3\x15\xe1" "\xb4\x9f\x5c\x9d\x65\xd9\xa9\xb9\x65\x37\x1e\x73\xd6\x6d\x65\xfd\xd9\xda" "\xba\x53\xfa\xe7\x9e\x9f\xe1\x7c\x47\x56\xae\xa3\xb2\x95\xde\x9e\x0d\x9e" "\xd3\x3e\x5d\xbf\x88\x7d\x5a\x99\x07\x36\xd6\xef\xd3\xc6\xd7\x44\x7c\xfe" "\xd7\x87\xcb\x0d\xce\xb3\x86\xda\xa7\xe9\xcd\x4f\xae\x3a\xeb\x79\x3f\xd7" "\x7d\x1a\x55\xee\xf5\x7c\xaf\x95\xc6\x3d\xb8\xd4\xaf\x95\x6e\xd9\x83\x71" "\x5f\xbc\x5c\xbd\xd3\x4f\x35\xdd\x83\x1b\xc3\xfd\x7f\xec\x9a\xf9\xf7\x60" "\xd3\xbd\xd3\x64\x0f\xa6\xfb\x5d\xb3\x07\x37\xb4\xda\x83\xfd\xab\x06\xaa" "\x6b\x4e\x4f\x42\x5f\xf5\x32\x73\x7b\x70\x73\xdd\xf1\x03\xd5\x5b\xea\xab" "\xce\x37\xae\x59\x78\x0f\x8e\xcf\x1c\x9d\x1a\x9f\x7e\xe4\xd1\x1b\x0f\x1f" "\xdd\x77\x68\xf2\xd0\xe4\xb1\x6d\x13\x13\x3b\xb6\xee\xdc\x3e\xb1\x73\x62" "\xfc\xe0\xe1\x23\x93\xe1\xcf\x36\x1f\xed\xee\xb7\x36\xeb\x4f\xaf\x81\x0d" "\xe1\xb1\x8b\xaf\x81\x6b\x1b\x8e\xad\xdd\xaa\xb3\x9f\x5f\xba\xd7\xe1\xf0" "\x02\xaf\xc3\x91\x86\x63\x97\xfa\x75\x38\xd8\x78\xe7\xfa\x56\xe6\x05\x79" "\xf6\x9e\xce\x5f\x1b\xf7\x55\x1e\xf4\xe1\xa7\xfb\xb3\x79\x5e\x63\xd5\xe7" "\xe7\xfa\xce\x5f\x87\xe9\x7e\xd7\xbc\x0e\x07\x6b\x5e\x87\x4d\x3f\xa7\x34" "\x79\x1d\x0e\x2e\xe2\x75\x58\x39\x66\xea\xfa\xc5\x7d\xcd\x32\x58\xf3\x5f" "\xb3\x35\x2c\xd7\xe7\x82\x91\x9a\x3d\xd8\xf8\xf5\x48\xe3\x1e\x5c\xea\xaf" "\x47\xba\x65\x0f\x0e\x87\x7d\xf1\x2f\xd7\xcf\xff\xb9\xe0\x8a\xb0\xde\xa7" "\xc6\xce\xf5\xeb\x91\x81\xb3\xf6\x60\xba\xbb\xe1\xbd\xa7\x72\x4a\xfa\x7a" "\x7f\xf8\xe6\xea\x68\xb6\x2f\x2f\xaf\x9c\x71\xc1\xaa\xec\xe4\xf4\xe4\x89" "\x9b\x1e\xde\x37\x33\x73\x62\x73\x16\xc6\x8a\x78\x47\xcd\x5e\x69\xdc\xaf" "\x6b\x6b\xee\x53\x76\xd6\x7e\xed\x3f\xe7\xfd\xba\xe7\xc9\x6f\x7d\xfb\xf2" "\x26\xa7\x8f\x84\xc7\x6a\xf8\xc6\xca\x1f\xc3\xf3\x3e\x57\x95\x63\xb6\xdd" "\xb4\xf0\x73\x55\xfd\xec\xd6\xfc\xf1\xac\x3b\x75\x4b\x16\xc6\x12\x5b\xe9" "\xc7\xb3\xd9\x67\xf3\xca\xe3\x99\xb2\xe4\x02\x8f\x67\xe5\x98\x4f\x8d\x77" "\xfe\xb5\x78\x8a\x95\x35\xef\xbf\x43\xf3\xbc\xff\xc6\xdc\xff\xf3\xea\xed" "\x6c\x4c\x57\xf5\xc4\xc0\xd0\x60\xfe\xfa\x1d\x48\x8f\xce\x50\xdd\xfb\x71" "\xfd\x53\x35\x58\x7d\xef\xea\xab\xde\xf6\x99\xf1\xc5\xbd\x1f\x0f\x85\xff" "\x56\xfa\xfd\xf8\x92\x05\xde\x8f\xd7\x35\x1c\xbb\xd4\xef\xc7\x43\x8d\x77" "\x2e\xbe\x1f\xf7\xb5\xfa\x6e\x47\x67\x1a\x9f\xcf\xe1\xb0\x4f\x8e\x4c\x2c" "\xfc\x7e\x5c\x39\x66\xdd\x96\x73\xdd\x93\x83\x0b\xbe\x1f\x5f\x1d\x66\x5f" "\x78\xfc\xaf\x0b\x49\x21\xe5\xa2\x9a\xbd\x33\xdf\xbe\x4d\xb7\x35\x38\x38" "\x14\xee\xd7\x60\xbc\x85\xfa\x7d\xba\xb5\xee\xf8\xa1\x90\xcd\x2a\xb7\xf5" "\xc2\x96\xf6\xf6\xe9\xa6\xab\xf3\xeb\x1a\x48\xf7\x6e\xce\x4a\xed\xd3\xd1" "\x86\x63\x97\x7a\x9f\xa6\xf7\xab\xf9\xf6\x69\x5f\xab\xef\xbe\xb5\xa7\xf1" "\xf9\x1c\x0e\xfb\xe2\x92\xad\x0b\xef\xd3\xca\x31\xa7\xb7\x75\xfe\xde\xb9" "\x26\xfe\xb5\xe6\xbd\x73\x55\xab\x3d\x38\x34\xb0\xaa\xb2\xe6\xa1\xb4\x09" "\xf3\xf7\xfb\xd9\x35\x71\x0f\xde\x94\xed\xcf\x8e\x67\x47\xb2\x03\xd5\x73" "\x57\x55\xf7\x53\x5f\xf5\xb6\xc6\xb6\x2f\x6e\x0f\xae\x0a\xff\xad\xf4\x7b" "\xe5\xba\x05\xf6\xe0\xa6\x86\x63\x97\x7a\x0f\xa6\xcf\x63\xf3\xed\xbd\xbe" "\xc1\xb3\xef\xfc\x12\x68\x7c\x3e\x87\xc3\xbe\x78\x76\xfb\xc2\x7b\xb0\x72" "\xcc\x1d\x3b\x97\xf6\x6b\xd7\x4d\xe1\x94\x74\x4c\xcd\xd7\xae\x8d\xdf\x5f" "\x9b\xef\x7b\x5e\x97\x37\x3c\x4c\xcb\xf9\x3d\xaf\xca\x3a\xff\x6e\xe7\xc2" "\xdf\x9b\xad\x1c\x73\xe4\xe6\x73\xcd\x99\x0b\x3f\x4e\x37\x84\x53\x2e\x68" "\xf2\x38\x35\xbe\x7e\xe7\x7b\x4d\x1d\xc8\x56\xe6\x71\x5a\x17\xd6\xf9\xc3" "\x9b\xe7\x7f\x9c\x2a\xeb\xa9\x1c\xf3\xe9\x5d\x8b\xdc\x4f\x7b\xb2\x2c\xfb" "\xf2\x3d\x7b\xaa\xdf\xef\x0d\xff\xbe\xf2\xa5\x93\xdf\xfd\x4a\xdd\xbf\xbb" "\xec\xc9\xcf\x7b\x69\xd7\xdc\x75\x9d\xf5\x55\x47\xb3\x7f\xf7\xf9\xf2\x3d" "\x7b\x4e\xff\xe3\xdd\x3f\x3d\x97\xfb\x08\x40\x77\xfb\x79\xf5\xcf\x8d\x6b" "\xf3\xcf\x75\x35\xff\x32\xb5\x98\x7f\xff\x07\x00\x00\x00\x7a\x42\xcc\xfd" "\xfd\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\xf1\xff\x0a\x4f\xe4\x7f" "\x00\x00\x00\x28\x8c\x98\xfb\x07\xc3\x4c\x4a\x92\xff\x9f\xfa\xd7\x4b\x1f" "\xfc\xd9\xe3\x59\x6a\xe6\xcf\x06\xf1\xfc\xf8\x30\x4c\xbd\x96\x1f\x17\x3b" "\xae\xcf\x85\x8f\x47\x67\xe7\x54\x4e\xbf\xed\xf9\xbf\xff\xd6\x47\x1f\x5f" "\xdc\x6d\xf7\x67\x59\xf6\xb3\xbb\xff\xb9\xe9\xf1\x4f\xbd\x16\xd7\x95\x7b" "\x26\xac\x73\xf4\x7b\xf5\xa7\x9f\x65\xdd\xf7\x16\x75\xfb\x1f\xbb\x7f\xee" "\xb8\xda\x0e\xe0\x48\xb8\xfe\x78\x7f\x1a\xb7\xc1\x57\xff\xeb\xb5\xea\xe5" "\x46\x77\xe5\xf3\xf4\xdd\xa7\xab\xf3\x43\xa7\x9e\x7a\xa2\x72\xfe\x99\x5d" "\xf9\xc7\xb1\x3b\xf9\xc6\x7f\xe7\xc7\xfd\x59\x28\xf3\xee\x39\xf8\xf5\xba" "\xcb\x6f\x7a\x25\xbf\xbd\x8d\xaf\x2c\x7c\xbf\xe2\xe5\xbe\xf8\x81\x35\xf7" "\xbc\xeb\x23\x73\xb7\x17\x2f\xd7\xb7\xe1\xa2\xea\xdd\x78\xf6\x7d\xf9\xf5" "\xc6\x9f\x7b\xf3\xcc\xed\xf9\xf1\x67\xc2\x71\xf3\xad\xff\x6f\xff\xe8\x85" "\x2f\x56\x8e\x7f\xf8\x3d\xcd\xd7\xff\x78\x7f\xf3\xf5\xbf\x11\xae\xf7\xf5" "\x30\x7f\xfa\x56\x7e\x7a\xed\x63\x5a\xf9\x38\x5e\xee\x0f\xc2\xfa\xe3\xed" "\xc5\xcb\xdd\xf4\x85\xaf\x35\x5d\xff\x8b\x77\xe6\xc7\xbf\x18\x9e\x97\xe7" "\xc2\x6c\x5c\xff\xad\x7f\xf2\xee\xb7\x6a\x1f\xaf\xb8\xfe\x78\x3b\x7b\x5e" "\xcd\x2f\x17\x6f\x7f\xe2\xaf\xfe\xbd\x7a\xb9\x78\x7d\xf1\xfa\x1b\xd7\x3f" "\x7c\xcb\x6b\x75\x8f\x47\xe3\xf5\x9f\xfe\x52\x7e\x3d\xbb\x3f\xf1\x3f\x03" "\xb5\xc7\xc7\xd3\xe3\xed\xa4\x7d\xf7\x6a\xfd\xf3\x5c\xb9\x9e\xda\xfd\x16" "\xbd\xf0\x87\xa7\xeb\x1e\xe7\xec\xdf\xf2\xcb\xfd\x75\xc3\xfa\xe3\xf5\x4d" "\xbd\xda\x7c\xfd\x37\x34\xac\x73\x6a\xf3\xda\xea\xe5\xe7\xab\x8c\x7f\x76" "\xf2\xf5\xa6\xf7\x37\xae\x67\xcf\x5f\xbe\x5c\x77\x7f\x5e\xfc\x41\x78\xfc" "\x6e\xbb\xb7\x7a\xbd\xc3\x3f\x09\xfb\x31\x9c\xff\xbf\xcf\xe4\xd7\xd7\xf8" "\xd3\x12\x5e\xfe\x41\xfd\xfb\x49\x3c\xfe\xb9\x91\xfc\x75\x19\xaf\x6f\xbc" "\x61\xfd\xcf\x34\xac\xff\xd4\x55\x95\xc7\xae\xf5\xfa\xef\xfa\x71\xbe\xfe" "\x17\x6f\xf9\x46\xfd\xf3\xf1\x1f\xf9\x3a\xf6\xbc\x99\xcf\x56\xeb\x3f\xf4" "\xb9\xef\xd4\x5d\xfe\xf3\xdf\xcd\x9f\x8f\x13\x0f\x8d\x1d\x3b\x3e\x7d\xf2" "\x70\xec\x50\x8f\x84\x9f\xfd\x33\xf5\xfd\xfc\xfa\x56\x0f\xaf\x59\x7b\xc1" "\x85\x6f\xbb\xe8\xe2\xf0\x5e\xd9\xf8\xf1\xde\xe3\x33\x0f\x4c\x9e\x18\x9d" "\x18\x9d\xc8\xb2\xd1\x1e\xfc\x91\x78\xcb\xbd\xfe\x2f\x84\xf9\x9f\xf9\x38" "\xb5\xd4\xd7\xff\x58\x96\x65\x0f\xd5\x7c\x5e\xbb\xfe\xfd\xf9\xfe\xcb\xae" "\x3c\xf3\xc7\x57\xdd\xf5\xfc\x03\xf1\xb8\x7f\xb8\x23\x3f\xfd\xe9\x7b\xf2" "\xcf\x5b\xd7\x86\xe3\x9e\x09\xa7\x9f\x0a\xcf\x77\xbc\x9e\xcf\x7e\x26\xff" "\x7c\xd8\xe9\xfa\xe3\xed\xcc\x37\xd3\x7a\x17\xe9\xe4\x37\x9f\xdc\xb1\xa8" "\x03\xc3\xfd\x7f\x76\xfd\x65\xd5\x57\x59\xdf\xe9\xfc\xe4\xc6\xf7\xab\x76" "\xc5\xd7\xf9\xab\x97\xd6\xbf\xee\x5f\xb9\x2f\x9f\x2f\x85\xc7\x75\x36\xfc" "\x64\xe6\x0d\x97\x7d\xb3\x7a\x5c\xe3\xed\xc7\x9f\x8d\xf0\xf4\x87\xf3\xd7" "\x77\xfc\x4a\x2e\x5e\xbe\xd3\xf5\xff\x45\x78\xbe\xef\x7d\x3d\xbf\xfe\x78" "\xbd\x69\xbd\xe1\xeb\x98\xaf\xad\xab\x7f\x7f\x8c\xcf\xcf\x4b\x8f\x37\xfc" "\xa4\x81\x91\xfc\xa7\x78\x9c\x0a\xef\x1f\xd9\xa9\xfc\xfc\x78\x54\xfc\x9a" "\xea\xe9\x33\x97\x9d\xcb\x32\xe7\x35\xfd\xc8\xf4\xf8\x91\xc3\xc7\x4e\x3e" "\x3c\x3e\x33\x39\x3d\x33\x3e\xfd\xc8\xa3\x7b\x8f\x1e\x3f\x79\x6c\x66\x6f" "\xf5\x67\x73\xee\xfd\x78\xab\xcb\xcf\xbd\xbe\xd7\x56\x5f\xdf\x07\x26\x77" "\x6c\xcb\xaa\xaf\xf6\xe3\xf9\x58\x66\xe7\x7b\xfd\x53\xf7\xef\x3f\xb0\x73" "\xe2\x9a\x03\x93\x07\xf7\x9d\x3c\x38\x73\xff\xd4\xe4\x89\x43\xfb\xa7\xa7" "\xf7\x4f\x1e\x98\xbe\x66\xdf\xc1\x83\x93\x0f\xb5\xba\xfc\xe1\x03\xbb\x37" "\x6f\xd9\xb5\x75\xe7\x96\xb1\x43\x87\x0f\xec\xbe\x79\xd7\xae\xad\xbb\xc6" "\x0e\x1f\x3b\x5e\x59\x46\xbe\xa8\x16\x76\x4c\x3c\x38\x76\xec\xc4\xde\xea" "\x45\xa6\x77\x6f\xdb\xb5\x79\xfb\xf6\x6d\x13\x63\x47\x8f\x1f\x98\xdc\xbd" "\x73\x62\x62\xec\x64\xab\xcb\x57\x3f\x37\x8d\x55\x2e\xfd\x89\xb1\x13\x93" "\x47\xf6\xcd\x1c\x3e\x3a\x39\x36\x7d\xf8\xd1\xc9\xdd\x9b\x77\xed\xd8\xb1" "\xa5\xe5\x4f\xf7\x3b\x3a\x75\x70\x7a\x74\xfc\xc4\xc9\x63\xe3\x27\xa7\x27" "\x4f\x8c\xe7\xf7\x65\x74\xa6\x7a\x72\xe5\x73\x5f\xab\xcb\x43\xc5\xf4\xe7" "\xd6\x34\xfd\x3c\xd5\x17\xbe\x7a\xdf\x7c\xc3\x8e\xf4\xf3\x59\x2b\x9e\xff" "\xe4\xbc\x57\x95\x1f\xd2\xf0\x03\x44\x7f\x18\x7e\x16\xcd\xb7\xff\xfc\x4f" "\xb7\x2f\xe6\xe3\x98\xfb\x87\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62" "\xee\x5f\x15\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xbf\x3a\xcc\x44\xfe" "\x07\x00\x00\x80\xc2\x88\xb9\x7f\x38\xcc\xa4\x24\xf9\x5f\xff\x5f\xff\xbf" "\x6c\xfd\xff\x21\xfd\x7f\xfd\xff\xf8\x7c\xe8\xff\x2f\x09\xfd\x7f\xfd\xff" "\x76\xe8\xff\xeb\xff\xf7\xc2\xfa\xf5\xff\xf5\xff\xe9\x5c\xb7\xf5\xff\x63" "\xee\x5f\x93\x65\xa5\xcc\xff\x00\x00\x00\x50\x06\x31\xf7\xaf\x0d\x33\x91" "\xff\x01\x00\x00\xa0\x30\x62\xee\xbf\x20\xcc\x44\xfe\x07\x00\x00\x80\xc2" "\x88\xb9\xff\xc2\x30\x93\x92\xe4\x7f\xfd\xff\xde\xec\xff\x0f\x84\xc7\x5c" "\xff\xdf\xef\xff\xd7\xff\x6f\xbd\x7e\xfd\xff\xe5\xa5\xff\xaf\xff\xdf\x0e" "\xfd\x7f\xfd\xff\x5e\x58\xbf\xfe\xbf\xfe\x3f\x9d\xeb\xb6\xfe\x7f\xcc\xfd" "\x6f\x0b\x33\x29\x49\xfe\x07\x00\x00\x80\x32\x88\xb9\xff\xa2\x30\x13\xf9" "\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x8b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8c" "\x98\xfb\x47\xc2\x4c\x4a\x92\xff\xf5\xff\x7b\xb3\xff\xef\xf7\xff\x9f\xb7" "\xfe\xff\x9d\x99\xfe\x7f\xa2\xff\xaf\xff\x9f\xe9\xff\xeb\xff\xb7\x49\xff" "\x5f\xff\xbf\x17\xd6\xaf\xff\xaf\xff\x4f\xe7\xba\xad\xff\x1f\x73\xff\xff" "\x0b\x33\x29\x49\xfe\x07\x00\x00\x80\x32\x88\xb9\xff\xed\x61\x26\xf2\x3f" "\x00\x00\x00\x14\x46\xcc\xfd\xef\x08\x33\x91\xff\x01\x00\x00\xa0\x30\x62" "\xee\xbf\x24\xcc\xa4\x24\xf9\x5f\xff\x5f\xff\x5f\xff\xdf\xef\xff\x8f\xf4" "\xff\xf5\xff\xdb\xa1\xff\xaf\xff\xdf\x0e\xfd\x7f\xfd\xff\x5e\x58\xbf\xfe" "\xbf\xfe\x3f\x9d\xeb\xb6\xfe\x7f\xcc\xfd\x97\x86\x99\x94\x24\xff\x03\x00" "\x00\x40\x19\xc4\xdc\x7f\x59\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff" "\x3b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\xd7\x85\x99\x94\x24\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x47\xfa\xff\xfa\xff\xed\xd0\xff\xd7\xff" "\x6f\x87\xfe\xbf\xfe\x7f\x2f\xac\x5f\xff\x5f\xff\x9f\xce\x75\x5b\xff\x3f" "\xe6\xfe\xff\x1f\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xe5\x61" "\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\xef\x0a\x33\x91\xff\x01\x00\x00" "\xa0\x30\x62\xee\xbf\x22\xcc\xa4\x24\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x3f\xd2\xff\xd7\xff\x6f\x87\xfe\xbf\xfe\x7f\x3b\xf4\xff\xf5\xff\x7b\x61" "\xfd\xfa\xff\xfa\xff\x74\xae\xdb\xfa\xff\x31\xf7\xbf\x3b\xcc\xa4\x24\xf9" "\x1f\x00\x00\x00\xca\x20\xe6\xfe\x2b\xc3\x4c\xe6\xcf\xff\x5f\x5f\xfe\x55" "\x01\x00\x00\x00\x4b\x29\xe6\xfe\xab\xc2\x4c\xfc\xfb\x3f\x00\x00\x00\x14" "\x46\xcc\xfd\xa3\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff\x5d\xd7\xff\x1f\xd5" "\xff\xd7\xff\xd7\xff\xef\x25\xfa\xff\xfa\xff\xed\xd0\xff\xd7\xff\xef\x85" "\xf5\xeb\xff\xeb\xff\xd3\xb9\x6e\xeb\xff\xc7\xdc\xbf\x3e\xcc\xa4\x24\xf9" "\x1f\x00\x00\x00\xca\x20\xe6\xfe\x0d\x61\x26\xf2\x3f\x00\x00\x00\x14\x46" "\xcc\xfd\x57\x87\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x6f\x0c\x33\x29" "\x49\xfe\xd7\xff\xd7\xff\xef\xba\xfe\xbf\xdf\xff\xaf\xff\xaf\xff\xdf\x53" "\xf4\xff\xf5\xff\xdb\xa1\xff\xaf\xff\xdf\x0b\xeb\xd7\xff\xd7\xff\xa7\x73" "\xdd\xd6\xff\x8f\xb9\xff\x3d\x61\x26\x25\xc9\xff\x00\x00\x00\x50\x06\x31" "\xf7\x5f\x13\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x6d\x98\x89\xfc" "\x0f\x00\x00\x00\x85\x11\x73\xff\xa6\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\x48\xff\x5f\xff\xbf\x1d\xfa\xff\xfa\xff\xed\xd0\xff\xd7" "\xff\xef\x85\xf5\xeb\xff\xeb\xff\xd3\xb9\x6e\xeb\xff\xc7\xdc\x7f\x5d\x98" "\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\xd7\x87\x99\xc8\xff\x00\x00" "\x00\x50\x18\x31\xf7\xdf\x10\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x3f" "\x16\x66\x52\x92\xfc\xaf\xff\x5f\xf0\xfe\xff\x5b\xb3\xb3\xb3\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xcb\x48\xff\x5f\xff\xbf\x1d\xfa\xff\xfa\xff\xbd\xb0" "\x7e\xfd\x7f\xfd\x7f\x3a\xd7\x6d\xfd\xff\x98\xfb\x6f\x0c\x33\x29\x49\xfe" "\x07\x00\x00\x80\x32\x88\xb9\xff\xa6\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23" "\xe6\xfe\xf1\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x89\x30\x93\x92" "\xe4\x7f\xfd\xff\xde\xee\xff\x67\x99\xdf\xff\xaf\xff\xaf\xff\xdf\x6a\xfd" "\xfa\xff\xcb\x4b\xff\x5f\xff\xbf\x1d\xfa\xff\xfa\xff\xbd\xb0\x7e\xfd\x7f" "\xfd\x7f\x3a\xd7\x6d\xfd\xff\x98\xfb\x37\x87\x99\x94\x24\xff\x03\x00\x00" "\x40\x19\xc4\xdc\xbf\x25\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x6b" "\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xb6\x30\x93\x92\xe4\x7f\xfd" "\xff\xde\xee\xff\xb7\xfc\xfd\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xcb\x4c" "\xff\x5f\xff\xbf\x1d\xfa\xff\xfa\xff\xbd\xb0\x7e\xfd\x7f\xfd\x7f\x3a\xd7" "\x6d\xfd\xff\x98\xfb\xb7\x87\x99\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc" "\xbf\x23\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x67\x98\x89\xfc\x0f" "\x00\x00\x00\x85\x11\x73\xff\xcd\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\x91\xfe\xbf\xfe\x7f\x3b\xf4\xff\xf5\xff\xdb\xa1\xff\xaf\xff" "\xdf\x0b\xeb\xd7\xff\xd7\xff\xa7\x73\xdd\xd6\xff\x8f\xb9\x7f\x57\x98\x49" "\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\xef\x0d\x33\x91\xff\x01\x00\x00" "\xa0\x30\x62\xee\xff\x85\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x5f" "\x0c\x33\x29\x49\xfe\xd7\xff\xd7\xff\xd7\xff\x5f\x6c\xff\xff\xd4\x59\xd7" "\xaf\xff\xbf\xa2\xfd\xff\xd5\x99\xfe\x7f\x57\xd2\xff\xef\x91\xfe\xff\x3f" "\xe5\x45\x7a\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x56\x52\xb7\xf5\xff" "\x63\xee\xdf\x1d\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xfb\xc2" "\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x6f\x09\x33\x91\xff\x01\x00\x00" "\xa0\x30\x62\xee\xdf\x13\x66\x52\x92\xfc\xaf\xff\xaf\xff\xaf\xff\xef\xf7" "\xff\x47\x5d\xde\xff\xf7\xfb\xff\xbb\x94\xfe\x7f\x8f\xf4\xff\x03\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x56\x52\xb7\xf5\xff\x63\xee\xbf\x35\xcc" "\xa4\x24\xf9\x1f\x00\x00\x00\xca\x20\xe6\xfe\xdb\xc2\x4c\xe4\x7f\x00\x00" "\x00\x28\x8c\x98\xfb\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xbf" "\x23\xcc\xa4\x24\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xd2\xff\xd7\xff" "\x6f\x87\xfe\xbf\xfe\x7f\x3b\xf4\xff\xf5\xff\x7b\x61\xfd\x53\xab\x32\xfd" "\x7f\xfd\x7f\x3a\xd4\x6d\xfd\xff\x98\xfb\xdf\x1f\x66\x52\x92\xfc\x0f\x00" "\x00\x00\x65\x10\x73\xff\x2f\x85\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7" "\xdf\x19\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x57\x98\x49\x49\xf2" "\xbf\xfe\xff\xd2\xf6\xff\xd7\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x2f" "\x29\xfd\x7f\xfd\xff\x4c\xff\xbf\x6d\xe7\xbb\x3f\xdf\xeb\xeb\xf7\xfb\xff" "\xf5\xff\xe9\x5c\xb7\xf5\xff\x63\xee\xff\xe5\x30\x93\x92\xe4\x7f\x00\x00" "\x00\x28\x83\x98\xfb\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xbf" "\x27\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\x03\x61\x26\x25\xc9\xff" "\xfa\xff\x7e\xff\xbf\xfe\xbf\xfe\x7f\xa4\xff\xdf\x0d\xfd\xff\x35\xf3\x3c" "\x3b\xdd\x4b\xff\x5f\xff\xbf\x1d\xfa\xff\xfa\xff\xbd\xb0\x7e\xfd\x7f\xfd" "\x7f\x3a\xd7\x6d\xfd\xff\x98\xfb\xef\x0d\x33\x29\x49\xfe\x07\x00\x00\x80" "\x32\x88\xb9\xff\x57\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x7f\x35" "\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\x83\x61\x26\x25\xc9\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x91\xfe\x7f\x37\xf4\xff\xe7\x79\x72\xba\x98" "\xfe\xbf\xfe\x7f\x3b\xf4\xff\xf5\xff\x7b\x61\xfd\xfa\xff\xfa\xff\x74\xae" "\xdb\xfa\xff\x31\xf7\xff\x5a\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc" "\xfd\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff\x70\x98\x89\xfc" "\x0f\x00\x00\x00\x85\x11\x73\xff\x7d\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\x91\xfe\xbf\xfe\x7f\x3b\xf4\xff\xf5\xff\xdb\x51\x94\xfe" "\x7f\x7c\xc3\xd5\xff\x5f\x1e\xe7\x7b\xfd\xfa\xff\xfa\xff\x74\xae\xdb\xfa" "\xff\x31\xf7\xdf\x1f\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\x47" "\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x7f\x3d\xcc\x44\xfe\x07\x00" "\x00\x80\xc2\x88\xb9\xff\x37\xc2\x4c\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\x23\xfd\x7f\xfd\xff\x76\xe8\xff\xeb\xff\xb7\xa3\x28\xfd\x7f\xbf" "\xff\x7f\x79\x9d\xef\xf5\xeb\xff\xeb\xff\xd3\xb9\x6e\xeb\xff\xc7\xdc\xff" "\x9b\x61\x26\x25\xc9\xff\x00\x00\x00\x50\x06\x31\xf7\x7f\x34\xcc\x44\xfe" "\x07\x00\x00\x80\xc2\x88\xb9\xff\xb7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c" "\x98\xfb\x7f\x3b\xcc\xa4\x24\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xd2" "\xff\xd7\xff\x6f\x87\xfe\xbf\xfe\x7f\x3b\xf4\xff\xf5\xff\x7b\x61\xfd\xfa" "\xff\xfa\xff\x74\xae\xdb\xfa\xff\x31\xf7\xff\x4e\x98\x49\x49\xf2\x3f\x00" "\x00\x00\x94\x41\xcc\xfd\xbf\x1b\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc" "\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\x63\x61\x26\x25\xc9" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x91\xfe\xbf\xfe\x7f\x3b\xf4\xff\xf5" "\xff\xdb\xa1\xff\xaf\xff\xdf\x0b\xeb\xd7\xff\xd7\xff\xa7\x73\xdd\xd6\xff" "\x8f\xb9\x7f\x5f\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\xbf\x17" "\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xbf\x3f\xcc\x44\xfe\x07\x00\x00" "\x80\xc2\x88\xb9\xff\x40\x98\x49\x49\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x7f\xa4\xff\xaf\xff\xdf\x0e\xfd\x7f\xfd\xff\x76\xe8\xff\xeb\xff\xf7\xc2" "\xfa\xcb\xd4\xff\x6f\xfc\x5c\x9d\xe9\xff\xb3\x44\xba\xad\xff\x1f\x73\xff" "\x64\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\x07\xc3\x4c\xe4\x7f" "\x00\x00\x00\x28\x8c\x98\xfb\x0f\x85\x99\xc8\xff\x00\x00\x00\x50\x18\x31" "\xf7\x3f\x10\x66\x52\x92\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x1f\xe9\xff" "\xeb\xff\xb7\x43\xff\x5f\xff\xbf\x1d\xfa\xff\xfa\xff\xbd\xb0\xfe\x32\xf5" "\xff\x9b\xd1\xff\x67\x29\x74\x5b\xff\x3f\xe6\xfe\xc3\x61\x26\x25\xc9\xff" "\x00\x00\x00\x50\x06\x31\xf7\x7f\x3c\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88" "\xb9\xff\xc1\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x23\x61\x26\x25" "\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x91\xfe\xbf\xfe\x7f\x3b\xf4\xff" "\xf5\xff\xdb\xa1\xff\xaf\xff\xdf\x0b\xeb\xd7\xff\xd7\xff\xa7\x73\xdd\xd6" "\xff\x8f\xb9\xff\x68\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\xc7" "\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x8f\x87\x99\xc8\xff\x00\x00" "\x00\x50\x18\x31\xf7\x4f\x85\x99\x94\x24\xff\xeb\xff\xeb\xff\x37\xf6\xff" "\xfb\xf4\xff\xf5\xff\x1b\x4e\xd7\xff\xcf\xe9\xff\x37\xa7\xff\xaf\xff\xdf" "\x0e\xfd\x7f\xfd\xff\x5e\x58\xbf\xfe\xbf\xfe\x3f\x9d\xeb\xb6\xfe\x7f\xcc" "\xfd\xbf\x1f\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\x89\x30\x13" "\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\xe9\x30\x13\xf9\x1f\x00\x00\x00\x0a" "\x23\xe6\xfe\x99\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xbf\xff\x5f\xff\x3f" "\xd2\xff\xd7\xff\xff\x3f\xf6\xee\x6a\x57\xf0\xab\x8a\xe3\xf8\x69\xd2\xa4" "\xe9\x3b\x90\xf4\x9a\x17\xe0\x49\xb8\x84\x2b\x9e\x01\x77\x2d\x5a\xdc\x8b" "\x3b\x14\x77\x77\x77\x8a\x4b\x71\x2d\xee\x96\x40\xda\x59\x6b\x65\xce\x70" "\x68\x99\xfd\x2f\x33\x7b\xef\xf5\xf9\xdc\xac\x72\x52\x4e\x76\xc9\x40\xf2" "\x0b\xf9\xe6\x3f\x42\xff\x7f\x89\xfb\xff\x5b\xfe\x80\xea\xff\x8b\xfe\xff" "\xb6\x5d\xee\x7e\x7e\xf5\xf7\xeb\xff\xf5\xff\x1c\x37\x5b\xff\x9f\xbb\xff" "\x9e\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x57\xdc\x62\xff\x03" "\x00\x00\xc0\x36\x72\xf7\xdf\x3b\x6e\xb1\xff\x01\x00\x00\x60\x1b\xb9\xfb" "\xef\x13\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x9f\xf4\xff\xfa\xff" "\x11\xfa\x7f\xdf\xff\x1f\xa1\xff\xd7\xff\xaf\xf0\x7e\xfd\xbf\xfe\x9f\xe3" "\x66\xeb\xff\x73\xf7\xdf\x37\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\xf7\x8b\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\xfb\xc7\x2d\xf6\x3f\x00" "\x00\x00\x6c\x23\x77\xff\x03\xe2\x96\x26\xfb\x5f\xff\xaf\xff\x5f\xb9\xff" "\xbf\xeb\x89\xfe\x5f\xff\x7f\xfb\xef\xd7\xff\xff\x7f\xe9\xff\xf5\xff\x23" "\xf4\xff\xfa\xff\x15\xde\xaf\xff\xd7\xff\x73\xdc\x6c\xfd\x7f\xee\xfe\x07" "\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x41\x71\x8b\xfd\x0f\x00" "\x00\x00\xdb\xc8\xdd\xff\xe0\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f" "\x48\xdc\xd2\x64\xff\xeb\xff\xf5\xff\x2b\xf7\xff\xbe\xff\xaf\xff\xef\xd2" "\xff\xdf\xed\xec\x1f\x4f\x41\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xaf\xf0\x7e" "\xfd\xbf\xfe\x9f\xe3\x66\xeb\xff\x73\xf7\x3f\x34\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\x0f\x8b\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x87" "\xc7\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x23\xe2\x96\x26\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\x93\xfe\x7f\xde\xfe\x7f\x66\xfa\x7f\xfd\xff\x88" "\x03\xfd\xff\xa9\xff\x0c\xf5\xff\xb7\xed\x72\xf7\xf3\xab\xbf\x5f\xff\xaf" "\xff\xe7\xb8\xd9\xfa\xff\xdc\xfd\x8f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\xa3\xe2\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\xda\xb8\xc5" "\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x74\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x47\xe8\xff\xf5\xff\x23\x7c\xff\x5f\xff" "\xbf\xc2\xfb\xf5\xff\xfa\x7f\x8e\x9b\xad\xff\xcf\xdd\xff\x98\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x36\x6e\xb1\xff\x01\x00\x00\x60\x1b" "\xb9\xfb\x1f\x17\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\x8f\x8f\x5b\x9a" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x4f\xfa\x7f\xfd\xff\x08\xfd\xbf\xfe" "\x7f\x84\xfe\x5f\xff\xbf\xc2\xfb\xf5\xff\xfa\x7f\x8e\x9b\xad\xff\xcf\xdd" "\xff\x84\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x5f\x17\xb7\xd8\xff" "\x00\x00\x00\xb0\x8d\xeb\x4e\x4e\xae\xba\x65\xf7\x3f\xf1\xd6\x7f\x65\xff" "\x03\x00\x00\xc0\x8e\x72\xf7\x3f\x29\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x3f\xe9\xff\xf5\xff\x23\xf4\xff\xfa\xff\x11\xfa\x7f\xfd\xff\x0a" "\xef\xd7\xff\xeb\xff\x39\x6e\xb6\xfe\x3f\x77\xff\x93\xe3\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\x94\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee" "\x7f\x6a\xdc\x62\xff\x03\x00\x00\xc0\xd2\x6e\x3e\xaf\xfc\xca\xdd\xff\xb4" "\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\x6b\xf6\xff\xd7\x9c\xe8\xff\xf5" "\xff\x73\xd0\xff\xeb\xff\x47\xe8\xff\xf5\xff\x2b\xbc\x5f\xff\xaf\xff\xe7" "\xb8\xd9\xfa\xff\xdc\xfd\x4f\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x33\xe2\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\x99\x71\x8b\xfd\x0f" "\x00\x00\x00\xdb\xc8\xdd\xff\xac\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff" "\x6b\xf6\xff\xbe\xff\xaf\xff\x9f\x85\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x5f" "\xe1\xfd\xfa\x7f\xfd\x3f\xc7\xcd\xd6\xff\xe7\xee\x7f\x76\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x9f\x13\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc" "\xfd\xcf\x8d\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\xeb\xe3\x96\x26\xfb" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f" "\xa1\xff\xd7\xff\xaf\xf0\x7e\xfd\xbf\xfe\x9f\xe3\x66\xeb\xff\x73\xf7\x3f" "\x2f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xcf\x8f\x5b\xec\x7f\x00" "\x00\x00\xd8\x46\xee\xfe\x17\xc4\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff" "\x0b\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93\xfe\x5f\xff\x3f" "\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xaf\xf0\x7e\xfd\xbf\xfe\x9f\xe3\x66" "\xeb\xff\x73\xf7\xbf\x28\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x2f" "\x8e\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x97\xc4\x2d\xf6\x3f\x00\x00" "\x00\x6c\x23\x77\xff\x4b\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\x93\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xaf\xf0\x7e\xfd" "\xbf\xfe\x9f\xe3\x66\xeb\xff\x73\xf7\xbf\x2c\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\x2f\x8f\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x57\xc4" "\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x2b\xe3\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\x5f\x44\xff\x7f\xc3\x95\xa7\x7e\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xc7\xe8\xff\x07\xfa\xff\x2b\x2f\xe6\xe5\xe7\x5c\xee\x7e\xfe" "\xa8\xcb\xfd\x7e\xfd\xbf\xfe\x9f\xe3\x66\xeb\xff\x73\xf7\xbf\x2a\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xaf\x8e\x5b\xec\x7f\x00\x00\x00\xd8" "\x46\xee\xfe\xd7\xc4\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x0d\x71\x4b" "\x93\xfd\x3f\x57\xff\x7f\x97\x7b\xd4\xbb\xf4\xff\xa7\xb4\xee\xff\xaf\x9e" "\xa8\xff\xbf\xe0\xf7\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x8c\xfe\xdf" "\xf7\xff\x57\x78\xbf\xfe\x5f\xff\xcf\x71\xb3\xf5\xff\xb9\xfb\x5f\x1b\xb7" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xd7\xc5\x2d\xf6\x3f\x00\x00\x00" "\x6c\x23\x77\xff\xeb\xe3\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\x0d\x71" "\x4b\x93\xfd\x3f\x57\xff\x7f\xde\xbb\xf4\xff\xa7\xb4\xee\xff\x67\xfa\xfe" "\xff\x05\xbf\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x6f\xa7\xff\xbf\xf3\xbf\x0e" "\xbe\x5f\xff\x7f\xee\xef\xd7\xff\x8f\x39\xdd\xcf\x9f\xe8\xff\xf5\xff\xfa" "\x7f\x2e\xb9\xd9\xfa\xff\xdc\xfd\x6f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\x9b\xe2\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\xcd\x71\x8b" "\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\x96\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xa4\xff\xd7\xff\x8f\xd0\xff\xfb\xfe\xff\x08\xfd\xbf\xef" "\xff\xaf\xf0\x7e\xfd\xbf\xfe\x9f\xe3\x66\xeb\xff\x73\xf7\xbf\x35\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x6f\x8b\x5b\xec\x7f\x00\x00\x00\xd8" "\x46\xee\xfe\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x3b\xe2\x96" "\x26\xfb\x3f\xfb\xff\x2b\xf4\xff\xb7\xd2\xff\xeb\xff\xf5\xff\x7b\xf7\xff" "\x57\x9f\xf7\x73\xfd\xff\x1d\x43\xff\xaf\xff\x1f\x31\x63\xff\x7f\xe3\x19" "\x3f\xd3\xff\xeb\xff\xf5\xff\xfa\x7f\x8e\x99\xad\xff\xcf\xdd\xff\xce\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x2b\x6e\xb1\xff\x01\x00\x00" "\x60\x1b\xb9\xfb\xdf\x1d\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\xef\x89" "\x5b\x9a\xec\x7f\xdf\xff\xd7\xff\xeb\xff\xf5\xff\xa9\x43\xff\xef\xfb\xff" "\x77\x3c\xfd\xbf\xfe\x7f\xc4\x8c\xfd\xff\x59\xf4\xff\xfa\x7f\xfd\xbf\xfe" "\x9f\x63\x66\xeb\xff\x73\xf7\xbf\x37\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\xef\x8b\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\xf7\xc7\x2d\xf6" "\x3f\x00\x00\x00\x6c\x23\x77\xff\x07\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x93\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xaf" "\xf0\x7e\xfd\xbf\xfe\x9f\xe3\x66\xeb\xff\x73\xf7\x7f\x30\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\x1f\x8a\x5b\xec\x7f\x00\x00\x00\x58\xda\x4d" "\xe7\xfd\x75\xee\xfe\x0f\xc7\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x47" "\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93\xfe\x5f\xff\x3f\x42" "\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xaf\xf0\x7e\xfd\xbf\xfe\x9f\xe3\x66\xeb" "\xff\x73\xf7\x7f\x34\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x1f\x8b" "\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x8f\xc7\x2d\xf6\x3f\x00\x00\x00" "\x6c\x23\x77\xff\x27\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93" "\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xaf\xf0\xfe\x0b\xfa" "\xff\xeb\xe3\xc7\xfa\x7f\xfd\x3f\x17\x61\xb6\xfe\x3f\x77\xff\x27\xe3\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xa9\xb8\xc5\xfe\x07\x00\x00\x80" "\x6d\xe4\xee\xff\x74\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\x7f\x26\x6e" "\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x23\xf4\xff" "\xfa\xff\x11\xfa\x7f\xfd\xff\x0a\xef\xf7\xfd\x7f\xfd\x3f\xc7\xcd\xd6\xff" "\xe7\xee\xff\x6c\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x17\xb7" "\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\x9f\x8f\x5b\xec\x7f\x00\x00\x00\xd8" "\x46\xee\xfe\x2f\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x27\xfd" "\xbf\xfe\x7f\x84\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x5f\xe1\xfd\xfa\x7f\xfd" "\x3f\xc7\xcd\xd6\xff\xe7\xee\xff\x62\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\xbf\x14\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\x37\xc6\x2d\xf6" "\x3f\x00\x00\x00\x6c\x23\x77\xff\x97\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x93\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xaf" "\xf0\x7e\xfd\xbf\xfe\x9f\xe3\x66\xeb\xff\x73\xf7\x7f\x25\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\x5f\x8d\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee" "\xfe\xaf\xc5\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\xd7\xe3\x96\x26\xfb" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f" "\xa1\xff\x9f\xba\xff\xbf\x36\xff\x42\xff\xaf\xff\xd7\xff\x73\xd4\x6c\xfd" "\x7f\xee\xfe\x6f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x9b\x71" "\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\xad\xb8\xc5\xfe\x07\x00\x00\x80" "\x6d\xe4\xee\xff\x76\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2" "\xff\xeb\xff\x47\xe8\xff\xf5\xff\x23\xf4\xff\x53\xf7\xff\x45\xff\xaf\xff" "\xd7\xff\x73\xd4\x6c\xfd\x7f\xee\xfe\xef\xc4\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\xff\x6e\xdc" "\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\x7f\x2f\x6e\x69\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x3f\x9d\xee\xe7\xaf\xf9\x8f\xf7\xe8\xff\xf5\xff\x67\xd1" "\xff\xeb\xff\x47\xe8\xff\xf5\xff\x2b\xbc\x5f\xff\xaf\xff\xe7\xb8\xd9\xfa" "\xff\xdc\xfd\xdf\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x0f\xe2" "\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\x87\x71\x8b\xfd\x0f\x00\x00\x00" "\xdb\xc8\xdd\xff\xa3\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe4" "\xfb\xff\xfa\xff\x11\xfa\xff\xf1\xfe\xff\xc2\xff\x6e\x9c\x45\xff\x7f\xee" "\xef\x5f\xb8\xff\x3f\xfd\x3f\x49\xfa\xff\xa5\xde\xaf\xff\xd7\xff\x73\xdc" "\x6c\xfd\x7f\xee\xfe\x1f\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\x27\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\xd3\xb8\xc5\xfe\x07\x00" "\x00\x80\x6d\xe4\xee\xff\x59\xdc\xd2\x64\xff\xeb\xff\x27\xef\xff\xf3\x8f" "\xa4\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\x4a\xff\xdf\xfd\xfb\xff\x77\xbf\xd3" "\x45\xfc\xe3\x94\x46\xfd\xff\xe9\x5f\xa8\xff\x5f\xea\xfd\x53\xf6\xff\x57" "\xe8\xff\x59\xcb\x6c\xfd\x7f\xee\xfe\x9f\xc7\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\x17\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\x7f\x73\xdc" "\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\xff\x32\x6e\x69\xb2\xff\xf5\xff\x93" "\xf7\xff\x27\xa7\xff\x7d\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\x1b\xfd\x7f\xf7" "\xfe\x7f\x8c\xfe\x5f\xff\xbf\xc2\xfb\xa7\xec\xff\x7d\xff\x9f\xc5\xcc\xd6" "\xff\xe7\xee\xff\x55\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f\x1d" "\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\xbf\x89\x5b\xec\x7f\x00\x00\x00" "\xd8\x46\xee\xfe\xdf\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x27" "\xfd\xbf\xfe\x7f\x84\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x5f\xe1\xfd\xfa\x7f" "\xfd\x3f\xc7\xcd\xd6\xff\xe7\xee\xff\x5d\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\x7f\x1f\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\x7f\x88\x5b" "\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x3f\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x27\xfd\xbf\xfe\x7f\x84\xfe\x5f\xff\x3f\x42\xff\xaf\xff" "\x5f\xe1\xfd\xfa\x7f\xfd\x3f\xc7\xcd\xd6\xff\xe7\xee\xff\x53\xdc\xf2\x5f" "\xf6\xff\x55\xff\xd3\x3f\x25\x00\x00\x00\x30\x93\xdc\xfd\x7f\x8e\x5b\x9a" "\xfc\xff\xff\x00\x00\x00\xd0\x41\xee\xfe\xbf\xc4\x2d\xf6\x3f\x00\x00\x00" "\x6c\x23\x77\xff\x5f\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93" "\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xaf\xf0\x7e\xfd\xbf" "\xfe\x9f\xe3\x66\xeb\xff\x73\xf7\xff\x2d\x6e\x69\xb2\xff\x01\x00\x00\xa0" "\x83\xdc\xfd\x7f\x8f\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x7f\xc4\x2d" "\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x3f\xe3\x96\x26\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x93\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff" "\xaf\xf0\x7e\xfd\xbf\xfe\x9f\xe3\x66\xeb\xff\x73\xf7\xff\x3b\x00\x00\xff" "\xff\x5d\x5c\x74\x59", 24359); syz_mount_image(/*fs=*/0x20005dc0, /*dir=*/0x20005e00, /*flags=*/0, /*opts=*/0x20000100, /*chdir=*/1, /*size=*/0x5f27, /*img=*/0x20005e40); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*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_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }