// https://syzkaller.appspot.com/bug?id=e7abc125add80b4d9aea2bae22cbbd5979668779 // 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void 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)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {13 13 77 c5 fc 35 d4 14 54 d5 d4 1d 29 ad 1a 60 29 59 81 46 // e6 be 16 6e 41 ad 0d bd 40 54 03 3c 9f 33 bb da 82 24 a2 f3 d7 72 e7 // 63 6e 48 b3 3c bf 70 83 72 e8 f1 b9 93 3e c5 12 77 43 be 22 06 20 9e // f0 2d f9 cb f2 f6 e8 80 d3 38 2f 00} (length 0x4e) // } // flags: mount_flags = 0x8 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6001 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6001) // } // ] // returns fd_dir memcpy((void*)0x200000000040, "jfs\000", 4); memcpy((void*)0x200000000380, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); memcpy( (void*)0x200000006400, "\x78\x9c\xec\xdd\xdb\x6f\x1c\x57\x1d\x07\xf0\xdf\x5e\xbc\xbe\x94\xa6\x51" "\x85\xaa\x10\xf1\xe0\xa6\x50\x5a\x4a\x73\x4f\xa0\xdc\x9a\xf2\xc0\x03\x20" "\x81\x84\xf2\x4c\x22\xd7\xad\x02\x69\x41\x49\x40\xb4\x8a\x14\x57\x79\x40" "\x3c\x70\xf9\x13\xe0\xa5\x2f\x3c\xf4\x1f\x29\x12\x7f\x01\xe2\x0f\x20\x92" "\xcd\x53\x25\x28\x83\xc6\x3e\x27\x19\xaf\xd7\x5e\x87\xd8\x3b\xbb\x3e\x9f" "\x8f\xb4\x99\xf9\xed\x99\xf1\x9e\xc9\xd7\xe3\xbd\xcc\xcc\x9e\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x7b\xdf\xfd\xf1\xb9\x4e" "\x44\x5c\xfb\x55\xba\xe3\x78\xc4\x67\xa2\x17\xd1\x8d\x58\xac\xeb\xe5\xa8" "\x67\xae\xe4\xe5\xfb\x11\x71\x22\x36\x9b\xe3\xb9\x88\xe8\xcd\x47\xd4\xeb" "\x6f\xfe\xf3\x4c\xc4\xc5\x88\xf8\xf8\x58\xc4\xfa\xc6\xdd\x95\xfa\xee\xf3" "\xfb\xec\xc7\xa5\xb3\x77\x6e\x7d\xfa\xfd\xef\xfc\xfd\x37\x7f\xb8\x7f\xe2" "\xa7\x6f\xfe\xe4\xc3\xe1\xf6\x1f\x7d\xf6\xc2\x47\xbf\xbd\x17\x71\xfc\x87" "\xaf\x7d\xf4\xe9\xbd\x83\xd9\x76\x00\x00\x00\x28\x45\x55\x55\x55\x27\xbd" "\xcd\x3f\x99\xde\xdf\x77\xdb\xee\x14\x00\x30\x11\xf9\xf9\xbf\x4a\xf2\xfd" "\x6a\xb5\x5a\xad\x3e\xd0\xfa\xf7\xdd\xe9\xea\x8f\xba\xd0\xba\xa9\x1a\xed" "\x5e\xb3\x88\x88\xb5\xe6\x3a\xf5\x6b\x06\x87\xe3\x01\x60\xc6\xac\xc5\x27" "\x6d\x77\x81\x16\xc9\xbf\x68\xfd\x88\x78\xaa\xed\x4e\x00\x53\xad\xd3\x76" "\x07\x38\x14\xeb\x1b\x77\x57\x3a\x29\xdf\x4e\xf3\xf9\x60\x79\xab\x3d\x7f" "\x4e\xb9\x2d\xff\xb5\xce\xc3\xeb\x3b\x76\x9b\x8e\x33\x7c\x8e\xc9\xa4\x7e" "\xbf\xee\x47\x2f\x9e\xdd\xa5\x3f\x8b\x13\xea\xc3\x34\xc9\xf9\x77\x87\xf3" "\xbf\xb6\xd5\x3e\x48\xcb\x1d\x76\xfe\x93\xb2\x5b\xfe\x83\xad\x4b\x9f\x8a" "\x93\xf3\xef\x0d\xe7\x3f\x64\x5b\xfe\x7f\x8c\x88\x99\xcd\xbf\x3b\x32\xff" "\x52\xe5\xfc\xfb\x8f\x93\xff\x5a\x6f\x86\xf7\x7f\xf9\x03\x00\x00\x00\x00" "\x70\xf4\xe5\xcf\xff\x8f\xb7\x7c\xfc\x77\xfe\xc9\x37\x65\x5f\xf6\x3a\xfe" "\xbb\x3c\xa1\x3e\x00\x00\x00\x00\x00\x00\x00\xc0\x41\x7b\xd2\xf1\xff\x1e" "\x32\xfe\x1f\x00\x00\x00\x4c\xad\xfa\xbd\x7a\xed\x4f\xc7\x1e\xdd\xb7\xdb" "\x77\xb1\xd5\xf7\x5f\xed\x44\x3c\x3d\xb4\x3c\x50\x98\x74\xb1\xcc\x52\xdb" "\xfd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x92\xf4\xb7\xce\xe1\xbd" "\xda\x89\x98\x8b\x88\xa7\x97\x96\xaa\xaa\xaa\x6f\x4d\xc3\xf5\xe3\x7a\xd2" "\xf5\x67\x5d\xe9\xdb\x0f\x25\x6b\xfb\x8f\x3c\x00\x00\x6c\xf9\xf8\x58\xba" "\x96\x3f\x0f\xc0\xd7\x89\x58\x88\x88\xab\xe9\xbb\xfe\xe6\x96\x96\x96\xaa" "\x6a\x61\x71\xa9\x5a\xaa\x16\xe7\xf3\xeb\xd9\xc1\xfc\x42\xb5\xd8\x78\x5f" "\x9b\xa7\xf5\x7d\xf3\x83\x7d\xbc\x20\xee\x0f\xaa\xfa\x87\x2d\x34\xd6\x6b" "\x1a\xf7\x7e\x79\x5c\xfb\xf0\xcf\xab\x1f\x6b\x50\xf5\xf6\xd1\xb1\xc9\x68" "\x39\x74\x00\x8a\xb7\xf5\x6c\xb4\xee\x19\xe9\x88\xa9\xaa\x67\xa2\xed\x57" "\x39\xcc\x06\xfb\xff\xd1\x63\xff\x67\x3f\xda\xfe\x3d\x05\x00\x00\x00\x0e" "\x5f\x55\x55\x55\x27\x7d\x9d\xf7\xc9\x74\xcc\xbf\xdb\x76\xa7\x00\x80\x49" "\x58\xc8\xcf\xff\xc3\xc7\x05\xd4\x6a\xb5\x5a\xad\x56\x1f\xbd\xba\xa9\x1a" "\xed\x5e\xb3\x88\x88\xb5\xe6\x3a\xf5\x6b\x06\xc3\xf1\x03\xc0\x8c\x59\x8b" "\x4f\xda\xee\x02\x2d\x92\x7f\xd1\xfa\x11\x71\xa2\xed\x4e\x00\x53\xad\xd3" "\x76\x07\x38\x14\xeb\x1b\x77\x57\x3a\x29\xdf\x4e\xf3\xf9\x20\x8d\xef\x9e" "\xcf\x05\xd9\x96\xff\x5a\x67\x73\xbd\xbc\xfe\xa8\xe9\x38\xc3\xe7\x98\x4c" "\xea\xf7\xeb\x7e\xf4\xe2\xd9\x5d\xfa\xf3\xdc\x84\xfa\x30\x4d\x72\xfe\xdd" "\xe1\xfc\xaf\x6d\xb5\x0f\xd2\x72\x87\x9d\xff\xa4\xec\x96\x7f\xbd\x9d\xc7" "\x5b\xe8\x4f\xdb\x72\xfe\xbd\xe1\xfc\x87\x1c\x9d\xfc\xbb\x23\xf3\x2f\x55" "\xce\xbf\xff\x58\xf9\xf7\xe4\x0f\x00\x00\x00\x00\x00\x53\x2c\x7f\xfe\x7f" "\xbc\xdc\xe3\xbf\xbd\xdc\x9f\xe5\x09\xf5\x01\x00\x00\x00\x00\x00\x00\x00" "\x0e\xda\xfa\xc6\xdd\x95\x7c\xdd\x6b\x3e\xfe\xff\xf9\x11\xcb\x75\x9a\x73" "\xae\xff\x3c\x32\x72\xfe\x9d\x7d\xe7\xef\xfa\xdf\xa3\x24\xe7\xdf\x1d\xce" "\x7f\xe8\x84\x9c\x5e\x63\xfe\xc1\x1b\x8f\xf2\xff\xd7\xc6\xdd\x95\x0f\xef" "\xfc\xf3\x73\x79\x3a\xf5\xf9\xcf\xf5\x06\xf5\x63\xcf\x75\xba\xbd\x7e\x3a" "\xe7\xa7\x9a\x7b\x2b\x6e\xc4\xcd\x58\x8d\xb3\x3b\x96\xef\x6f\x6b\x3f\xb7" "\xa3\x7d\x6e\x5b\xfb\xf9\x31\xed\x17\x76\xb4\x0f\xea\xf6\xc5\xdc\x7e\x3a" "\x56\xe2\xe7\x71\x33\xde\x7c\xd8\x3e\x3f\xe6\xc4\xa8\x85\x31\xed\xd5\x98" "\xf6\x9c\x7f\xcf\xfe\x5f\xa4\x9c\x7f\xbf\x71\xab\xf3\x5f\x4a\xed\x9d\xa1" "\x69\xed\xc1\x07\xdd\x1d\xfb\x7d\x73\x3a\xea\x71\xae\xfc\xe5\x3f\x2f\xee" "\xdc\xbb\x26\xef\x7e\xf4\x1e\x6e\x5b\x53\xbd\x7d\xa7\x5a\xe8\xcf\xe6\xff" "\xc9\x53\x83\xf8\xe5\xed\xd5\x5b\xa7\x7f\x7d\xfd\xce\x9d\x5b\xe7\x22\x4d" "\xb6\xdd\x7b\x3e\xd2\xe4\x80\xe5\xfc\xe7\xd2\x2d\xe7\xff\xd2\x0b\x5b\xed" "\xf9\xef\x7e\x73\x7f\x7d\xf0\xc1\xe0\xb1\xf3\x9f\x16\xf7\xa3\xbf\x6b\xfe" "\x2f\x34\xe6\xeb\xed\x7d\x79\xc2\x7d\x6b\x43\xce\x7f\x90\x6e\x39\xff\xfc" "\x0c\x34\x7a\xff\x9f\xe5\xfc\x77\xdf\xff\x5f\x69\xa1\x3f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xb0\x97\xaa\xaa\x36\x2f\x11\xbd\x12\x11" "\x97\xd3\xf5\x3f\x6d\x5d\x9b\x09\x00\x4c\xd4\xef\x7e\x90\x66\xaa\x24\xd4" "\x6a\xb5\x5a\xad\x56\x1f\xd9\xba\xa9\x1a\xed\xf5\x66\x11\x0b\x8d\x15\x7c" "\x50\x00\x00\xb3\xea\xbf\x11\xf1\x8f\xb6\x3b\x41\x6b\xe4\x5f\xb0\xfc\x7d" "\x7f\xf5\xf4\x0b\x6d\x77\x06\x98\xa8\xdb\xef\xbd\xff\xb3\xeb\x37\x6f\xae" "\xde\xba\xdd\x76\x4f\x00\x00\x00\x00\x00\x00\x00\x80\xff\x57\x1e\xff\x73" "\xb9\x31\xfe\xf3\xe6\x79\x40\x43\xe3\x46\x6f\x1b\xff\xf5\x8d\x58\x9e\xd9" "\xf1\x3f\xbb\x83\xde\xe6\x58\xe7\x69\x83\x9e\x8f\xbd\xc7\xff\x3e\x15\x7b" "\x8f\xff\xdd\x1f\xf3\x78\x73\x63\xda\x07\x63\xda\xe7\xc7\xb4\x2f\x8c\x69" "\x1f\x79\xa1\x47\x43\xce\xff\xf9\x94\x71\xce\xff\x64\xda\xb0\x92\xc6\x7f" "\x7d\xa9\x85\xfe\xb4\x2d\xe7\x7f\x2a\x8d\xf5\x9c\xf3\xff\xd2\xd0\x72\xcd" "\xfc\xab\x3f\xcf\x72\xfe\xdd\x6d\xf9\x9f\xb9\xf3\xce\x2f\xce\xdc\x7e\xef" "\xfd\x57\x6f\xbc\x73\xfd\xed\xd5\xb7\x57\xdf\x3d\x77\xf6\xf2\xc5\x0b\x97" "\x2e\x5e\xb8\x74\xe9\xcc\x5b\x37\x6e\xae\x9e\xdd\xfa\xb7\xc5\x1e\x1f\xae" "\x9c\x7f\x1e\xfb\xda\x79\xa0\x65\xc9\xf9\xe7\xcc\xe5\x5f\x96\x9c\xff\x17" "\x53\x2d\xff\xb2\xe4\xfc\x5f\x4c\xb5\xfc\xcb\x92\xf3\xcf\xaf\xf7\xe4\x5f" "\x96\x9c\x7f\x7e\xef\x23\xff\xb2\xe4\xfc\x5f\x4e\xb5\xfc\xcb\x92\xf3\xff" "\x72\xaa\xe5\x5f\x96\x9c\xff\x2b\xa9\x96\x7f\x59\x72\xfe\x5f\x49\xb5\xfc" "\xcb\x92\xf3\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\x74\xaa\xe5\x5f\x96\x9c\xff" "\x99\x54\xcb\xbf\x2c\x39\xff\x7c\x84\x4b\xfe\x65\xc9\xf9\xe7\x33\x1b\xe4" "\x5f\x96\x9c\xff\xf9\x54\xcb\xbf\x2c\x39\xff\x0b\xa9\x96\x7f\x59\x72\xfe" "\x17\x53\x2d\xff\xb2\xe4\xfc\x2f\xa5\x5a\xfe\x65\xc9\xf9\x5f\x4e\xb5\xfc" "\xcb\x92\xf3\xff\x6a\xaa\xe5\x5f\x96\x9c\xff\xd7\x52\x2d\xff\xb2\xe4\xfc" "\x5f\x4b\xb5\xfc\xcb\x92\xf3\xff\x7a\xaa\xe5\x5f\x96\x9c\xff\x37\x52\x2d" "\xff\xb2\xe4\xfc\xbf\x99\x6a\xf9\x97\x25\xe7\xff\xad\x54\xcb\xbf\x2c\x39" "\xff\x6f\xa7\x5a\xfe\x65\xc9\xf9\xbf\x9e\x6a\xf9\x97\xe5\xd1\xf7\xff\x9b" "\x99\xf0\xcc\xbf\xff\x1a\x31\x05\xdd\x30\x53\xea\xcc\xbb\x7f\xdb\x6b\x99" "\xb6\xff\x32\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc3\x26\x71\xa6" "\x71\xdb\xdb\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\x63\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\x70\x20\x00\x00" "\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8" "\xbb\xbb\x18\xb9\xce\xfa\x7e\xe0\xcf\xbe\xd9\x6b\xc7\x10\xff\x49\x08\x21" "\x18\xb2\x76\x9c\x60\xc8\xc6\xbb\xeb\xb7\xc4\x04\x83\x79\xfd\xa7\xa1\xa5" "\x69\x20\xb4\xb4\x50\xc7\xd8\xeb\x17\xf0\x5b\xbd\x6b\x48\x10\x6a\x96\x26" "\x6d\x83\x88\xd4\x48\xed\x45\x5a\xa9\x14\x10\x45\x48\x6d\x95\x08\x21\x95" "\x4a\x29\x8a\x54\xa4\xf6\xae\xb9\x02\xe5\x06\xb5\x52\x2e\x2c\x35\xa9\x4c" "\x04\x95\xa8\x92\x6c\x75\x66\x9e\xe7\xd9\x99\xd9\xd9\x99\xb5\xbd\x6b\xcf" "\x9c\xf3\xf9\x44\xf1\xcf\x3b\x73\x66\xe6\x99\x33\x67\x66\xf7\xbb\xd6\x77" "\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x1a\x6d\xfe\xd0\xf4\x9f\x0e\x84\x10\x8a\xff\x6b\x7f\x6c\x0c" "\x61\x43\xf1\xf7\x75\x61\x7f\xf1\xe5\xdc\x9e\xab\xbd\x42\x00\x00\x00\xe0" "\x72\xbd\x56\xfb\xf3\xef\xaf\xcd\x27\xec\x5f\xc6\x85\x1a\xb6\xf9\xd7\x77" "\xfc\xfb\x0f\xe6\xe7\xe7\xe7\xc3\xe7\x5e\x39\xff\xfa\x9f\xcf\xcf\xe7\x33" "\xc6\x42\x18\x5a\x1b\x42\xed\xbc\xe4\xdf\x7e\xf5\xcb\xf9\xc6\x6d\xa2\x47" "\xc3\xe8\xc0\x60\xc3\xd7\x83\x5d\x6e\x7e\xa8\xcb\xf9\xc3\x5d\xce\x1f\xe9" "\x72\xfe\x9a\x2e\xe7\xaf\xed\x72\xfe\x68\x97\xf3\x17\xed\x80\x45\xd6\xd5" "\x7f\x1f\x53\xbb\xb2\xad\xb5\xbf\x6e\xac\xef\xd2\x70\x7d\x18\xa9\x9d\xb7" "\xb5\xcd\xa5\x1e\x1d\x58\x3b\x38\x98\x7e\x97\x53\x33\x50\xbb\xcc\xfc\xc8" "\x91\x70\x3c\x9c\x08\xd3\x61\x72\xd1\x65\x06\x6a\xff\x85\xf0\xec\xe6\xe2" "\xb6\xee\x09\xe9\xb6\x06\x1b\x6e\x6b\x53\x08\xe1\xc2\xcf\xbf\x72\x28\xad" "\x61\x20\xee\xe3\xad\xa1\xe9\xc6\x6a\x1a\x1f\xbb\x97\x3f\x10\xc6\x5e\xf9" "\xf9\x57\x0e\x7d\x77\xf6\xa5\xb7\xb6\x9b\x5d\x77\xc3\xa2\x95\x86\xb0\x6d" "\x4b\xb1\xce\xc7\x42\x58\xf8\x75\x55\x18\x08\x6b\xf3\x3e\x49\xeb\x1c\x6c" "\x58\xe7\xa6\x36\xeb\x1c\x6a\x5a\xe7\x40\xed\x72\xc5\xdf\x5b\xd7\x79\x61" "\x99\xeb\x4c\xf7\x7b\x34\xae\xf3\xf9\x0e\xeb\xdc\x14\x4f\x7b\xe8\x96\x10" "\xc2\x5c\x58\x72\x9b\x56\x8f\x86\xc1\xb0\xbe\xe5\x56\xf3\xfe\x1e\xad\x1f" "\x11\xc5\x75\x14\x0f\xe5\x9b\xc2\xf0\x45\x1d\x27\x9b\x97\x71\x9c\x14\x97" "\x79\xf1\x96\xe6\xe3\xa4\xf5\x98\x4c\xfb\x7f\x73\xdc\x27\xc3\x4b\xac\xa1" "\xf1\xe1\x78\xf9\xab\x6b\x16\xed\xf7\x4b\x3d\x4e\x8a\x7b\xdd\x0b\xc7\x6a" "\x71\xdd\xf7\x15\x37\x3a\x3a\xda\xf8\xab\xd5\xa6\x63\xb5\xd8\xe6\x2b\xb7" "\x2e\x7d\x0c\xb4\x7d\xec\xda\x1c\x03\xf9\x58\x6e\x38\x06\xb6\x74\x3b\x06" "\x06\xd7\x0c\xd5\x8e\x81\xc1\x85\x35\x6f\x69\x3a\x06\xa6\x16\x5d\x66\x30" "\x0c\xd4\x6e\xeb\xfc\xad\x9d\x8f\x81\x89\xd9\x93\x67\x26\x66\x1e\xfe\xf2" "\x1d\xc7\x4f\x1e\x3c\x3a\x7d\x74\xfa\xd4\xd4\xe4\x9e\x5d\x3b\x77\xef\xda" "\xb9\x7b\xf7\xc4\x91\xe3\x27\xa6\x27\xeb\x7f\x5e\xdc\x2e\xed\x23\xeb\xc3" "\x60\x3e\x06\xb7\xc4\xd7\x9a\x74\x0c\xbe\xb3\x65\xdb\xc6\x43\x72\xfe\x5b" "\x2b\xf7\x3c\x18\xed\x91\xe7\x41\x71\xdf\x3f\x79\x5b\xb1\xa0\x0d\x83\x61" "\x89\x63\xbc\xd8\xe6\xb1\x6d\x97\xff\x3c\xc8\xdf\xf7\x1b\x9e\x07\xc3\x0d" "\xcf\x83\xb6\xaf\xa9\x6d\x9e\x07\xc3\xcb\x78\x1e\x14\xdb\x5c\xd8\xb6\xbc" "\xef\x99\xc3\x0d\xff\xb7\x5b\xc3\x6a\xbd\x16\x6e\x6c\x38\x06\xae\xe6\xf7" "\xc3\xe2\x36\x3f\xf3\xae\xa5\x5f\x0b\x37\xc5\x75\x3d\xfe\xee\x8b\xfd\x7e" "\x38\xb4\xe8\x18\x48\x77\x6b\x20\x3e\xf7\x8a\x53\xf2\xcf\x7b\xa3\x77\xc5" "\xfd\xb2\xf8\xb8\xb8\xa9\x38\xe3\x9a\x35\xe1\xdc\xcc\xf4\xd9\xed\x0f\x1d" "\x9c\x9d\x3d\x3b\x15\xe2\xb8\x22\xae\x6b\x78\xac\x5a\x8f\x97\xf5\x0d\xf7" "\x29\x2c\x3a\x5e\x06\x2f\xfa\x78\xd9\xff\x77\xaf\xde\x76\x53\x9b\xd3\x37" "\xc6\x7d\x35\x7a\x7b\xe7\xc7\xaa\xd8\x66\xd7\x78\xe7\xc7\xaa\xf6\xea\xde" "\xbc\x3f\xd7\x84\xfa\xfe\x6c\x3a\x75\x47\x88\x63\x85\x5d\xe9\xfd\xd9\xee" "\xbb\x59\xb1\x3f\x73\x96\xe8\xb0\x3f\x8b\x6d\x1e\xbb\xe3\xf2\x7f\x16\xcc" "\xb9\xa4\xe1\xf5\x6f\xa4\xdb\xeb\xdf\xd0\xc8\x70\xfd\xf5\x6f\x28\xef\x8d" "\x91\xa6\xd7\xbf\xc5\x0f\xcd\x50\x6d\x65\x21\x5c\xb8\x63\x79\xaf\x7f\x23" "\xf1\xff\x2b\xfd\xfa\x77\x7d\x8f\xbc\xfe\x15\xfb\xea\x33\xdb\x3b\x1f\x03" "\xc5\x36\x8f\x4f\x5c\xec\x31\x30\xdc\xf1\xf5\xef\x96\x38\x07\xe2\x7a\xde" "\x15\x13\xc3\x68\x43\xee\x7f\xbd\x76\xfe\x5c\xfd\x30\x6d\x78\x2c\xbb\x1e" "\x37\xc3\xc3\x23\xf1\xb8\x19\x4e\xb7\xd8\x7c\xdc\xec\x5c\x74\x99\xe2\xda" "\x8a\xdb\xde\x36\x79\x69\xc7\xcd\xb6\x5b\x9a\x1f\xab\xa6\x9f\x5b\x4a\x78" "\xdc\x14\xfb\xea\x2f\x26\x3b\x1f\x37\xc5\x36\xcf\x4d\x5d\xfe\x6b\xc7\xba" "\xf4\xd7\x86\xd7\x8e\x35\xdd\x8e\x81\x91\xa1\x35\xc5\x7a\x47\xf2\x41\x50" "\x7f\xbd\x9b\x5f\x97\x8e\x81\xed\xe1\x50\x38\x1d\x4e\x84\xc3\xf9\x32\xc5" "\xa3\x5c\xdc\xd6\xf8\x8e\xe5\x1d\x03\x6b\xe2\xff\x57\xfa\xb5\xe3\xc6\x1e" "\x39\x06\x8a\x7d\xf5\xd4\x8e\xce\xc7\x40\xb1\xcd\x8f\x77\xae\xec\xcf\x4e" "\xdb\xe2\x29\x79\x9b\x86\x9f\x9d\x5a\x7f\xbf\xb0\x54\xe6\xbf\x69\x78\xe1" "\xfa\x5a\x77\xdb\x4a\x67\xfe\x62\x9d\x1f\xfe\xc9\xc7\xf3\x69\xed\x32\x44" "\xb1\xcd\x4b\xbb\x2e\x36\x67\x74\xde\x4f\xb7\xc7\x53\xae\x69\xb3\x9f\x5a" "\x9f\x3f\x4b\x1d\xd3\x87\xc3\x95\xd9\x4f\x37\xc6\x75\x9e\xd8\xdd\xf9\x77" "\x53\xc5\x36\xd7\xef\x59\xe6\xf1\xb4\x3f\x84\xf0\xc2\xd4\x0b\xb5\xdf\x77" "\xc5\xdf\xef\x7e\xff\xdc\x4f\x7e\xd0\xf4\x7b\xdf\x76\xbf\x53\x7e\x61\xea" "\x85\x7b\x27\xee\xff\xe9\xc5\xac\x1f\x00\x80\x4b\xf7\x7a\xed\xcf\xb9\x35" "\xf5\x9f\x35\x1b\xfe\xc5\x7a\x39\xff\xfe\x0f\x00\x00\x00\xf4\x85\x94\xfb" "\x07\xe3\xcc\xe4\x7f\x00\x00\x00\x28\x8d\x94\xfb\x87\xe2\xcc\xe4\x7f\x00" "\x00\x00\x28\x8d\x94\xfb\x87\xe3\xcc\x2a\x92\xff\x8f\xdd\xb5\xf7\xe9\xd7" "\x1e\x09\xf9\xdd\x00\xe7\xa3\x74\x7e\xda\x0d\xf7\xbd\xaf\xbe\x5d\xea\x78" "\xcf\xc5\xaf\xc7\xe6\x17\x14\xa7\x7f\xf0\x3b\x23\x4f\x7f\xed\x91\xe5\xdd" "\xf6\x60\x08\xe1\xd5\x7b\xdf\xd6\x76\xfb\x63\xef\x4b\xeb\xaa\x3b\x93\xd6" "\xf9\x9e\xe6\xd3\x17\xb9\xf1\xe6\x65\xdd\xfe\x83\x0f\x2c\x6c\xd7\xf8\xfe" "\x09\x17\xf6\xd6\xaf\x3f\xdd\x9f\xe5\x1e\x06\xa9\xab\xfc\xec\xc4\x8e\xda" "\xf5\x8e\x3d\x3c\x55\x9b\xcf\xdd\x1b\x6a\xf3\xfe\xb9\xc7\x1f\xad\x5f\x7f" "\xfd\xeb\xb4\xfd\xf9\x9d\xf5\xed\xff\x3a\xbe\x69\xc9\xfe\x23\x03\x4d\x97" "\xdf\x16\xd7\xb3\x35\xce\xb1\xb0\xae\xf6\x9e\x32\xf7\xed\x5f\xd8\x0f\xc5" "\x4c\x97\x7b\x7a\xd3\x3b\xfe\xe5\xba\x4f\x2d\xdc\x5e\xba\xdc\xc0\x96\x37" "\xd6\xee\xe6\x53\x7f\x58\xbf\xde\xf4\x1e\x51\x4f\x5e\x57\xdf\x3e\xdd\xef" "\xa5\xd6\xff\xcf\x5f\xff\xde\xd3\xc5\xf6\x0f\xdd\xda\x7e\xfd\x8f\x0c\xb6" "\x5f\xff\xf9\x78\xbd\x2f\xc6\xf9\xab\x7d\xf5\xed\x1b\xf7\xf9\xd7\x1a\xd6" "\xff\xc7\x71\xfd\xe9\xf6\xd2\xe5\xb6\x7f\xfb\x47\x6d\xd7\xff\xcc\x5b\xea" "\xdb\x3f\x13\x8f\x8b\x6f\xc6\xd9\xba\xfe\x0f\xfc\xd9\xdb\x5f\x6b\xf7\x78" "\xa5\xdb\xd9\x7f\x77\xfd\x72\xe9\xf6\x27\xff\x67\x57\xed\x72\xe9\xfa\xd2" "\xf5\xb7\xae\x7f\xf4\x91\xa9\xa6\xfd\xd1\x7a\xfd\xcf\xbd\x52\xbf\x9e\x7d" "\x5f\xfc\xc5\x50\xe3\xf6\xe9\xf4\x74\x3b\xc9\x83\x77\x37\x1f\xdf\x03\xf1" "\xf1\x6d\xea\x91\x87\x10\xbe\xf7\x27\xa1\x69\x3f\x87\xf7\xd6\x2f\xf7\x4f" "\x2d\xeb\x4f\xd7\x77\xe6\xee\xf6\xeb\xbf\xbd\x65\x9d\x67\x06\x6e\xae\x5d" "\x7e\xe1\xfe\x6c\x6c\xba\x5f\xdf\xf8\xdb\x1d\x6d\xef\x6f\x5a\xcf\xfe\x7f" "\xd8\xd8\x74\x7f\x9e\xfc\x48\xdc\x7f\xaf\x4c\xfc\xb8\xb8\xde\xf3\xf7\xc7" "\xe3\x31\x9e\xff\xbf\xcf\xd7\xaf\xaf\xf5\xbd\x4c\x9f\xf9\x48\xf3\xeb\x4d" "\xda\xfe\x9b\x1b\xeb\xcf\xdb\x74\x7d\x13\x2d\xeb\x7f\xb2\x65\xfd\x73\x37" "\x17\xfb\xae\xfb\xfa\xef\x79\xa5\xbe\xfe\x67\xde\xbf\xb6\x69\xfd\xfb\x3f" "\x1a\x8f\xa7\x7b\xea\xb3\xdb\xfa\x8f\xfe\xcd\xb5\x4d\x97\xff\xd6\x77\xeb" "\x8f\xc7\xd9\x2f\x8d\x9f\x3a\x3d\x73\xee\xf8\xe1\x86\xbd\xda\xf8\x3c\x5e" "\x3b\xba\x6e\xfd\x35\x1b\xde\xf0\xc6\x6b\xe3\x6b\x69\xeb\xd7\x07\x4e\xcf" "\x1e\x9b\x3e\x3b\x36\x39\x36\x19\xc2\x58\x1f\xbe\x65\xe0\x6a\xaf\xff\xdb" "\x71\xfe\x77\x7d\xcc\xad\xfc\x2d\xd4\xfd\xf4\x17\xf5\xe3\xee\x89\x8f\xd5" "\xbf\x6f\xbd\xf3\x97\xf5\xaf\x9f\x8c\xa7\x3f\x18\x1f\xcf\xf4\xfd\xf1\x1b" "\x7f\x39\xd2\x74\xbc\xb6\x3e\xee\x73\xef\xaf\xcf\xcb\x5d\xff\xbb\xe3\x3a" "\x96\xeb\x2d\x5f\xff\xcf\x9b\x97\xb5\xe1\xf9\xcf\x3e\x7b\xee\x1f\xff\xe8" "\xa5\xd6\x9f\x0b\xd2\xfd\x39\xf3\xe6\xd1\xda\xfd\x7b\x6a\xf3\x0d\xb5\xf3" "\x06\x9e\xab\x9f\xdf\xfa\x7a\xd5\xcd\x7f\xbc\xb9\xf9\x79\xfd\xb3\xe1\xc9" "\xda\xfc\x61\xdc\xaf\xf3\xf1\x9d\x99\xb7\xdc\x50\xbf\xbd\xd6\xeb\x4f\xef" "\x4d\xf2\xc4\x27\xea\xcf\xdf\xf4\x93\x5c\xba\x7c\x68\x79\x3f\x91\x8d\x43" "\xcd\xf7\xe3\x72\xd7\xff\xb3\xf8\x73\xcc\x8f\x6e\x6c\x7e\xfd\x4b\xc7\xc7" "\x0f\x1f\x69\x79\x37\xe7\x8d\x61\xa0\x58\xc2\x5c\x7c\x7d\x08\x73\xf5\xf3" "\xd3\x56\x69\x7f\x3f\x71\xe1\x86\xb6\xb7\x97\xde\x87\x27\xcc\xbd\xf5\x62" "\x96\xb9\xa4\x99\x87\x67\x26\x4e\x1c\x3f\x75\xee\xa1\x89\xd9\xe9\x99\xd9" "\x89\x99\x87\xbf\x7c\xe0\xe4\xe9\x73\xa7\x66\x0f\xd4\xde\xbb\xf4\xc0\xe7" "\xbb\x5d\x7e\xe1\xf9\xbd\xbe\xf6\xfc\x3e\x3c\xbd\x67\x57\xa8\x3d\xdb\x4f" "\xd7\xc7\x2a\xbb\xda\xeb\x3f\xf3\xc0\xa1\xc3\x77\x4e\xde\x76\x78\xfa\xc8" "\xc1\x73\x47\x66\x1f\x38\x33\x7d\xf6\xe8\xa1\x99\x99\x43\xd3\x87\x67\x6e" "\x3b\x78\xe4\xc8\xf4\x97\xba\x5d\xfe\xf8\xe1\x7d\x53\x3b\xf6\xee\xbc\x73" "\xc7\xf8\xd1\xe3\x87\xf7\xdd\xb5\x77\xef\xce\xbd\xe3\xc7\x4f\x9d\x2e\x96" "\x51\x5f\x54\x17\x7b\x26\xbf\x30\x7e\xea\xec\x81\xda\x45\x66\xf6\xed\xda" "\x3b\xb5\x7b\xf7\xae\xc9\xf1\x93\xa7\x0f\x4f\xef\xbb\x73\x72\x72\xfc\x5c" "\xb7\xcb\xd7\xbe\x37\x8d\x17\x97\xfe\xe2\xf8\xd9\xe9\x13\x07\x67\x8f\x9f" "\x9c\x1e\x9f\x39\xfe\xe5\xe9\x7d\x53\x7b\xf7\xec\xd9\xd1\xf5\xdd\x1f\x4f" "\x9e\x39\x32\x33\x36\x71\xf6\xdc\xa9\x89\x73\x33\xd3\x67\x27\xea\xf7\x65" "\x6c\xb6\x76\x72\xf1\xbd\xaf\xdb\xe5\xa9\x86\x99\xd3\xf1\xf5\xae\xc5\x40" "\xfc\xe9\xfc\xd3\xb7\xef\xc9\xef\x8f\x5b\xf8\xce\x57\x97\xbc\xaa\xfa\x26" "\xcd\x3f\x9e\x86\x97\xe3\x7b\x41\xa5\xef\x6f\xdd\xbe\x4e\xb9\x7f\x24\xce" "\xac\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe5\xfe\xf8\xc6\xff\x0b\x67\xc8\xff" "\x00\x00\x00\x50\x1a\x29\xf7\xaf\x8d\x33\x93\xff\x01\x00\x00\xa0\x34\x52" "\xee\xaf\x27\xff\xd1\xfc\xf1\xef\x55\xc9\xff\x2b\xd5\xff\xff\xaa\xfe\x7f" "\xcd\xea\xf7\xff\x83\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x5f\xd1\xff\xd7\xff" "\xef\x44\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x77\xbd\xd6\xff\x8f" "\xb9\x3f\xac\x0b\xc1\xbf\xff\x03\x00\x00\x40\x49\xa5\xdc\xbf\x3e\xce\x4c" "\xfe\x07\x00\x00\x80\xd2\x48\xb9\xff\x9a\x38\x33\xf9\x1f\x00\x00\x00\x4a" "\x23\xe5\xfe\x0d\x71\x66\x15\xc9\xff\x3e\xff\x5f\xff\x5f\xff\xbf\x53\xff" "\x3f\x6d\xab\xff\x1f\xf4\xff\x3b\xac\x3f\x7d\xef\x58\xf5\xfe\xff\xd6\xff" "\xd2\xff\x5f\x44\xff\x5f\xff\x3f\xe8\xff\x5f\xb2\xab\xdd\x9f\xef\xf7\xf5" "\xf7\x60\xff\x7f\x9d\xfe\x3f\xbd\xa6\xd7\xfa\xff\x29\xf7\xbf\x21\xce\xac" "\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe5\xfe\x37\xc6\x99\xc9\xff\x00\x00\x00" "\x50\x1a\x29\xf7\x5f\x1b\x67\x26\xff\x03\x00\x00\x40\x69\xa4\xdc\xbf\x31" "\xce\xac\x22\xf9\x5f\xff\x5f\xff\x5f\xff\xdf\xe7\xff\xeb\xff\xfb\xfc\xff" "\xd5\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\xbf\x07\xfb\xff\x3e" "\xff\x9f\x9e\xd3\x6b\xfd\xff\x94\xfb\xff\x5f\x9c\x59\x45\xf2\x3f\x00\x00" "\x00\x54\x41\xca\xfd\x6f\x8a\x33\x93\xff\x01\x00\x00\xa0\x34\x52\xee\xbf" "\x2e\xce\x4c\xfe\x07\x00\x00\x80\xd2\x48\xb9\xff\xfa\x38\xb3\x8a\xe4\xff" "\x6a\xf6\xff\x5f\x0c\x21\xe8\xff\x07\xfd\x7f\xfd\xff\x96\x75\xea\xff\xeb" "\xff\xaf\x06\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa" "\xff\x74\xd7\x6b\xfd\xff\x94\xfb\xdf\x1c\x67\x56\x91\xfc\x0f\x00\x00\x00" "\x55\x90\x72\xff\x0d\x71\x66\xf2\x3f\x00\x00\x00\x94\x46\xca\xfd\x6f\x89" "\x33\x93\xff\x01\x00\x00\xa0\x34\x52\xee\xbf\x31\xce\xac\x22\xf9\xbf\x9a" "\xfd\x7f\x9f\xff\xaf\xff\x5f\xa7\xff\xdf\xbc\x4e\xfd\x7f\xfd\xff\xd5\x50" "\xe9\xfe\xff\xab\xc7\xf4\xff\xbb\xd0\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb" "\xff\xd3\x5d\xaf\xf5\xff\x53\xee\x7f\x6b\x9c\x59\x45\xf2\x3f\x00\x00\x00" "\x54\x41\xca\xfd\x37\xc5\x99\xc9\xff\x00\x00\x00\x50\x1a\x29\xf7\xbf\x2d" "\xce\x4c\xfe\x07\x00\x00\x80\xd2\x48\xb9\x7f\x53\x9c\x59\x45\xf2\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x6a\xea\xaf\xfe\xff\xe0\x92" "\xe7\xf8\xfc\xff\x3a\xfd\xff\x66\x2b\xd7\xff\x9f\x5b\x58\x80\xfe\x7f\xdf" "\xac\x5f\xff\x5f\xff\x9f\xee\x7a\xad\xff\x9f\x72\xff\xdb\xe3\xcc\x2a\x92" "\xff\x01\x00\x00\xa0\x0a\x52\xee\x7f\x47\x9c\x99\xfc\x0f\x00\x00\x00\xa5" "\x91\x72\xff\xcd\x71\x66\xf2\x3f\x00\x00\x00\x94\x46\xca\xfd\x63\x71\x66" "\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xab\xa9\xbf" "\xfa\xff\x4b\xd3\xff\xaf\xd3\xff\x6f\xe6\xf3\xff\xf5\xff\xf5\xff\xf5\xff" "\xe9\xac\xd7\xfa\xff\x29\xf7\x6f\x8e\x33\xab\x48\xfe\x07\x00\x00\x80\x2a" "\x48\xb9\x7f\x4b\x9c\x99\xfc\x0f\x00\x00\x00\xa5\x91\x72\xff\x2d\x71\x66" "\xf2\x3f\x00\x00\x00\x94\x46\xca\xfd\x5b\xe3\xcc\x4a\x93\xff\xdf\xd0\xf1" "\x5c\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xd5\xa4\xff\xaf\xff" "\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\xee\x7a\xad\xff\x9f" "\x72\xff\xad\x71\x66\xa5\xc9\xff\x00\x00\x00\x40\xca\xfd\xb7\xc5\x99\xc9" "\xff\x00\x00\x00\x50\x1a\x29\xf7\xbf\x33\xce\x4c\xfe\x07\x00\x00\x80\xd2" "\x48\xb9\x7f\x5b\x9c\x59\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x1f\xf7\xff" "\x87\xf4\xff\x83\xfe\x7f\xcf\xd3\xff\xd7\xff\xef\x44\xff\x5f\xff\xbf\x9f" "\xd7\xaf\xff\xaf\xff\x4f\x77\xbd\xd6\xff\x4f\xb9\xff\x5d\x71\x66\x15\xc9" "\xff\x00\x00\x00\x50\x05\x29\xf7\xbf\x3b\xce\x4c\xfe\x07\x00\x00\x80\xd2" "\x48\xb9\xff\xf6\x38\x33\xf9\x1f\x00\x00\x00\x4a\x23\xe5\xfe\xf1\x38\xb3" "\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\x3e\xee\xff\xfb\xfc\xff\xa6\xf5\xeb" "\xff\xf7\x26\xfd\xff\x7e\xe9\xff\x8f\x34\x7f\xa9\xff\xbf\x2c\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\x74\xd6\x6b\xfd\xff\x94\xfb\xef\x88\x33\xab\x48\xfe" "\x07\x00\x00\x80\x2a\x48\xb9\x7f\x7b\x9c\x99\xfc\x0f\x00\x00\x00\xa5\x91" "\x72\xff\x44\x9c\x99\xfc\x0f\x00\x00\x00\xa5\x91\x72\xff\x64\x9c\x59\x45" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xdf\xf6\xff\x57\xad\xeb" "\xbe\x92\xf4\xff\xfb\xa5\xff\xdf\x42\xff\x7f\x59\xf4\xff\xf5\xff\xf5\xff" "\xf5\xff\xe9\xac\xd7\xfa\xff\x29\xf7\x4f\xc5\x99\x55\x24\xff\x03\x00\x00" "\x40\x15\xa4\xdc\xbf\x23\xce\x4c\xfe\x07\x00\x00\x80\xd2\x48\xb9\x7f\x67" "\x9c\x99\xfc\x0f\x00\x00\x00\xa5\x91\x72\xff\xae\x38\xb3\x8a\xe4\xff\x3e" "\xe9\xff\x6f\xcf\x05\x28\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xbe\xa2" "\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\x66\x83" "\x6d\x4e\xeb\xb5\xfe\x7f\xca\xfd\xbb\xe3\xcc\x2a\x92\xff\x01\x00\x00\xa0" "\x0a\x52\xee\xdf\x13\x67\xb6\x90\xff\x37\x5e\xf9\x55\x01\x00\x00\x00\x2b" "\x29\xe5\xfe\x3b\xe3\xcc\xfc\xfb\x3f\x00\x00\x00\x94\x46\xca\xfd\x77\xc5" "\x99\x55\x24\xff\xf7\x49\xff\xdf\xe7\xff\xeb\xff\xeb\xff\x37\xd0\xff\xd7" "\xff\xef\x27\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5" "\xff\xe9\xae\xd7\xfa\xff\x29\xf7\xef\x8d\x33\xab\x48\xfe\x07\x00\x00\x80" "\x2a\x48\xb9\xff\x3d\x71\x66\xf2\x3f\x00\x00\x00\x94\x46\xca\xfd\x77\xc7" "\x99\xc9\xff\x00\x00\x00\xd0\x57\xda\x7d\x0e\x61\x92\x72\xff\x7b\xe3\xcc" "\x2a\x92\xff\xf5\xff\xcb\xde\xff\x9f\x5f\xab\xff\xaf\xff\xaf\xff\xdf\x79" "\xfd\xfa\xff\xab\x4b\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe" "\xbf\xfe\x3f\xdd\xf5\x5a\xff\x3f\xe5\xfe\x7d\x71\x66\x15\xc9\xff\x00\x00" "\x00\x50\x05\x29\xf7\xbf\x2f\xce\x4c\xfe\x07\x00\x00\x80\xd2\x48\xb9\xff" "\xfd\x71\x66\xf2\x3f\x00\x00\x00\x94\x46\xca\xfd\xfb\xe3\xcc\x2a\x92\xff" "\xf5\xff\xcb\xde\xff\xf7\xf9\xff\xfa\xff\xfa\xff\xdd\xd6\xaf\xff\xbf\xba" "\xf4\xff\xf5\xff\x3b\xd1\xff\xef\xcf\xfe\x7f\xfc\xb1\x45\xff\xbf\x87\xfa" "\xff\xc5\x31\xa4\xff\x4f\x2f\xea\xb5\xfe\x7f\xca\xfd\x1f\x88\x33\xab\x48" "\xfe\x07\x00\x00\x80\x2a\x48\xb9\xff\x83\x71\x66\xf2\x3f\x00\x00\x00\x94" "\x46\xca\xfd\x1f\x8a\x33\x93\xff\x01\x00\x00\xa0\x34\x52\xee\xff\x70\x9c" "\x59\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x7f\xf6\xff\x47\xf4\xff" "\xfb\x84\xfe\xff\xaa\xf5\xff\x6b\x2f\x85\xfa\xff\x75\xfa\xff\x97\xe6\x6a" "\xf7\xe7\xfb\x7d\xfd\xbd\xd4\xff\xf7\xf9\xff\xf4\xaa\x5e\xeb\xff\xa7\xdc" "\xff\x91\x38\xb3\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x94\xfb\x3f\x1a\x67\x26" "\xff\x03\x00\x00\x40\x69\xa4\xdc\xff\xff\xe3\xcc\xe4\x7f\x00\x00\x00\x28" "\x8d\x94\xfb\xef\x89\x33\xab\x48\xfe\xd7\xff\x5f\xb1\xfe\xff\x86\xa0\xff" "\x7f\x49\xfd\xff\xbf\xd2\xff\xcf\xf4\xff\xe3\xe3\xea\xf3\xff\xf5\xff\x2f" "\x42\x85\xfb\xff\x35\xfa\xff\x75\xfa\xff\x97\xe6\x6a\xf7\xe7\xfb\x7d\xfd" "\xfa\xff\xfa\xff\x74\xd7\x6b\xfd\xff\x94\xfb\x7f\x2d\xce\xac\x22\xf9\x1f" "\x00\x00\x00\xaa\x20\xe5\xfe\x7b\xe3\xcc\xe4\x7f\x00\x00\x00\x28\x8d\x94" "\xfb\x3f\x16\x67\x26\xff\x03\x00\x00\x40\x9f\x59\xb3\xe4\x39\x29\xf7\xff" "\x7a\x9c\x59\x45\xf2\x7f\xff\xf5\xff\xc7\x7a\xb5\xff\x5f\xb3\x54\x7f\x7e" "\x30\x5f\xbf\xfe\xbf\xcf\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x49\xfa\xff\xfa" "\xff\x41\xff\xff\x92\x5d\xed\xfe\x7c\xbf\xaf\x5f\xff\x5f\xff\x9f\xee\x7a" "\xad\xff\x9f\x72\xff\x6f\xc4\x99\x55\x24\xff\x03\x00\x00\x40\x15\xa4\xdc" "\xff\xf1\x38\x33\xf9\x1f\x00\x00\x00\x4a\x23\xe5\xfe\xdf\x8c\x33\x93\xff" "\x01\x00\x00\xa0\x34\x52\xee\xbf\x2f\xce\xac\x22\xf9\x7f\xa5\xfb\xff\xad" "\x97\xef\xa4\x64\x9f\xff\x5f\xe3\xf3\xff\xf5\xff\x83\xfe\x7f\xa6\xff\xaf" "\xff\x1f\xf4\xff\xf5\xff\xbb\xd0\xff\xd7\xff\xef\xd3\xf5\xa7\x1f\x45\xf4" "\xff\xf5\xff\xe9\xa2\xd7\xfa\xff\x29\xf7\xff\x56\x9c\x59\x45\xf2\x3f\x00" "\x00\x00\x54\x41\xca\xfd\xf7\xc7\x99\xc9\xff\x00\x00\x00\xd0\xa3\x8e\x5d" "\xf4\x25\x52\xee\xff\x44\x9c\x99\xfc\x0f\x00\x00\x00\xa5\x91\x72\xff\x27" "\xe3\xcc\x2a\x92\xff\xfb\xef\xf3\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xfb\x89\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff\xfd\xbc\x7e\x9f\xff\xaf" "\xff\x4f\x77\xbd\xd6\xff\x4f\xb9\xff\x81\x38\xb3\x8a\xe4\x7f\x00\x00\x00" "\xa8\x82\x94\xfb\x3f\x15\x67\x26\xff\x03\x00\x00\x40\x69\xa4\xdc\xff\xdb" "\x71\x66\xf2\x3f\x00\x00\x00\x94\x46\xca\xfd\xbf\x13\x67\x56\x91\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x7f\xf9\xfd\xff\xe1\xb8\x5a\xfd\xff" "\xc5\xf4\xff\x17\xf7\xff\x8b\xd7\xb0\xca\xf4\xff\xe7\x5b\x9f\x71\xcd\xf4" "\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\x95\xd7\xf9\x25\xbe\xa6\xd7\xfa" "\xff\x29\xf7\x7f\x3a\xce\xac\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe5\xfe\xdf" "\x8d\x33\x93\xff\x01\x00\x00\xa0\x34\x52\xee\xff\xbd\x38\x33\xf9\x1f\x00" "\x00\x00\x4a\x23\xe5\xfe\xcf\xc4\x99\x55\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\x57\xb6\xff\x9f\x97\xad\xff\xef\xf3\xff\x57\x93\xfe\xbf\xcf\xff\xef\x44" "\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x77\xbd\xd6\xff\x4f\xb9\xff" "\xb3\x71\x66\x15\xc9\xff\x00\x00\x00\x50\x05\x29\xf7\xff\x7e\x9c\x99\xfc" "\x0f\x00\x00\x00\xa5\x91\x72\xff\x81\x38\x33\xf9\x1f\x00\x00\x00\x4a\x23" "\xe5\xfe\x07\xe3\xcc\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x2b\xdb\xff\xf7" "\xf9\xff\x91\xfe\xff\xea\xd2\xff\xd7\xff\xef\x44\xff\x5f\xff\xbf\x9f\xd7" "\x5f\xbd\xfe\xff\x68\xd3\x57\xfa\xff\x2c\x47\xaf\xf5\xff\x53\xee\x3f\x18" "\x67\xb6\xbf\xf9\x66\x00\x00\x00\x80\xfe\x95\x72\xff\xe7\xe2\xcc\x2a\xf2" "\xef\xff\x00\x00\x00\x50\x05\x29\xf7\x1f\x8a\x33\x93\xff\x01\x00\x00\xa0" "\x34\x52\xee\x3f\x1c\x67\x56\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xbf\x9a\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7\xf5\x57" "\xaf\xff\xdf\x4c\xff\x9f\xe5\xe8\xb5\xfe\x7f\xca\xfd\xd3\x71\x66\x15\xc9" "\xff\x00\x00\x00\x50\x05\x29\xf7\x1f\x89\x33\x93\xff\x01\x00\x00\xa0\x34" "\x52\xee\x3f\x1a\x67\x26\xff\x03\x00\x00\x40\x69\xa4\xdc\x7f\x2c\xce\xac" "\x22\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\xfc\xfd\xff\x10\x42\xbb\xf5\x3f\xff" "\xfd\x96\x75\xea\xff\xeb\xff\xaf\x06\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff" "\xfb\x79\xfd\xfa\xff\xfa\xff\x74\xd7\x6b\xfd\xff\x94\xfb\x8f\xc7\x99\x55" "\x24\xff\x03\x00\x00\x40\x15\xa4\xdc\xff\xf9\x38\x33\xf9\x1f\x00\x00\x00" "\x4a\x23\xe5\xfe\x2f\xc4\x99\xc9\xff\x00\x00\x00\x50\x1a\x29\xf7\x9f\x88" "\x33\xab\x48\xfe\xd7\xff\xd7\xff\xd7\xff\x2f\x7f\xff\xff\xb2\x3e\xff\x7f" "\xdd\xc2\xed\xea\xff\xeb\xff\x5f\x0a\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff" "\xfb\x79\xfd\xfa\xff\xfa\xff\x74\xd7\x6b\xfd\xff\x94\xfb\x4f\xc6\x99\x55" "\x24\xff\x03\x00\x00\x40\xd9\x6d\xc8\x7f\x1b\x0d\xa7\xe2\xcc\xe4\x7f\x00" "\x00\x00\x28\x8d\x94\xfb\x4f\xc7\x99\xc9\xff\x00\x00\x00\x50\x1a\x29\xf7" "\x9f\x89\x33\xab\x48\xfe\xd7\xff\xbf\xb8\xfe\xff\xc0\x12\xdd\x40\xfd\xff" "\xf6\xeb\xd7\xff\x2f\x41\xff\xbf\x81\xfe\xbf\xfe\xff\xa5\xd0\xff\xd7\xff" "\xef\x44\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x77\xbd\xd6\xff\x4f" "\xb9\xff\x0f\xe2\xcc\x2a\x92\xff\x01\x00\x00\xa0\x0a\x52\xee\x3f\x1b\x67" "\x26\xff\x03\x00\x00\x40\x69\xa4\xdc\x3f\x13\x67\x26\xff\x03\x00\x00\x40" "\x69\xa4\xdc\x3f\xfb\x7f\xec\xdd\x67\x72\x5f\x77\xf5\xc7\x71\x45\xfe\xcb" "\xb1\x27\xf3\x1f\x76\xc0\x64\xd8\x01\x2b\x60\x01\x3c\x60\x0d\xcc\x30\xec" "\x80\xde\x12\x7a\xe8\x10\x7a\x6f\xa1\x37\xd3\x21\xf4\xd0\x7b\x6f\xa1\x77" "\x02\x81\xd0\xeb\x0c\x8c\xa5\x73\x0e\xb6\x2c\xdf\x2b\xdb\xfa\xc9\xf7\x7e" "\xcf\xeb\xf5\x20\x27\x48\x09\xba\x22\xf6\x0c\x9f\x51\xde\x73\xe3\x96\x26" "\xfb\x5f\xff\xef\xfd\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x49\xfa\x7f\xfd" "\xff\x14\xfd\xbf\xfe\x7f\xcd\xcf\xaf\xff\xd7\xff\x33\x6f\x69\xfd\x7f\xee" "\xfe\x07\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x81\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa0\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\x7f\x70\xdc\xd2\x64\xff\xeb\xff\xf5\xff\x97\xd2\xff\xef\xe8\xff\xf5" "\xff\xfa\x7f\xfd\xff\x25\xd2\xff\xeb\xff\xa7\xe8\xff\xf5\xff\x6b\x7e\x7e" "\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\x3f\x24\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\x0f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x87" "\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xc3\xe3\x96\x26\xfb\x5f\xff" "\xaf\xff\xf7\xfe\x7f\xfd\xbf\xfe\x5f\xff\xbf\x49\xfa\x7f\xfd\xff\x14\xfd" "\xbf\xfe\x7f\xcd\xcf\xaf\xff\xd7\xff\x33\x6f\x69\xfd\x7f\xee\xfe\x47\xc4" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x91\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\xa8\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x21" "\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xff\x0a\xfb\xff\xff\xd3\xff\xeb\xff" "\xd7\x43\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xf9\xf5\xff\xfa\x7f\xe6" "\x2d\xad\xff\xcf\xdd\x7f\x63\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\x1f\x1d\xb7\xd8\xff\x00\x00\x00\xb0\x3a\xf7\xb8\xff\xc1\x1f\xcf\xdd\xff" "\x98\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x6c\xdc\xd2\x64\xff\xeb" "\xff\xf5\xff\xdd\xfa\xff\x9d\x11\xfa\x7f\xef\xff\xd7\xff\xaf\x88\xfe\x5f" "\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf3\xeb\xff\xf5\xff\xcc\x5b\x5a\xff\x9f" "\xbb\xff\x71\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x7c\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x21\x6e\xb1\xff\x01\x00\x00\x60\xed" "\x76\xf2\x4f\x72\xf7\x3f\x31\x6e\x69\xb2\xff\xf5\xff\xc7\xd7\xff\x5f\xa3" "\xff\x5f\x44\xff\xbf\xa5\xff\xd7\xff\xef\xfb\x7a\xfa\xff\xcd\xd2\xff\xeb" "\xff\xa7\xe8\xff\xf5\xff\x6b\x7e\x7e\xfd\xbf\xfe\x9f\x79\x1b\xef\xff\xef" "\x73\xd3\xee\x3d\x6c\xff\x9f\xbb\xff\xa6\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\x3f\x29\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x1c\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x89\x5b\x9a\xec\x7f\xfd\xbf\xf7" "\xff\xff\xaf\xff\xff\xcf\x35\xfa\xff\xbb\xdf\x76\xe2\x9c\xe7\xd2\xff\xeb" "\xff\xf5\xff\x57\x4e\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xf9\xf5\xff" "\xfa\x7f\xe6\x6d\xbc\xff\x9f\xe9\xfd\xf7\xff\xe7\xdc\xfd\x4f\x8d\x5b\x9a" "\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xd3\xe2\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\xe9\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x8c\xb8\xa5" "\xc9\xfe\xd7\xff\xeb\xff\xbd\xff\xdf\xfb\xff\xf5\xff\xfa\xff\x4d\xd2\xff" "\x2f\xb6\xff\xdf\xff\x5b\xef\x7c\xfa\xff\x43\xd1\xff\xeb\xff\x2f\xd6\xff" "\xdf\xeb\x10\xcf\xaf\xff\xa7\x83\xa5\xf5\xff\xb9\xfb\x9f\x19\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\x67\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xcd\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xec\xb8\xa5\xc9" "\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf3\xfb\xff\xed\x96\xfd\xff\xd9\x8f" "\xe9\xff\x37\x43\xff\xbf\xd8\xfe\x7f\xda\x31\xf4\xff\x27\xf5\xff\xfa\xff" "\x95\x3f\xbf\xf7\xff\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\x73\xe2\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xdc\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x5e\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x3f\x6e\xd9" "\xbe\x5a\x4f\x74\xbc\xf4\xff\xfa\x7f\xfd\xbf\xfe\xff\x8a\xde\xff\x7f\x62" "\x8c\xfe\xdf\xfb\xff\x37\x47\xff\x7f\xf9\xfd\xff\xbd\x0f\xf1\x5c\x6b\xee" "\xff\xb7\xf4\xff\xfa\xff\x95\x3f\xff\x31\xf6\xff\x77\x3b\xe8\xef\xd7\xff" "\xb3\x06\x4b\xeb\xff\x73\xf7\xbf\x20\x6e\xf1\xf3\x7f\x00\x00\x00\x18\xc3" "\xf6\x56\xed\xfe\x17\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8b\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xc5\x71\x4b\x93\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\x57\xd4\xff\x0f\xf2\xfe\x7f\xfd\xff\xe6\xe8\xff\xbd" "\xff\x7f\xca\x61\xfb\xff\x2d\xfd\x7f\x7d\x2f\xfa\xff\xe5\x3c\xbf\xf7\xff" "\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\x4b\xe2\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\xd2\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x59\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x3c\x6e\x69\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x24\xfd\xbf\xfe\x7f\x8a\xf7\xff\xeb" "\xff\xd7\xfc\xfc\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff\xe7\xee\x7f\x45\xdc\xd2" "\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x19\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\xaf\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x57\xc7\x2d" "\xfb\xf7\xff\xf6\x71\x3e\xd5\xf1\xd1\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x7f\x93\xf4\xff\xfa\xff\x29\xfa\xff\x83\xfb\xff\x53\x17\xf9\x7a\xfa" "\xff\x65\x3d\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\x6f\x89\x5b\xfc" "\xfc\x1f\x00\x00\x00\x86\x91\xbb\xff\x35\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xda\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x5d\xdc\xd2" "\x64\xff\x5f\xac\xff\xbf\xeb\xba\xbd\xcf\xeb\xff\x0f\x47\xff\x7f\xf0\xf3" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\x45\xff\xef\xfd\xff\x6b" "\x7e\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\xbf\x3e\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\x6f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\x37\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x9b\xe2\x96\x26\xfb" "\xff\xe8\xdf\xff\x7f\xbd\xfe\x5f\xff\xaf\xff\x8f\xab\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\x69\xfa\x7f\xfd\xff\x9a\x9f\x5f\xff\xaf\xff\x67\xde\xd2" "\xfa\xff\xdc\xfd\x6f\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x5b" "\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xad\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\xb6\xb8\xa5\xc9\xfe\x3f\xfa\xfe\xdf\xfb\xff\xf5\xff" "\x97\xd8\xff\x6f\xeb\xff\x93\xfe\x3f\xfe\xb9\xea\xff\xf5\xff\x97\x60\xad" "\xfd\xff\xf6\x58\xfd\xff\xe9\xfc\xbc\xfe\x7f\x8f\xfe\x5f\xff\xaf\xff\xd7" "\xff\xb3\x67\x69\xfd\x7f\xee\xfe\x33\xbb\x53\xaf\xdf\xfe\x07\x00\x00\x80" "\x0e\xce\xec\xfe\xf1\xd4\xd6\xdb\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\x1d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xce\xb8\xa5\xc9\xfe" "\xd7\xff\xeb\xff\xaf\x7a\xff\xef\xfd\xff\x45\xff\x1f\xff\x5c\x07\xed\xff" "\x4f\x9c\xf3\xbf\xaa\xfe\xff\xe8\xac\xb5\xff\xf7\xfe\xff\x3d\xfa\x7f\xfd" "\xff\x9a\x9f\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\xef\x8a\x5b\x9a" "\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xbb\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x11\xbb\x7f\xef\x5f\x7e\xb7\xff\x01\x00\x00\x60\x48\xef\xd9\xfd\xe3\xa9" "\xad\xf7\xc6\x2d\x4d\xf6\x7f\xe3\xfe\xff\xfa\x2b\xed\xff\x4f\x9f\xf3\xe7" "\xfa\xff\x83\x9f\x5f\xff\x7f\x24\xfd\xff\x99\xfd\xbf\xf6\xf4\xff\xeb\xec" "\xff\xbd\xff\x5f\xff\xaf\xff\xbf\x90\xfe\x5f\xff\xbf\xe6\xe7\x5f\x4e\xff" "\x1f\x1f\xb8\x41\xff\xcf\xf2\x2c\xad\xff\xcf\xdd\xff\xbe\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\xbf\x3f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x6f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x0f\xc4\x2d\x4d\xf6" "\x7f\xe3\xfe\x7f\x90\xf7\xff\xdf\xf7\xce\x78\x02\xfd\xff\xb8\xfd\xbf\xf7" "\xff\xc7\xd5\xff\xeb\xff\x0f\xa2\xff\x1f\xa0\xff\x3f\xfb\x7f\xbf\xd6\xd7" "\xff\x9f\x8c\xab\xff\xd7\xff\x2f\xa0\xff\xf7\xfe\x7f\x96\x6b\x69\xfd\x7f" "\xee\xfe\x0f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x43\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe1\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xff\x48\xdc\xd2\x64\xff\xeb\xff\xd7\xde\xff\x7b\xff\xbf\xfe\x5f" "\xff\xaf\xff\x5f\xb6\x01\xfa\xff\xdd\xdf\x32\x97\xd1\xff\xe7\xef\x35\xfd" "\xff\x04\xef\xff\xd7\xff\xaf\xf9\xf9\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf" "\xdd\xff\xd1\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x2c\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\x6f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x8f\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xbf\xa9\xfe\xff\xec\x17\xd1" "\xff\x37\xe9\xff\x6f\xbc\x36\xff\x7a\xfd\xbf\xfe\xff\x02\x03\xf4\xff\xbb" "\xbc\xff\x7f\x8f\xfe\xff\x7c\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xb4\xa5\xf5" "\xff\xb9\xfb\x3f\x11\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x4f\xc6" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xa7\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\xd3\x71\xc3\x3d\xff\xff\xea\x3d\xd2\xd1\xda\xb9\xc8\xc7" "\x23\xd7\xd5\xff\xeb\xff\xbd\xff\x5f\xff\xef\xfd\xff\xfa\xff\x4d\xd2\xff" "\xeb\xff\xa7\xe8\xff\xf5\xff\x6b\x7e\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff" "\x73\xf7\x7f\x26\x6e\xf1\xf3\x7f\x00\x00\x00\x18\x46\xee\xfe\xcf\xc6\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xe7\xe2\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\xf3\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x57\xdb\xff\x9f" "\xd6\xff\x9f\xff\xfc\xfa\xff\x65\xd2\xff\xeb\xff\xa7\xe8\xff\xf5\xff\x6b" "\x7e\xfe\x43\xf7\xff\xb7\x1f\xfc\xf7\xeb\xff\xe9\x60\x69\xfd\x7f\xee\xfe" "\x2f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x8b\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\xa5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\xff\x72\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\xff\xd5\xf6\xff\xde\xff\xbf" "\xef\xf9\xf5\xff\xcb\xa4\xff\xd7\xff\xef\xb9\xe3\xc0\x8f\xea\xff\xf5\xff" "\x6b\x7e\x7e\xef\xff\xd7\xff\x33\x6f\x69\xfd\x7f\xee\xfe\xaf\xc4\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xab\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xb5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x7a\xdc\xd2" "\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x49\xfa\x7f\xfd" "\xff\x14\xfd\xbf\xfe\x7f\xcd\xcf\xaf\xff\xd7\xff\x33\x6f\x69\xfd\x7f\xee" "\xfe\x6f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x9b\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xad\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\xff\x76\xdc\xd2\x64\xff\x1f\x69\xff\x7f\x6a\x59\xfd\xff\xd4\x5f\xa6" "\xff\xdf\xa3\xff\xd7\xff\x6f\xe9\xff\xf5\xff\x1b\xa6\xff\xd7\xff\x4f\xd1" "\xff\xeb\xff\xd7\xfc\xfc\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff\xe7\xee\xff\x4e" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x1b\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xf7" "\xe2\x96\x26\xfb\xdf\xfb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x49" "\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xcf\xaf\xff\xd7\xff\x33\xef\x2a" "\xf5\xff\x3b\x5b\x17\xe9\xff\x73\xf7\x7f\x3f\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\x3f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x1f\xc6" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8f\xe2\x96\x71\xf6\xff\xfd\x6e" "\x9d\xf8\xa4\xfe\xff\xc8\xfb\xff\xdd\x5f\x44\xfa\x7f\xfd\xff\x96\xfe\x5f" "\xff\xaf\xff\xdf\xa5\xff\xd7\xff\x4f\xd1\xff\xeb\xff\xd7\xfc\xfc\xfa\x7f" "\xfd\x3f\xf3\x96\xf6\xfe\xff\xdc\xfd\x3f\x8e\x5b\xc6\xd9\xff\x00\x00\x00" "\xd0\xc0\xf6\xe4\x67\x73\xf7\xff\x24\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x7f\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f\x8b\x5b\x06\xde" "\xff\xe7\x7c\x97\xfa\x7f\xef\xff\xd7\xff\xf7\xea\xff\x4f\x6c\xe9\xff\xf5" "\xff\xc7\x4c\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xf9\xf5\xff\xfa\x7f" "\xe6\x2d\xad\xff\xcf\xdd\xff\xf3\xb8\x25\x87\xdf\x75\x97\xf3\x5d\x02\x00" "\x00\x00\x4b\x92\xbb\xff\x17\x71\xcb\xc0\x3f\xff\x07\x00\x00\x80\x6e\x72" "\xf7\xff\x32\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x15\xb7\x34\xd9" "\xff\xfa\x7f\xfd\xbf\xfe\xbf\x55\xff\xef\xfd\xff\xfa\xff\x63\xa7\xff\xd7" "\xff\x4f\xd1\xff\xeb\xff\xd7\xfc\xfc\xd9\xff\xe7\xaf\x3b\xfd\xbf\xfe\x9f" "\x0b\x2d\xad\xff\xcf\xdd\xff\xeb\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72" "\xf7\xdf\x11\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xbf\x89\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\xdf\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\x9b\xa4\xff\xd7\xff\x4f\xd1\xff\xeb\xff\xd7\xfc" "\xfc\xde\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\x77\xc6\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x77\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xfb\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x2b\x6e\x69\xb2\xff" "\xf5\xff\xfa\xff\x21\xfb\xff\x6b\xf5\xff\xfa\x7f\xfd\xff\x52\xe8\xff\xf5" "\xff\x53\xf4\xff\xfa\xff\x35\x3f\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9" "\xfb\xff\x10\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x3f\xc6\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x9f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\xcf\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x5f\x7a\xff\xbf\x53\xdf\xf7" "\x62\xfb\x7f\xef\xff\xd7\xff\xeb\xff\x17\x63\xdc\xfe\xff\xa4\xfe\xff\xa0" "\xfe\xff\xd4\xbe\xff\x9e\x93\xd3\x5f\xe6\x08\xfa\xff\xdd\xaf\xb8\xd6\xfe" "\xff\xe6\x5b\xf6\x3e\xac\xff\x5f\xe7\xf3\xeb\xff\xf5\xff\xcc\x5b\x5a\xff" "\x9f\xbb\xff\x2f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x6b\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x2d\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\xff\x1e\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x90\xef\xff\xd7\xff" "\xeb\xff\xf5\xff\x8b\x31\x6e\xff\xef\xfd\xff\xde\xff\xef\xfd\xff\xfa\x7f" "\xfd\xbf\xfe\x9f\x39\x4b\xeb\xff\x73\xf7\xff\x23\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\xff\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x7f" "\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xbf\xe3\x96\x26\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x4d\xd2\xff\xeb\xff\xa7\xe8\xff" "\xf5\xff\x6b\x7e\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\xff\x37\x00" "\x00\xff\xff\x4c\x92\x22\x74", 24577); syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x200000000380, /*flags=MS_NOEXEC*/ 8, /*opts=*/0x200000002740, /*chdir=*/1, /*size=*/0x6001, /*img=*/0x200000006400); // unlinkat arguments: [ // fd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: unlinkat_flags = 0x0 (8 bytes) // ] memcpy((void*)0x200000000140, "./file1\000", 8); syscall(__NR_unlinkat, /*fd=*/0xffffff9c, /*path=*/0x200000000140ul, /*flags=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }