// https://syzkaller.appspot.com/bug?id=d13ff4f487f1df9c87d7a0abe11a8c14e5e7b244 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% 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"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void 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"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20005d80, "bcachefs\000", 9); memcpy((void*)0x20005dc0, "./file0\000", 8); memcpy( (void*)0x200001c0, "\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x73\x6d" "\x61\x63\x6b\x66\x73\xe8\x75\x6a\x86\x44\x76\x99\xc3\x10\x0a\x07\xfd", 35); sprintf((char*)0x200001e3, "%020llu", (long long)-1); memcpy((void*)0x200001f7, ",defcontext=sysadm_u,\000", 22); memcpy( (void*)0x20011940, "\x78\x9c\xec\xdd\x6f\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\x4a\x2b\xa1" "\x95\x2c\xcc\x0a\x09\xb1\x18\xd9\x8e\xb8\x60\x0b\x14\x88\xe5\x3b\x47\x1b" "\xe7\xec\xd8\x8e\x6c\x64\x61\x01\x16\xa7\x93\x64\x58\xd9\x3a\x0b\x49\x5e" "\x49\x08\xa4\x4b\x10\x90\xc3\x04\x3b\x29\x55\x41\x19\x02\x71\xa2\x03\x97" "\x73\x95\xba\x4a\x70\xe9\x12\xe2\x3b\xa5\x4a\xc6\x18\x5f\x7c\x55\x14\xb2" "\xe3\x0f\x3e\xf2\xef\xa8\xd8\xf9\x10\x1f\x51\x9d\x25\xce\x91\x1c\xef\xd5" "\xee\x76\xcf\x4e\xf7\xf6\x3b\x3d\x3b\x33\x2b\x04\xf7\xfb\x55\xed\xce\x76" "\xef\x33\xcf\xfb\x3c\x3d\xef\xf4\x9f\xd9\xdd\xd9\x08\x00\x00\x80\xbf\x16" "\x5e\xfc\x9d\x7d\xaf\x7f\xe2\xf2\x0f\x7d\xef\x81\x91\xb3\xf7\x7d\xe4\x0f" "\xef\xba\x3f\xea\xaf\x4e\xac\xef\x4b\x03\x06\x92\xdb\x7b\xde\xa8\x0a\x99" "\x4d\xab\xbe\x7f\x3e\xf3\xc8\xf6\xd6\x06\x27\x6e\xf3\xf3\xe2\xb2\x3f\x5a" "\xf2\xfa\xc0\x83\xeb\x3f\xfe\xc8\xda\x0f\x7f\x7f\xdb\x1f\x2f\x1a\x5e\xb1" "\x72\xe4\xc6\x6f\x1c\xbf\xe9\xa1\x07\x9f\xff\xc0\x2f\x9e\x7f\xfc\xc9\xf5" "\x65\xe3\xa4\xf3\xe9\x9a\xa9\xe5\xf8\xcf\xe3\x28\x5a\xf1\xe3\xe3\x8f\x3f" "\xf4\x9d\x3f\xb9\x6c\x7c\x5d\x3c\x3e\x7e\x3c\x70\x24\x5a\xb4\x28\x5e\xfc" "\xad\x45\x71\x2e\xc5\xea\x73\x51\x14\xdd\x59\xaf\x33\xfb\xcd\xe3\x67\xd7" "\xec\x18\xbf\xbd\xff\x4b\xbd\x99\xf5\x0b\x73\x49\x5a\x9e\xef\xbc\x25\xf5" "\x25\xf3\xec\xf0\xd6\xcf\x3c\x7d\xf2\xf3\xc3\xdf\x39\x3e\xb4\x77\xcd\x4f" "\xcf\xdc\xb0\xe7\xc8\x54\x48\xdc\xd7\x30\x9f\xa2\xe8\x92\x6d\x8d\xf7\xef" "\x89\xa2\x68\x6e\xf2\x31\x2e\x9d\x6d\x83\xe9\x9d\x93\xdb\x0d\x51\x14\xcd" "\x6b\xb8\xdf\xfb\x4a\xea\xba\xba\xc5\xfa\xaf\x0d\x2c\x2f\x4f\x6e\xe7\x24" "\xb7\xfd\x25\x79\xd2\xef\x5f\x95\x5b\xae\xb5\x58\x47\x2d\x77\xdb\xdb\xe2" "\xfd\xda\x55\x99\xe5\xfc\x79\xf9\xed\x97\xdf\x19\xcd\x96\xb4\xcf\x4b\x92" "\xdb\xe7\x92\xdb\x6b\x66\x98\xa7\x9a\x7e\xc4\x51\x25\x8e\x6a\xf5\xf2\x77" "\xc5\x53\x73\x24\x6a\x78\xdc\xe2\x28\x9e\x98\xdb\x7d\xf5\xe5\xca\xc4\x72" "\x54\x5f\x8e\xf2\xcb\x71\x6e\xb9\x92\x5b\xae\xf6\xe4\xfa\x9a\x18\x37\xd9" "\xb0\xd5\x38\xce\xae\x4f\xe3\x72\xeb\xd3\xdd\x71\x2d\x59\x7f\x55\xe3\xbe" "\xba\xc0\xc6\xc0\xfa\xa5\xc9\x6d\x5f\xf2\x44\xfd\x79\xba\x1c\xe5\xbf\x98" "\xd4\x3f\xed\x8b\xa9\x3e\xa2\x86\xba\x4e\x5f\xa8\x89\x11\x50\x09\x3c\xf7" "\xd2\xf5\xf5\xf2\x92\x07\xa3\x3f\x59\xd7\x1f\x2f\x9e\x76\x9f\xb1\x02\xe9" "\xf7\x4e\x7f\x77\xfb\xe6\xd7\x7e\x74\xe8\xb9\xd0\xe1\x31\x7e\x36\x4e\xf2" "\xc7\x6d\xe5\x1f\x1e\x79\xea\xe4\xd7\x6f\x3b\xb1\x74\x30\x94\x7f\x5b\x25" "\xc9\x5f\x69\x2b\xff\x8b\xd5\x97\xce\x7d\xed\xcc\xe0\xfc\x60\xfe\xa3\x69" "\xfe\x6a\x5b\xf9\x37\xfd\xf2\x27\x0f\x3f\x70\xf3\xc1\x25\xc1\xed\x73\x3a" "\xdd\x3e\xb5\xb6\xf2\xaf\xfc\xf2\xfc\xc3\x67\x0f\x6e\xec\x1d\x0a\xe5\x3f" "\x96\xe6\xef\x6b\x2b\xff\x8d\x5b\x56\xac\xbd\xe2\xcc\x81\xbb\x83\xf5\xaf" "\x4e\xb7\xcf\xdc\xb6\xf2\xff\xf0\xd1\x55\xe7\xb7\x1c\xfd\xe6\x89\x60\xfe" "\x28\xcd\x3f\xaf\xad\xfc\xaf\x3c\xf5\xcc\xf2\xea\xd2\xc7\x4e\x05\xf3\x9f" "\x4c\xb7\x4f\x7f\x5b\xf9\x6f\x59\xf3\xc4\xba\x8f\x2d\x7b\xf0\xc9\xe0\xf6" "\x7f\x39\xcd\xbf\xa0\xad\xfc\x9b\x4f\x3d\xb4\x6d\xef\xd3\x2f\xac\x0a\xce" "\xcf\x0d\xe9\xf6\x19\x68\x2b\xff\xb9\x75\x3f\x78\xf5\xfc\xc0\xfa\x67\x42" "\xfb\xce\xf8\xd8\x85\x3e\xc2\x02\xbc\xb5\xbc\x2d\x39\xc7\x7a\x38\x59\x6e" "\xf7\x3a\xb3\x53\x0d\xd7\x0b\x4f\x0c\xd5\x26\xcf\xf9\xe6\x27\x1f\x0b\xba" "\x39\x50\x4e\xdc\x70\xed\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xed\x7a\x6c\xdd\xbf\xff\x42\xe3\xf2\x3b" "\xff\xcf\xdd\x9b\x4e\xfd\x87\x15\x3b\x6b\xc9\x72\x6f\x2d\x8a\xe2\x28\x8a" "\x5e\xab\x4e\x2e\xa7\xeb\xe7\x44\x51\x3c\x37\x8a\xa2\x7d\xfb\xb7\x8f\xee" "\xdf\xb9\xfb\xb3\x43\xbf\xb5\xe7\xc0\xe8\xee\xed\xbb\x86\xb6\xef\x1f\x1a" "\xd9\xbd\x7f\xf4\xde\xa1\xbf\xf5\x37\x87\x46\x47\xf6\xee\xda\x7e\xef\xf8" "\x77\x57\x5f\xbb\x66\xf2\x7e\x8b\x27\xb2\x45\xd1\xe2\xf8\x8a\x69\xb5\x8c" "\x8d\x8d\x8d\x45\x51\x34\xd4\xb8\x2e\x1d\xef\x77\x3f\xfa\xec\xff\xdb\xf4" "\xe4\x5f\x7c\x3a\x8a\x56\x5f\xfa\x83\x15\xb5\x60\x3f\xef\xfd\xaf\xaf\x7e" "\x68\x49\xc1\xe7\x9c\x78\x78\x6c\xc3\xbf\xb8\xe1\xd1\x43\x73\xfe\xd7\xc2" "\xc9\x15\x03\x49\x5d\x03\xa1\xba\x06\xb2\xeb\xd2\x0a\xfa\x87\x5f\xfe\xd3" "\x0f\x3e\xf7\xa3\xf1\xba\xde\xde\xac\xae\xc7\x5f\xba\xf5\xff\x66\x0a\x9a" "\x58\x31\x95\x27\x51\xe9\x8d\x2a\x13\x5f\xf4\xc6\xf3\x0a\xeb\xa8\x57\x3d" "\x55\xcf\xc4\xf6\xaa\xed\xd8\xb9\x6b\x64\x75\xf9\xf6\x8d\x03\xdb\xf7\xdd" "\x2f\xfc\xc1\x99\x7f\x77\xcf\xa6\x7f\x3a\xb9\x7d\xfb\x82\x7d\xb4\xb8\x7d" "\xc7\xb7\x6a\x6d\xec\x91\x9f\x3d\xf0\xee\x23\x1f\x1c\x79\xff\x45\xfc\xb8" "\x97\x6d\xef\x86\x16\x26\xea\x4b\xb7\x5f\x5f\xb2\xbd\x2f\x49\xfa\xba\x24" "\xd0\x57\x25\xd0\xd7\xdd\x43\xaf\x9c\xfe\x67\xff\xf6\x3f\x7d\xed\x48\xb4" "\xba\xf6\xb3\x2b\xa7\x8f\x5d\xd6\x57\x4f\x32\x01\x7a\xe2\xa5\x2d\x8d\x9b" "\x8e\x30\x2f\x5e\x94\x89\xed\x4b\xe2\xd3\x47\x3c\xbd\xdf\x7b\xf7\xdf\xb5" "\xf7\xbd\xfb\xee\x3d\x74\xed\xce\xbb\xb6\x7f\x76\xe4\xb3\x23\xbb\xd7\xac" "\xb9\x61\xed\x75\x6b\xae\xbb\x7e\xed\x9a\xf7\x4e\xb4\x3e\xf9\xb9\x6b\xfd" "\xa7\xe3\xbf\xbb\xc5\xfe\xe7\x27\x99\xe6\xc7\xcb\x0a\xb7\x5b\x7e\x6d\x3a" "\xee\x95\x13\x9f\xab\x51\x52\x76\x7a\xd3\xf0\x45\x56\x4f\xd4\x3f\x79\x9b" "\xdb\xce\x69\x78\xbe\xeb\xfe\xe4\x7b\xfd\xf1\xe2\x69\xb9\xc6\x0a\xa4\xdf" "\x3b\xfd\xdd\xed\x9b\x5f\xfb\xd1\xa1\xe7\x42\xcf\xbc\xf8\xd9\xc9\x11\xe7" "\x46\x0b\x26\x6f\xe3\xe5\x81\xc8\x5d\xb9\x3b\x56\xeb\x05\x17\x8d\x7f\x61" "\x9e\x97\x7b\xbe\xd2\xb7\x2b\xfd\xdc\xda\xf3\xb2\xac\xae\xb2\x79\x35\x5e" "\x57\xf9\xbc\x6a\xac\xa8\xc9\x7e\xec\xa5\xab\x1f\xfe\xd9\xd3\x5f\xfc\xe7" "\xb7\xb7\xb0\xbf\x68\x08\x9d\xa8\x2f\xad\x73\xde\xf8\xd3\xe5\xba\xa8\xe1" "\x79\x3b\x7d\x5b\x15\xf5\xd5\xc2\xe3\x33\x5c\xb4\x1d\xee\xb8\x76\xf4\x0f" "\xee\xdd\xb9\xf9\x68\xd9\xfe\xbc\xf1\x91\x69\xfc\x9c\x13\x0f\x8f\xfd\xcf" "\xe5\xf1\xc7\x0f\xec\xfb\xd3\xd1\xc9\x15\x17\xe4\x78\xb9\xe7\x2b\x7d\x73" "\xa2\x28\x9a\x28\xa8\xcd\xe3\x65\xbd\xea\xa9\x7a\x26\xb6\x57\x5f\xf2\x78" "\x5c\xac\xdb\xb7\x37\xaa\x26\x7d\xf5\x17\xd6\xb5\x31\x7e\xfa\x03\xef\xbe" "\xeb\xc4\xaf\xd4\xeb\x9b\x33\x27\xba\x67\xfb\xfe\xfd\xa3\xd7\x4d\x7e\x7e" "\xb3\xf6\xf5\x67\x73\x16\x2e\xd9\x79\xff\xb2\x2b\xa6\xf5\x75\xfd\xe4\xe7" "\xb2\xfd\xfe\x95\xb9\xe5\xd2\xfd\x7e\xa5\xb8\xbf\xb2\xfd\x7e\x7e\x9c\xa9" "\xf8\xe2\x7c\x43\xb9\xe5\xfe\xa8\xda\xd6\x71\x62\xd3\x2f\x7f\xf2\xf0\x03" "\x37\x1f\x5c\x12\x3c\x4e\x9c\x6e\xf5\x38\xf1\xdb\x99\xa5\x6a\x87\xc7\x89" "\x4a\xe0\xf9\xfe\xc8\x5f\x7c\x75\xe8\xf5\xdb\x3f\xf5\x7a\xd9\x7c\xba\x69" "\xdf\xb2\xfb\x96\x14\x7c\xce\xb7\x37\x3c\xf6\xcd\xdf\xff\xd5\xeb\xde\x7f" "\xeb\xcd\x1f\x9e\x5c\x71\x41\xf6\x43\x8d\x05\xb5\xb9\x1f\xaa\x57\x9d\xd4" "\x93\x6e\xaf\x89\xfd\xd0\xf5\x17\x4f\x1f\x6f\xdc\xe3\x9c\x79\x22\xc6\xc3" "\x63\x57\x7e\xe3\x5d\xb7\x9c\x3f\xfb\x85\x4f\x4e\xae\x28\xdb\xbe\xf5\xe8" "\xa2\xed\xbb\xa6\x7c\x3f\x5f\x0d\xf4\x75\x7b\xcf\x3b\x16\x3d\xfa\xd3\x65" "\xef\xe8\xde\xfc\xdd\xb7\xf5\x2f\xaf\x7e\xcf\xbc\xf9\x17\xd9\xfc\xed\x4b" "\xb6\x6f\x5f\x60\xfb\xd6\xab\x4e\xea\xa9\x36\x6e\xdf\xf7\xdc\xb1\x67\xd7" "\x9d\x93\xcb\x17\xef\x79\xdb\xa4\xde\x92\xeb\x9f\xf4\xb8\xb3\xef\xde\x43" "\x9f\xdf\xbe\x6b\xd7\xc8\xe8\xbe\xd6\xfa\x6a\xf5\x78\x9a\x8e\x93\xdf\xca" "\xed\x1e\x4f\xd3\xa3\xc7\xe2\x92\xbe\xd2\xc7\x6b\xaa\xaf\xd9\xfb\xa2\x95" "\xed\x95\x7f\xbe\x5d\x37\x67\xf2\x36\xff\x7c\x4b\xeb\xbf\x33\x97\xa3\xdd" "\xe7\x1b\x40\x6a\xea\xb8\x30\x27\xb3\x3e\xbf\xff\x4c\x5f\xf7\x5b\x71\x49" "\xb4\xe9\x3d\x5f\xfc\xf6\x4b\xf1\xd0\xe4\xf1\xb2\x5b\xaf\xb7\xa6\xe3\x5c" "\x9e\x3b\x30\xb7\xfb\x7a\x6b\xd9\x75\xd2\x3b\x72\xcb\xd9\xeb\xa4\x5a\xd4" "\xd0\xf7\xa4\xe9\xd7\x49\x13\x77\x29\xbb\x4e\xca\x8f\x53\x76\x9d\x74\x75" "\x6e\xb9\xfc\x3a\xe6\xe1\xc2\x4e\x42\x8f\x5f\x4f\x72\xe4\x2d\x7a\xdd\xb4" "\xa1\xde\xd1\xc9\x44\x63\x63\xa1\xf9\x31\x98\xe4\x1f\x4c\x96\xd3\xf3\xcd" "\x15\xef\x89\x6e\xa8\x3e\xf7\xce\x8f\xc6\xc3\xad\xcd\x8f\x56\xcf\xa7\xd3" "\x71\xfe\x46\x6e\x03\xb5\x7b\x3e\x5d\x36\x3f\x56\x46\xc5\x75\x75\x7b\x7e" "\xbc\x2b\x77\xa7\xd2\xc7\xfb\x64\xe1\x30\xf5\xc7\x3b\xff\x78\x94\x3d\xde" "\x2b\x33\x89\xc6\xc6\x3a\xbd\x2e\x1f\x28\xae\xba\x7e\x5d\xde\x1f\xc5\x6d" "\xe5\x1f\x1e\x79\xea\xe4\xd7\x6f\x3b\xb1\x34\x98\x7f\x5b\x25\xc9\x5f\x69" "\x2b\xff\x8b\xd5\x97\xce\x7d\xed\xcc\xe0\xfc\x60\xfe\xa3\x69\xfe\x5a\x5b" "\xf9\x57\x7e\x79\xfe\xe1\xb3\x07\x37\xf6\x06\xf3\x1f\x4b\xb7\x4f\x5f\x5b" "\xf9\x6f\xdc\xb2\x62\xed\x15\x67\x0e\xdc\x1d\xcc\xbf\x3a\xad\x7f\x6e\x5b" "\xf9\x7f\xf8\xe8\xaa\xf3\x5b\x8e\x7e\xf3\x44\x30\x7f\x94\xe6\xef\x6f\x2b" "\xff\x2d\x6b\x9e\x58\xf7\xb1\x65\x0f\x3e\x19\xcc\xff\x72\x9c\x8c\x33\xfe" "\xdc\x8d\xa2\xe3\x67\xd7\xec\x98\x5c\x8e\xa3\x9e\x64\xfe\xa7\x75\xf4\x64" "\xea\x8a\xf2\xcb\x71\x7d\x79\x4e\x51\x1f\x51\xb5\x31\xbe\x92\x86\x25\x03" "\x54\xe3\x38\xbb\x3e\x8d\xcb\xad\x4f\xfb\xa8\x25\xeb\xaf\x6a\xa8\xb1\xc8" "\xa6\xc0\xfa\xf4\x59\xdb\x97\x3c\xb1\x7f\x9e\x2e\x47\xf9\x2f\x9a\xaf\x4f" "\x77\x4f\x69\x5d\xa7\x03\xc7\x9f\x0b\xa5\xd2\x70\xee\x51\xb4\xbe\xec\xf5" "\xc9\x6e\x79\xed\xc7\x83\xbf\xdb\xb8\x9c\xfe\xfc\x3f\x9d\x03\xbd\xb5\xc9" "\xc7\xee\xfa\xdc\xf6\x2a\x3b\x7e\xe4\xf7\xde\x69\xbe\xe0\xeb\xb0\x81\x97" "\x30\xca\xce\x17\xa6\xff\xfc\x6d\x5e\x5b\xcf\xbf\x57\x9e\x7a\x66\x79\x75" "\xe9\x63\xa7\x82\xaf\xab\x9e\x6c\xf5\x75\xd5\xbd\x99\xa5\x79\x25\xaf\xab" "\x76\x5a\x6f\x70\x7f\x71\x32\xdd\x9f\x76\xb6\x3f\x1a\x0c\xe5\x7f\x39\xcd" "\xdf\xd9\xf1\x20\x98\x3f\x39\x1e\x94\xcd\xb3\x77\xe6\x96\x4b\xe7\x59\x4f" "\xf1\x78\x65\xf3\x2c\x7f\x9e\xd2\x1f\x2d\x68\xab\xef\xcd\xa7\x1e\xda\xb6" "\xf7\xe9\x17\x56\x05\xe7\xd9\x86\xc9\x27\x7c\xf9\x3c\x7b\x2c\xb3\xb4\xa0" "\x74\x9e\x75\xf6\x73\xe9\xe0\x3c\x7b\x36\xee\xca\xf6\x08\xe6\xdf\xd0\x9d" "\xf3\x9a\xe0\x3c\x4b\xce\x6b\xca\xe6\xd9\x35\xb9\xe5\xce\xe7\x59\xf6\x7c" "\xf4\xe3\xc9\xed\x3d\xb9\xf8\xfe\xe4\x15\xe2\x99\xf6\x7d\x6e\xdd\x0f\x5e" "\x3d\x3f\xb0\xfe\x99\xe0\x3c\x3b\xd6\xea\x3c\xfb\xbd\xcc\xd2\x40\xe9\x3c" "\xeb\xec\xfc\x36\xf8\x38\xd5\xcf\x6f\x67\xfb\xfc\xfc\xcd\x7d\xfe\xd9\xd5" "\xf3\xc3\xc9\xe5\x4a\x6e\xb9\xf8\xfc\x30\xf9\x71\xee\x6c\x9d\x1f\x6e\x0c" "\xac\x9f\xe9\xf9\x61\xff\xb4\x2f\xa6\xfa\x88\xde\x8c\xe7\x87\x81\xfd\x0c" "\x00\x34\xf3\xbd\x47\xee\xfd\xdf\x8d\xcb\xe9\xf5\x7f\x7a\xec\x4e\xaf\xff" "\xbf\x9d\xbb\x5f\xa7\xd7\x95\xf9\xdf\x87\x4a\x75\xeb\xba\x32\x98\xff\x58" "\x77\xae\x57\x82\xe7\xa9\xf5\xeb\x95\xd9\xbe\xde\x9a\xed\xf3\xec\xd9\xbd" "\xde\xaa\x9f\xc7\x17\x9c\xf4\x35\xcb\xff\xd7\xe5\x3c\x7e\xf6\x5f\x17\x9a" "\xdd\xeb\x4a\xd7\x21\xc9\x72\x94\xff\x62\x92\xeb\x10\x00\x00\xde\x08\x57" "\xfd\xeb\xaf\xfe\x7a\xe3\x72\x7a\xfd\x5f\xff\xbd\xb7\xe4\xef\xff\x5f\x48" "\x97\x73\xf7\x77\x9d\x1b\xc8\x9f\xbf\xce\x9d\xb5\x9f\x57\xcd\xf6\xeb\x24" "\xae\xa3\x0b\xf3\x77\xe9\xf7\x2b\xca\x5f\x07\x9b\xed\xd7\xa9\x66\xf2\x3a" "\xc0\x7f\xbe\x34\xfd\x9e\xd7\x01\x8a\x79\x1d\xe0\xc2\xd6\x05\x00\xc0\xcc" "\x6c\xdd\x31\x3a\x32\xb2\x6f\xef\xf6\x3b\x46\xb6\xee\xdc\xbd\x73\x7f\x7d" "\x7d\xcf\xc4\x95\xd3\xf4\xdf\x53\xfd\xdb\xc9\xed\x86\x5c\x9e\xb2\xdf\x9f" "\x2e\x8a\x9f\xd7\x24\xfe\x93\xc1\xfc\xd9\x7a\xde\x17\x88\x0f\xa9\x4d\xfc" "\xce\x6b\x14\x7d\xe6\x8e\xcf\x5d\xbf\xf5\xce\x91\xbb\x67\xda\x7f\x68\xbc" "\xb2\xfe\x8b\xe2\x9b\xf5\x9f\xbf\xbe\x08\xf5\xbf\x36\x10\x1f\xd2\x69\xff" "\xa1\xf1\xca\xfa\x2f\x8a\x6f\xd6\xff\xcd\xc1\xfc\xd9\x7a\xde\x1f\x88\x0f" "\xe9\xb4\xff\xd0\x78\x65\xfd\x17\xc5\x37\xeb\xff\x53\xc1\xfc\xd9\x7a\x7e" "\x35\x10\x1f\xd2\x69\xff\xa1\xf1\xca\xfa\x2f\x8a\x6f\xd6\x7f\xfe\xef\xc1" "\x42\xfd\xff\x5a\x20\x3e\xa4\xd3\xfe\x43\xe3\x95\xf5\x5f\x14\xdf\xac\xff" "\x5b\x82\xf9\xb3\xf5\x7c\x20\x10\x1f\xd2\x69\xff\xa1\xf1\xca\xfa\x2f\x8a" "\x6f\xd6\xff\xad\xc1\xfc\xd9\x7a\xfe\x4e\x20\x3e\xa4\xd3\xfe\x43\xe3\x95" "\xf5\x5f\x14\xdf\xac\xff\xdb\x82\xf9\xb3\xf5\xac\x0b\xc4\x87\x74\xda\x7f" "\x68\xbc\xb2\xfe\x8b\xe2\x9b\xf5\xff\xe9\x60\xfe\x6c\x3d\xc3\x81\xf8\x90" "\x4e\xfb\x0f\x8d\x57\xd6\x7f\x51\x7c\xb3\xfe\x37\x07\xf3\x67\xeb\xf9\xbb" "\x81\xf8\x90\x4e\xfb\x0f\x8d\x57\xd6\x7f\x51\x7c\xb3\xfe\x6f\x0f\xe6\xcf" "\xd6\xf3\xc1\x40\x7c\x48\xa7\xfd\x87\xc6\x2b\xeb\xbf\x28\xbe\x59\xff\xbf" "\x11\xcc\x9f\xad\xe7\xef\x05\xe2\x43\x9a\xf6\x5f\x58\x5f\x6b\xe3\x95\xf5" "\x5f\x14\xdf\xac\xff\x2d\xc1\xfc\xd9\x7a\x7e\x3d\x10\x1f\xd2\xe9\xe3\x1f" "\x1a\xaf\xac\xff\xa2\xf8\x66\xfd\xff\x66\x30\x7f\xb6\x9e\x0f\x05\xe2\x43" "\x3a\xed\x3f\x34\x5e\x59\xff\x45\xf1\xcd\xfa\xdf\x1a\xcc\x9f\xad\xe7\xc3" "\x81\xf8\x90\x4e\xfb\x0f\x8d\x57\xd6\x7f\x51\x7c\xb3\xfe\xb7\x05\xf3\x67" "\xeb\xf9\xfb\x81\xf8\x90\x4e\xfb\x0f\x8d\x57\xd6\x7f\x51\x7c\xb3\xfe\xb7" "\x07\xf3\x67\xeb\xf9\x48\x20\x3e\xa4\xad\xfe\x7f\xf9\xed\xd2\xf1\xca\xfa" "\x2f\x8a\x6f\xd6\xff\x67\x82\xf9\xb3\xfd\x7f\x34\x10\x1f\xd2\xe9\xe3\x1f" "\x1a\xaf\xac\xff\xa2\xf8\x66\xfd\xdf\x11\xcc\x9f\xad\xe7\x63\x81\xf8\x90" "\x4e\xfb\x0f\x8d\x57\xd6\xff\xb4\xf8\xbe\xe6\xfd\xe7\xdf\xef\x30\xd4\xff" "\x3f\x08\xc4\x87\x74\xda\x7f\x68\xbc\xb2\xfe\x8b\xe2\x9b\xf5\x3f\x12\xcc" "\x9f\xad\x67\x7d\x20\x3e\xa4\xd3\xfe\x43\xe3\x95\xf5\x5f\x14\xdf\xac\xff" "\x1d\xc1\xfc\xc5\xef\x1b\x90\x8f\x0f\xe9\xb4\xff\xd0\x78\x65\xfd\x17\xc5" "\x37\xeb\xff\xb3\xc1\xfc\xd9\x7a\x3e\x11\x88\x0f\xe9\xb4\xff\xd0\x78\x65" "\xfd\x17\xc5\x37\xeb\xff\x73\xc1\xfc\xd9\x7a\x6e\x0a\xc4\x87\x74\xda\x7f" "\x68\xbc\xb2\xfe\x8b\xe2\x9b\xf5\xbf\x33\x98\x3f\x5b\xcf\x86\x40\x7c\x48" "\xa7\xfd\x87\xc6\x2b\xeb\xbf\x28\xbe\x59\xff\xbf\x15\xcc\x9f\xad\xe7\x93" "\x81\xf8\x90\x4e\xfb\x0f\x8d\x57\xd6\x7f\x51\x7c\xb3\xfe\x3f\x1f\xcc\x9f" "\xad\x67\x63\x20\x3e\xa4\xd3\xfe\x43\xe3\x95\xf5\x5f\x14\xdf\xac\xff\x5d" "\xc1\xfc\xd9\x7a\x6e\x0e\xc4\x87\x74\xda\x7f\x68\xbc\xb2\xfe\x8b\xe2\x9b" "\xf5\x7f\x57\x30\x7f\xb6\x9e\x4f\x05\xe2\x43\x3a\xed\x7f\x7c\xbc\x7f\x55" "\x90\xb7\xac\xff\xa2\x7e\x9a\xf5\xbf\x3b\x98\x3f\x5b\xcf\xa6\x4c\xfc\xfd" "\xc5\xc9\x1a\x74\xda\xff\xa6\xd2\xfa\x5a\xef\xa7\x59\xff\x7b\x82\xf9\xb3" "\xf5\xdc\x12\x88\x0f\xe9\xb4\xff\xd0\x78\x65\xfd\x17\xc5\x37\xeb\x7f\x6f" "\x30\x7f\xb6\x9e\x5b\x03\xf1\x21\x9d\xf6\x1f\x1a\xaf\xac\xff\xa2\xf8\x66" "\xfd\x7f\x21\x98\x3f\x5b\xcf\x6d\x81\xf8\x90\x4e\xfb\x0f\x8d\x57\xd6\x7f" "\x51\x7c\xb3\xfe\x47\x83\xf9\xb3\xf5\x7c\x3a\x10\x1f\xd2\x69\xff\xa1\xf1" "\xca\xfa\x2f\x8a\x6f\xd6\xff\xbe\x60\xfe\x6c\x3d\x9b\x03\xf1\x21\x9d\xf6" "\x1f\x1a\xaf\xac\xff\xa2\xf8\x66\xfd\xef\x0f\xe6\xcf\xd6\x73\x7b\x20\x3e" "\xa4\xd3\xfe\x43\xe3\x95\xf5\x5f\x14\xdf\xac\xff\x03\xc1\xfc\xd9\x7a\x7e" "\x23\x10\x1f\xd2\x69\xff\xa1\xf1\xca\xfa\x2f\x8a\x6f\xd6\xff\xdd\xc1\xfc" "\xd9\x7a\xb6\x04\xe2\x43\x3a\xed\x3f\x34\x5e\x59\xff\x45\xf1\xcd\xfa\x3f" "\x18\xcc\x9f\xad\xe7\x37\x03\xf1\x21\x9d\xf6\x1f\x1a\xaf\xac\xff\xa2\xf8" "\x66\xfd\xe7\xdf\x07\x32\xd4\xff\xd6\x40\x7c\x48\xbd\xff\xfd\xa3\x23\x23" "\x5b\x0f\xec\xbd\x73\xfb\xfe\x91\xad\xbb\xf7\xdc\x39\xb2\x6f\xeb\xc1\xd1" "\x9d\xfb\xf7\x8f\x24\x27\x6a\x9d\xfe\x5d\x59\xf8\xef\x82\xde\xe0\x3f\x64" "\xa1\xa9\xcc\xf3\x63\x72\x92\xec\xdc\xbd\x6f\x64\x74\xfa\xfe\x7b\x6e\xd3" "\xf9\xdb\x38\x27\xa2\x89\x3f\x7b\x9a\x3b\x79\x1b\xbf\xbd\xa5\xf8\xfc\xdb" "\x5e\xb7\x3b\x6b\x2e\x96\xf9\xde\x13\xd5\x9a\x6e\xaf\xcb\x73\xcb\x0b\x93" "\xf7\xa3\x5d\x18\x78\x3f\xda\x7c\x7c\x9a\x76\xd9\xc4\x17\xd3\xdf\x8f\x36" "\x3f\x6c\xad\xe4\x7d\x5c\xcb\xf6\x4f\xf9\xf1\x43\xfb\xa7\xb8\x49\x7c\xd1" "\xfe\x35\xb4\x3f\x2b\x3b\xfe\xcd\x78\xff\x57\x3a\xbf\xfb\x9a\xf6\x9f\x5f" "\xdd\x9b\xfc\x61\x5f\x6f\x7c\x69\x4b\xf1\x51\x93\xff\xef\xd6\xda\x7c\xed" "\xec\xef\x4e\x83\xf3\xf5\xe5\xd6\xe6\x6b\xfe\x7d\xd7\xcb\xe6\x6b\x3e\x7e" "\xa6\xf3\xb5\xbf\xc3\xf9\x9a\x1f\x3f\x34\x9f\x2a\x4d\xe2\x9b\x9d\x0f\xb5" "\x3a\x5f\x37\x07\xe2\x53\xad\xcf\xcf\x38\xd8\x6f\xd1\xbc\x9a\xe9\xff\x19" "\x4c\xd3\xce\xe8\xff\x0c\xe6\x3e\x4d\xd3\xc6\xff\x32\x68\xfd\xf9\xd0\xd9" "\xdf\x91\x07\x9f\x0f\x49\xd1\x65\xcf\x87\xfc\xdf\x71\x97\x3d\x1f\xf2\xf1" "\x33\x7d\x3e\xcc\xed\xf0\xf9\x90\x1f\xbf\xec\xf9\x50\x14\xdf\xec\xfa\xb8" "\xd5\xe7\xc3\xad\x81\xf8\x90\xd6\xe7\x43\x67\xef\x5b\x10\x9c\x0f\xab\x5b" "\x9b\x0f\xf9\xff\x63\x55\x36\x1f\xf2\xf1\x33\x9d\x0f\x7d\x1d\xce\x87\xfc" "\xf8\x65\xf3\xa1\x28\xbe\xd9\xeb\x85\xad\xce\x87\x4f\x05\xe2\x5b\xd5\xfa" "\xfc\xe8\xec\x7d\x45\x82\xf3\x63\x5b\x6b\xf3\x23\xff\xff\x24\xca\xe6\x47" "\x3e\x7e\xa6\xf3\x23\xee\x70\x7e\xe4\xc7\x2f\x9b\x1f\x45\xf1\xa1\x9f\xa7" "\x44\x33\x98\x1f\x9f\x0c\xc4\xa7\x32\xc7\xcf\x1d\xfb\x26\x2e\xea\x77\x6e" "\xdf\xb5\xf3\x50\xee\x17\x30\x06\x92\xe3\xe7\x1b\x7d\x3c\xbc\x20\xc7\xe5" "\xbf\xfc\xb5\x3f\xfb\xf9\xe4\xa7\xa4\x8e\xca\xb4\x3a\xca\xce\x27\xe2\x5c" "\x1d\x8b\x92\x4a\x16\x85\xfe\xef\x61\xa0\xee\x3b\xfe\xcb\xbf\xd9\xf4\xed" "\x5f\x7c\xf1\xab\x51\xb4\xfa\xd2\xea\xf2\x70\xdd\x53\x25\x4f\x7d\xca\x89" "\x87\xc7\x16\xdf\xb7\xf2\xeb\xb7\xbd\xfd\xd4\x07\xc7\xeb\xaf\x34\xad\xbf" "\x1e\x99\xfe\xdf\xe2\x92\xff\x77\x9c\x8f\x4f\xfb\xa9\xed\xda\xb3\x6f\xff" "\xaf\xec\xd8\x73\x60\x77\xab\xbf\x71\xd5\x5c\xfa\x7e\x28\x95\xfa\xf2\x2c" "\xbd\x1f\x4a\xb2\xb2\xda\xe2\xfb\x9b\x84\xfe\x9e\x60\xa6\xef\x6f\xd2\x33" "\xed\x8b\x8b\x53\xcb\xef\x6f\x02\xf0\x16\xb1\xf0\xd8\xb3\x0b\x1a\x97\xd3" "\xf7\xff\x4b\x8f\x47\x83\xc9\xbe\x6f\x6e\xb2\x03\x4c\xd7\xb7\x7e\x9e\xdd" "\xd9\xfb\xeb\x05\xcf\xb3\x8f\xb6\x76\x9e\xbd\x2a\xdf\x6f\xc9\x79\x76\x3e" "\x3e\xed\xb7\xd5\xf3\xec\x4a\x87\xe7\xd9\xf9\xf1\xcb\xce\xb3\x8b\xe2\x9b" "\xfd\xde\x5e\xab\xe7\xd9\x9f\x08\xc4\xcf\x54\x76\x9e\x8c\x4f\x90\x89\xf9" "\x31\xb2\xf5\xe0\x9e\xd1\xc6\xdf\x89\x9b\xed\xff\x5b\x5b\x60\xec\xbe\x8e" "\xea\x9d\xdd\xff\xe3\x1b\xd2\x7a\x7d\xb3\xfb\xbe\x8d\xed\x6a\xbd\xfe\xd9" "\x7d\x5f\xc8\xd9\xaf\x7f\x76\xff\x0f\x70\x34\x36\xdb\xf5\xcf\xee\xff\x79" "\x6e\xd7\x05\xbb\x5e\x4a\xde\x2c\xb2\xec\xfd\x23\xcb\xae\xa3\x42\x7f\x97" "\x3e\xd3\xeb\xa8\x39\xd3\xbe\xb8\x38\xb9\x8e\x02\x80\x8b\xdf\x3f\x19\xfd" "\xf1\xbf\x6c\x5c\x4e\xaf\xff\x93\xab\xd8\xfa\xf5\xff\x97\x92\xe5\x6a\x97" "\xc7\x9f\xed\xeb\xa8\x59\xbc\xae\x3c\x12\x5d\x80\xf3\xe4\x37\xff\xfb\xef" "\xcf\xee\x75\x90\xeb\x81\x26\x83\x5d\x04\x5c\x0f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\xfb\xbd\xff\xfe" "\x1f\xbf\xd5\xb8\xdc\x5b\x1b\x9c\xb8\x7d\xf1\x77\xf6\xbd\xfe\x89\xcb\x3f" "\xf4\xbd\x07\x46\xce\xde\xf7\x91\x3f\xbc\xeb\xfe\xcb\xfe\x68\xc9\xeb\x03" "\x0f\xae\xff\xf8\x23\x6b\x3f\xfc\xfd\x6d\x7f\xbc\x68\x78\xc5\xca\x91\x1b" "\xbf\x71\xfc\xa6\x87\x1e\x7c\xfe\x03\xbf\x78\xfe\xf1\x27\xd7\x97\x0e\x34" "\x30\x79\x73\x4d\xb2\xd8\x17\x45\xf1\x9f\xc7\x51\xb4\xe2\xc7\xc7\x1f\x7f" "\xe8\x3b\x7f\x72\xd9\xf8\xba\x78\x7c\xfc\x78\xe0\x48\xb4\x68\x51\xbc\xf8" "\x5b\x8b\xe2\x5c\x86\xd5\xe7\xa2\x28\xba\xb3\x5e\x67\xf6\x9b\xc7\xcf\xae" "\xd9\x31\x7e\x7b\xff\x97\x7a\x33\xeb\x17\xe6\x92\xe4\xfb\x8a\xfa\xab\x69" "\x3d\x99\x3a\xa3\x7b\x4a\x3b\xe2\x4d\xa8\x2f\x99\x67\x87\xb7\x7e\xe6\xe9" "\x93\x9f\x1f\xfe\xce\xf1\xa1\xbd\x6b\x7e\x7a\xe6\x86\x3d\x47\xa6\x42\xe2" "\xbe\x86\xf9\x14\x45\x97\x6c\x6b\xbc\x7f\x4f\x14\x45\x73\x93\x8f\x71\xe9" "\x6c\x1b\x4c\xef\x9c\xdc\x6e\x88\xa2\x68\x5e\xc3\xfd\xde\x57\x52\xd7\xd5" "\x2d\xd6\x7f\x6d\x60\x79\x79\x72\x3b\x27\xb9\xed\x2f\xc9\x93\x7e\xff\xaa" "\xdc\x72\xad\xc5\x3a\x6a\xb9\xdb\xde\x16\xef\xd7\xa6\xff\x5f\x99\xdd\xfc" "\xd3\xe4\xb7\x5f\x7e\x67\x34\x5b\xd2\x3e\x2f\x49\x6e\x9f\x4b\x6e\xaf\x99" "\x61\x9e\x6a\xfa\x11\x47\x95\x38\xaa\xd5\xcb\xdf\x15\x4f\xcd\x91\xa8\xe1" "\x71\x8b\xa3\x78\x62\x6e\xf7\xd5\x97\x2b\x13\xcb\x51\x7d\x39\xca\x2f\xc7" "\xb9\xe5\x4a\x6e\xb9\xda\x93\xeb\x6b\x62\xdc\x64\xc3\x56\xe3\x38\xbb\x3e" "\x8d\xcb\xad\x4f\x77\xc7\xb5\x64\xfd\x55\xf5\x67\x5e\xb1\x8d\x81\xf5\x4b" "\x93\x87\xb0\x2f\x79\xa2\xfe\x3c\x59\x5f\xdf\xef\xf7\x65\xe3\xfb\xa7\x7d" "\x31\xd5\x47\xd4\x50\xd7\xe9\x0b\x35\x31\x02\x2a\x81\xe7\x5e\xba\xbe\x5e" "\x5e\xf2\x60\xf4\x27\xeb\xfa\xe3\xc5\xd3\xee\x33\x56\x20\xfd\xde\xe9\xef" "\x6e\xdf\xfc\xda\x8f\x0e\x3d\x37\x10\xa8\x23\x7e\x36\x4e\xf2\xc7\x6d\xe5" "\x1f\x1e\x79\xea\xe4\xd7\x6f\x3b\xb1\x74\x30\x94\x7f\x5b\x25\xc9\x5f\x69" "\x2b\xff\x8b\xd5\x97\xce\x7d\xed\xcc\xe0\xfc\x60\xfe\xa3\x69\xfe\x6a\x2b" "\xf9\xe3\x7c\xfe\x4d\xbf\xfc\xc9\xc3\x0f\xdc\x7c\x70\x49\x70\xfb\x9c\x4e" "\xb7\x4f\xad\xad\xfa\x57\x7e\x79\xfe\xe1\xb3\x07\x37\xf6\x0e\x85\xf2\x1f" "\x4b\xf3\xf7\xb5\x95\xff\xc6\x2d\x2b\xd6\x5e\x71\xe6\xc0\xdd\xc1\xfa\x57" "\xa7\xdb\x67\x6e\x5b\xf9\x7f\xf8\xe8\xaa\xf3\x5b\x8e\x7e\xf3\x44\x30\x7f" "\x94\xe6\x9f\xd7\x56\xfe\x57\x9e\x7a\x66\x79\x75\xe9\x63\xa7\x82\xf9\x4f" "\xa6\xdb\xa7\xbf\xad\xfc\xb7\xac\x79\x62\xdd\xc7\x96\x3d\xf8\x64\x70\xfb" "\xbf\x9c\xe6\x5f\xd0\x56\xfe\xcd\xa7\x1e\xda\xb6\xf7\xe9\x17\x56\x05\xe7" "\xe7\x86\x74\xfb\x0c\xb4\x95\xff\xdc\xba\x1f\xbc\x7a\x7e\x60\xfd\x33\x7d" "\xa1\xfc\xc7\x2e\xf4\x11\x16\xe0\xad\xe5\x6d\xc9\x39\xd6\xc3\xc9\x72\xbb" "\xd7\x99\x9d\x6a\xb8\x5e\x78\x62\xa8\x36\x79\xce\x37\x3f\xf9\x58\xd0\xcd" "\x81\x72\xe2\x86\x6b\x97\xe9\x8e\xcc\xe2\xc8\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x99" "\xec\x19\xab\x1e\x68\x5c\x7e\xf5\xc4\x23\x37\x7d\xee\x7f\x6c\xfd\x6f\xb5" "\x38\x8a\xe2\xc0\x7d\xc6\x0a\xa4\xdf\xab\xce\x19\x1e\x1e\x6a\xa3\x8e\x95" "\x5f\x9e\x7f\xf8\xec\xc1\x8d\xbd\xe9\xf2\xf8\xd8\x83\x6d\xe4\x01\x00\x00" "\x00\xa6\x5b\xf6\xca\x17\xbf\xd0\xb8\x9c\x5e\x87\x57\x92\xe5\x38\xea\x8b" "\x06\xa3\x83\xf1\xdc\x68\x59\xe1\xfd\xd3\xd7\x08\x96\xa5\x4b\x71\x76\x7d" "\xfe\x35\x84\xb9\x53\x91\x5d\xc9\x53\xe9\x52\x9e\x6a\x97\xf2\xd4\xba\x94" "\xa7\xa7\x4b\x79\xe6\x74\x29\x4f\x6f\x97\xf2\xf4\x95\xe4\xe9\x8b\x5a\xcb" "\x33\xb7\x69\x9e\x4a\xcb\xf5\xcc\xeb\x52\x9e\xfe\x2e\xe5\x99\xdf\xa5\x3c" "\x0b\xba\x94\xe7\x92\xf6\xf3\xd4\x1a\xf3\x2c\xec\x52\x3d\x03\x4d\xf3\xb4" "\x3e\x0f\x17\x75\x29\xcf\xe2\x2e\xe5\x79\x5b\x97\xf2\x2c\xe9\x52\x9e\x4b" "\xbb\x94\xe7\xed\x5d\xca\x73\x59\x97\xf2\xe4\x5f\x53\x9e\xe9\x3c\x5c\x90" "\x44\x5e\x1e\xca\x33\xf1\x45\xb5\x34\x4f\x2d\xae\xd6\xbf\x51\xf4\x7a\x7a" "\x3a\xce\x15\x1d\x8e\xd3\xdf\xe2\x38\xf9\xd7\xec\x67\x3a\xce\xdc\x16\xc7" "\xb9\xba\xc3\x71\xfa\x5a\x1c\xe7\x5d\x1d\x8e\x13\xb7\x38\xce\xaa\xdc\xfd" "\x2a\x33\x1c\xa7\x52\x32\x4e\x3a\x6f\xef\x09\xf5\x93\x2e\xb5\x38\xff\xef" "\xed\x52\x9e\x43\x5d\xca\x73\xb8\x4b\x79\x7e\xbb\x4b\x79\xfe\x61\x97\xf2" "\xfc\xa3\x2e\xe5\xb9\xaf\xc3\x3c\x00\x21\x5f\x79\xfe\x9a\xdf\x6f\x5c\x4e" "\xaf\xff\xd3\xeb\xcf\x38\x1a\x88\x7a\x6b\xd7\x47\xf3\x92\x3d\x4e\xfe\x55" "\x80\xf4\x7a\xf7\xca\x89\xcf\xd3\x8f\x77\xa1\x1d\x52\x9a\x6f\x79\x6e\x7d" "\x4f\x59\xbe\xfc\x05\x76\x2e\xdf\x95\x33\xad\x2f\xff\x02\x42\x2e\xdf\x3b" "\x9a\xe6\xab\x4d\xbb\x5e\x2d\xc8\x57\x6b\xcc\xb7\xb2\x4b\xf9\x00\x00\x00" "\x60\x26\xfe\xf1\xb9\xc3\x99\x1f\xcd\x4d\xbf\xfe\x1f\x8c\x7a\x6b\x4b\xea" "\xd7\xaf\xef\xcc\xdd\xbf\xf4\x7a\x3d\xff\x83\xec\x44\x9a\xef\x9a\x2e\xe5" "\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x2b\x76\xed" "\x35\x46\xae\xb2\x7c\x00\xf8\x7b\x76\x66\x67\xe6\xbf\x5c\xba\x90\xb6\x4c" "\xe9\x6d\xd3\xf6\x4f\x21\x84\x5e\x68\x6a\x04\x15\x26\x4d\x24\xc1\x08\x5b" "\xc4\x96\x4b\x43\xd6\x0a\x0b\xdb\xb0\xb4\xd0\x6d\x81\x56\x4d\x2b\x18\xdb" "\x6c\x82\x41\x8b\x17\x6e\x1f\x2c\x48\x0c\x21\x02\x09\x49\x83\xae\x09\x06" "\x94\xf8\xc1\xc6\x06\x31\x5c\x5c\x17\x56\x02\x5f\x88\x20\xbd\x01\x45\xc7" "\xcc\xee\x39\xdd\xb3\x33\x3b\xec\x76\x94\xd6\xea\xef\x17\x72\xce\x3c\xe7" "\x3c\xcf\xfb\xbc\xe7\x90\x90\x3c\x67\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xfe\xf3\xfd\xf1\xfb\x7f\x7b\x2e\x1d\x0f\xf6\xf5\xb6\x77\x0d\x74" "\xf4\x87\x28\x54\xfe\x19\x53\x79\x0c\xc9\xbd\x4c\xae\x54\x6a\x6b\x60\x1f" "\xef\x3e\xbf\xfa\xea\xbf\xbe\xbc\x79\x57\x12\x57\x7a\xe7\xb3\x0d\x2c\x04" "\x00\x00\x00\xd4\x78\xe2\x82\x69\x67\xa6\xe3\x64\x0e\x4f\x46\xef\x28\x14" "\x42\x3e\xbb\x38\xe4\xa3\xdc\xa8\xba\x62\xfc\x1d\xa0\x18\xc7\x4d\xad\xc3" "\xe7\x59\x0b\xc2\xd2\xcc\xae\xff\xbf\x38\x2a\x35\x0d\xc5\xa7\x46\xa7\x8c" "\xaa\x2b\xc4\x75\x85\x38\xce\xc4\x75\x3d\x9b\x36\xdf\xb8\xba\xbb\xbb\x73" "\xfd\x27\xf8\xa3\xd2\xa7\xfa\x39\xaa\xf7\x13\x85\x30\xf4\xf9\x62\xd6\xc9" "\x61\xc5\x82\x6d\xcf\xee\x8e\xda\x86\x9f\xa3\x65\x9c\xe7\x68\x8a\xeb\x16" "\x6e\xb8\xe9\xe6\x85\x3d\x9b\x36\x9f\xb3\xe6\xa6\xd5\x37\x74\xde\xd0\xb9" "\x76\xc9\x92\xa5\xe7\x2d\x5e\xb2\xf8\xdc\xf3\x96\x2c\xbc\x7e\x4d\x77\xe7" "\xa2\xe1\x63\xc8\x8f\xb3\x5e\x08\xa1\x34\xfa\xbd\x8c\xf3\x2f\x12\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x82\x2d\xbf\xdd\xf5" "\xad\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\xdf\x12\x85\x10\xd5\xa9\x29\x8f" "\x21\xb9\x97\xc9\x95\x4a\x6d\x0d\xec\xe3\xd5\xfb\x1f\x9a\x91\x99\x76\xcf" "\x9e\x24\xae\xf4\xce\x67\x1b\x58\x08\x00\x00\x00\xa8\xf1\xab\x27\xa6\x5d" "\x98\x8e\x93\x39\x3c\x19\xbd\xa3\x50\x08\xf9\x6c\x2e\x64\xc2\xb4\xa1\x78" "\xce\x48\x6a\x36\x84\x72\x39\xb9\x3e\xaf\xea\xfa\xd1\xd8\x3b\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x74\xed\x3d\xd0\xfe\xe7" "\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\x7f\x42\x14\x42\x54\xa7\xa6\x3c\x86" "\xe4\x5e\x26\x57\x2a\xb5\x35\xb0\x8f\x95\x4b\x7e\x74\xe1\x17\xa6\xdf\x79" "\x5f\x12\x57\x7a\x17\x1b\x58\x07\x00\x00\x00\xa8\xf5\xe2\x99\xcd\x77\xa6" "\xe3\x64\x0e\x6f\x8a\xe3\x28\x14\x42\x31\xcc\x0d\xcd\xd1\xb4\x51\x75\xc9" "\xb7\x81\xd3\xab\xd6\xab\xce\x4b\xd6\x99\x39\xc1\xbc\xea\x6f\x07\xf5\xf2" "\xe6\x4e\x30\xef\x8c\x09\xe6\x9d\x35\x4e\xde\xa5\xf1\xf9\xf6\x00\x00\x00" "\x00\xc7\x9f\xab\x5a\x7f\xb7\x32\x1d\x27\xf3\x7f\x73\x1c\x47\xa1\x35\xe4" "\xb3\xc5\x90\x89\xe3\xf1\xe6\xf8\xe4\xbb\xc0\xec\xaa\xbc\xa4\x7e\xbc\xf9" "\x3e\xa9\x9f\x53\xa7\x7e\xbc\xb9\x3f\xa9\xaf\x9e\xfb\x01\x00\x00\xe0\x7f" "\xd9\x39\x6f\x3d\xf9\x51\x3a\xae\x9d\xff\x8b\x21\x9f\x2d\x1c\x9e\xbf\xc7" "\xfb\x7b\xfa\x25\xf1\xd9\xdf\xc9\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x7a\x7e" "\x7d\xe0\xe2\x5f\xa4\xe3\xc1\xbe\xde\xf6\xae\x81\x8e\xfe\x4c\x14\x42\x54" "\xa7\xa6\x3c\x86\xe4\x5e\x26\x57\x2a\xb5\x35\xb0\x8f\x15\xff\x78\x73\xfb" "\x1d\x97\xdf\x36\x39\x89\x2b\xbd\xf3\xd9\x06\x16\x02\x00\x00\x00\x6a\x3c" "\x96\xfb\xf4\x6d\xe9\x38\x99\xc3\x93\xd1\x3b\x0a\x85\x90\xcf\xb6\x84\xe6" "\x70\xc2\xd0\xdc\xff\x7a\x6e\xd2\xe4\x35\xdf\x9c\x3e\x33\x84\x50\x1a\x4a" "\xc8\xe5\xc2\xed\xab\x37\x6c\x58\x7f\xee\xf0\x31\xc9\xfb\x52\xb4\xf3\x73" "\xf3\x6f\xea\x3b\xbb\x26\x6f\xf1\xf0\xf1\xe8\x3f\x29\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xaf\x5a\xf2\xe8\x8e\x55\xe9\x78" "\xb0\xaf\xb7\xbd\x6b\xa0\xa3\xff\xff\xa2\x10\xa2\x3a\x35\xe5\x31\x24\xf7" "\x32\xb9\x52\xa9\xad\x81\x7d\xbc\xb8\xe3\xac\x43\xd7\xdc\xfd\x74\x5f\x12" "\x57\x7a\x17\x1b\x58\x07\x00\x00\x00\xa8\x35\xa3\xfb\x99\xbf\xa4\xe3\x64" "\x0e\x4f\x66\xff\x28\x14\x42\x31\xe4\x42\x2e\x4c\x1d\x8a\xd3\xb3\x7e\x45" "\x53\xd5\x7a\xf5\xbe\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xff\x3d\x7a\x36\x6d\xbe\x71\x75\x77\x77\xe7\xfa\x23\xfc" "\x11\x42\xd8\x7a\xe4\x55\x7e\xf8\xe1\xc7\xf1\xf1\xe3\x58\xff\x97\x09\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38\x56" "\x7e\xbe\xf6\x7b\xef\xa4\xe3\xc1\xbe\xde\xf6\xae\x81\x8e\xfe\x42\x14\x42" "\x54\xa7\xa6\x3c\x86\xe4\x5e\x26\x57\x2a\xb5\x35\xb0\x8f\x4f\x5d\x33\xeb" "\xbc\x99\xfb\x36\xde\x9a\xc4\x95\xde\xc5\x06\xd6\x01\x00\x00\x00\x6a\xad" "\x7a\x7b\xe3\xbe\x74\x9c\xcc\xe1\xc9\xec\x1f\x85\x42\x28\x86\xe6\xd0\x1c" "\xa6\xc4\x71\xad\xa1\xf9\xbf\xf5\x68\xec\x16\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x38\x96\x66\x87\x28\x94\x8f\xd0\x69\xcb\x8f" "\xf5\xae\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x4f\xc2\xfe\x97\x56\xdc\x9f\x8e\x07\xfb\x7a\xdb\xbb\x06\x3a" "\xfa\x4f\x8a\x42\x88\xea\xd4\x94\xc7\x90\xdc\xcb\xe4\x4a\xa5\xb6\x06\xf6" "\x71\xf5\x9e\x6f\x7f\xe5\xe6\x9d\xcf\x9d\x95\xc4\x95\xde\xf9\x6c\x03\x0b" "\x01\x00\x00\x00\x35\x9a\xdf\x7a\xe9\xab\xe9\x38\x99\xc3\x93\xd1\x3b\x0a" "\x85\x90\xcf\xce\x08\xf9\x30\x23\xbe\xd2\x3d\x7a\x81\x28\x93\x24\x8e\xf9" "\x5d\x60\xa4\xee\xeb\xa3\xca\x32\x13\xae\xdb\x5e\xb5\xe3\xe1\x9d\x15\xe2" "\xef\x10\x85\xc3\xfb\x0c\x43\x9f\x1d\x46\xea\xee\xfe\xd8\xba\x62\x7c\xb5" "\xa9\x75\x62\xef\x09\x00\x00\x00\x8e\x67\x53\xb6\x5f\xfa\x8d\x74\x9c\xcc" "\xff\xcd\x71\x1c\x85\xd6\x90\xcf\x4e\x49\xcd\xd5\x37\x8f\xaa\x6f\x99\xf0" "\x1c\x7f\xcf\xa8\xba\x93\x26\x5c\xf7\xd3\x51\x75\xad\xe3\xd4\xfd\x1b\x5e" "\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\xa0\xbb\x96\x3f\x7f\x5a" "\x3a\x1e\xec\xeb\x6d\xef\x1a\xe8\xe8\x8f\xa2\x10\xa2\x3a\x35\xe5\x31\x24" "\xf7\x32\xb9\x52\xa9\xad\x81\x7d\x94\x3a\xef\x7f\xe6\x91\x2b\xfb\xa6\x25" "\x71\xa5\x77\xb1\x81\x75\x00\x00\x00\x80\x5a\x97\xbf\x59\xf8\x6e\x3a\x4e" "\xe6\xf0\x64\xf6\x8f\x42\x21\x14\xc3\xcc\x70\x72\x98\x39\x34\xf7\x87\xd6" "\xd1\xf5\x49\xde\x09\xa5\xdf\xbf\xb2\x6c\xd7\xcb\x57\x85\xb0\x68\xea\x0b" "\xb3\xb2\x75\xfb\xfd\x70\xf7\x15\xef\x84\x83\x9f\x7d\xfd\xfd\xe1\xc3\x50" "\x18\x42\xd3\xe8\xa4\xa6\x10\x26\xc5\xfd\xa2\x3a\xfd\xae\xfd\xc3\xa3\x2b" "\x9e\xfd\x68\xdb\x83\x21\x2c\x9a\x92\x99\x51\xbf\xdf\x48\xab\x91\x43\x95" "\xa8\x54\x3e\x75\xcb\xbc\x47\xae\x9c\xba\x67\x59\xdd\x65\x00\x00\x00\xe0" "\xb8\x56\x78\x68\xff\x4f\xd2\x71\x32\xff\x27\x13\x75\x14\x5a\x43\x3e\xbb" "\xb6\xee\xfc\x9f\xe4\x1d\xd1\xfc\xdf\xde\x33\x7d\xcb\xe4\xf8\x18\x7f\x01" "\xa8\xaa\x68\x6a\x8d\xfb\x35\xd5\xe9\xd7\xfb\xde\x83\x6d\x07\x56\x7d\xf9" "\x40\x65\xfe\x7f\x61\x56\xe1\xf0\xff\x2b\x70\xe6\xdc\xd1\xf9\xe9\x56\xe9" "\x63\xd5\x37\x87\xa8\x54\x9e\xfd\xe4\x19\x2b\x0f\xed\xbf\xe5\xb2\xe1\x0b" "\x49\xff\x4c\x9d\xfe\xab\x9a\xe7\x9c\xb2\xe3\xed\xe9\x73\x92\xfe\x85\xf8" "\xfa\x75\x61\xa2\xfd\x43\x55\xff\x9e\x8e\x83\x73\x17\xb4\x9c\x78\xd1\xe8" "\xfe\x21\x84\xb6\xb1\xfa\xff\xf8\xe2\x27\x3e\x58\x71\xdf\x7b\x57\x0d\xf7" "\xaf\xff\xbe\x17\xfe\x69\xf0\xf3\x93\xc3\xba\x1f\x14\xba\x93\xe3\xf0\x95" "\xda\xfe\xcb\x1f\x58\xba\x63\x73\xee\x8d\x49\xa3\xfb\x47\x75\xfa\xcf\x7f" "\xee\xa9\x7d\x8f\xdf\xbe\xe2\xae\xea\xe7\x3f\x3d\x3b\x56\xff\xda\x63\x95" "\x4a\xd7\x6c\xb9\x77\xef\x1d\xf3\xb7\x2e\xeb\x3c\x3f\xd5\xbf\xa9\x4e\xff" "\x5b\xdb\x5e\x7d\xf7\x3b\x3f\xfb\xe5\xc3\x95\xfe\x7b\x67\xb7\x1c\xee\x3f" "\xff\x63\x9e\x7f\xdc\xfe\xbb\xe7\x6e\xdf\xbb\x73\xdb\xbd\xab\x46\xbf\xff" "\x52\x6d\xff\xad\xe1\xda\x73\xd6\x3f\xb5\x69\xcd\xd5\x77\x57\x3f\x7f\x4b" "\xd5\xc2\xe9\x37\x9f\x3e\xd6\xbe\xff\xd7\x66\x44\x97\x6c\xec\x79\x65\x7d" "\xf5\x2d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\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\xe3\x5b\xc7\xe3" "\x1f\x1e\x4c\xc7\x83\x7d\xbd\xed\x5d\x03\x1d\xfd\x4d\x51\x08\x51\x9d\x9a" "\xf2\x18\x92\x7b\x99\x5c\xa9\xd4\xd6\xc0\x3e\x7e\x93\xd9\xfd\xe1\xc3\xfb" "\x8a\x27\x26\x71\xa5\x77\xb1\x81\x75\x00\x00\x00\x80\x5a\x97\x2d\x7b\xed" "\x86\x90\x1a\xf5\x93\x39\x3c\xb9\x10\x85\x42\x28\x86\x5c\xc8\x85\x96\xa1" "\xb9\xff\xd4\x2d\xf3\x1e\xb9\x72\xea\x9e\x65\xa1\x35\xbe\x1f\x9f\xb3\xdd" "\xeb\x7a\x36\x9c\x7d\xfd\xba\x8d\x6b\xaf\x3b\x16\x8f\x01\x00\x00\x00\x7c" "\x8c\x9d\x17\x7c\xb0\x2c\x1d\x27\xf3\x7f\x36\x8e\xa3\xd0\x1a\xf2\xd9\x79" "\xa1\x39\x9e\xff\x97\x3f\xb0\x74\xc7\xe6\xdc\x1b\x93\x92\xf9\x3f\x84\x30" "\xf4\xe7\xfe\xec\xf5\x6b\xba\x3b\x17\x85\xc3\xdf\x09\x7a\x3a\x0e\xce\x5d" "\xd0\x72\xe2\x45\x49\x5e\x26\x3e\x17\x2a\x79\x0b\xae\x5d\xd7\x1d\x7f\x26" "\x48\xd6\x7d\xfa\xb1\xcf\x2c\x3e\xff\x8a\xcb\x0f\xe7\x37\xa5\xf3\xcf\x1d" "\xc9\x9b\xfd\xe4\x19\x2b\x0f\xed\xbf\xe5\xb2\x31\xf3\x96\x8c\xe4\xbd\x36" "\x23\xba\x64\x63\xcf\x2b\xeb\x53\xfb\x2c\x1d\xce\x5b\x3c\x92\xd7\xbb\xf7" "\x8e\xf9\x5b\x97\x75\x9e\x9f\x3c\x47\x14\x9f\x0b\xf1\xf3\x24\x79\xbb\xe7" "\x6e\xdf\xbb\x73\xdb\xbd\xab\x92\xbc\xa6\xf8\xdc\x12\xaf\x07\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x84\x70\xca\xfb\x7f\xff\x5a\x3a\x1e\xec\xeb" "\x6d\xef\x1a\xe8\xe8\x0f\x99\x10\xa2\x3a\x35\xe5\x31\x24\xf7\x32\xb9\x52" "\xa9\xad\x81\x7d\x7c\x78\xe1\x0b\x83\x87\x5a\xbf\xf8\x50\x12\x57\x7a\xe7" "\xb3\x0d\x2c\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xff\x64\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\xf5\x13\x1a\x57\x11\xc7\x01" "\x7c\x66\x77\x6b\xb6\xdd\x5a\x93\x52\x68\xa2\x35\xb4\xd8\x4b\x0b\x42\x21" "\x58\xec\x41\xcc\xc5\x3f\x48\xd5\x52\x51\xb4\x50\x8c\x62\xbc\xa8\x58\x10" "\xad\xd8\x83\x6d\x83\x41\xd4\x43\x41\xa1\xd2\x5e\xa4\x8a\x67\x25\x87\xa2" "\xf6\x10\x8b\xad\xa2\x20\x56\xf0\x20\x9e\x3c\xe8\x49\x25\x87\xa4\x48\x15" "\x95\x6c\x66\x36\xbb\xaf\x7d\x24\x3e\x88\x48\xf9\x7c\x60\x99\xfd\xcd\xee" "\x7c\xdf\xef\xcd\xce\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xe0\x7f\xed\x91\x1f\xef\x6a\x74\xd7\x7d\x8d\xc1\xf6\x78\xfe\x95\xe7" "\x2e\xde\x77\xfd\x1d\x5f\x1e\x1d\x9f\x7b\xf9\xee\x8f\x9f\x39\xb2\xf1\x93" "\x0d\x17\xfb\x27\x76\xdf\xfb\xda\xae\x3b\xbf\x1d\xfb\x62\x60\x74\x78\xeb" "\xf8\xce\x0f\xa7\xee\x9f\x9c\x38\x7b\xdb\x9f\x67\x8f\x9f\xd8\xbd\xe4\x85" "\x5e\x5c\x18\xb6\xa7\xb2\x19\x42\xfc\x35\x86\x30\xfc\xd3\xd4\xf1\xc9\x73" "\x5f\x6d\x9c\x9f\x8b\xf3\xd7\x8f\xfd\x87\xc3\xc0\x40\x5c\xff\xe9\x40\x2c" "\x24\xec\xb8\x14\x42\x78\xa2\xd3\x67\xef\x87\x53\x73\x23\x4f\xce\x8f\x47" "\x5e\xef\xeb\x99\xbf\xae\x10\x52\xbc\xaf\xd0\xaa\xe7\x7e\x16\xf4\xf7\xf6" "\xcb\xd5\xa5\x99\xce\xd9\xa1\x47\x1f\x3f\x35\xfd\xd4\xe8\xb9\xa9\xcd\x07" "\x46\x7e\x99\xbd\xe5\xd9\xc3\x8b\x5f\x89\xcd\xae\xf3\x14\xc2\xba\xb1\xee" "\xf5\xab\x42\x08\xab\xd3\x6b\x5e\x3e\x6d\x83\x79\x71\x1a\xf7\x84\x10\xd6" "\x74\xad\xbb\x75\x89\xbe\x6e\x5a\x66\xff\x37\x97\xd4\x9b\xd2\x78\x4d\x1a" "\x5b\x4b\xe4\xe4\xcf\xb7\x14\xea\xc6\x32\xfb\x68\x14\xc6\xbe\x65\xae\xab" "\xaa\xb6\xc2\xf9\x45\xc5\xfd\x2b\x3e\x8c\x56\x4a\xbe\xcf\x75\x69\x3c\x9d" "\xc6\xed\xff\x32\xa7\x9e\x5f\x31\xd4\x62\x68\x74\xda\x7f\x3a\x2e\x9e\x91" "\xd0\xf5\xbb\xc5\x10\xdb\x67\xbb\xd9\xa9\x6b\xed\x3a\x74\xea\x50\xac\x63" "\xa1\xae\x15\xea\xfa\xaa\xc2\x7d\xb5\xaf\x9b\x36\xb6\x1e\x63\xef\x7c\xfe" "\x5e\x61\x3e\x3f\x8e\x1b\x69\x7e\x4b\xf7\xb3\xfa\x0a\xf6\x96\xcc\x0f\xa5" "\xb1\x99\xfe\xa8\xbf\xe7\x3a\x14\xdf\x2c\x68\x5d\xf6\x66\xf1\x3e\x42\x57" "\x5f\x33\xff\xd5\xc1\x28\x51\x2b\xf9\xef\xe5\xf9\x4e\x7b\xe9\xc7\x68\xa5" "\xb9\x56\x5c\x7f\xd9\x9a\xbf\xaf\x20\x7f\x36\xf3\xf9\x63\xfb\x7e\xfb\xfe" "\xa5\xd3\xfd\x25\x7d\xc4\x0f\x62\xca\x8f\x95\xf2\x47\xc7\x4f\x4e\xbf\xff" "\xf0\x99\xa1\xc1\xb2\xfc\xb1\x5a\xca\xaf\x55\xca\x3f\x5f\xff\xfa\xd2\x7b" "\xb3\x83\x6b\x4b\xf3\x8f\xe5\xfc\x7a\xa5\xfc\x07\xff\xfa\xf9\xd5\xa3\x0f" "\x1c\xdc\x50\xba\x3f\x33\x79\x7f\x1a\x95\xf2\xb7\xbe\xb1\xf6\xd0\xdc\xc1" "\xbd\x7d\x9b\xcb\xf2\xdf\xc9\xf9\xcd\x4a\xf9\x3b\xf7\x0f\xef\xba\x71\xf6" "\xf9\x17\x4a\xfb\xdf\x91\xf7\x67\x75\xa5\xfc\xef\xde\xdc\xf6\xc7\xfe\x63" "\x1f\x9d\x29\xcd\x0f\x39\x7f\x4d\xa5\xfc\x1f\x4e\xbe\xbb\xa9\x3e\xf4\xd6" "\x85\xd2\xfc\xe9\xbc\x3f\xad\x4a\xf9\x0f\x8d\xbc\x7d\xfb\x3d\x37\x4c\x9c" "\x28\xdd\xff\x6f\x72\xfe\xb5\x95\xf2\xf7\x5d\x98\x1c\x3b\x70\xea\xb3\x6d" "\xa5\xe7\x73\x4f\xde\x9f\x7f\xd8\xaf\x63\x13\x08\x61\x28\x0c\xc0\x04\xae" "\xbc\x83\xc0\x2d\xe0\x26\x2e\xe0\x60\x8e\x60\x29\x38\x92\x1b\x38\x86\x36" "\x16\x46\x08\x82\x4d\x14\x0b\xf9\x3e\x48\x91\x26\xe9\xde\xfb\xff\x58\xf4" "\xfe\x5c\x8f\xd3\x12\x9b\xe1\x6c\x76\x86\xfe\xe9\x0d\x0b\xf0\x2e\xff\x94" "\xb1\xda\x74\x2f\xed\x99\x57\x65\x7d\xa1\xab\x3e\x5b\xe6\xfb\xa6\xf3\xbb" "\xf3\xa3\x83\x90\x75\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd8\xad\x01\x00\x00\xff\xff\xc1\x7a" "\x69\x65", 24014); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20005dc0, /*flags=*/0, /*opts=*/0x200001c0, /*chdir=*/1, /*size=*/0x5dce, /*img=*/0x20011940); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }