// https://syzkaller.appspot.com/bug?id=3887482187ee08305b88747978f564c0ab606fd3 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_copy_file_range #define __NR_copy_file_range 326 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static unsigned int queue_count = 2; static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_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; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 3; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$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 = 0x188c0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // } // } // chdir: int8 = 0xfe (1 bytes) // size: len = 0x6226 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6226) // } // ] // returns fd_dir memcpy((void*)0x200000000080, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); *(uint32_t*)0x200000000340 = 0; memcpy( (void*)0x200000008d00, "\x78\x9c\xec\xdd\xcf\x6f\x1c\x67\xfd\x07\xf0\xcf\xec\x2f\xff\xc8\xb7" "\xa9\xd5\x43\xd5\x6f\x84\x90\x9b\x96\x1f\xa5\x34\x89\x93\x12\x02\x05" "\xda\x1e\xe0\xc0\xa5\x07\x94\x2b\x4a\xe4\xba\x55\x44\x0a\x28\x09\x28" "\xad\x2c\xe2\xca\x42\xe2\xc0\x89\xbf\x00\x84\xc4\x11\x21\x8e\x88\x03" "\x7f\x40\x0f\x5c\xb9\x71\xe2\x44\x24\x1b\x09\xd4\x13\x83\xc6\x7e\x9e" "\x78\xbc\xd9\xed\x3a\xb5\xbd\xb3\xf6\xbc\x5e\x92\x33\xf3\x99\x67\x76" "\xfd\x8c\xdf\x3b\xfb\x23\x33\xb3\x4f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf1\xdd\xef\x7c\x6f\xa5\x88\x88\x1b\x3f" "\x4d\x0b\x96\x22\xfe\x2f\xba\x11\x9d\x88\x85\xaa\x5e\x8e\x88\x85\xe5" "\xa5\xbc\x7e\x2f\x22\x9e\x8b\x9d\xe6\x78\x36\x22\xfa\x73\x11\xd5\xed" "\x77\xfe\x79\x3a\xe2\xd5\x88\xf8\xe8\x6c\xc4\xd6\xf6\xfa\x6a\xb5\xf8" "\xf2\x01\xfb\xf1\xed\x3f\xfc\xed\xb7\xdf\x3f\xf3\xd6\x5f\x7f\xdf\xbf" "\xf8\x9f\x3f\xde\xeb\xbe\x36\x6e\xbd\xfb\xf7\x7f\xf9\xef\x3f\x3d\x38" "\xdc\x36\x03\x00\x00\x40\xdb\x94\x65\x59\x16\xe9\x63\xfe\xb9\xf4\xf9" "\xbe\xd3\x74\xa7\x00\x80\xa9\xc8\xaf\xff\x65\x92\x97\x9f\xfa\xfa\x57" "\xff\x78\xeb\xcf\xb3\xd4\x1f\xb5\x5a\xad\x56\xab\xa7\x50\xd7\x95\xa3" "\x3d\xa8\x17\x11\xb1\x51\xbf\x4d\xf5\x9e\xc1\xe1\x78\x00\x38\x61\x36" "\xe2\xe3\xa6\xbb\x40\x83\xe4\xdf\x6a\xbd\x88\x38\xd3\x74\x27\x80\x99" "\x56\x34\xdd\x01\x8e\xc5\xd6\xf6\xfa\x6a\x91\xf2\x2d\xea\xaf\x07\xcb" "\xbb\xed\xf9\x5c\x90\x7d\xf9\x6f\x14\x8f\xae\xef\x18\x37\x9d\x64\xf8" "\x1c\x93\x69\x3d\xbe\x36\xa3\x1b\xcf\x8c\xe9\xcf\xc2\x94\xfa\x30\x4b" "\x72\xfe\x9d\xe1\xfc\x6f\xec\xb6\x0f\xd2\x7a\xc7\x9d\xff\xb4\x8c\xcb" "\x7f\xb0\x7b\xe9\x53\xeb\xe4\xfc\xbb\xc3\xf9\x0f\x39\x3d\xf9\x77\x46" "\xe6\xdf\x56\x39\xff\xde\x13\xe5\xdf\x95\x3f\x00\x00\x00\x00\x00\xcc" "\xb0\xfc\xff\xff\x4b\x0d\x1f\xff\x9d\x3b\xfc\xa6\x1c\xc8\x27\x1d\xff" "\x5d\x9e\x52\x1f\x00\x00\x00\x00\x00\x00\x00\xe0\xa8\x1d\x76\xfc\xbf" "\x47\x8c\xff\x07\x00\x00\x00\x33\xab\xfa\xac\x5e\xf9\xf5\xd9\xbd\x65" "\xe3\xbe\x8b\xad\x5a\x7e\xbd\x88\x78\x6a\x68\x7d\xa0\x65\xd2\xc5\x32" "\x8b\x4d\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xda\xa4\xb7" "\x7b\x0e\xef\xf5\x22\xa2\x1f\x11\x4f\x2d\x2e\x96\x65\x59\xfd\xd4\x0d" "\xd7\x4f\xea\xb0\xb7\x3f\xe9\xda\xbe\xfd\xd0\x66\x4d\x3f\xc9\x03\x00" "\xc0\xae\x8f\xce\xe6\x6b\xf9\xfb\x3b\x9f\xff\xa3\x88\x98\x8f\x88\xeb" "\xe9\xbb\xfe\xfa\x8b\x8b\x8b\x65\x39\xbf\xb0\x58\x2e\x96\x0b\x73\xf9" "\xfd\xec\x60\x6e\xbe\x5c\xa8\x7d\xae\xcd\xd3\x6a\xd9\xdc\xe0\x00\x6f" "\x88\x7b\x83\xb2\xba\xb3\xf9\xda\xed\xea\x26\x7d\x5e\x9e\xd4\x3e\x7c" "\x7f\xd5\xef\x1a\x94\xdd\x03\x74\xec\x88\xf4\xd3\x9f\x77\x4c\x73\xa3" "\x91\x03\x40\xec\xbe\x1a\x6d\x79\x45\x3a\x65\xca\xf2\xe9\x71\x6f\x3e" "\x60\x1f\xfb\xff\x29\xb4\x14\x4b\x4d\x3f\xae\x98\x7d\x4d\x3f\x4c\x01" "\x00\x00\x80\xe3\x57\x96\x65\x59\xa4\xaf\xf3\x3e\x97\x8e\xf9\x77\x9a" "\xee\x14\x00\x30\x15\xf9\xf5\x7f\xf8\xb8\xc0\xa1\xea\xce\x98\xf6\x88" "\xa3\xb9\x7f\xb5\x5a\xad\x56\xab\xd5\x9f\xaa\xae\x2b\x47\x7b\x50\x2f" "\x22\x62\xa3\x7e\x9b\xea\x3d\x83\xe1\xf8\x01\xe0\x84\xd9\x88\x8f\x9b" "\xee\x02\x0d\x92\x7f\xab\xf5\x22\xe2\xb9\xa6\x3b\x01\xcc\xb4\xa2\xe9" "\x0e\x70\x2c\xb6\xb6\xd7\x57\x8b\x94\x6f\x51\x7f\x3d\x48\xe3\xbb\xe7" "\x73\x41\xf6\xe5\xbf\x51\xec\xdc\x2e\xdf\x7e\xd4\x74\x92\xe1\x73\x4c" "\xa6\xf5\xf8\xda\x8c\x6e\x3c\x33\xa6\x3f\xcf\x4e\xa9\x0f\xb3\x24\xe7" "\xdf\x19\xce\xff\xc6\x6e\xfb\x20\xad\x77\xdc\xf9\x4f\xcb\xb8\xfc\x07" "\x3b\x97\xcc\xb5\x4f\xce\xbf\x3b\x9c\xff\x90\xd3\x93\x7f\x67\x64\xfe" "\x6d\x95\xf3\xef\x3d\x51\xfe\x5d\xf9\x03\x00\x00\x00\x00\xc0\x0c\xcb" "\xff\xff\xbf\xe4\xf8\x6f\xde\x64\x00\x00\x00\x00\x00\x00\x00\x38\x71" "\xb6\xb6\xd7\x57\xf3\x75\xaf\xf9\xf8\xff\x67\x46\xac\xe7\xfa\xcf\xd3" "\x29\xe7\x5f\x3c\x69\xfe\x0b\x69\x5e\xfe\x27\x5a\xce\xbf\x33\x94\xff" "\x17\x87\xd6\xeb\xd6\xe6\x1f\xbe\xb9\xb7\xff\xff\x6b\x7b\x7d\xf5\x77" "\xf7\xfe\xf9\xff\x79\x7a\xd0\xfc\xe7\xf2\x4c\x91\x1e\x59\x45\x7a\x44" "\x14\xe9\x37\x15\xbd\x34\x3d\xcc\xd6\x3d\x6e\xb3\xdf\x1d\x54\xbf\xa9" "\x5f\x74\xba\xbd\x74\xce\x4f\xd9\x7f\x27\x6e\xc5\xed\x58\x8b\x4b\xfb" "\xd6\xed\xa4\xbf\xc7\x5e\xfb\xca\xbe\xf6\xaa\xa7\xfd\x7d\xed\x97\xf7" "\xb5\xf7\x1e\x6b\xbf\xb2\xaf\xbd\x9f\xbe\x77\xa0\x5c\xc8\xed\x17\x62" "\x35\x7e\x14\xb7\xe3\xed\x9d\xf6\xaa\x6d\x6e\xc2\xf6\xcf\x4f\x68\x2f" "\x27\xb4\xe7\xfc\xbb\x9e\xff\x5b\x29\xe7\xdf\xab\xfd\x54\xf9\x2f\xa6" "\xf6\x62\x68\x5a\x79\xf8\x61\xe7\xb1\xfd\xbe\x3e\x1d\xf5\x7b\xde\xb8" "\xf5\xd9\x5f\x5c\x3a\xfe\xcd\x99\x68\x33\xba\x8f\xb6\xad\xae\xda\xbe" "\xf3\x0d\xf4\x67\xe7\x6f\x72\x66\x10\x3f\xb9\xbb\x76\xe7\xc2\xfd\x9b" "\xf7\xee\xdd\x59\x89\x34\xd9\xb7\xf4\x72\xa4\xc9\x11\xcb\xf9\xf7\x77" "\x7e\xe6\xf6\x9e\xff\x5f\xd8\x6d\xcf\xcf\xfb\xf5\xfd\xf5\xe1\x87\x83" "\x27\xce\x7f\x56\x6c\x46\x6f\x6c\xfe\x2f\xd4\xe6\xab\xed\x7d\x69\xca" "\x7d\x6b\x42\xce\x7f\x90\x7e\x72\xfe\x6f\xa7\xf6\xd1\xfb\xff\x49\xce" "\x7f\xfc\xfe\xff\x72\x03\xfd\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\x4f\x52\x96\xe5\xce\x25\xa2\x6f\x44\xc4\xd5\x74\xfd\x4f" "\x53\xd7\x66\x02\x00\xd3\x95\x5f\xff\xcb\x24\x2f\x57\xab\xd5\x6a\xb5" "\x5a\x7d\xfa\xea\xba\x72\xb4\xd7\xeb\x45\x44\xfc\xa5\x7e\x9b\xea\x3d" "\xc3\xcf\x46\xdd\x19\x00\x30\xcb\xfe\x1b\x11\x7f\x6f\xba\x13\x34\x46" "\xfe\x2d\x96\xbf\xef\xaf\x9a\xbe\xd8\x74\x67\x80\xa9\xba\xfb\xfe\x07" "\x3f\xb8\x79\xfb\xf6\xda\x9d\xbb\x4d\xf7\x04\x00\x00\x00\x00\x00\x00" "\x00\xf8\xb4\xf2\xf8\x9f\xcb\xb5\xf1\x9f\x5f\x8c\x88\xa5\xa1\xf5\xf6" "\x8d\xff\xfa\x66\x2c\x1f\x76\xfc\xcf\x5e\x9e\x79\x34\xc0\xe8\x11\x0f" "\xf4\x3d\xc6\x66\x67\xd0\xed\xd4\x86\x1b\x7f\x3e\x76\xc6\xe7\xbe\x30" "\x6e\xfc\xef\xf3\xf1\xf8\xf8\xdf\x79\x4c\xdc\x6e\x7d\x3b\xc6\xe8\x4f" "\x68\x1f\x4c\x68\x9f\x9b\xd0\x3e\x3f\x72\xe9\x5e\x5a\x23\x2f\xf4\xa8" "\xc9\xf9\x3f\x5f\x1b\xef\xbc\xca\xff\xdc\xd0\xf0\xeb\x6d\x18\xff\x75" "\x78\xcc\xfb\x36\xc8\xf9\x9f\xaf\x3d\x9e\xab\xfc\xbf\x30\xb4\x5e\x3d" "\xff\xf2\x37\x33\x97\xff\xc6\x41\x57\xdc\x8c\xce\xbe\xfc\x2f\xde\x7b" "\xef\xc7\x17\xef\xbe\xff\xc1\x2b\xb7\xde\xbb\xf9\xee\xda\xbb\x6b\x3f" "\xbc\xb2\xb2\x72\xe9\xca\xd5\xab\xd7\xae\x5d\xbb\xf8\xce\xad\xdb\x6b" "\x97\x76\xff\x3d\x9e\x5e\xcf\x80\x9c\x7f\x1e\xfb\xda\x79\xa0\xed\x92" "\xf3\xcf\x99\xcb\xbf\x5d\x72\xfe\x9f\x4b\xb5\xfc\xdb\x25\xe7\xff\xf9" "\x54\xcb\xbf\x5d\x72\xfe\xf9\xfd\x9e\xfc\xdb\x25\xe7\x9f\x3f\xfb\xc8" "\xbf\x5d\x72\xfe\x2f\xa5\x5a\xfe\xed\x92\xf3\xff\x52\xaa\xe5\xdf\x2e" "\x5b\xdb\xeb\x73\x55\xfe\x2f\xa7\x5a\xfe\xed\x92\xf7\xff\x2f\xa7\x5a" "\xfe\xed\x92\xf3\x7f\x25\xd5\xf2\x6f\x97\x9c\xff\x85\x54\xcb\xbf\x5d" "\x72\xfe\x17\x53\x7d\x80\xfc\x7d\x3d\xfc\x29\x92\xf3\xcf\x47\xb8\xec" "\xff\xed\x92\xf3\x5f\x49\xb5\xfc\xdb\x25\xe7\x7f\x39\xd5\xf2\x6f\x97" "\x9c\xff\x95\x54\xcb\xbf\x5d\x72\xfe\xaf\xa6\x5a\xfe\xed\x92\xf3\xff" "\x4a\xaa\xe5\xdf\x2e\x39\xff\xab\xa9\x96\x7f\xbb\xe4\xfc\xbf\x9a\x6a" "\xf9\xb7\x4b\xce\xff\x5a\xaa\xe5\xdf\x2e\x39\xff\xaf\xa5\x5a\xfe\xed" "\x92\xf3\xff\x7a\xaa\xe5\xdf\x2e\x39\xff\xd7\x52\x2d\xff\x76\xc9\xf9" "\x7f\x23\xd5\xf2\x6f\x97\x9c\xff\x37\x53\x2d\xff\x76\xc9\xf9\x7f\x2b" "\xd5\xf2\x6f\x97\x9c\xff\xeb\xa9\x96\x7f\xbb\xec\x7d\xff\xbf\x19\x33" "\xb3\x30\xf3\xf3\xa3\xbd\xc3\x6e\xcc\xc8\x76\x9d\xb4\x99\xa6\x9f\x99" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x61\xd3\x38\x9d\xb8\xe9" "\x6d\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xb1\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\x6b\x8c\x5c\x67\x7d\x3f\xf0\x33\x7b\xf3\xda\x21" "\xc4\x40\x08\x4e\xfe\x06\x36\x89\x31\xc6\x59\xb2\xeb\x4b\x7c\xe1\x5f" "\x17\x13\xae\x0d\x50\x6e\x09\x85\x5e\xb0\x5d\xef\xda\x2c\xf8\x86\xd7" "\x2e\x81\x22\xd9\x34\x50\x22\x61\x54\x54\x81\x9a\xbe\x68\x0b\x08\xb5" "\x91\xaa\x0a\xab\xe2\x05\xad\x28\xcd\x8b\xaa\x97\x57\xa5\x7d\x41\xdf" "\x54\x54\x95\x90\x1a\x55\x21\x0a\xa8\xa8\x17\xd1\x6c\x35\x73\x9e\xe7" "\xd9\x99\xd9\xd9\x99\x5d\x7b\xbc\x9e\x3d\xcf\xe7\x23\xd9\xbf\xdd\x99" "\x33\x73\xce\x9c\x39\x33\xbb\xdf\xb5\xbf\x7b\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xd9\xdd\x6f" "\x9c\xfd\x5c\xad\x28\x8a\xfa\x9f\xc6\x5f\x9b\x8b\xe2\x05\xf5\x8f\x37" "\x4e\x6c\x6e\x5c\xf6\xba\x9b\xbd\x85\x00\x00\x00\xc0\xf5\xfa\xdf\xc6" "\xdf\xcf\xdd\x96\x2e\x38\xbc\x82\x1b\x35\x2d\xf3\x37\xaf\xf8\xfb\x6f" "\x2e\x2c\x2c\x2c\x14\x1f\x18\xfe\xf2\xe8\x97\x16\x16\xd2\x15\x13\x45" "\x31\xba\xa1\x28\x1a\xd7\x45\x57\xff\xf5\x83\xb5\xe6\x65\x82\xc7\x8a" "\xf1\xda\x50\xd3\xe7\x43\x3d\x56\x3f\xdc\xe3\xfa\x91\x1e\xd7\x8f\xf6" "\xb8\x7e\xac\xc7\xf5\x1b\x7a\x5c\x3f\xde\xe3\xfa\x25\x3b\x60\x89\x8d" "\xe5\xcf\x63\x1a\x77\xb6\xad\xf1\xe1\xe6\x72\x97\x16\xb7\x17\xa3\x8d" "\xeb\xb6\x75\xb8\xd5\x63\xb5\x0d\x43\x43\xf1\x67\x39\x0d\xb5\xc6\x6d" "\x16\x46\x4f\x14\x73\xc5\xa9\x62\xb6\x98\x6e\x59\xbe\x5c\xb6\xd6\x58" "\xfe\xdb\x77\xd7\xd7\xf5\xb6\x22\xae\x6b\xa8\x69\x5d\x5b\xeb\x47\xc8" "\x8f\x3e\x75\x3c\x6e\x43\x2d\xec\xe3\x6d\x2d\xeb\x5a\xbc\xcf\xe8\x87" "\x6f\x28\x26\x7e\xfc\xa3\x4f\x1d\xff\xc3\x0b\xcf\xdc\xd9\x69\xf6\xdc" "\x0d\x2d\xf7\x57\x6e\xe7\x8e\x7b\xea\xdb\xf9\x99\x70\x49\xb9\xad\xb5" "\x62\x43\xda\x27\x71\x3b\x87\x9a\xb6\x73\x6b\x87\xe7\x64\xb8\x65\x3b" "\x6b\x8d\xdb\xd5\x3f\x6e\xdf\xce\xe7\x56\xb8\x9d\xc3\x8b\x9b\xb9\xa6" "\xda\x9f\xf3\xf1\x62\xa8\xf1\xf1\x77\x1b\xfb\x69\xa4\xf9\xc7\x7a\x69" "\x3f\x6d\x0d\x97\xfd\xd7\xbd\x45\x51\x5c\x5e\xdc\xec\xf6\x65\x96\xac" "\xab\x18\x2a\x36\xb5\x5c\x32\xb4\xf8\xfc\x8c\x97\x47\x64\xfd\x3e\xea" "\x87\xd2\x8b\x8b\x91\x55\x1d\xa7\x77\xaf\xe0\x38\xad\xcf\x99\x6d\xad" "\xc7\x69\xfb\x6b\x22\x3e\xff\x77\x87\xdb\x8d\x2c\xb3\x0d\xcd\x4f\xd3" "\x0f\x3f\x3d\xb6\xe4\x79\x5f\xed\x71\x1a\xd5\x1f\xf5\x72\xaf\x95\xf6" "\x63\xb0\xdf\xaf\x95\x41\x39\x06\xe3\x71\xf1\xdd\xc6\x83\x7e\xbc\xe3" "\x31\xb8\x2d\x3c\xfe\x4f\x6d\x5f\xfe\x18\xec\x78\xec\x74\x38\x06\xd3" "\xe3\x6e\x3a\x06\xef\xe9\x75\x0c\x0e\x8d\x0d\x37\xb6\x39\x3d\x09\xb5" "\xc6\x6d\x16\x8f\xc1\x5d\x2d\xcb\x0f\x37\xd6\x54\x6b\xcc\xa7\xb7\x77" "\x3f\x06\xa7\x2e\x9c\x3e\x37\x35\xff\x89\x4f\xbe\x76\xee\xf4\xb1\x93" "\xb3\x27\x67\xcf\xec\xd9\xb5\x6b\x7a\xcf\xbe\x7d\x07\x0e\x1c\x98\x3a" "\x31\x77\x6a\x76\xba\xfc\xfb\x1a\xf7\xf6\xe0\xdb\x54\x0c\xa5\xd7\xc0" "\x3d\x61\xdf\xc5\xd7\xc0\xab\xdb\x96\x6d\x3e\x54\x17\xbe\xda\xbf\xd7" "\xe1\x78\x97\xd7\xe1\xe6\xb6\x65\xfb\xfd\x3a\x1c\x69\x7f\x70\xb5\xb5" "\x79\x41\x2e\x3d\xa6\xcb\xd7\xc6\xc3\xf5\x9d\x3e\x7e\x65\xa8\x58\xe6" "\x35\xd6\x78\x7e\x76\x5e\xff\xeb\x30\x3d\xee\xa6\xd7\xe1\x48\xd3\xeb" "\xb0\xe3\xd7\x94\x0e\xaf\xc3\x91\x15\xbc\x0e\xeb\xcb\x9c\xdb\xb9\xb2" "\xef\x59\x46\x9a\xfe\x74\xda\x86\x1b\xf5\xb5\x60\x73\xd3\x31\xd8\xfe" "\xfd\x48\xfb\x31\xd8\xef\xef\x47\x06\xe5\x18\x1c\x0f\xc7\xc5\x3f\xef" "\x5c\xfe\x6b\xc1\xd6\xb0\xbd\x8f\x4f\xae\xf6\xfb\x91\xe1\x25\xc7\x60" "\x7a\xb8\xe1\xbd\xa7\x7e\x49\xfa\x7e\x7f\xfc\x40\x63\x74\x3a\x2e\xef" "\xaa\x5f\x71\xcb\x58\x71\x71\x7e\xf6\xfc\xfd\x8f\x1e\xbb\x70\xe1\xfc" "\xae\x22\x8c\x35\xf1\x92\xa6\x63\xa5\xfd\x78\xdd\xd4\xf4\x98\x8a\x25" "\xc7\xeb\xd0\xaa\x8f\xd7\xc3\x73\xaf\x78\xfc\xae\x0e\x97\x6f\x0e\xfb" "\x6a\xfc\xb5\xf5\xbf\xc6\x97\x7d\xae\xea\xcb\xec\xbd\xbf\xfb\x73\xd5" "\xf8\xea\xd6\x79\x7f\xb6\x5c\xba\xbb\x08\xa3\xcf\xd6\x7a\x7f\x76\xfa" "\x6a\x5e\xdf\x9f\x29\x4b\x76\xd9\x9f\xf5\x65\x3e\x33\x75\xfd\xdf\x8b" "\xa7\x5c\xda\xf4\xfe\x3b\xba\xcc\xfb\x6f\xcc\xfd\xcf\x97\xeb\x4b\x77" "\xf5\xd8\xf0\xe8\x48\xf9\xfa\x1d\x4e\x7b\x67\xb4\xe5\xfd\xb8\xf5\xa9" "\x1a\x69\xbc\x77\xd5\x1a\xeb\x7e\x6e\x6a\x65\xef\xc7\xa3\xe1\xcf\x5a" "\xbf\x1f\xdf\xde\xe5\xfd\x78\x4b\xdb\xb2\xfd\x7e\x3f\x1e\x6d\x7f\x70" "\xf1\xfd\xb8\xd6\xeb\xa7\x1d\xd7\xa7\xfd\xf9\x1c\x0f\xc7\xc9\xa9\xe9" "\xee\xef\xc7\xf5\x65\xb6\xec\x5e\xed\x31\x39\xd2\xf5\xfd\xf8\xde\x30" "\x6b\x61\xff\xbf\x26\x24\x85\x94\x8b\x9a\x8e\x9d\xe5\x8e\xdb\xb4\xae" "\x91\x91\xd1\xf0\xb8\x46\xe2\x1a\x5a\x8f\xd3\x3d\x2d\xcb\x8f\x86\x6c" "\x56\x5f\xd7\x93\xbb\xaf\xed\x38\xdd\x71\x6f\x79\x5f\xc3\xe9\xd1\x2d" "\x5a\xab\xe3\x74\xa2\x6d\xd9\x7e\x1f\xa7\xe9\xfd\x6a\xb9\xe3\xb4\xd6" "\xeb\xa7\x6f\xd7\xa6\xfd\xf9\x1c\x0f\xc7\xc5\xed\x7b\xba\x1f\xa7\xf5" "\x65\x9e\xda\x7b\xfd\xef\x9d\x1b\xe3\x87\x4d\xef\x9d\x63\xbd\x8e\xc1" "\xd1\xe1\xb1\xfa\x36\x8f\xa6\x83\xb0\x7c\xbf\x5f\xd8\x18\x8f\xc1\xfb" "\x8b\xe3\xc5\xd9\xe2\x54\x31\xd3\xb8\x76\xac\x71\x3c\xd5\x1a\xeb\x9a" "\x7c\x60\x65\xc7\xe0\x58\xf8\xb3\xd6\xef\x95\x5b\xba\x1c\x83\x3b\xda" "\x96\xed\xf7\x31\x98\xbe\x8e\x2d\x77\xec\xd5\x46\x96\x3e\xf8\x3e\x68" "\x7f\x3e\xc7\xc3\x71\xf1\xc4\x03\xdd\x8f\xc1\xfa\x32\x6f\xda\xdf\xdf" "\xef\x5d\x77\x84\x4b\xd2\x32\x4d\xdf\xbb\xb6\xff\x7c\x6d\xb9\x9f\x79" "\xdd\xd5\xb6\x9b\x6e\xe4\xcf\xbc\xea\xdb\xf9\x57\xfb\xbb\xff\x6c\xb6" "\xbe\xcc\xa9\x03\xab\xcd\x99\xdd\xf7\xd3\x7d\xe1\x92\x5b\x3a\xec\xa7" "\xf6\xd7\xef\x72\xaf\xa9\x99\x62\x6d\xf6\xd3\x96\xb0\x9d\xcf\x1c\x58" "\x7e\x3f\xd5\xb7\xa7\xbe\xcc\x97\x0e\xae\xf0\x78\x3a\x5c\x14\xc5\xa5" "\x8f\x3d\xd8\xf8\x79\x6f\xf8\xf7\x95\x3f\xbd\xf8\xbd\x6f\xb6\xfc\xbb" "\x4b\xa7\x7f\xd3\xb9\xf4\xb1\x07\x9f\xbd\xf5\xc4\x5f\xaf\x66\xfb\x01" "\x58\xff\x9e\x2f\xc7\xa6\xf2\x6b\x5d\xd3\xbf\x4c\xad\xe4\xdf\xff\x01" "\x00\x00\x80\x75\x21\xe6\xfe\xa1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\xf8\xbf\xc2\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x91\x30" "\x93\x4c\xf2\xff\x96\x37\x3d\x33\xf7\xfc\xa5\x22\x35\xf3\x17\x82\x78" "\x7d\xda\x0d\x0f\x95\xcb\xc5\x8e\xeb\x74\xf8\x7c\x62\x61\x51\xfd\xf2" "\x07\xbf\x3e\xfb\x93\x3f\xbf\xb4\xb2\x75\x0f\x15\x45\xf1\xd3\x87\x7e" "\xbd\xe3\xf2\x5b\x1e\x8a\xdb\x55\x9a\x08\xdb\x79\xf5\xcd\xad\x97\x2f" "\xbd\xe1\xa5\x15\xad\xff\xe8\x23\x8b\xcb\x35\xf7\xd7\xbf\x12\xee\x3f" "\x3e\x9e\x95\x1e\x06\x9d\x2a\xb8\xd3\x45\x51\x7c\xfb\xb6\x2f\x34\xd6" "\x33\xf1\xc1\x2b\x8d\xf9\xd4\x43\x47\x1b\xf3\xbd\x97\x1f\x7f\xac\xbe" "\xcc\x73\x07\xcb\xcf\xe3\xed\x9f\x7e\x49\xb9\xfc\xef\x85\xf2\xef\xe1" "\x13\xc7\x5a\x6e\xff\x74\xd8\x0f\x3f\x08\x73\xfa\xed\x9d\xf7\x47\xbc" "\xdd\x37\xae\xbc\x66\xeb\xfe\xf7\x2f\xae\x2f\xde\xae\x76\xcf\x0b\x1b" "\x0f\xfb\x89\x0f\x95\xf7\x1b\x7f\x4f\xce\x17\x1f\x2b\x97\x8f\xfb\x79" "\xb9\xed\xff\x8b\xcf\x3f\xf9\x8d\xfa\xf2\x8f\xbe\xaa\xf3\xf6\x5f\x1a" "\xea\xbc\xfd\x4f\x86\xfb\xfd\x7a\x98\xff\xfd\xf2\x72\xf9\xe6\xe7\xa0" "\xfe\x79\xbc\xdd\x67\xc3\xf6\xc7\xf5\xc5\xdb\xdd\xff\xb5\xef\x74\xdc" "\xfe\xab\x9f\x2b\x97\x3f\xf7\x96\x72\xb9\xa3\x61\xc6\xf5\xef\x08\x9f" "\x6f\x7b\xcb\x33\x73\xcd\xfb\xeb\xd1\xda\xb1\x96\xc7\x55\xbc\xb5\x5c" "\x2e\xae\x7f\xfa\x7b\xbf\xd5\xb8\x3e\xde\x5f\xbc\xff\xf6\xed\x1f\x3f" "\x72\xa5\x65\x7f\xb4\x1f\x1f\x4f\xfd\x63\x79\x3f\x53\x6d\xcb\xc7\xcb" "\xe3\x7a\xa2\x3f\x6b\x5b\x7f\xfd\x7e\x9a\x8f\xcf\xb8\xfe\x27\x7f\xf3" "\x68\xcb\x7e\xee\xb5\xfe\xab\xef\x7d\xfa\xe5\xf5\xfb\x6d\x5f\xff\x7d" "\x6d\xcb\x0d\xb7\xdd\xbe\xfd\x37\x36\xfd\xfe\x67\xbf\xd0\x71\x7d\x71" "\x7b\x0e\xff\xc9\xb9\x96\xc7\x73\xf8\x3d\xe1\x75\x1c\xd6\xff\xc4\x87" "\xc2\xf1\x18\xae\xff\x9f\xab\x5f\x68\x59\x6f\x74\xf4\x3d\xad\xef\x3f" "\x71\xf9\xaf\x6c\xbe\xd4\xf2\x78\xa2\xb7\xfd\xb8\x5c\xff\xd5\xd7\x9f" "\x6c\xcc\x7f\x9b\xf8\xc9\xef\xde\xf2\x82\x5b\x5f\x78\xf9\x95\xf5\x7d" "\x57\x14\xdf\x7d\x5f\x79\x7f\xbd\xd6\x7f\xf2\x0f\xce\xb6\x6c\xff\x57" "\xef\xd8\xd9\x78\x3e\xe2\xf5\xb1\xa3\xdf\xbe\xfe\xe5\xc4\xf5\x9f\xff" "\xf8\xe4\x99\xb3\xf3\x17\xe7\x66\x9a\xf6\x6a\xe3\x77\xe7\xbc\xa3\xdc" "\x9e\x0d\xe3\x1b\x37\xd5\xb7\xf7\xb6\xf0\xde\xda\xfe\xf9\x91\xb3\x17" "\x3e\x3c\x7b\x7e\x62\x7a\x62\xba\x28\x26\xaa\xfb\x2b\xf4\xae\xd9\xd7" "\xc2\x7c\xb6\x1c\x97\x57\x7b\xfb\x9d\x8f\x84\xe7\xf3\xae\xdf\xf9\xf6" "\xa6\xed\xff\xf0\xf9\x78\xf9\x3f\x3d\x5c\x5e\x7e\xe5\xed\xe5\xd7\xad" "\x57\x87\xe5\xbe\x18\x2e\xdf\x5c\x3e\x7f\x0b\xb5\xeb\x5c\xff\x13\x77" "\xdf\xd1\x78\x7d\xd7\x9e\x2a\x3f\x6f\xe9\xb1\xf7\xc1\xd6\x6d\xff\x7e" "\x60\x45\x0b\x86\xc7\xdf\xfe\x7d\x41\x3c\xde\xcf\xbd\xf4\xc3\x8d\xfd" "\x50\xbf\xae\xf1\x75\x23\xbe\xae\xaf\x73\xfb\xbf\x3f\x53\xde\xcf\xb7" "\xc2\x7e\x5d\x08\xbf\x99\xf9\x9e\x3b\x16\xd7\xd7\xbc\x7c\xfc\xdd\x08" "\x57\xde\x57\xbe\xde\xaf\x7b\xff\x85\xb7\xb9\xf8\xbc\xfe\x51\x78\xbe" "\xdf\xf9\x83\xf2\xfe\xe3\x76\xc5\xc7\xfb\xfd\xf0\x7d\xcc\x77\xb6\xb4" "\xbe\xdf\xc5\xe3\xe3\x5b\x97\x86\xda\xef\xbf\xf1\x5b\x3c\x2e\x87\xf7" "\x93\xe2\x72\x79\x7d\x5c\x2a\xee\xef\x2b\xcf\xdd\xd1\x71\xf3\xe2\xef" "\x21\x29\x2e\xdf\xd9\xf8\xfc\xb7\xd3\xfd\xdc\xb9\xaa\x87\xb9\x9c\xf9" "\x4f\xcc\x4f\x9d\x9a\x3b\x73\xf1\xd1\xa9\x0b\xb3\xf3\x17\xa6\xe6\x3f" "\xf1\xc9\x23\xa7\xcf\x5e\x3c\x73\xe1\x48\xe3\x77\x79\x1e\xf9\x48\xaf" "\xdb\x2f\xbe\x3f\x6d\x6a\xbc\x3f\xcd\xcc\xee\xdb\x5b\x4c\x6f\x2c\x8a" "\xe2\x6c\x31\xbd\x06\x6f\x58\x37\x66\xfb\xeb\x1f\xad\x6c\xfb\xcf\x3d" "\x72\x7c\x66\xff\xf4\xf6\x99\xd9\x13\xc7\x2e\x9e\xb8\xf0\xc8\xb9\xd9" "\xf3\x27\x8f\xcf\xcf\x1f\x9f\x9d\x99\xdf\x7e\xec\xc4\x89\xd9\x8f\xf7" "\xba\xfd\xdc\xcc\xa1\x5d\xbb\x0f\xee\xd9\xbf\x7b\xf2\xe4\xdc\xcc\xa1" "\x03\x07\x0f\xee\x39\x38\x39\x77\xe6\x6c\x7d\x33\xca\x8d\xea\x61\xdf" "\xf4\x47\x27\xcf\x9c\x3f\xd2\xb8\xc9\xfc\xa1\xbd\x07\x77\x3d\xf0\xc0" "\xde\xe9\xc9\xd3\x67\x67\x66\x0f\xed\x9f\x9e\x9e\xbc\xd8\xeb\xf6\x8d" "\xaf\x4d\x93\xf5\x5b\xff\xda\xe4\xf9\xd9\x53\xc7\x2e\xcc\x9d\x9e\x9d" "\x9c\x9f\xfb\xe4\xec\xa1\x5d\x07\xf7\xed\xdb\xdd\xf3\xb7\x01\x9e\x3e" "\x77\x62\x7e\x62\xea\xfc\xc5\x33\x53\x17\xe7\x67\xcf\x4f\x95\x8f\x65" "\xe2\x42\xe3\xe2\xfa\xd7\xbe\x5e\xb7\xa7\x9a\xe6\xff\xa5\xfc\x7e\xb6" "\x5d\xad\xfc\x45\x7c\xc5\xbb\xee\xdb\x97\x7e\x3f\x6b\xdd\xd7\x3f\xbd" "\xec\x5d\x95\x8b\xb4\xfd\x02\xd1\x67\xc2\xef\xa2\xf9\xbb\x17\x9d\x3b" "\xb0\x92\xcf\x63\xee\x1f\x0d\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62" "\xee\x1f\x0b\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xdf\x10\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x1e\x66\x92\x49\xfe\xd7\xff\xd7" "\xff\x5f\x59\xff\xbf\xbc\x5e\xff\x3f\xaf\xfe\xff\xb9\x8f\x95\xbd\xd2" "\xf5\xde\xff\x8f\xfd\x79\xfd\xff\x3c\xdc\xe4\xfe\xff\x75\xaf\x5f\xff" "\x5f\xff\xbf\x7a\xfd\xff\x95\xf7\xe7\xd7\xfb\xf6\xeb\xff\xeb\xff\xb3" "\xd4\xa0\xf5\xff\x63\xee\xdf\x58\x14\x59\xe6\x7f\x00\x00\x00\xc8\x41" "\xcc\xfd\x9b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x6f\x09\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x41\x98\x49\x26\xf9\x3f\x87" "\xfe\xff\xbb\x3b\x2c\xb6\xca\xfe\xff\xee\x5e\x85\xab\xea\xf7\xff\xd7" "\xcd\xf9\xff\x37\x16\xfa\xff\xfa\xff\xcd\xfd\xff\xf8\xe4\xe8\xff\x67" "\x63\xd5\xfd\xfb\xf7\x3f\xdc\xf2\xe9\x40\xf7\xff\x37\xac\xf6\xde\x96" "\xd2\xff\xef\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x3e\x1a\x5d\xf6\x9a" "\x9b\xd5\xff\x8f\xb9\xff\xd6\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\x17\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x16\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x39\xcc\x24\x93\xfc\x9f\x43" "\xff\xbf\x13\xe7\xff\xaf\x6c\xff\xdf\xf9\xff\xf5\xff\xfb\x7b\xfe\xff" "\xa6\x8d\xd1\xff\x5f\x1f\x9c\xff\xbf\xbb\xce\xfd\xff\xb1\x5b\x96\x5c" "\xa4\xff\xbf\xca\xfe\xff\xb8\xfe\xff\x7a\xec\xff\x8f\xf6\x77\xfb\x07" "\xbb\xff\xdf\x73\xf3\xf5\xff\xb9\x21\x06\xed\xfc\xff\x31\xf7\xbf\x28" "\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xc5\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\x2f\x09\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\xbf\x3d\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xdf\x79\xfd\xbd\xcf\xff\x5f\x7e\xa4\xff\x3f\x58\xf4\xff\xbb\x73" "\xfe\xff\x1e\x9c\xff\x3f\xaf\xfe\x7f\x9f\xb7\x7f\xb0\xfb\xff\xfd\x3e" "\xff\xff\xe8\x9b\xdb\x6f\xaf\xff\x4f\x27\x83\xd6\xff\x8f\xb9\xff\xa5" "\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x77\x84\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\xbf\x2c\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\x7f\x4b\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\xbf\xf3\xfa\x7b\xf7\xff\x4b\xfa\xff\x83\x45\xff\xbf\x3b\xfd\xff" "\x1e\xf4\xff\xf5\xff\xf5\xff\x57\xd6\xff\xef\xf0\xcd\xaf\xfe\x3f\x9d" "\x0c\x5a\xff\x3f\xe6\xfe\x3b\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83" "\x98\xfb\xef\x0a\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x7f\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x5b\xc3\x4c\x32\xc9\xff\xfa" "\xff\xfa\xff\xfa\xff\x79\xf5\xff\xef\x1b\xd3\xff\xd7\xff\xaf\x36\xfd" "\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\x5f\xe1\xf9\xff\x97\x5a" "\x4d\xff\x7f\x43\xaf\x3b\xa3\x32\x06\xad\xff\x1f\x73\xff\xcb\xc3\x4c" "\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x5f\x11\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\xff\xca\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6" "\xfe\x89\x30\x93\x4c\xf2\xbf\xfe\x7f\xb5\xfa\xff\x7f\xfc\x97\x4f\xbc" "\xb2\xd0\xff\xd7\xff\xef\xb1\xfe\x8a\xf6\xff\xe3\x61\xa0\xff\x9f\x39" "\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\x5f\x93\xfe\x3f\xf9" "\x18\xb4\xfe\x7f\xcc\xfd\x77\x87\x99\x64\x92\xff\x01\x00\x00\x20\x07" "\x31\xf7\xdf\x13\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x6f\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xb6\x30\x93\x4c\xf2\xbf\xfe" "\x7f\xb5\xfa\xff\x91\xfe\xbf\xfe\x7f\xb7\xf5\x57\xb4\xff\x9f\xe8\xff" "\xe7\x4d\xff\xbf\x83\xa6\x17\xa9\xfe\x7f\x0f\xfa\xff\xfa\xff\xd9\xf7" "\xff\xe3\x77\xbf\xfa\xff\xf4\xc7\xa0\xf5\xff\x63\xee\x7f\x55\x98\x49" "\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xf6\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\x57\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\xef\x08\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77" "\x5e\xbf\xfe\xff\xfa\xa4\xff\xdf\xdd\x6a\xfb\xff\x63\xfa\xff\xfa\xff" "\xfa\xff\x99\xf5\xff\x9d\xff\x9f\xfe\x1a\xb4\xfe\x7f\xcc\xfd\xaf\x09" "\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x19\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xff\xbf\x59\xfe\xbf\x57\xf9\x1f\x00\x00\x00\xaa" "\x28\xe6\xfe\xc9\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\x7f\x4e\xfd\xff\x9a" "\xfe\xbf\xfe\xbf\xfe\x7f\xe5\xe9\xff\x77\xe7\xfc\xff\x3d\xe8\xff\xeb" "\xff\xeb\xff\xeb\xff\xd3\x57\x83\xd6\xff\x8f\xb9\xff\xb5\x61\x26\x99" "\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xf7\x87\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\x4f\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x4f" "\x87\x99\x64\x92\xff\xf5\xff\xf5\xff\x73\xea\xff\x3b\xff\xbf\xfe\xbf" "\xfe\x7f\xf5\xe9\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\x7f\xd5\xfa\xff" "\x45\xa1\xff\xcf\x4d\x35\x68\xfd\xff\x98\xfb\x77\x85\x99\x64\x92\xff" "\x01\x00\x00\x20\x07\x31\xf7\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\xdf\x13\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x37\xcc" "\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x06\xfd\xff\xff\x5c" "\xd0\xff\xd7\xff\x5f\x23\xdd\xfa\xf7\x5f\x5e\xc1\xed\xf5\xff\x03\xfd" "\x7f\xfd\x7f\xfd\xff\x6a\xf4\xff\x9d\xff\x9f\x9b\x6c\xd0\xfa\xff\x31" "\xf7\x3f\x10\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x2f\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x7f\x98\x49\xc8\xff\x9d\xfe" "\x5f\x37\x00\x00\x00\xb0\xbe\xc4\xdc\x7f\x20\xcc\x24\x93\x7f\xff\xd7" "\xff\xaf\x48\xff\xff\x37\xfe\xb6\x65\xdd\xfa\xff\xfa\xff\xdd\xd6\xdf" "\x9f\xfe\xff\x46\xe7\xff\x0f\x53\xff\x7f\xb0\x54\xf4\xfc\xff\xed\x2f" "\x8b\x6b\xb6\x3e\xfb\xff\xcf\xa7\xc7\xaf\xff\xaf\xff\x3f\xc8\xdb\xaf" "\xff\xaf\xff\xcf\x52\x83\xd6\xff\x8f\xb9\xff\x60\x98\x49\x26\xf9\x1f" "\x00\x00\x00\x72\x10\x73\xff\xeb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\xff\x7f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xcf\x84" "\x99\x64\x92\xff\xf5\xff\x2b\xd2\xff\x6f\xa3\xff\xaf\xff\xdf\x6d\xfd" "\x37\xe1\xfc\xff\xe5\xf1\xa0\xff\xaf\xff\xbf\x06\x2a\xda\xff\xef\x9b" "\xf5\xd9\xff\x5f\xe6\xfc\xff\x43\xfa\xff\xfa\xff\x83\xb5\xfd\xfa\xff" "\x2b\xe9\xff\x6f\xe8\x75\x37\x54\xcc\x8d\xef\xff\xc7\x8f\x56\xd6\xff" "\x8f\xb9\xff\x50\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xcf" "\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x3e\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\xff\x70\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\xff\xc6\xf4\xff\x5f\x5f\xb4\x1b\xc4\xfe\x7f\xfd\xe0\xd1" "\xff\xaf\x16\xfd\xff\xee\x2a\xd5\xff\x77\xfe\x7f\xfd\xff\x01\xdb\x7e" "\xfd\x7f\xe7\xff\x67\xa9\x41\x3b\xff\x7f\xcc\xfd\x6f\x08\x33\xc9\x24" "\xff\x03\x00\x00\x40\x0e\x62\xee\x7f\x30\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\xff\x8d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x6f" "\x0a\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x3b\xff\x7f\xe7" "\xf5\xeb\xff\xaf\x4f\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff" "\xaf\xff\x4f\x5f\xdd\xbc\xfe\xff\x86\x8e\xd7\xc7\xdc\xff\xe6\x30\x93" "\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xb7\x84\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\x6d\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\xce\xeb\xd7\xff\x5f\x9f\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\x5f" "\xff\x5f\xff\x9f\xbe\x1a\xb4\xf3\xff\xc7\xdc\xff\x73\x61\x26\x99\xe4" "\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x0f\x85\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x1d" "\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xce\xeb" "\xd7\xff\x5f\x9f\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\x5f\xff\x5f" "\xff\x9f\xbe\x1a\xb4\xfe\x7f\xcc\xfd\xef\x0c\x33\xc9\x24\xff\x03\x00" "\x00\x40\x0e\x62\xee\xff\xf9\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6" "\xfe\x77\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x3b\xcc\x24" "\x93\xfc\xaf\xff\xaf\xff\x3f\x58\xfd\xff\x85\x4b\xcd\xb7\xd3\xff\xd7" "\xff\x2f\xfa\xd5\xff\xaf\xdf\x48\xff\x3f\x0b\xfa\xff\xdd\xe9\xff\xf7" "\xd0\xa1\xff\xbf\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x6b\x36\x68\xfd" "\xff\x98\xfb\xdf\x13\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff" "\xde\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf7\x85\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\x3f\x1c\x66\x92\x49\xfe\xd7\xff\xcf\xb2" "\xff\x9f\x1e\xf2\xe0\xf5\xff\x9d\xff\x5f\xff\xbf\xd2\xe7\xff\x6f\xac" "\x4a\xff\xff\xc6\xd2\xff\xef\x4e\xff\xbf\x07\xe7\xff\xd7\xff\x5f\x97" "\xfd\xff\xd1\x30\x3f\x3a\x19\xbf\x36\xe9\xff\x33\x28\x06\xad\xff\x1f" "\x73\xff\x23\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xef\x0f" "\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x85\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x0f\x84\x99\x64\x92\xff\xf5\xff\xb3\xec\xff" "\x0f\xf0\xf9\xff\xab\xd6\xff\x1f\x69\x39\x3e\x72\xea\xff\x8f\x37\x3d" "\x9f\xe9\xb8\xd4\xff\x77\xfe\xff\x35\xa0\xff\xdf\x9d\xfe\x7f\x0f\xfa" "\xff\xfa\xff\x83\xdc\xff\x0f\x47\xf3\xc6\x65\x6e\xef\xfc\xff\x0c\xa2" "\x41\xeb\xff\xc7\xdc\xff\xc1\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\x5f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xa5\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x5f\x0e\x33\xc9\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\x3b\xff\xbf\xf3\xff\x77\x5e\xbf\xfe\xff\xfa\xa4" "\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xf9\xf4\xff\x47\xfa\xbf\xfd\x37\xef" "\xfc\xff\x25\xfd\x7f\x06\xd1\xa0\xf5\xff\x63\xee\xff\x95\x30\x93\x65" "\x83\xdf\xb3\xff\xb1\x82\x87\x09\x00\x00\x00\x0c\x90\x98\xfb\x3f\x14" "\x66\x92\xc9\xbf\xff\x03\x00\x00\x40\x0e\x62\xee\x3f\x12\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\x7f\x34\xcc\x24\x93\xfc\xaf\xff\xdf\xde" "\xff\x8f\x67\x54\xd5\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x8f\xfa" "\xd7\xff\x7f\xd9\xad\x45\xa1\xff\xbf\x5c\xff\x7f\xb4\x58\xdc\x3e\xfd" "\x7f\xfd\xff\x68\x5d\xf5\xff\x6f\xc0\xf6\xeb\xff\xeb\xff\xb3\xd4\xa0" "\xf5\xff\x63\xee\x3f\x16\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc" "\xff\xab\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xc7\xc3\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x67\xc2\x4c\x32\xc9\xff\x6b\xdd\xff" "\x6f\xea\xf5\x8e\x0e\x66\xff\xdf\xf9\xff\xaf\xb5\xff\xff\x53\xfd\x7f" "\xfd\xff\x40\xff\xbf\x33\xfd\xff\xb5\xe1\xfc\xff\xdd\x39\xff\x7f\x0f" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\xd5\xa0\xf5\xff\x63\xee\x9f\x0d" "\x33\xc9\x24\xff\x03\x00\x00\x40\x85\xa5\x1f\x07\xc7\xdc\x7f\x22\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x64\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\xff\x87\xc3\x4c\x32\xc9\xff\xce\xff\xaf\xff\xef\xfc" "\xff\x37\xa3\xff\x3f\xd2\xb2\xbc\xfe\x7f\x49\xff\x5f\xff\xbf\x1f\xf4" "\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xbe\x1a\xb4" "\xfe\x7f\xcc\xfd\x73\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd" "\x1f\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x68\x98\x89\xfc" "\x0f\x00\x00\x00\x95\x11\x73\xff\xa9\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe" "\x7f\xee\xfd\xff\x5a\x51\x5c\x76\xfe\x7f\xfd\xff\x4e\xeb\xd7\xff\x5f" "\x9f\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xbe" "\x1a\xb4\xfe\x7f\xcc\xfd\xa7\xc3\x4c\x32\xc9\xff\xff\xc7\xde\x7d\x34" "\xc9\x75\x5e\x77\x1c\x6e\x93\x48\xb3\xb2\x17\xfe\x00\x5e\x7b\xe5\x25" "\xbd\x22\x17\xfe\x00\xde\xb9\xbc\x73\x95\xd7\xca\x54\x0e\x24\x95\xb3" "\x44\x45\x2a\x4b\x94\x44\xe5\x9c\x45\x05\x2a\xe7\x9c\x33\x95\x73\xa4" "\x02\x45\xa9\x6a\x54\x18\x9c\x73\x80\x41\xf7\xdc\x0b\x60\x2e\xa6\xef" "\x7d\xdf\xe7\xd9\x1c\x03\x45\x68\x1a\xe4\x88\xaa\xbf\x51\xbf\x7a\x01" "\x00\x00\xa0\x07\xb9\xfb\xef\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xf7\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x7b\xc6\x2d\x9d" "\xec\x7f\xfd\xbf\xfe\xbf\xf7\xfe\x7f\xb5\x95\xf7\xff\xf7\xff\xf5\xed" "\xf7\xff\x67\xfe\x09\xe9\xff\xf5\xff\x47\x61\xad\xbf\x3f\xb6\xf9\xaf" "\x3b\x28\x0a\x3f\xb0\xff\xff\x8f\xab\xae\xfd\x3f\xfd\xbf\xfe\x5f\xff" "\x3f\x48\xff\xaf\xff\xd7\xff\x73\xbe\xb9\xf5\xff\xb9\xfb\xef\x15\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xef\x1d\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\xf7\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\x6b\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef\xeb\xff\x6f" "\xf3\xfe\xbf\xfe\x7f\xd9\xbc\xff\x3f\x6c\x19\xfd\xff\x55\xbb\xbb\xbb" "\xfa\xff\x4d\xf4\xff\xf3\xfe\xfc\xfa\x7f\xfd\x3f\xeb\xe6\xd6\xff\xe7" "\xee\xbf\x6f\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x5f\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x3f\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x1f\x10\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xff\x52" "\xfa\xff\x13\x0b\x7e\xff\x3f\xbe\x1f\xf4\xff\xfa\xff\x23\xa0\xff\x1f" "\xb6\x8c\xfe\xdf\xfb\xff\xfa\xff\x65\x7e\x7e\xfd\xbf\xfe\x9f\x75\x17" "\xdf\xff\x1f\xf8\xaf\xed\x49\xfa\xff\xdc\xfd\x0f\x8c\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\x0f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x07\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x43\xe2\x96" "\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\x5f\x4a\xff\x7f\x44\xef\xff\xeb\xff" "\xf5\xff\x0b\x77\xf3\xea\xec\xbf\x13\xf4\xff\xeb\xf4\xff\x23\x46\xfa" "\xff\xd5\x4a\xff\x3f\xe4\x82\xfb\xf9\xcd\xbf\xbd\xe5\x7c\xfe\x03\xe8" "\xff\xf5\xff\xac\xbb\xf8\xfe\xff\xc0\xff\xa8\x49\xfa\xff\xdc\xfd\x0f" "\x8d\x5b\xae\x59\xad\x4e\x5c\xea\x6f\x12\x00\x00\x00\x98\x95\xdc\xfd" "\x0f\x8b\x5b\x3a\xf9\xf3\x7f\x00\x00\x00\xe8\x41\xee\xfe\xeb\xe2\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xfa\xb8\xa5\x93\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\xff\xcd\x5f\x5f\xff\xbf\x4c\xde\xff\x1f\x76" "\xf8\xfe\xff\xdf\xff\xe5\x6e\xff\xdf\x6f\xff\xef\xfd\xff\x61\xde\xff" "\x9f\xba\xff\x3f\xfd\x9d\xd1\x64\xff\x2f\xb3\xee\xc8\xdc\xfa\xff\xdc" "\xfd\x37\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x87\xc7\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x23\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x91\x71\x4b\x27\xfb\x5f\xff\xdf\x5a\xff\x7f\xe5\xbe" "\x5f\x77\x4e\xff\xbf\x57\xbb\xe8\xff\x97\xde\xff\xff\x97\xfe\x5f\xff" "\xaf\xff\x1f\xa1\xff\x1f\xe6\xfd\xff\x11\x7b\xff\x9a\xdb\xa9\x1f\xea" "\xff\xf5\xff\xde\xff\xf7\xfe\x3f\x87\x33\xb7\xfe\x3f\x77\xff\xa3\xe2" "\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xa3\xe3\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x31\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xd8\xb8\xa5\x93\xfd\xaf\xff\x6f\xad\xff\xdf\xff\xeb\xbc\xff\xdf" "\x5a\xff\xef\xfd\xff\x95\xfe\x5f\xff\x3f\x42\xff\x3f\x4c\xff\x3f\xa2" "\x95\xf7\xff\x2f\xf1\xbb\x66\xdb\xfd\xfc\x61\x6d\xfb\xf3\xeb\xff\xf5" "\xff\xac\x9b\x5b\xff\x9f\xbb\xff\x71\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\xf1\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x84" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x62\xdc\xd2\xc9\xfe\xd7" "\xff\xeb\xff\x97\xd1\xff\xe7\x57\xd0\xff\xeb\xff\x2f\x7f\xff\x9f\xf4" "\xff\xcb\xa4\xff\x1f\xa6\xff\x1f\xd1\x4a\xff\x7f\x89\xb6\xdd\xcf\x2f" "\xfd\xf3\xeb\xff\xf5\xff\xac\x9b\x5b\xff\x9f\xbb\xff\x49\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xc9\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\x94\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x6a" "\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x2f\x73\xff\xff\xaf\xa7\xff\x3e\x78" "\xff\xff\x0c\xfd\xff\x32\xfa\x7f\xef\xff\x2f\x9b\xfe\x7f\x98\xfe\x7f" "\x84\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xa9\xb9\xf5\xff\xb9\xfb\x6f\x8c" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x4f\x8b\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xa7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x33\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xbf\x8c\xf7\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\xff\xc2\xe8\xff\x87\xe9\xff\x47\xe8\xff\xf5\xff\xfa" "\x7f\xfd\x3f\x93\x9a\x51\xff\x7f\xce\xaf\x3a\xb5\x7a\x66\xdc\xd2\xc9" "\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x56\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\x3f\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x6f\x8a" "\x5b\x3a\xd9\xff\xfa\xff\xd9\xf4\xff\x7b\x39\x5f\x5b\xfd\xff\xce\x6a" "\xb5\xd2\xff\xaf\x3a\xed\xff\x77\xce\xf9\xe7\x59\xdf\x97\xfa\x7f\xfd" "\xff\x11\xd0\xff\x0f\xd3\xff\x8f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x26" "\x35\xa3\xfe\x7f\xef\xc7\xb9\xfb\x9f\x13\xb7\x74\xb2\xff\x01\x00\x00" "\xa0\x07\xb9\xfb\x9f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xcf" "\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xe7\xc7\x2d\x9d\xec\x7f" "\xfd\xff\x6c\xfa\xff\x3d\x6d\xf5\xff\xde\xff\x3f\xff\xfb\xa3\xa7\xfe" "\xdf\xfb\xff\xeb\xf4\xff\x47\x43\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff" "\xd7\xff\xeb\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\x2f\x88\x9b\x4e\x1c\xbf" "\xe4\xdf\x22\x00\x00\x00\x30\x33\xb9\xfb\x5f\x18\xb7\x74\xf2\xe7\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\x2f\x8a\x5b\xec\x7f\x00\x00\x00\x58\xa8" "\x1b\xd7\x7e\x26\x77\xff\x8b\xe3\x96\x4e\xf6\xbf\xfe\x7f\xda\xfe\xff" "\xc4\x39\x3f\xa7\xff\xd7\xff\x9f\xff\xfd\xa1\xff\xd7\xff\xeb\xff\x2f" "\x3f\xfd\xff\x30\xfd\xff\x08\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x73" "\xeb\xff\x73\xf7\xbf\x24\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7" "\xdf\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x2f\x8d\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x97\xc5\x2d\x9d\xec\x7f\xfd\xbf\xf7\xff" "\xf5\xff\xfa\x7f\xfd\xff\xe6\xaf\xaf\xff\x5f\x26\xfd\xff\x30\xfd\xff" "\x08\xfd\xff\x81\xfd\xfc\x85\x3c\x8d\xad\xff\x3f\x74\xff\x7f\xf2\xec" "\xff\xa9\xff\xa7\x0d\x17\xd1\xff\xef\xee\xee\x5e\x77\xd9\xfb\xff\xdc" "\xfd\x2f\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xb7\xc4\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x2b\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x95\x71\x4b\x27\xfb\x5f\xff\xdf\x69\xff\x9f\xdf\xea" "\xcb\xea\xff\xaf\x5f\xad\xf4\xff\xfa\x7f\xfd\xbf\xfe\x7f\x98\xfe\x7f" "\x98\xfe\x7f\x84\xfe\xdf\xfb\xff\xde\xff\xd7\xff\x33\xa9\xb9\xbd\xff" "\x9f\xbb\xff\x55\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xd5" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x9a\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\x7f\x6d\xdc\xd2\xc9\xfe\xd7\xff\x77\xda\xff\x7b" "\xff\x5f\xff\xaf\xff\x3f\xea\xfe\xff\xae\x95\xfe\xff\x48\x2c\xa2\xff" "\xdf\x39\xf8\xeb\xcf\xbd\xff\xbf\x41\xff\xaf\xff\x1f\xd0\x5d\xff\xff" "\xdf\xff\xb9\xef\x87\xfa\x7f\xfd\x3f\xeb\xe6\xd6\xff\xe7\xee\x7f\x5d" "\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x7d\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\xbf\x21\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\xdf\x18\x37\x1d\xeb\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xf3\xd7\x3f\xe2\xf7\xff\x4f\xac\x56\x2b\xfd\xff\x04\x16\xd1\xff" "\x0f\x98\x7b\xff\x3f\xcd\xfb\xff\xe7\xff\xb7\xfc\x2c\xfd\xbf\xfe\x7f" "\xc9\x9f\x5f\xff\xaf\xff\x67\xdd\xdc\xfa\xff\xdc\xfd\x6f\x8a\x5b\x3a" "\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\xb7\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x5b" "\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x2f\xaa\xff\x3f\x79" "\x09\xfd\xff\x0d\x8b\xe8\xff\xbd\xff\x3f\x11\xfd\xff\xb0\x79\xf4\xff" "\x07\xd3\xff\xeb\xff\x97\xfc\xf9\xf5\xff\xfa\x7f\x2e\xdc\xb6\xfa\xff" "\xdc\xfd\x6f\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x6f\x8f" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x77\xc4\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\x3b\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\x7f\x31\xfd" "\x7f\x7e\x4e\xfd\x7f\x5b\xfd\xff\xc9\xd9\xf5\xff\xa7\xf6\xfd\xe7\x75" "\xf2\xfe\xbf\xfe\x7f\x22\xfa\xff\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe" "\xff\x46\xfd\x3f\x53\x9a\xdb\xfb\xff\xb9\xfb\xdf\x15\xb7\x74\xb2\xff" "\x01\x00\x00\xa0\x07\xb9\xfb\xdf\x1d\xb7\xfe\x5f\xb7\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\xad\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\x9e\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\x7b\xff\x5f\xff\xbf\xa8\xf7\xff" "\xf5\xff\xfa\xff\x11\xfa\xff\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe\xdf" "\xfb\xff\x4c\x6a\x6e\xfd\x7f\xee\xfe\xf7\xc6\x2d\x9d\xec\x7f\x00\x00" "\x00\xe8\x41\xee\xfe\xf7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\xfb\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xb6\xb8\xa5\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x33\xff\x0c\xf5\xff\x6d\xd0" "\xff\x0f\x3b\x9a\xfe\x7f\x47\xff\xaf\xff\xaf\x7e\xfe\x9f\xe2\xbf\x05" "\xfa\x7f\xfd\xff\xd8\xaf\xa7\x4d\x73\xeb\xff\x73\xf7\x7f\x20\x6e\xe9" "\x64\xff\x03\x00\x00\x40\x6b\x8e\x6f\xf8\xb9\xdc\xfd\x1f\x8c\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x0f\xc5\x2d\xf6\x3f\x00\x00\x00\x2c" "\xd2\xb1\x0d\x3f\x97\xbb\xff\xc3\x71\xcb\x22\xf7\xff\xa6\x0a\x7d\x98" "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x37\x7f\x7d\xfd\xff\x32\x6d\xa5" "\xff\xcf\x6f\x0a\xfd\xbf\xf7\xff\x43\x3f\xfd\xff\xbf\xed\xfb\xd1\xd2" "\xde\xff\x3f\xff\x7f\xbf\xae\x5c\xe9\xff\xf5\xff\x4c\x6d\x6e\xfd\x7f" "\xee\xfe\x8f\xc4\x2d\x8b\xdc\xff\x00\x00\x00\xc0\x26\xb9\xfb\x3f\x1a" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8b\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x8f\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe\x7f\x4b\xfd" "\xff\x8e\xfe\x5f\xff\xaf\xff\x3f\xfb\x77\x55\xff\x3f\x1d\xef\xff\x0f" "\xd3\xff\x8f\xd0\xff\x6f\xf5\xfd\xfc\xa5\x7f\x7e\xfd\xbf\xfe\x9f\x75" "\x73\xeb\xff\x73\xf7\x7f\x22\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72" "\xf7\x7f\x32\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x15\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xbd\xdd\x9f\x71\x59\x87\xfb\x5f\xff\xaf\xff" "\xf7\xfe\xff\x7c\xfb\xff\xff\xd1\xff\xef\xd1\xff\xeb\xff\x2f\x86\xfe" "\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xa9\xb9\xf5\xff" "\x9f\xde\xfb\x55\xa7\x56\x9f\x89\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\x9f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xcf\xc5\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xe7\xe3\x96\x4e\xf6\xbf\xfe\x5f" "\xff\xbf\x8c\xfe\x7f\x77\x77\xf7\xba\xfe\xfa\x7f\xef\xff\x9f\x31\xde" "\xff\xdf\xbe\xe0\xfe\xff\x26\xfd\xff\xc4\xf4\xff\xc3\xf4\xff\x23\xf4" "\xff\xfa\xff\xd9\xf7\xff\xe7\xff\xaf\xe4\x59\xfa\x7f\xe6\x68\x6e\xfd" "\x7f\xee\xfe\x2f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x2f" "\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x97\xe2\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\xcb\x71\x4b\x27\xfb\x5f\xff\x3f\x83\xfe\xff" "\x94\xfe\xdf\xfb\xff\xfa\xff\x95\xf7\xff\xf5\xff\x13\xd1\xff\x0f\xd3" "\xff\x8f\x68\xb1\xff\x3f\x75\xe1\xbf\xfd\x6d\xf7\xf3\x87\xb5\xed\xcf" "\xef\xfd\x7f\xfd\x3f\xeb\xe6\xd6\xff\xe7\xee\xff\x4a\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\xff\x6a\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\x7f\x2d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x1e\xb7" "\x74\xb2\xff\xf5\xff\x47\xd7\xff\x9f\xfe\x7b\xd7\xcb\xfb\xff\x3b\xab" "\xcd\x9f\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x2f\x37\xfd\xff\x30\xfd\xff" "\x88\x16\xfb\xff\x8b\xb0\xed\x7e\x7e\xe9\x9f\x5f\xff\xaf\xff\x67\xdd" "\xdc\xfa\xff\xdc\xfd\xdf\x88\x5b\xf6\x0f\xbf\xe3\x17\xf7\xbb\x04\x00" "\x00\x00\xe6\x24\x77\xff\x37\xe3\x96\x4e\xfe\xfc\x1f\x00\x00\x00\x7a" "\x90\xbb\xff\x5b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xed\xb8" "\xa5\x93\xfd\xaf\xff\x9f\xc1\xfb\xff\x0d\xf6\xff\x73\x7a\xff\xff\x56" "\xfd\xbf\xfe\xff\xc2\xfa\xff\x2b\xf4\xff\x6d\xd0\xff\x0f\xd3\xff\x8f" "\xd0\xff\xeb\xff\xf5\xff\x13\xf5\xff\xf9\xdd\xac\xff\xef\xdd\xdc\xfa" "\xff\xdc\xfd\xdf\x89\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xdf" "\x8d\x5b\xae\xd9\xd9\xd6\x47\x02\x00\x00\x00\x26\x96\xbb\xff\x7b\x71" "\x8b\x3f\xff\x07\x00\x00\x80\x66\xe4\xee\xbf\x3d\x6e\x39\x67\xff\x6f" "\x6a\xbb\x5b\xa1\xff\xd7\xff\xb7\xde\xff\x7b\xff\x5f\xff\xef\xfd\xff" "\xbe\xe8\xff\x87\x5d\x68\xff\x7f\x72\x75\xb8\xfe\x3f\xe9\xff\xf5\xff" "\xfa\xff\x5e\xfb\x7f\xef\xff\x73\xc6\x11\xf7\xff\xd7\x8f\xf5\xff\xb9" "\xfb\xbf\x1f\xb7\xf8\xf3\x7f\x00\x00\x00\x58\x9c\xe3\x07\xfc\x7c\xee" "\xfe\x1f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x0f\xe3\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x47\x71\xcb\x1d\x57\x6c\xeb\x23\x1d" "\x29\xfd\xbf\xfe\x5f\xff\x3f\xd2\xff\xdf\x19\xdf\xe0\xfa\x7f\xfd\xbf" "\xfe\x7f\x11\xf4\xff\xc3\xbc\xff\x3f\x42\xff\x3f\x45\x3f\x7f\xb5\xfe" "\xbf\x8d\xfe\x7f\xb5\xd2\xff\x73\x78\x47\xdc\xff\x8f\xfe\x38\x77\xff" "\x8f\xe3\x16\x7f\xfe\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x93\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\xff\x69\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\xff\x2c\x6e\xe9\x64\xff\xeb\xff\xf5\xff\x87\xec\xff\xf7\xd2" "\xcc\xa6\xfb\x7f\xef\xff\xeb\xff\x83\xfe\x7f\x19\xf4\xff\xc3\xb6\xdf" "\xff\xdf\x32\xf8\x65\xf5\xff\x4d\xf4\xff\xde\xff\x6f\xa4\xff\xf7\xfe" "\x3f\x53\x98\x5b\xff\x9f\xbb\xff\xe7\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\x17\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xcb" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x55\xdc\xd2\xc9\xfe\xdf" "\x5a\xff\x1f\x7f\xab\xf5\xff\x8b\xef\xff\xdb\x7f\xff\x7f\xb0\xff\xdf" "\x5d\xe9\xff\xf5\xff\xfa\xff\x79\xd1\xff\x0f\xdb\x7e\xff\x3f\x4c\xff" "\xaf\xff\x5f\xf2\xe7\xd7\xff\xeb\xff\x59\x37\xb7\xfe\x3f\x77\xff\xaf" "\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x6f\xe2\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\xb7\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xbb\xb8\xa5\x93\xfd\xef\xfd\x7f\xfd\xbf\xfe\xdf\xfb\xff\xfa" "\xff\xcd\x5f\x5f\xff\xbf\x4c\xfa\xff\x61\xfa\xff\xcd\xea\x1f\x94\xfe" "\x5f\xff\xaf\xff\xd7\xff\x33\xa9\xb9\xf5\xff\xb9\xfb\x7f\x1f\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xff\x10\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x77\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x1f" "\xe3\x96\x26\xf6\xff\xb1\xd1\xbf\x42\xff\xbf\xc8\xfe\xbf\xf2\x68\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\x3f\xfd\xff\xb0\x6d\xf6\xff\xff\xfb\xcf" "\xe3\x5f\xd6\xfb\xff\x5b\xef\xff\xf3\x23\xe8\xff\xf5\xff\xfa\x7f\x26" "\x31\xb7\xfe\x3f\x77\xff\x9f\xe2\x96\x26\xf6\x3f\x00\x00\x00\x70\x5a" "\xee\xfe\x3f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x5f\xe2\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xce\xb8\xa5\x93\xfd\x3f\xd2\xff" "\x9f\xac\xbf\x50\xff\x3f\xc8\xfb\xff\xfb\x3f\xbf\xfe\x7f\xf3\xf7\x87" "\xfe\x5f\xff\xaf\xff\xbf\xfc\xf4\xff\xc3\xbc\xff\x3f\x42\xff\xef\xfd" "\x7f\xfd\xbf\xfe\x9f\x49\xcd\xad\xff\xcf\xdd\xff\xd7\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x57\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\xff\x2d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x1e\xb7" "\x74\xb2\xff\xbd\xff\xbf\xa4\xfe\xff\x6a\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x8f\xd0\xff\x0f\xd3\xff\x8f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\x26\x35\xb7\xfe\x3f\x77\xff\x3f\x02\x00\x00\xff\xff\x75\x72\x4c\x56", 25126); syz_mount_image( /*fs=*/0x200000000080, /*dir=*/0x200000000040, /*flags=MS_POSIXACL|MS_SILENT|MS_NODIRATIME|MS_MANDLOCK|0x80*/ 0x188c0, /*opts=*/0x200000000340, /*chdir=*/0xfe, /*size=*/0x6226, /*img=*/0x200000008d00); break; case 1: // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: nil // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // copy_file_range arguments: [ // fd_in: fd (resource) // off_in: nil // fd_out: fd (resource) // off_out: nil // len: intptr = 0x4 (8 bytes) // flags: copy_file_range_flags = 0x0 (8 bytes) // ] syscall(__NR_copy_file_range, /*fd_in=*/r[0], /*off_in=*/0ul, /*fd_out=*/(intptr_t)-1, /*off_out=*/0ul, /*len=*/4ul, /*flags=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000, /*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); use_temporary_dir(); loop(); return 0; }