// 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_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static 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")) { } } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 1; 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); } } void execute_call(int call) { 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 = 0x810000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {64 69 73 63 61 72 64 2c 69 6f 63 68 61 72 73 // 65 74 3d 63 70 38 35 35 2c 65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f 2c 69 6e 74 65 67 72 69 74 79 2c 6e 6f 64 69 73 // 63 61 72 64 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 38 2c 65 72 72 6f 72 73 3d 63 6f 6e // 74 69 6e 75 65 00 69 69 73 6f 38 38 35 39 2d 34 2c 75 6d 61 73 // 6b 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 30 30 30 38 31 2c // 69 6f 63 68 61 72 57 fd 74 3d 6d 61 63 67 72 65 65 6b 2c 71 75 // 6f 74 61 2c 65 72 72 6f 17 29 de f7 e3 5b cb 75 6e 74 2d 72 6f // 2c 72 65 73 69 7a 65 3d 30 78 30 30 30 30 30 30 30 30 30 18 18 // 29 30 30 30 30 30 30 31 2c 75 6d 61 73 6b 3d 30 78 30 30 30 30 // 30 30 30 30 30 30 30 32 30 30 34 35 2c 66 73 6d 61 67 69 63 3d // 30 78 30 dc b1 c4 7c b8 7a 74 ac 1a 30 30 30 30 30 30 30 30 30 // 30 30 30 30 30 39 2c 64 65 66 63 6f 6e 74 65 78 74 3d 72 6f 6f // 74 2c 66 73 6e 61 6d 65 3d 75 7d 40 7d 58 7d 5b 2d 29 2b 2c 00 // 0d 1c 13 f7 c8 92 c8 61 5d 26 5c 63 76 53 91 75 38 05 11 ba c7 // 65 71 3e 83 a6 5e 4f df 01 1c 70 5f c6 83 80 05 12 03 85 ac 61 // b9 70 f4 5d 14 92 a0 61 2e b8 00 00 00 00 00 00 80 8f c7 6f 91 // b7 b9 a5 ce 77 88 78 58 ea 33 39 61 d1 ef 1e 4e ab d4 c8 71 81 // db f5 75 c4 7e 9b 8e ea 9d 68 06 fa 15 9e 05 25 14 6f 63 12 b4 // 93 1c ff ed 00 00} (length 0x1a4) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {a7 83 c8 94 22 e3 1c 30 d6 bf 83 1c 44 26 92 // 20 89 e2 b8 94 4e da 73 3c 7b ed 94 40 ae e9 df 86 36 11 0f 25 // 1f f7 57 94 e8 47 bb ad 8f 59 79 c9 d5 54 34 d5 34 4b c2 68 e6 // 19 48 fc 8a 8f fe 2d 27 c1 49 72 f7 9c 1c 97 7c 01 b4 a8 a4 e3 // 5f 14 d1 16 c5 94 82 ad d0 c3 1e 92 2b 29 fb 4c 24 94 88 18 ed // c6 36 cc ed 87 8c a3 1c 24 c6 a3 a3 1b cd ca 27 86 4f 76 11 d3 // 16 3d 21 93 9c 3c 5a fb 70} (length 0x81) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // } // } // chdir: int8 = 0xfa (1 bytes) // size: len = 0x61ee (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x61ee) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x2000000001c0, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000140, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x200000000c40, "\x64\x69\x73\x63\x61\x72\x64\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74" "\x3d\x63\x70\x38\x35\x35\x2c\x65\x72\x72\x6f\x72\x73\x3d\x72\x65\x6d" "\x6f\x75\x6e\x74\x2d\x72\x6f\x2c\x69\x6e\x74\x65\x67\x72\x69\x74\x79" "\x2c\x6e\x6f\x64\x69\x73\x63\x61\x72\x64\x2c\x64\x69\x73\x63\x61\x72" "\x64\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x38\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e" "\x75\x65\x00\x69\x69\x73\x6f\x38\x38\x35\x39\x2d\x34\x2c\x75\x6d\x61" "\x73\x6b\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x38\x31\x2c\x69\x6f\x63\x68\x61\x72\x57\xfd\x74\x3d\x6d\x61" "\x63\x67\x72\x65\x65\x6b\x2c\x71\x75\x6f\x74\x61\x2c\x65\x72\x72\x6f" "\x17\x29\xde\xf7\xe3\x5b\xcb\x75\x6e\x74\x2d\x72\x6f\x2c\x72\x65\x73" "\x69\x7a\x65\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x18\x18" "\x29\x30\x30\x30\x30\x30\x30\x31\x2c\x75\x6d\x61\x73\x6b\x3d\x30\x78" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x32\x30\x30\x34\x35\x2c" "\x66\x73\x6d\x61\x67\x69\x63\x3d\x30\x78\x30\xdc\xb1\xc4\x7c\xb8\x7a" "\x74\xac\x1a\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x39\x2c\x64\x65\x66\x63\x6f\x6e\x74\x65\x78\x74\x3d\x72\x6f\x6f\x74" "\x2c\x66\x73\x6e\x61\x6d\x65\x3d\x75\x7d\x40\x7d\x58\x7d\x5b\x2d\x29" "\x2b\x2c\x00\x0d\x1c\x13\xf7\xc8\x92\xc8\x61\x5d\x26\x5c\x63\x76\x53" "\x91\x75\x38\x05\x11\xba\xc7\x65\x71\x3e\x83\xa6\x5e\x4f\xdf\x01\x1c" "\x70\x5f\xc6\x83\x80\x05\x12\x03\x85\xac\x61\xb9\x70\xf4\x5d\x14\x92" "\xa0\x61\x2e\xb8\x00\x00\x00\x00\x00\x00\x80\x8f\xc7\x6f\x91\xb7\xb9" "\xa5\xce\x77\x88\x78\x58\xea\x33\x39\x61\xd1\xef\x1e\x4e\xab\xd4\xc8" "\x71\x81\xdb\xf5\x75\xc4\x7e\x9b\x8e\xea\x9d\x68\x06\xfa\x15\x9e\x05" "\x25\x14\x6f\x63\x12\xb4\x93\x1c\xff\xed\x00\x00", 420)); NONFAILING(sprintf((char*)0x200000000de4, "%023llo", (long long)-1)); NONFAILING(*(uint32_t*)0x200000000dfb = -1); NONFAILING(memcpy( (void*)0x200000000dff, "\xa7\x83\xc8\x94\x22\xe3\x1c\x30\xd6\xbf\x83\x1c\x44\x26\x92\x20\x89" "\xe2\xb8\x94\x4e\xda\x73\x3c\x7b\xed\x94\x40\xae\xe9\xdf\x86\x36\x11" "\x0f\x25\x1f\xf7\x57\x94\xe8\x47\xbb\xad\x8f\x59\x79\xc9\xd5\x54\x34" "\xd5\x34\x4b\xc2\x68\xe6\x19\x48\xfc\x8a\x8f\xfe\x2d\x27\xc1\x49\x72" "\xf7\x9c\x1c\x97\x7c\x01\xb4\xa8\xa4\xe3\x5f\x14\xd1\x16\xc5\x94\x82" "\xad\xd0\xc3\x1e\x92\x2b\x29\xfb\x4c\x24\x94\x88\x18\xed\xc6\x36\xcc" "\xed\x87\x8c\xa3\x1c\x24\xc6\xa3\xa3\x1b\xcd\xca\x27\x86\x4f\x76\x11" "\xd3\x16\x3d\x21\x93\x9c\x3c\x5a\xfb\x70", 129)); NONFAILING(*(uint64_t*)0x200000000e80 = -1); NONFAILING(sprintf((char*)0x200000000e88, "%023llo", (long long)0)); NONFAILING(*(uint8_t*)0x200000000e9f = 0); NONFAILING(*(uint16_t*)0x200000000ea0 = 0); NONFAILING(*(uint16_t*)0x200000000ea2 = 0); NONFAILING(*(uint32_t*)0x200000000ea4 = -1); NONFAILING(sprintf((char*)0x200000000ea8, "%020llu", (long long)-1)); NONFAILING(memcpy( (void*)0x200000012cc0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\x25\x34\xb5" "\x7a\xa8\x4a\x84\x90\x9b\x96\x97\x52\x9a\xc4\x49\x09\x81\x02\x6d\x0f" "\x70\xe0\xd2\x03\xca\x15\x25\x72\xdd\x2a\x22\x05\x94\x04\x94\x56\x16" "\x71\xe5\x0b\x07\x4e\xfc\x05\x20\x24\x8e\x08\x71\x44\x1c\xfa\x07\xf4" "\xc0\x95\x1b\x27\x4e\x44\xb2\x91\x40\x3d\x31\x68\xbc\xcf\x13\xcf\x6e" "\x76\xbb\x36\x8e\x77\xd6\x9e\xcf\x47\x72\x66\x7e\xf3\xcc\x78\x9f\xf1" "\x77\x67\x5f\xb2\x33\xfb\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\x10\xdf\xff\xde\x0f\xd6\x5a\x11\x71\xe3\xe7\x69\xc1" "\x4a\xc4\x67\xa2\x13\xd1\x8e\x58\x2a\xeb\xd5\x88\x58\x5a\x5d\xc9\xeb" "\x77\x23\xe2\xb9\xd8\x6b\x8e\x67\x23\xa2\xb7\x10\x51\x6e\xbf\xf7\xcf" "\xd3\x11\xaf\x46\xc4\xc7\x67\x23\x76\x76\x37\xd7\xcb\xc5\x97\x0f\xd8" "\x8f\xef\xfe\xf1\x6f\xbf\xfb\xe1\x99\xb7\xfe\xfa\x87\xde\xc5\xff\xfc" "\xe9\x5e\xe7\xb5\x49\xeb\xdd\xbf\xff\xab\x7f\xff\xf9\xc1\xd1\xf6\x19" "\x00\x00\x00\x9a\xa6\x28\x8a\xa2\x95\xde\xe6\x9f\x4b\xef\xef\xdb\x75" "\x77\x0a\x00\x98\x89\xfc\xfc\x5f\x24\x79\xf9\xa9\xaf\x7f\xfd\x8f\xb7" "\xfe\x32\x4f\xfd\x51\xab\xd5\x6a\xb5\x7a\x06\x75\x55\x31\xde\x83\x6a" "\x11\x11\x5b\xd5\x6d\xca\xd7\x0c\x3e\x8e\x07\x80\x13\x66\x2b\x3e\xa9" "\xbb\x0b\xd4\x48\xfe\x8d\xd6\x8d\x88\x33\x75\x77\x02\x98\x6b\xad\xba" "\x3b\xc0\xb1\xd8\xd9\xdd\x5c\x6f\xa5\x7c\x5b\xd5\xe7\x83\xd5\x41\x7b" "\x3e\x17\x64\x28\xff\xad\xd6\xa3\xeb\x3b\x26\x4d\xa7\x19\x3d\xc7\x64" "\x56\xf7\xaf\xed\xe8\xc4\x33\x13\xfa\xb3\x34\xa3\x3e\xcc\x93\x9c\x7f" "\x7b\x34\xff\x1b\x83\xf6\x7e\x5a\xef\xb8\xf3\x9f\x95\x49\xf9\xf7\x07" "\x97\x3e\x35\x4e\xce\xbf\x33\x9a\xff\x88\xd3\x93\x7f\x7b\x6c\xfe\x4d" "\x95\xf3\xef\x1e\x2a\xff\x8e\xfc\x01\x00\x00\x00\x00\x60\x8e\xe5\xff" "\xff\x5f\xa9\xf9\xf3\xdf\x85\xa3\xef\xca\x81\x7c\xda\xe7\xbf\xab\x33" "\xea\x03\x00\x00\x00\x00\x00\x00\x00\x3c\x69\x47\x1d\xff\xef\x11\xe3" "\xff\x01\x00\x00\xc0\xdc\x2a\xdf\xab\x97\x7e\x73\x76\x7f\xd9\xa4\xef" "\x62\x2b\x97\x5f\x6f\x45\x3c\x35\xb2\x3e\xd0\x30\x1f\x0d\x26\xcb\x75" "\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9a\xa4\x3b\x38\x87" "\xf7\x7a\x2b\xa2\x17\x11\x4f\x2d\x2f\x17\x45\x51\xfe\x54\x8d\xd6\x87" "\x75\xd4\xed\x4f\xba\xa6\xef\x3f\x34\x59\xdd\x0f\xf2\x00\x00\x30\xf0" "\xf1\xd9\x91\x6b\xf9\x5b\x11\x8b\x11\x71\x3d\xda\x7b\xdf\xf5\xd7\x5b" "\x5e\x5e\x2e\x8a\xc5\xa5\xe5\x62\xb9\x58\x5a\xc8\xaf\x67\xfb\x0b\x8b" "\xc5\x52\xe5\x7d\x6d\x9e\x96\xcb\x16\xfa\x07\x78\x41\xdc\xed\x17\xe5" "\x2f\x5b\xac\x6c\x57\x35\xed\xfd\xf2\xb4\xf6\xd1\xdf\x57\xde\x56\xbf" "\xe8\x1c\xa0\x63\x4f\x48\x2f\xfd\x35\x27\x34\xd7\x14\x36\x00\x24\x83" "\x67\xa3\x1d\xcf\x48\xa7\x4c\x51\x3c\x3d\xe9\xc5\x07\x0c\x71\xfc\x9f" "\x42\x2b\xb1\x52\xf7\xfd\x8a\xf9\x57\xf7\xdd\x14\x00\x00\x00\x38\x7e" "\x45\x51\x14\xad\x34\xcc\xdf\xb9\x34\xbe\x5f\xbb\xee\x4e\x01\x00\x33" "\x91\x9f\xff\x47\x3f\x17\x38\x50\x1d\x31\xbe\xbd\x7d\xc8\xf5\xd5\x6a" "\xb5\x5a\xad\x56\xcf\xa4\xae\x2a\xc6\x7b\x50\x2d\x22\x62\xab\xba\x4d" "\xf9\x9a\xc1\x70\xfc\x00\x70\xc2\x6c\xc5\x27\x75\x77\x81\x1a\xc9\xbf" "\xd1\xba\x11\xf1\x5c\xdd\x9d\x00\xe6\x5a\xab\xee\x0e\x70\x2c\x76\x76" "\x37\xd7\x5b\x29\xdf\x56\xf5\xf9\x60\x75\xd0\x9e\xcf\x05\x19\xca\x7f" "\xab\xb5\xb7\x5d\xde\x7e\xdc\x74\x9a\xd1\x73\x4c\x66\x75\xff\xda\x8e" "\x4e\x3c\x33\xa1\x3f\xcf\xce\xa8\x0f\xf3\x24\xe7\xdf\x1e\xcd\xff\xc6" "\xa0\xbd\x9f\xd6\x3b\xee\xfc\x67\x65\x52\xfe\xfd\xbd\x4b\xe6\x9a\x27" "\xe7\xdf\x19\xcd\x7f\xc4\xe9\xc9\xbf\x3d\x36\xff\xa6\xca\xf9\x77\x0f" "\x95\x7f\x47\xfe\x00\x00\x00\x00\x00\x30\xc7\xf2\xff\xff\xaf\xf8\xfc" "\x37\xef\x32\x00\x00\x00\x00\x00\x00\x00\x9c\x38\x3b\xbb\x9b\xeb\xf9" "\xba\xd7\xfc\xf9\xff\xe7\xc6\xac\xe7\xfa\xcf\xd3\x29\xe7\xdf\x3a\x6c" "\xfe\x4b\x69\x5e\xfe\x27\x5a\xce\xbf\x3d\x92\xff\x97\x47\xd6\xeb\x54" "\xe6\x1f\xbe\xb9\x7f\xfc\xff\x6b\x77\x73\xfd\xf7\xf7\xfe\xf9\xd9\x3c" "\x3d\x68\xfe\x0b\x79\xa6\x95\xee\x59\xad\x74\x8f\x68\xa5\x5b\x6a\x75" "\xd3\xf4\x28\x7b\xf7\xb8\xed\x5e\xa7\x5f\xde\x52\xaf\xd5\xee\x74\xd3" "\x39\x3f\x45\xef\x9d\xb8\x15\xb7\x63\x23\x2e\x0d\xad\xdb\x4e\x7f\x8f" "\xfd\xf6\xb5\xa1\xf6\xb2\xa7\xbd\xa1\xf6\xcb\x43\xed\xdd\xc7\xda\xaf" "\x0c\xb5\xf7\xd2\xf7\x0e\x14\x4b\xb9\xfd\x42\xac\xc7\x4f\xe2\x76\xbc" "\xbd\xd7\x5e\xb6\x2d\x4c\xd9\xff\xc5\x29\xed\xc5\x94\xf6\x9c\x7f\xc7" "\xe3\x7f\x23\xe5\xfc\xbb\x95\x9f\x32\xff\xe5\xd4\xde\x1a\x99\x96\x1e" "\x7e\xd8\x7e\xec\xb8\xaf\x4e\xc7\xdd\xce\x1b\xb7\x3e\xff\xcb\x4b\xc7" "\xbf\x3b\x53\x6d\x47\xe7\xd1\xbe\x55\x95\xfb\x77\xbe\x86\xfe\xec\xfd" "\x4d\xce\xf4\xe3\x67\x77\x37\xee\x5c\xb8\x7f\xf3\xde\xbd\x3b\x6b\x91" "\x26\x43\x4b\x2f\x47\x9a\x3c\x61\x39\xff\xde\xde\xcf\xc2\xfe\xe3\xff" "\x0b\x83\xf6\xfc\xb8\x5f\x3d\x5e\x1f\x7e\xd8\x3f\x74\xfe\xf3\x62\x3b" "\xba\x13\xf3\x7f\xa1\x32\x5f\xee\xef\x4b\x33\xee\x5b\x1d\x72\xfe\xfd" "\xf4\x93\xf3\x7f\x3b\xb5\x8f\x3f\xfe\x4f\x72\xfe\x93\x8f\xff\x97\x6b" "\xe8\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x9a\xa2" "\x28\xf6\x2e\x11\x7d\x23\x22\xae\xa6\xeb\x7f\xea\xba\x36\x13\x00\x98" "\xad\xfc\xfc\x5f\x24\x79\xb9\x5a\xad\x56\xab\xd5\xea\xd3\x57\x57\x15" "\xe3\xbd\x5e\x2d\x22\xe2\xa3\xea\x36\xe5\x6b\x86\x5f\x8c\xfb\x65\x00" "\xc0\x3c\xfb\x6f\x44\xfc\xbd\xee\x4e\x50\x1b\xf9\x37\x58\xfe\xbe\xbf" "\x72\xfa\x62\xdd\x9d\x01\x66\xea\xee\xfb\x1f\xfc\xe8\xe6\xed\xdb\x1b" "\x77\xee\xd6\xdd\x13\x00\x00\x00\x00\x00\x00\x00\xe0\xff\x95\xc7\xff" "\x5c\xad\x8c\xff\xfc\x62\x44\xac\x8c\xac\x37\x34\xfe\xeb\x9b\xb1\x7a" "\xd4\xf1\x3f\xbb\x79\xe6\xd1\x00\xa3\x4f\x78\xa0\xef\x09\xb6\xdb\xfd" "\x4e\xbb\x32\xdc\xf8\xf3\xb1\x37\x3e\xf7\x85\x49\xe3\x7f\x9f\x8f\xc7" "\xc7\xff\xce\x63\xe2\x76\xaa\xfb\x31\x41\x6f\x4a\x7b\x7f\x4a\xfb\xc2" "\x94\xf6\xc5\xb1\x4b\xf7\xd3\x1a\x7b\xa1\x47\x45\xce\xff\xf9\xca\x78" "\xe7\x65\xfe\xe7\x46\x86\x5f\x6f\xc2\xf8\xaf\xa3\x63\xde\x37\x41\xce" "\xff\x7c\xe5\xfe\x5c\xe6\xff\xa5\x91\xf5\xaa\xf9\x17\xbf\x9d\xbb\xfc" "\xb7\x0e\xba\xe2\x76\xb4\x87\xf2\xbf\x78\xef\xbd\x9f\x5e\xbc\xfb\xfe" "\x07\xaf\xdc\x7a\xef\xe6\xbb\x1b\xef\x6e\xfc\xf8\xca\xda\xda\xa5\x2b" "\x57\xaf\x5e\xbb\x76\xed\xe2\x3b\xb7\x6e\x6f\x5c\x1a\xfc\x7b\x3c\xbd" "\x9e\x03\x39\xff\x3c\xf6\xb5\xf3\x40\x9b\x25\xe7\x9f\x33\x97\x7f\xb3" "\xe4\xfc\xbf\x90\x6a\xf9\x37\x4b\xce\xff\x8b\xa9\x96\x7f\xb3\xe4\xfc" "\xf3\xeb\x3d\xf9\x37\x4b\xce\x3f\xbf\xf7\x91\x7f\xb3\xe4\xfc\x5f\x4a" "\xb5\xfc\x9b\x25\xe7\xff\x95\x54\xcb\xbf\x59\x76\x76\x37\x17\xca\xfc" "\x5f\x4e\xb5\xfc\x9b\x25\x1f\xff\x5f\x4d\xb5\xfc\x9b\x25\xe7\xff\x4a" "\xaa\xe5\xdf\x2c\x39\xff\x0b\xa9\x96\x7f\xb3\xe4\xfc\x2f\xa6\xfa\x00" "\xf9\xfb\x7a\xf8\x53\x24\xe7\x9f\x3f\xe1\x72\xfc\x37\x4b\xce\x7f\x2d" "\xd5\xf2\x6f\x96\x9c\xff\xe5\x54\xcb\xbf\x59\x72\xfe\x57\x52\x2d\xff" "\x66\xc9\xf9\xbf\x9a\x6a\xf9\x37\x4b\xce\xff\x6b\xa9\x96\x7f\xb3\xe4" "\xfc\xaf\xa6\x5a\xfe\xcd\x92\xf3\xff\x7a\xaa\xe5\xdf\x2c\x39\xff\x6b" "\xa9\x96\x7f\xb3\xe4\xfc\xbf\x91\x6a\xf9\x37\x4b\xce\xff\x9b\xa9\x96" "\x7f\xb3\xe4\xfc\x5f\x4b\xb5\xfc\x9b\x25\xe7\xff\xad\x54\xcb\xbf\x59" "\x72\xfe\xdf\x4e\xb5\xfc\x9b\x25\xe7\xff\x9d\x54\xcb\xbf\x59\x72\xfe" "\xaf\xa7\x5a\xfe\xcd\xb2\xff\xfd\xff\x66\xcc\x98\x31\x93\x67\xea\x7e" "\x64\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x46\xcd\xe2\x74\xe2" "\xba\xf7\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\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\x5d\x8c\x5c\x67\x7d\x06\xf0\x33\xeb\x5d" "\x7b\xed\x10\x62\x20\x04\x27\x35\xb0\x49\x4c\x08\xc9\x92\x5d\xdb\x89" "\x3f\x68\x53\x4c\x20\x40\x03\x94\x02\x09\x85\x7e\xe0\xb8\xde\xb5\x59" "\xf0\x17\x5e\xbb\x04\x8a\x64\xd3\x40\x89\x84\x51\x51\x45\xd5\xf4\xa2" "\x2d\xa0\xa8\x8d\x54\x55\x44\x15\x17\xb4\xa2\x34\x17\x55\x3f\xae\x4a" "\x7b\x41\x6f\x2a\xaa\x4a\x48\x8d\x2a\x83\x02\x2a\x52\x5b\xd1\x6c\x35" "\x73\xde\xf7\xf5\xcc\xec\xec\xcc\xd8\x3b\x5e\x9f\x3d\xef\xef\x27\xd9" "\xff\xdd\x99\x33\x73\xce\x9c\x39\x33\xbb\xcf\xda\xcf\x1e\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\xdd" "\xad\x6f\x9e\xff\x5c\xa3\x28\x8a\xe6\x9f\xd6\x5f\x5b\x8b\xe2\x45\xcd" "\x8f\x37\x4f\x6d\x6d\x5d\xf6\x86\x6b\xbd\x85\x00\x00\x00\xc0\x6a\xfd" "\x5f\xeb\xef\xe7\x6f\x48\x17\x1c\x18\xe2\x46\x6d\xcb\xfc\xdd\xab\xfe" "\xf1\xeb\x4b\x4b\x4b\x4b\xc5\x07\x36\xfc\xee\xc4\x97\x96\x96\xd2\x15" "\x53\x45\x31\xb1\xa9\x28\x5a\xd7\x45\xcf\xfc\xfb\x07\x1b\xed\xcb\x04" "\x8f\x17\x93\x8d\xb1\xb6\xcf\xc7\x06\xac\x7e\xc3\x80\xeb\xc7\x07\x5c" "\x3f\x31\xe0\xfa\x8d\x03\xae\xdf\x34\xe0\xfa\xc9\x01\xd7\x2f\xdb\x01" "\xcb\x6c\x2e\x7f\x1e\xd3\xba\xb3\x1d\xad\x0f\xb7\x96\xbb\xb4\xb8\xb1" "\x98\x68\x5d\xb7\xa3\xc7\xad\x1e\x6f\x6c\x1a\x1b\x8b\x3f\xcb\x69\x69" "\xb4\x6e\xb3\x34\x71\xa4\x58\x28\x8e\x15\xf3\xc5\x6c\xc7\xf2\xe5\xb2" "\x8d\xd6\xf2\xdf\xbc\xb5\xb9\xae\xb7\x17\x71\x5d\x63\x6d\xeb\xda\xde" "\x3c\x42\x7e\xf8\xa9\xc3\x71\x1b\x1a\x61\x1f\xef\xe8\x58\xd7\xa5\xfb" "\x8c\xbe\xff\xa6\x62\xea\x47\x3f\xfc\xd4\xe1\x3f\x3e\x73\xf1\xe6\x5e" "\x73\xe0\x6e\xe8\xb8\xbf\x72\x3b\xef\xbc\xad\xb9\x9d\x9f\x09\x97\x94" "\xdb\xda\x28\x36\xa5\x7d\x12\xb7\x73\xac\x6d\x3b\xb7\xf7\x78\x4e\x36" "\x74\x6c\x67\xa3\x75\xbb\xe6\xc7\xdd\xdb\xf9\xfc\x90\xdb\xb9\xe1\xd2" "\x66\xae\xa9\xee\xe7\x7c\xb2\x18\x6b\x7d\xfc\xed\xd6\x7e\x1a\x6f\xff" "\xb1\x5e\xda\x4f\xdb\xc3\x65\xff\x7d\x7b\x51\x14\xe7\x2f\x6d\x76\xf7" "\x32\xcb\xd6\x55\x8c\x15\x5b\x3a\x2e\x19\xbb\xf4\xfc\x4c\x96\x47\x64" "\xf3\x3e\x9a\x87\xd2\x4b\x8b\xf1\xcb\x3a\x4e\x6f\x1d\xe2\x38\x6d\xce" "\xb9\x1d\x9d\xc7\x69\xf7\x6b\x22\x3e\xff\xb7\x86\xdb\x8d\xaf\xb0\x0d" "\xed\x4f\xd3\xf7\x3f\xbd\x71\xd9\xf3\x7e\xb9\xc7\x69\xd4\x7c\xd4\x2b" "\xbd\x56\xba\x8f\xc1\x51\xbf\x56\xaa\x72\x0c\xc6\xe3\xe2\xdb\xad\x07" "\xfd\x44\xcf\x63\x70\x47\x78\xfc\x9f\xba\x63\xe5\x63\xb0\xe7\xb1\xd3" "\xe3\x18\x4c\x8f\xbb\xed\x18\xbc\x6d\xd0\x31\x38\xb6\x71\x43\x6b\x9b" "\xd3\x93\xd0\x68\xdd\xe6\xd2\x31\xb8\xb3\x63\xf9\x0d\xad\x35\x35\x5a" "\xf3\xb9\x3b\xfa\x1f\x83\x33\x67\x8e\x9f\x9a\x59\xfc\xc4\x27\x5f\xbf" "\x70\xfc\xd0\xd1\xf9\xa3\xf3\x27\x76\xef\xdc\x39\xbb\x7b\xcf\x9e\x7d" "\xfb\xf6\xcd\x1c\x59\x38\x36\x3f\x5b\xfe\x7d\x85\x7b\xbb\xfa\xb6\x14" "\x63\xe9\x35\x70\x5b\xd8\x77\xf1\x35\xf0\xda\xae\x65\xdb\x0f\xd5\xa5" "\xaf\x8c\xee\x75\x38\xd9\xe7\x75\xb8\xb5\x6b\xd9\x51\xbf\x0e\xc7\xbb" "\x1f\x5c\x63\x6d\x5e\x90\xcb\x8f\xe9\xf2\xb5\xf1\x70\x73\xa7\x4f\x5e" "\x18\x2b\x56\x78\x8d\xb5\x9e\x9f\xbb\x56\xff\x3a\x4c\x8f\xbb\xed\x75" "\x38\xde\xf6\x3a\xec\xf9\x35\xa5\xc7\xeb\x70\x7c\x88\xd7\x61\x73\x99" "\x53\x77\x0d\xf7\x3d\xcb\x78\xdb\x9f\x5e\xdb\x70\xb5\xbe\x16\x6c\x6d" "\x3b\x06\xbb\xbf\x1f\xe9\x3e\x06\x47\xfd\xfd\x48\x55\x8e\xc1\xc9\x70" "\x5c\xfc\xeb\x5d\x2b\x7f\x2d\xd8\x1e\xb6\xf7\x89\xe9\xcb\xfd\x7e\x64" "\xc3\xb2\x63\x30\x3d\xdc\xf0\xde\xd3\xbc\x24\x7d\xbf\x3f\xb9\xaf\x35" "\x7a\x1d\x97\xb7\x34\xaf\xb8\x6e\x63\x71\x76\x71\xfe\xf4\x3d\x8f\x1d" "\x3a\x73\xe6\xf4\xce\x22\x8c\x35\xf1\xb2\xb6\x63\xa5\xfb\x78\xdd\xd2" "\xf6\x98\x8a\x65\xc7\xeb\xd8\x65\x1f\xaf\x07\x16\x5e\xf5\xc4\x2d\x3d" "\x2e\xdf\x1a\xf6\xd5\xe4\xeb\x9b\x7f\x4d\xae\xf8\x5c\x35\x97\xb9\xf7" "\x9e\xfe\xcf\x55\xeb\xab\x5b\xef\xfd\xd9\x71\xe9\xae\x22\x8c\x11\x5b" "\xeb\xfd\xd9\xeb\xab\x79\x73\x7f\xa6\x2c\xd9\x67\x7f\x36\x97\xf9\xcc" "\xcc\xea\xbf\x17\x4f\xb9\xb4\xed\xfd\x77\x62\x85\xf7\xdf\x98\xfb\x5f" "\x28\xd7\x97\xee\xea\xf1\x0d\x13\xe3\xe5\xeb\x77\x43\xda\x3b\x13\x1d" "\xef\xc7\x9d\x4f\xd5\x78\xeb\xbd\xab\xd1\x5a\xf7\xf3\x33\xc3\xbd\x1f" "\x4f\x84\x3f\x6b\xfd\x7e\x7c\x63\x9f\xf7\xe3\x6d\x5d\xcb\x8e\xfa\xfd" "\x78\xa2\xfb\xc1\xc5\xf7\xe3\xc6\xa0\x9f\x76\xac\x4e\xf7\xf3\x39\x19" "\x8e\x93\x63\xb3\xfd\xdf\x8f\x9b\xcb\x6c\xdb\x75\xb9\xc7\xe4\x78\xdf" "\xf7\xe3\xdb\xc3\x6c\x84\xfd\xff\xba\x90\x14\x52\x2e\x6a\x3b\x76\x56" "\x3a\x6e\xd3\xba\xc6\xc7\x27\xc2\xe3\x1a\x8f\x6b\xe8\x3c\x4e\x77\x77" "\x2c\x3f\x11\xb2\x59\x73\x5d\x4f\xef\xba\xb2\xe3\xf4\xce\xdb\xcb\xfb" "\xda\x90\x1e\xdd\x25\x6b\x75\x9c\x4e\x75\x2d\x3b\xea\xe3\x34\xbd\x5f" "\xad\x74\x9c\x36\x06\xfd\xf4\xed\xca\x74\x3f\x9f\x93\xe1\xb8\xb8\x71" "\x77\xff\xe3\xb4\xb9\xcc\xb3\xf7\xae\xfe\xbd\x73\x73\xfc\xb0\xed\xbd" "\x73\xe3\xa0\x63\x70\x62\xc3\xc6\xe6\x36\x4f\xa4\x83\xb0\x7c\xbf\x5f" "\xda\x1c\x8f\xc1\x7b\x8a\xc3\xc5\xc9\xe2\x58\x31\xd7\xba\x76\x63\xeb" "\x78\x6a\xb4\xd6\x35\x7d\xdf\x70\xc7\xe0\xc6\xf0\x67\xad\xdf\x2b\xb7" "\xf5\x39\x06\xef\xec\x5a\x76\xd4\xc7\x60\xfa\x3a\xb6\xd2\xb1\xd7\x18" "\x5f\xfe\xe0\x47\xa0\xfb\xf9\x9c\x0c\xc7\xc5\x93\xf7\xf5\x3f\x06\x9b" "\xcb\xbc\x65\xef\x68\xbf\x77\xbd\x33\x5c\x92\x96\x69\xfb\xde\xb5\xfb" "\xe7\x6b\x2b\xfd\xcc\xeb\x96\xae\xdd\x74\x35\x7f\xe6\xd5\xdc\xce\xbf" "\xd9\xdb\xff\x67\xb3\xcd\x65\x8e\xed\xbb\xdc\x9c\xd9\x7f\x3f\xdd\x1d" "\x2e\xb9\xae\xc7\x7e\xea\x7e\xfd\xae\xf4\x9a\x9a\x2b\xd6\x66\x3f\x6d" "\x0b\xdb\x79\x71\xdf\xca\xfb\xa9\xb9\x3d\xcd\x65\xbe\xb4\x7f\xc8\xe3" "\xe9\x40\x51\x14\xe7\x3e\xf6\x40\xeb\xe7\xbd\xe1\xdf\x57\xfe\xfc\xec" "\x77\xbe\xde\xf1\xef\x2e\xbd\xfe\x4d\xe7\xdc\xc7\x1e\xf8\xc1\xf5\x47" "\xfe\xf6\x72\xb6\x1f\x80\xf5\xef\x85\x72\x6c\x29\xbf\xd6\xb5\xfd\xcb" "\xd4\x30\xff\xfe\x0f\x00\x00\x00\xac\x0b\x31\xf7\x8f\x85\x99\xc8\xff" "\x00\x00\x00\x50\x1b\x31\xf7\xc7\xff\x15\x9e\xc8\xff\x00\x00\x00\x50" "\x1b\x31\xf7\x8f\x87\x99\x64\x92\xff\xb7\xbd\xe5\xe2\xc2\x0b\xe7\x8a" "\xd4\xcc\x5f\x0a\xe2\xf5\x69\x37\x3c\x54\x2e\x17\x3b\xae\xb3\xe1\xf3" "\xa9\xa5\x4b\x9a\x97\x3f\xf0\xd4\xfc\x8f\xff\xf2\xdc\x70\xeb\x1e\x2b" "\x8a\xe2\x27\x0f\xfd\x46\xcf\xe5\xb7\x3d\x14\xb7\xab\x34\x15\xb6\xf3" "\x99\x07\x3b\x2f\x5f\x7e\xc3\x73\x43\xad\xff\xd1\x47\x2e\x2d\xd7\xde" "\x5f\xff\x72\xb8\xff\xf8\x78\x86\x3d\x0c\x7a\x55\x70\x67\x8b\xa2\xf8" "\xe6\x0d\x5f\x68\xad\x67\xea\x83\x17\x5a\xf3\xd9\x87\x1e\x6d\xcd\xf7" "\x9e\x7f\xe2\xf1\xe6\x32\xcf\xef\x2f\x3f\x8f\xb7\x7f\xee\x65\xe5\xf2" "\x7f\x10\xca\xbf\x07\x8e\x1c\xea\xb8\xfd\x73\x61\x3f\x7c\x2f\xcc\xd9" "\x77\xf4\xde\x1f\xf1\x76\x5f\xbb\xf0\xba\xed\x7b\xdf\x7f\x69\x7d\xf1" "\x76\x8d\xdb\x5e\xdc\x7a\xd8\x4f\x7e\xa8\xbc\xdf\xf8\x7b\x72\xbe\xf8" "\x78\xb9\x7c\xdc\xcf\x2b\x6d\xff\x5f\x7d\xfe\xe9\xaf\x35\x97\x7f\xec" "\x35\xbd\xb7\xff\xdc\x58\xef\xed\x7f\x3a\xdc\xef\x53\x0f\x5e\x5c\x68" "\x1e\x71\xff\xf3\xca\x72\xf9\xf6\xe7\xa0\xf9\x79\xbc\xdd\x67\xc3\xf6" "\xc7\xf5\x3d\x15\x6e\x7f\xcf\x57\xbf\xd5\x73\xfb\x9f\xf9\x5c\xb9\xfc" "\xa9\xb7\x96\xcb\x3d\x1a\x66\x5c\xff\x9d\xe1\xf3\x1d\x6f\xbd\xb8\xd0" "\xbe\xbf\x1e\x6b\x1c\xea\x78\x5c\xc5\xdb\xca\xe5\xe2\xfa\x67\xbf\xf3" "\xdb\xad\xeb\xe3\xfd\xc5\xfb\xef\xde\xfe\xc9\x83\x17\x3a\xf6\x47\xf7" "\xf1\xf1\xec\x3f\x97\xf7\x33\xd3\xb5\x7c\xbc\x3c\xae\x27\xfa\x8b\xae" "\xf5\x37\xef\xa7\xfd\xf8\x8c\xeb\x7f\xfa\xb7\x1e\xed\xd8\xcf\x83\xd6" "\xff\xcc\x7b\x9f\x7b\x65\xf3\x7e\xbb\xd7\x7f\x77\xd7\x72\x1b\xba\x6e" "\xdf\xfd\x1b\x9b\xfe\xf0\xb3\x5f\xe8\xb9\xbe\xb8\x3d\x07\xfe\xec\x54" "\xc7\xe3\x39\xf0\x9e\xf0\x3a\x0e\xeb\x7f\xf2\x43\xe1\x78\x0c\xd7\xff" "\xef\x33\x5f\xe8\x58\x6f\xf4\xe8\x7b\x3a\xdf\x7f\xe2\xf2\x5f\xde\x7a" "\xae\xe3\xf1\x44\x6f\xff\x51\xb9\xfe\x67\xde\x78\xb4\x35\xff\x63\xea" "\xc7\xbf\x7f\xdd\x8b\xae\x7f\xf1\xf9\x57\x37\xf7\x5d\x51\x7c\xfb\x7d" "\xe5\xfd\x0d\x5a\xff\xd1\x3f\x3a\xd9\xb1\xfd\x5f\xb9\xe9\xae\xd6\xf3" "\x11\xaf\x8f\x1d\xfd\xee\xf5\xaf\x24\xae\xff\xf4\xc7\xa7\x4f\x9c\x5c" "\x3c\xbb\x30\xd7\xb6\x57\x5b\xbf\x3b\xe7\x9d\xe5\xf6\x6c\x9a\xdc\xbc" "\xa5\xb9\xbd\x37\x84\xf7\xd6\xee\xcf\x0f\x9e\x3c\xf3\xe1\xf9\xd3\x53" "\xb3\x53\xb3\x45\x31\x55\xdf\x5f\xa1\x77\xc5\xbe\x1a\xe6\x0f\xca\x71" "\xfe\x72\x6f\x7f\xd7\x23\xe1\xf9\xbc\xe5\xf7\xbe\xb9\xe5\x8e\x7f\xfa" "\x7c\xbc\xfc\x5f\x1e\x2e\x2f\xbf\xf0\x8e\xf2\xeb\xd6\x6b\xc3\x72\x5f" "\x0c\x97\x6f\x2d\x9f\xbf\xa5\xc6\x2a\xd7\xff\xe4\xad\x37\xb5\x5e\xdf" "\x8d\x67\xcb\xcf\x3b\x7a\xec\x23\xb0\x7d\xc7\x7f\xee\x1b\x6a\xc1\xf0" "\xf8\xbb\xbf\x2f\x88\xc7\xfb\xa9\x97\x7f\xb8\xb5\x1f\x9a\xd7\xb5\xbe" "\x6e\xc4\xd7\xf5\x2a\xb7\xff\xbb\x73\xe5\xfd\x7c\x23\xec\xd7\xa5\xf0" "\x9b\x99\x6f\xbb\xe9\xd2\xfa\xda\x97\x8f\xbf\x1b\xe1\xc2\xfb\xca\xd7" "\xfb\xaa\xf7\x5f\x78\x9b\x8b\xcf\xeb\x9f\x84\xe7\xfb\x5d\xdf\x2b\xef" "\x3f\x6e\x57\x7c\xbc\xdf\x0d\xdf\xc7\x7c\x6b\x5b\xe7\xfb\x5d\x3c\x3e" "\xbe\x71\x6e\xac\xfb\xfe\x5b\xbf\xc5\xe3\x7c\x78\x3f\x29\xce\x97\xd7" "\xc7\xa5\xe2\xfe\xbe\xf0\xfc\x4d\x3d\x37\x2f\xfe\x1e\x92\xe2\xfc\xcd" "\xad\xcf\x7f\x27\xdd\xcf\xcd\x97\xf5\x30\x57\xb2\xf8\x89\xc5\x99\x63" "\x0b\x27\xce\x3e\x36\x73\x66\x7e\xf1\xcc\xcc\xe2\x27\x3e\x79\xf0\xf8" "\xc9\xb3\x27\xce\x1c\x6c\xfd\x2e\xcf\x83\x1f\x19\x74\xfb\x4b\xef\x4f" "\x5b\x5a\xef\x4f\x73\xf3\x7b\xee\x2d\x66\x37\x17\x45\x71\xb2\x98\x5d" "\x83\x37\xac\xab\xb3\xfd\xcd\x8f\x86\xdb\xfe\x53\x8f\x1c\x9e\xdb\x3b" "\x7b\xc7\xdc\xfc\x91\x43\x67\x8f\x9c\x79\xe4\xd4\xfc\xe9\xa3\x87\x17" "\x17\x0f\xcf\xcf\x2d\xde\x71\xe8\xc8\x91\xf9\x8f\x0f\xba\xfd\xc2\xdc" "\xfd\x3b\x77\xed\xdf\xbd\x77\xd7\xf4\xd1\x85\xb9\xfb\xf7\xed\xdf\xbf" "\x7b\xff\xf4\xc2\x89\x93\xcd\xcd\x28\x37\x6a\x80\x3d\xb3\x1f\x9d\x3e" "\x71\xfa\x60\xeb\x26\x8b\xf7\xdf\xbb\x7f\xe7\x7d\xf7\xdd\x3b\x3b\x7d" "\xfc\xe4\xdc\xfc\xfd\x7b\x67\x67\xa7\xcf\x0e\xba\x7d\xeb\x6b\xd3\x74" "\xf3\xd6\xbf\x3e\x7d\x7a\xfe\xd8\xa1\x33\x0b\xc7\xe7\xa7\x17\x17\x3e" "\x39\x7f\xff\xce\xfd\x7b\xf6\xec\x1a\xf8\xdb\x00\x8f\x9f\x3a\xb2\x38" "\x35\x73\xfa\xec\x89\x99\xb3\x8b\xf3\xa7\x67\xca\xc7\x32\x75\xa6\x75" "\x71\xf3\x6b\xdf\xa0\xdb\x53\x4f\x8b\xff\x56\x7e\x3f\xdb\xad\x51\xfe" "\x22\xbe\xe2\xdd\x77\xef\x49\xbf\x9f\xb5\xe9\xa9\x4f\xaf\x78\x57\xe5" "\x22\x5d\xbf\x40\xf4\x62\xf8\x5d\x34\xff\xf0\x92\x53\xfb\x86\xf9\x3c" "\xe6\xfe\x89\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x8d\x61" "\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x9b\xc2\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8d\x98\xfb\x27\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xc3\xf5" "\xff\xcb\xeb\x47\xd9\xff\xef\xd5\x9f\x2f\xf4\xff\x2b\xd5\xff\x3f\xf5" "\xb1\xb2\x57\xba\xde\xfb\xff\xb1\x3f\xaf\xff\x9f\x87\x6b\xdc\xff\x5f" "\xf5\xfa\xf5\xff\xf5\xff\xeb\xd7\xff\x1f\xbe\x3f\xbf\xde\xb7\x5f\xff" "\x5f\xff\x9f\xe5\xaa\xd6\xff\x8f\xb9\x7f\x73\x51\x64\x99\xff\x01\x00" "\x00\x20\x07\x31\xf7\x6f\x09\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee" "\xbf\x2e\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x45\x61\x26\x99" "\xe4\x7f\xfd\xff\xa1\xfa\xff\xbb\x06\x15\xae\xea\xdf\xff\x1f\xfd\xf9" "\xff\xf5\xff\xf5\xff\xd7\xa4\xff\x1f\x9f\x1c\xfd\xff\x6c\x5c\x76\xff" "\xfe\xfd\x0f\x77\x7c\xaa\xff\x1f\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xb3\x6a\x13\x2b\x5e\x73\xad\xfa\xff\x31\xf7\x5f\x1f\x66\x92\x49" "\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\xe2\x30\x13\xf9\x1f\x00\x00\x00" "\x6a\x23\xe6\xfe\x1b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xb7" "\x86\x99\x64\x92\xff\xf5\xff\x9d\xff\x5f\xff\x5f\xff\xbf\xd6\xfd\xff" "\xd5\x9e\xff\xbf\x6d\x63\xf4\xff\xd7\x07\xe7\xff\xef\x4f\xff\x7f\x80" "\x2b\xee\xff\x4f\xea\xff\xaf\xc7\xfe\xff\xc4\x68\xb7\xbf\xda\xfd\xff" "\x81\x9b\xaf\xff\xcf\x55\x51\xb5\xf3\xff\xc7\xdc\xff\x92\x30\x93\x4c" "\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x97\x86\x99\xc8\xff\x00\x00\x00" "\x50\x1b\x31\xf7\xbf\x2c\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff" "\xc6\x30\x93\x4c\xf2\xff\x6a\xfa\xff\xb1\x73\xad\xff\xaf\xff\xaf\xff" "\x5f\xd2\xff\x2f\xd5\xaa\xff\xdf\xf7\xfc\xff\xe5\x47\xfa\xff\xd5\xa2" "\xff\xdf\x9f\xfe\xff\x00\xce\xff\x9f\x57\xff\x7f\xc4\xdb\x5f\xed\xfe" "\xff\xa8\xcf\xff\x3f\xf1\x60\xf7\xed\xf5\xff\xe9\xa5\x6a\xfd\xff\x98" "\xfb\x5f\x1e\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x53\x98" "\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x2b\xc2\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8d\x98\xfb\xb7\x85\x99\x64\x92\xff\x9d\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\xbf\xf7\xfa\x07\xf7\xff\x4b\xfa\xff\xd5\xa2\xff\xdf" "\x9f\xfe\xff\x00\xfa\xff\xfa\xff\xfa\xff\xc3\xf5\xff\x7b\x7c\xf3\xab" "\xff\x4f\x2f\x55\xeb\xff\xc7\xdc\x7f\x73\x98\x49\x26\xf9\x1f\x00\x00" "\x00\x72\x10\x73\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd" "\x3f\x15\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf\x3d\xcc\x24\x93" "\xfc\xaf\xff\xaf\xff\xaf\xff\x9f\x57\xff\xff\xee\x8d\xfa\xff\xfa\xff" "\xf5\xa6\xff\xdf\x9f\xfe\xff\x00\xfa\xff\xfa\xff\xfa\xff\x43\x9e\xff" "\x7f\xb9\xcb\xe9\xff\x6f\x1a\x74\x67\xd4\x46\xd5\xfa\xff\x31\xf7\xbf" "\x32\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x55\x61\x26\xf2" "\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xaf\x0e\x33\x91\xff\x01\x00\x00\xa0" "\x36\x62\xee\x9f\x0a\x33\xc9\x24\xff\xeb\xff\xd7\xab\xff\xff\xa7\x7f" "\xfd\xe4\xab\x0b\xfd\x7f\xfd\xff\x01\xeb\xaf\x69\xff\x3f\x1e\x06\xfa" "\xff\x99\xd3\xff\xef\x4f\xff\x7f\x00\xfd\x7f\xfd\x7f\xfd\xff\x35\xe9" "\xff\x93\x8f\xaa\xf5\xff\x63\xee\xbf\x35\xcc\x24\x93\xfc\x0f\x00\x00" "\x00\x39\x88\xb9\xff\xb6\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe" "\xdb\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x77\x84\x99\x64\x92" "\xff\xf5\xff\xeb\xd5\xff\x8f\xf4\xff\xf5\xff\xfb\xad\xbf\xa6\xfd\xff" "\x44\xff\x3f\x6f\xfa\xff\x3d\xb4\xbd\x48\xf5\xff\x07\xd0\xff\xd7\xff" "\xcf\xbe\xff\x1f\xbf\xfb\xd5\xff\x67\x34\xaa\xd6\xff\x8f\xb9\xff\x35" "\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x77\x84\x99\xc8\xff" "\x00\x00\x00\x50\x1b\x31\xf7\xbf\x36\xcc\x44\xfe\x07\x00\x00\x80\xda" "\x88\xb9\xff\xce\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x7f\xef\xf5\xeb\xff\xaf\x4f\xeb\xab\xff\xbf\x69\xd9\x25\x55\x3b" "\xff\xff\x46\xfd\x7f\xfd\x7f\xfd\xff\xcc\xfa\xff\xce\xff\xcf\x68\x55" "\xad\xff\x1f\x73\xff\xeb\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98" "\xfb\xef\x0a\x33\x91\xff\x01\x00\x00\xa0\x36\xe2\xff\xbc\x2b\xff\xdf" "\xab\xfc\x0f\x00\x00\x00\x75\x14\x73\xff\x74\x98\x49\x26\xf9\x5f\xff" "\x5f\xff\x3f\xa7\xfe\x7f\x43\xff\x5f\xff\x5f\xff\xbf\xf6\xd6\x57\xff" "\x7f\xb9\xaa\xf5\xff\x9d\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xd5" "\xa8\x5a\xff\x3f\xe6\xfe\xd7\x87\x99\x64\x92\xff\x01\x00\x00\x20\x07" "\x31\xf7\xdf\x13\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x3f\x13\x66" "\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x3f\x1b\x66\x92\x49\xfe\xd7\xff" "\xd7\xff\xcf\xa9\xff\xef\xfc\xff\xfa\xff\xfa\xff\xf5\xa7\xff\xdf\x9f" "\xfe\xff\x00\xfa\xff\xfa\xff\x75\xeb\xff\x17\x85\xfe\x3f\xd7\x54\xd5" "\xfa\xff\x31\xf7\xef\x0c\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee" "\xdf\x15\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf\x3b\xcc\x44\xfe" "\x07\x00\x00\x80\xda\x88\xb9\xff\xde\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\x7f\x25\xfa\xff\xf1\x2e\xf4\xff\xf5\xff\xf5\xff\x57\x49\xff" "\xbf\x3f\xfd\xff\x01\xf4\xff\xd7\xa6\x3f\xdf\xeb\x1b\xa7\xf5\xb4\xfd" "\x2b\xa8\x64\xff\xdf\xf9\xff\xb9\xc6\xaa\xd6\xff\x8f\xb9\xff\xbe\x30" "\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x3d\x61\x26\xf2\x3f\x00" "\x00\x00\xd4\x46\xcc\xfd\x7b\xc3\x4c\x42\xfe\xbf\x4a\xff\x3d\x09\x00" "\x00\x00\x58\x43\x31\xf7\xef\x0b\x33\xc9\xe4\xdf\xff\xf5\xff\x6b\xd2" "\xff\xff\xcd\xbf\xef\x58\xb7\xfe\xff\xba\xeb\xff\xaf\xc3\xf3\xff\x6f" "\xd6\xff\x0f\x53\xff\xbf\x5a\x6a\xda\xff\xef\x7e\x59\x5c\x31\xfd\xff" "\x01\xf4\xff\xaf\x5a\x7f\xbe\x18\x1b\xc9\x26\x5e\xb3\xed\xd7\xff\xd7" "\xff\xe7\xca\x54\xad\xff\x1f\x73\xff\xfe\x30\x93\x4c\xf2\x3f\x00\x00" "\x00\xe4\x20\xe6\xfe\x37\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7" "\xff\x74\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xcf\x84\x99\x64" "\x92\xff\xf5\xff\x6b\xd2\xff\xef\xa2\xff\xaf\xff\xdf\x6f\xfd\xce\xff" "\xaf\xff\x5f\x67\x35\xed\xff\x8f\x4c\xad\xfa\xff\x63\xfa\xff\xeb\xa9" "\xff\x3f\x4c\x7f\x7e\xbd\x6f\xbf\xfe\xbf\xfe\x3f\xcb\x5d\xfd\xfe\x7f" "\xfc\x68\xb8\xfe\x7f\xcc\xfd\xf7\x87\x99\x64\x92\xff\x01\x00\x00\x20" "\x07\x31\xf7\xff\x6c\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x1b" "\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x0f\x84\x99\x64\x92\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xaf\x4e\xff\xff\x8d\x45\xb7\x2a\xf6" "\xff\x9b\x07\x8f\xfe\x7f\xbd\x54\xb8\xff\x3f\x31\xcc\xfa\xf5\xff\x9d" "\xff\x5f\xff\x7f\x4d\xb6\xbf\xfb\x4b\xcd\x48\xb6\x5f\xff\x5f\xff\x9f" "\xe5\xaa\x76\xfe\xff\x98\xfb\xdf\x14\x66\x92\x49\xfe\x07\x00\x00\x80" "\x1c\xc4\xdc\xff\x40\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x9b" "\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xdf\x12\x66\x92\x49\xfe" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x77\xfe\xff\xde\xeb\xd7\xff\x5f\x9f" "\x2a\xdc\xff\x1f\x8a\xfe\xbf\xfe\xbf\xfe\xff\xfa\xdd\x7e\xfd\x7f\xfd" "\x7f\x96\xab\x5a\xff\x3f\xe6\xfe\x07\xc3\x4c\x32\xc9\xff\x00\x00\x00" "\x90\x83\x98\xfb\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff" "\xb6\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xb7\x87\x99\x64\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7b\xaf\x5f\xff\x7f\x7d" "\xd2\xff\xef\x4f\xff\x7f\x00\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x46\xaa" "\x6a\xfd\xff\x98\xfb\x7f\x2e\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88" "\xb9\xff\xa1\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x77\x84\x99" "\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x33\xcc\x24\x93\xfc\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7b\xfd\xfa\xff\xeb\x93\xfe\x7f" "\x7f\xfa\xff\x03\xe8\xff\xeb\xff\xeb\xff\xeb\xff\x33\x52\x55\xeb\xff" "\xc7\xdc\xff\xae\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x9f" "\x0f\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x77\x98\x89\xfc\x0f" "\x00\x00\x00\xb5\x11\x73\xff\x2f\x84\x99\x64\x92\xff\xf5\xff\xf5\xff" "\xab\xd5\xff\x5f\x3a\xd7\x7e\x3b\xfd\x7f\xfd\xff\x62\x54\xfd\xff\xe6" "\x8d\xf4\xff\xb3\xa0\xff\xdf\x9f\xfe\xff\x00\x3d\xfa\xff\x9b\xf4\xff" "\xf5\xff\xf5\xff\xf5\xff\xb9\x62\x55\xeb\xff\xc7\xdc\xff\x9e\x30\x93" "\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xf7\x86\x99\xc8\xff\x00\x00" "\x00\x50\x1b\x31\xf7\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9" "\xff\xe1\x30\x93\x4c\xf2\xbf\xfe\x7f\x96\xfd\xff\xf4\x90\xab\xd7\xff" "\x77\xfe\x7f\xfd\x7f\xe7\xff\xd7\xff\x5f\x1d\xfd\xff\xfe\xf4\xff\x07" "\x70\xfe\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x46\xaa\x6a\xfd\xff\x98\xfb\x1f" "\x09\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f\x7f\x98\x89\xfc" "\x0f\x00\x00\x00\xb5\x11\x73\xff\x2f\x86\x99\xc8\xff\x00\x00\x00\x50" "\x1b\x31\xf7\x7f\x20\xcc\x24\x93\xfc\xaf\xff\x9f\x65\xff\xbf\xc2\xe7" "\xff\xaf\x5b\xff\x7f\xbc\xe3\xf8\xc8\xa9\xff\x3f\xd9\xf6\x7c\xa6\xe3" "\x52\xff\x5f\xff\x7f\x0d\xe8\xff\xf7\xa7\xff\x3f\x80\xfe\xbf\xfe\x7f" "\x95\xfb\xff\xe1\x68\xde\xbc\xc2\xed\xf5\xff\xa9\xa2\xaa\xf5\xff\x63" "\xee\xff\x60\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x2f\x85" "\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xff\x72\x98\x89\xfc\x0f\x00" "\x00\x00\xb5\x11\x73\xff\xaf\x84\x99\x64\x92\xff\x6b\xd8\xff\x3f\x5f" "\xe8\xff\xeb\xff\x57\xa6\xff\xdf\x79\x7c\xe4\xd4\xff\x77\xfe\xff\xe5" "\xf4\xff\xd7\x86\xfe\x7f\x7f\xfa\xff\x03\xe8\xff\xeb\xff\x57\xb9\xff" "\x3f\x80\xfe\x3f\x55\x54\xb5\xfe\x7f\xcc\xfd\xbf\x1a\x66\xb2\x62\xf0" "\xfb\xc1\x7f\x0d\xf1\x30\x01\x00\x00\x80\x0a\x89\xb9\xff\x43\x61\x26" "\x99\xfc\xfb\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x83\x61\x26\xf2\x3f\x00" "\x00\x00\xd4\x46\xcc\xfd\x8f\x86\x99\x64\x92\xff\x6b\xd8\xff\x5f\xe5" "\xf9\xff\xe3\x19\x55\xf5\xff\xf5\xff\x47\xdd\xff\x1f\xd3\xff\xd7\xff" "\xd7\xff\x5f\x03\xa3\xeb\xff\xbf\xe2\xfa\xa2\xd0\xff\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\x67\x35\xaa\xd6\xff\x8f\xb9\xff\x50\x98\x49" "\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xaf\x85\x99\xc8\xff\x00\x00" "\x00\x50\x1b\x31\xf7\x1f\x0e\x33\x91\xff\x01\x00\x00\xa0\xf2\xc6\x53" "\x23\xb8\xbf\x98\xfb\xe7\xc2\x4c\x32\xc9\xff\xd7\xb0\xff\x3f\x51\xcd" "\xfe\x7f\xdd\xce\xff\xdf\x08\xf7\x7d\xf5\xfb\xff\x3f\xd1\xff\x77\xfe" "\xff\x40\xff\xbf\x37\xfd\xff\xb5\xe1\xfc\xff\xfd\xe9\xff\x0f\xa0\xff" "\xaf\xff\xaf\xff\xaf\xff\xcf\x48\x55\xad\xff\x1f\x73\xff\x7c\x98\x49" "\x26\xf9\x1f\x00\x00\x00\x6a\x2c\xfd\x38\x38\xe6\xfe\x23\x61\x26\xf2" "\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x47\xc3\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8d\x98\xfb\x3f\x1c\x66\x92\x49\xfe\x77\xfe\xff\xba\xf7\xff\x9d\xff" "\xbf\x9a\xfd\xff\xf1\x8e\xe5\xf5\xff\x4b\xfa\xff\xfa\xff\xa3\xa0\xff" "\xdf\x9f\xfe\xff\x00\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x8c\x54\xd5\xfa" "\xff\x31\xf7\x2f\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x7f" "\x24\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xa3\x61\x26\xf2\x3f" "\x00\x00\x00\xd4\x46\xcc\xfd\xc7\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff" "\xb9\xf7\xff\x1b\x45\x71\xde\xf9\xff\xf5\xff\x7b\xad\x5f\xff\x7f\x7d" "\xd2\xff\xef\x4f\xff\x7f\x00\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x46\xaa" "\x6a\xfd\xff\x98\xfb\x8f\x87\x99\x64\x92\xff\x01\x00\xf8\x7f\xf6\xee" "\xa3\x49\xae\xb3\x8a\xe3\xf0\xb5\x51\x5c\xc1\x47\x60\xcd\x8a\x25\xac" "\xcc\x47\x60\xcb\x8e\x2a\xd6\x64\x93\x83\x2c\x72\x06\x93\x73\x30\x19" "\x93\x33\x26\xd8\xe4\x9c\x73\x36\x39\x47\x63\x82\xa1\x4a\x94\xa5\x73" "\x8e\x34\xd3\xad\x7b\x35\x9a\x9e\xe9\x7b\xdf\xf7\x79\x36\xc7\x52\x79" "\xd4\x3d\xd6\x48\xd4\x9f\xa9\x5f\x5d\x00\x7a\x90\xbb\xff\x7e\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\xff\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\x7f\x40\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x7b\xef\xff\x87" "\xad\x3c\xff\x7f\xe7\xbf\xaf\xff\x3f\x47\xff\xaf\xff\xdf\x84\x95\xfe" "\xfe\xc8\xfa\x7f\xef\x62\x51\xf8\x45\xfb\xff\xbb\xde\xed\xea\x7b\xeb" "\xff\xf5\xff\xfa\xff\x51\xfa\x7f\xfd\xbf\xfe\x9f\xdd\xe6\xd6\xff\xe7" "\xee\x7f\x60\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x50\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x38\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\xaf\x8e\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\x11" "\xfd\xff\x15\xf9\x6b\x1c\x78\xff\x7f\x93\xfe\x5f\xff\xbf\x6c\x9e\xff" "\x3f\x4e\xff\x3f\x41\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa8\xb9\xf5\xff" "\xb9\xfb\x1f\x12\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x1f\x1a" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x0f\x8b\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x87\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xbf" "\x88\xfe\xff\xd6\x1b\x4e\x1d\xf3\xfc\xff\x5d\x9f\x8f\xfe\x5f\xff\xbf" "\x8e\xfe\x7f\x9c\xfe\x7f\x82\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x51\x73" "\xeb\xff\x73\xf7\x3f\x22\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7" "\x3f\x32\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x15\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\x8f\x8e\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x7f\x83\xfd\xff\xe9\x61\x18\x0e\xac\xff\x1f\xf4\xff\xbb\x3e\x1f" "\xfd\xbf\xfe\x7f\x9d\xeb\x86\xf3\x7f\x27\xe8\xff\x57\xe9\xff\x27\x4c" "\xf4\xff\xc3\xa0\xff\x1f\x73\xc9\xfd\xfc\xfa\x4f\x6f\x39\xef\xff\x22" "\xf4\xff\xfa\x7f\x56\xcd\xad\xff\xcf\xdd\xff\x98\xb8\xe5\x1e\xc3\x70" "\xec\x72\x3f\x49\x00\x00\x00\x60\x56\x72\xf7\x3f\x36\x6e\xe9\xe4\xfb" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\xa7\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x9a\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x97\xf2\xfc" "\x7f\xfd\xbf\xfe\x5f\xff\x7f\x29\x3c\xff\x7f\xdc\xfe\xfb\xff\xbb\xdc" "\xe9\xbe\xf7\xe9\xb7\xff\xf7\xfc\xff\x71\x9e\xff\xbf\xe9\xfe\xff\xf6" "\xaf\x0c\xfd\x3f\xcb\x36\xb7\xfe\x3f\x77\xff\xe9\xb8\xa5\x93\xfd\x0f" "\x00\x00\x00\x3d\xc8\xdd\xff\xb8\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x7c\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x21\x6e\xe9" "\x64\xff\xeb\xff\x5b\xeb\xff\xef\xb0\xe3\xe3\x2e\xe8\xff\xcf\xd6\x2e" "\xfa\x7f\xfd\xff\xe5\xf4\xff\x47\xeb\x57\xd2\xff\xcf\xaf\xff\x3f\x32" "\xfd\xc2\x9d\xd1\xff\x8f\xf3\xfc\xff\x09\x67\xff\x9a\x3b\x59\x3f\xd4" "\xff\xeb\xff\x3d\xff\x5f\xff\xcf\xfe\xcc\xad\xff\xcf\xdd\xff\xc4\xb8" "\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xa4\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\x7f\x72\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x3f\x25\x6e\xe9\x64\xff\xeb\xff\x5b\xeb\xff\x77\x7e\x9c\xe7\xff\xeb" "\xff\xd7\xbd\xbe\xe7\xff\xb7\xd4\xff\x4f\xbf\x6e\x6f\xf4\xff\xe3\xf4" "\xff\x13\x5a\x79\xfe\xff\x65\x7e\xd5\x6c\xbb\x9f\xdf\xaf\x6d\xbf\x7f" "\xfd\xbf\xfe\x9f\x55\x73\xeb\xff\x73\xf7\x3f\x35\x6e\xe9\x64\xff\x03" "\x00\x00\x40\x0f\x72\xf7\x3f\x2d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x9f\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xcf\x88\x5b\x3a" "\xd9\xff\xfa\x7f\xfd\xff\x32\xfa\xff\x7c\x05\xfd\xbf\xfe\xff\xe0\xfb" "\xff\xa4\xff\x5f\x26\xfd\xff\x38\xfd\xff\x84\x56\xfa\xff\xcb\xb4\xed" "\x7e\x7e\xe9\xef\x5f\xff\xaf\xff\x67\xd5\xdc\xfa\xff\xdc\xfd\xcf\x8c" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xcf\x8a\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x67\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x73\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xbf\x8c\xfe\xdf\xf3\xff\xf5" "\xff\x9e\xff\xaf\xff\xbf\x34\xfa\xff\x71\xfa\xff\x09\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xcf\x46\xcd\xad\xff\xcf\xdd\x7f\x6d\xdc\xd2\xc9\xfe\x07" "\x00\x00\x80\x1e\xe4\xee\x7f\x6e\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\x3f\x2f\x6e\xd9\xcb\xfe\x3f\xba\xe9\x77\x05\x00\x00\x00\x6c\x52" "\xee\xfe\xe7\xc7\x2d\x9d\x7c\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xeb\x5f\x5f\xff\xbf\x4c\xfa\xff\x71\xfa\xff\x09\x9d\xf7\xff\xc3" "\x35\xfa\x7f\xfd\xbf\xfe\x9f\xcd\x9a\x51\xff\x7f\xc1\x47\x9d\x18\x5e" "\x10\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x5f\x18\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\x2f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x17\xc7\x2d\x9d\xec\xff\xf6\xfa\xff\xe3\x4b\xed\xff\xcf\xe6" "\x7c\x6d\xf5\xff\x27\x87\x61\xe8\xbb\xff\x3f\xba\xeb\xeb\xa3\xa7\xfe" "\xff\xe4\x05\xbf\x9f\xf5\x75\xa9\xff\xd7\xff\x1f\x02\xfd\xff\x38\xfd" "\xff\x84\xce\xfb\xff\x6d\xf7\xf3\x4b\x7f\xff\xfa\x7f\xfd\x3f\xab\x66" "\xd4\xff\x9f\xfd\x71\xee\xfe\x97\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8" "\x41\xee\xfe\x97\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xcb\xe2" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xe5\x71\x4b\x27\xfb\xbf\xbd" "\xfe\xdf\xf3\xff\x87\xd9\xf4\xff\x9e\xff\xbf\xfb\xeb\xa3\xa7\xfe\xdf" "\xf3\xff\x57\xe9\xff\x0f\x87\xfe\x7f\x9c\xfe\x7f\x82\xfe\x5f\xff\xaf" "\xff\xd7\xff\xb3\x51\x73\xeb\xff\x73\xf7\xbf\x22\x6e\x3a\x76\xf4\xb2" "\x3f\x45\x00\x00\x00\x60\x66\x72\xf7\xbf\x32\x6e\xe9\xe4\xfb\xff\x00" "\x00\x00\xd0\x83\xdc\xfd\xaf\x8a\x5b\xec\x7f\x00\x00\x00\x58\xa8\x6b" "\x57\x7e\x26\x77\xff\xab\xe3\x96\x4e\xf6\xbf\xfe\x7f\xb3\xfd\xff\xb1" "\x0b\x7e\x4e\xff\xaf\xff\xdf\xfd\xf5\xa1\xff\xd7\xff\xeb\xff\x0f\x9e" "\xfe\x7f\x9c\xfe\x7f\x82\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x51\x73\xeb" "\xff\x73\xf7\xbf\x26\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x5f" "\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x8d\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xd7\xc5\x2d\x9d\xec\x7f\xfd\xbf\xe7\xff\xeb" "\xff\xf5\xff\x53\xfd\xff\xf9\xc7\xa1\xea\xff\xf5\xff\xf3\xa7\xff\x1f" "\xa7\xff\x9f\xa0\xff\xd7\xff\x6f\xb7\xff\x3f\x7e\xfe\x1f\xf5\xff\xb4" "\x61\x0f\xfd\xff\x99\x33\x67\x4e\x1d\x78\xff\x9f\xbb\xff\xf5\x71\x4b" "\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x0d\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f" "\x53\xdc\xd2\xc9\xfe\xd7\xff\x77\xda\xff\xe7\x97\xfa\xb2\xfa\xff\x6b" "\x86\x41\xff\xef\xf9\xff\xfa\x7f\xfd\xff\x38\xfd\xff\x38\xfd\xff\x04" "\xfd\xbf\xfe\xdf\xf3\xff\xf5\xff\x6c\xd4\xdc\x9e\xff\x9f\xbb\xff\xcd" "\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x2d\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\x7f\x7d\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\xbf\x35\x6e\xe9\x64\xff\xeb\xff\x3b\xed\xff\x3d\xff\x5f\xff\xaf" "\xff\x3f\xec\xfe\xff\xb6\x41\xff\x7f\x28\x16\xd1\xff\x9f\xbc\xf8\xeb" "\xcf\xbd\xff\x3f\xad\xff\xd7\xff\x8f\xe8\xae\xff\xbf\xe7\xdd\x77\xfc" "\x50\xff\xaf\xff\x67\xd5\xdc\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\xa6" "\x23\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\x7f\xfd\x43" "\x7e\xfe\xff\xb1\x61\x18\xf4\xff\x1b\xb0\x88\xfe\x7f\xc4\xdc\xfb\xff" "\xcd\x3c\xff\x7f\xf7\x9f\xf2\xf3\xf4\xff\xfa\xff\x25\xbf\x7f\xfd\xbf" "\xfe\x9f\x55\x73\xeb\xff\x73\xf7\xbf\x2b\x6e\xe9\x64\xff\x03\x00\x00" "\x40\x0f\x72\xf7\xbf\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf" "\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x8d\x5b\x3a\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xdf\x7c\xff\x7f\x7a\x11\xfd\xbf\xe7\xff" "\x6f\x88\xfe\x7f\xdc\x3c\xfa\xff\x8b\x6b\xa3\xff\x3f\x32\x0c\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xcf\xa8\x6d\xf5\xff\xb9\xfb\xdf\x17\xb7\x74\xb2" "\xff\x01\x00\x00\xa0\x07\xb9\xfb\xdf\x1f\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x1f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x0f\xc6" "\x2d\x9d\xec\x7f\xfd\xbf\xfe\x7f\x2f\xfd\x7f\xbe\x4f\xfd\x7f\x5b\xfd" "\xff\xf1\xd9\xf5\xff\x27\x76\xfc\x7a\x9d\x3c\xff\x5f\xff\xbf\x21\xfa" "\xff\x71\xfa\xff\x09\x9e\xff\xaf\xff\xd7\xff\x5f\xab\xff\x67\x93\xe6" "\xf6\xfc\xff\xdc\xfd\x1f\x8a\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc" "\xfd\x37\xc4\xad\xff\xeb\xd6\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x70" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x24\x6e\xe9\x64\xff\xeb" "\xff\xf5\xff\x9e\xff\xaf\xff\x6f\xfe\xf9\xff\xfa\xff\xae\xe8\xff\xc7" "\xe9\xff\x27\xe8\xff\xf5\xff\xfa\x7f\xcf\xff\x67\xa3\xe6\xd6\xff\xe7" "\xee\xff\x68\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x58\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x18\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x37\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x9f\xfb\x3d\xd4\xff\xb7\x41\xff\x3f\xee\x70\xfa\xff\x93\xfa" "\x7f\xfd\x7f\xf5\xf3\x57\xc4\x9f\x02\xfd\xbf\xfe\x7f\xea\xe3\x69\xd3" "\xdc\xfa\xff\xdc\xfd\x1f\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc" "\xfd\x9f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x4f\xc6\x2d\xf6" "\x3f\x00\x00\x00\x2c\xd2\x91\x35\x3f\x97\xbb\xff\x53\x71\x4b\x27\xfb" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\x5f\x5f\xff\xbf\x4c\x5b" "\xe9\xff\xf3\x8b\x62\x56\xfd\xff\xba\xff\x65\xf2\xfc\xff\x49\xfa\xff" "\x3d\xf6\xf3\x77\xde\xf1\xa3\xa5\x3d\xff\x7f\xf7\x9f\x12\xfd\xbf\xfe" "\x9f\xcd\x9b\x5b\xff\x9f\xbb\xff\xd3\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\x33\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xd9" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x5c\xdc\xd2\xc9\xfe\xd7" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xfa\xd7\xd7\xff\x2f\x93\xe7\xff" "\x8f\xd3\xff\x4f\xd0\xff\x6f\xf5\xf9\xf9\x4b\x7f\xff\xfa\x7f\xfd\x3f" "\xab\xe6\xd6\xff\xe7\xee\xff\x7c\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e" "\xe4\xee\xff\x42\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x31\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\x67\x77\x7f\xc6\x65\x1d\xee\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\x7f\x7d\xfd\xff\x32\xe9\xff\xc7\xe9" "\xff\x27\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x1b\x35\xb7\xfe\xff\x4b\x67" "\x3f\xea\xc4\xf0\xe5\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff" "\x95\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x6a\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\x7f\x2d\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xcb" "\xe8\xff\xcf\x9c\x39\x73\x4a\xff\xaf\xff\xdf\xf9\xf9\x9c\xef\xff\x6f" "\xd6\xff\x53\xf4\xff\xe3\xf4\xff\x13\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f" "\x8d\x9a\x5b\xff\x9f\xbb\xff\xeb\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a" "\x90\xbb\xff\x1b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xcd\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x56\xdc\xd2\xc9\xfe\xd7\xff" "\xcf\xa0\xff\x3f\xa1\xff\xf7\xfc\x7f\xfd\xff\xe0\xf9\xff\xab\xfd\xff" "\x95\xe7\xfe\x52\xd6\xff\xef\x8d\xfe\x7f\x9c\xfe\x7f\x42\x8b\xfd\xff" "\x89\x4b\xff\xf4\xb7\xdd\xcf\xef\xd7\xb6\xdf\xbf\xfe\x5f\xff\xcf\xaa" "\xb9\xf5\xff\xb9\xfb\xbf\x1d\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9" "\xfb\xbf\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xdf\x8d\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\xef\xc5\x2d\x9d\xec\x7f\xfd\xff\xe1" "\xf5\xff\xb7\xff\xb7\xeb\xe5\xf9\xff\x27\x87\xf5\xef\x5f\xff\xaf\xff" "\xd7\xff\x7b\xfe\xff\x41\xd3\xff\x8f\xd3\xff\x4f\x68\xb1\xff\xdf\x83" "\x6d\xf7\xf3\x4b\x7f\xff\xfa\x7f\xfd\x3f\xab\xe6\xd6\xff\xe7\xee\xff" "\x7e\xdc\xb2\x73\xf8\x1d\xdd\xdb\x67\x09\x00\x00\x00\xcc\x49\xee\xfe" "\x1f\xc4\x2d\x9d\x7c\xff\x1f\x00\x00\x00\x7a\x90\xbb\xff\x87\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa3\xb8\xa5\x93\xfd\xaf\xff\x9f" "\xc1\xf3\xff\x1b\xec\xff\x3d\xff\x7f\xfd\xd7\x87\xfe\x7f\xd6\xfd\xff" "\x95\xfa\xff\x36\xe8\xff\xc7\xe9\xff\x27\xe8\xff\xf5\xff\xfa\xff\x0d" "\xf5\xff\xf9\xd5\xac\xff\xef\xdd\xdc\xfa\xff\xdc\xfd\x3f\x8e\x5b\x3a" "\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x3f\x89\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x9f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xcd" "\x71\xcb\x05\xfb\x7f\x5d\xdb\xdd\x0a\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xaf\x7f\x7d\xfd\xff\x32\xe9\xff\xc7\x5d\x6a\xff\x7f\x7c\xd8\x5f" "\xff\x9f\xf4\xff\xfa\x7f\xfd\x7f\xaf\xfd\xbf\xe7\xff\x73\xce\xdc\xfa" "\xff\xdc\xfd\x3f\x8b\x5b\x7c\xff\x1f\x00\x00\x00\x16\xe7\xe8\x45\x7e" "\x3e\x77\xff\xcf\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x17\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xcb\xb8\xe5\x96\x2b\xb7\xf5" "\x96\x0e\x95\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xd7\xbf\xbe\xfe\x7f" "\x99\xf4\xff\xe3\x66\xf9\xfc\xff\xeb\x6f\xac\x7f\xd4\xff\x37\xd1\xff" "\x5f\xa5\xff\x6f\xa3\xff\x1f\x06\xfd\x3f\xfb\x37\xb7\xfe\x3f\x77\xff" "\xaf\xe2\x16\xdf\xff\x07\x00\x00\x80\x66\xe4\xee\xff\x75\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\xff\x26\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\x7f\x1b\xb7\x74\xb2\xff\xf5\xff\xfa\xff\x7d\xf6\xff\x67\xd3" "\x4c\xfd\xff\x39\xfa\xff\x73\xf4\xff\xeb\xe9\xff\x0f\x87\xfe\x7f\xdc" "\x2c\xfb\xff\x0b\xe8\xff\x9b\xe8\xff\x3d\xff\xbf\x91\xfe\xdf\xf3\xff" "\xd9\x84\xb9\xf5\xff\xb9\xfb\x7f\x17\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\x7f\x1f\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x88" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x3f\xc6\x2d\x9d\xec\xff\xad" "\xf5\xff\xf1\x9f\x5a\xff\xbf\xf8\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd" "\xff\xac\xe8\xff\xc7\xe9\xff\x27\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x1b" "\x35\xb7\xfe\x3f\x77\xff\x9f\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\x9f\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x2f\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xd7\xb8\xa5\x93\xfd\xef\xf9\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfe\xf5\xf5\xff\xcb\xa4\xff\x1f\xa7" "\xff\x5f\xaf\x7e\xa3\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x8d\x9a\x5b\xff" "\x9f\xbb\xff\x6f\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xef" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x4b\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xff\x23\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\xfd\xeb\xeb\xff\x97\x49\xff\x3f\x6e\x9b\xfd\xff\xbd" "\xee\x38\xfd\xb2\x9e\xff\xbf\xf5\xfe\x3f\xdf\x82\xfe\x5f\xff\xaf\xff" "\x67\x23\xe6\xd6\xff\xe7\xee\xbf\x35\x6e\xe9\x64\xff\x03\x00\x00\x40" "\x0f\x72\xf7\xff\x33\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x15" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x8e\x5b\x3a\xd9\xff\x13" "\xfd\xff\xf1\xfa\x17\xf5\xff\xa3\xf4\xff\x3b\xdf\xbf\xfe\x7f\xfd\xd7" "\x87\xfe\x5f\xff\xaf\xff\x3f\x78\xfa\xff\x71\xcb\x79\xfe\x7f\x7c\xbc" "\xfe\x7f\x07\xcf\xff\x9f\xf7\xfb\xd7\xff\xeb\xff\x59\x35\xb7\xfe\x3f" "\x77\xff\x7f\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x6d\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xdf\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\xff\x5f\xdc\xd2\xc9\xfe\xf7\xfc\xff\x25\xf5\xff\x57" "\xe9\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x82\xfe\x7f\xdc\x72\xfa\x7f" "\xcf\xff\x5f\x47\xff\x3f\xef\xf7\xaf\xff\xd7\xff\xb3\x6a\x6e\xfd\x7f" "\xee\xfe\xff\x07\x00\x00\xff\xff\xca\xf5\x3d\xf8", 25070)); NONFAILING(syz_mount_image(/*fs=*/0x2000000001c0, /*dir=*/0x200000000140, /*flags=MS_I_VERSION|MS_POSIXACL*/ 0x810000, /*opts=*/0x200000000c40, /*chdir=*/0xfa, /*size=*/0x61ee, /*img=*/0x200000012cc0)); 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); setup_sysctl(); const char* reason; (void)reason; if ((reason = setup_802154())) { fprintf(stderr, "reproducer setup failed: 802154 injection: %s\n", reason); exit(1); } install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }