// 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } uint64_t r[1] = {0xffffffffffffffff}; int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); intptr_t res = 0; memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x20000040, "./file0\000", 8); memcpy((void*)0x20000080, "integrity", 9); *(uint8_t*)0x20000089 = 0x2c; memcpy((void*)0x2000008a, "discard", 7); *(uint8_t*)0x20000091 = 0x2c; memcpy((void*)0x20000092, "iocharset", 9); *(uint8_t*)0x2000009b = 0x3d; memcpy((void*)0x2000009c, "utf8", 4); *(uint8_t*)0x200000a0 = 0x2c; memcpy((void*)0x200000a1, "gid", 3); *(uint8_t*)0x200000a4 = 0x3d; sprintf((char*)0x200000a5, "0x%016llx", (long long)0xee01); *(uint8_t*)0x200000b7 = 0x2c; memcpy((void*)0x200000b8, "iocharset", 9); *(uint8_t*)0x200000c1 = 0x3d; memcpy((void*)0x200000c2, "cp437", 5); *(uint8_t*)0x200000c7 = 0x2c; memcpy((void*)0x200000c8, "usrquota", 8); *(uint8_t*)0x200000d0 = 0x2c; *(uint8_t*)0x200000d1 = 0; memcpy( (void*)0x20006780, "\x78\x9c\xec\xdd\xdb\x6f\x1c\x57\x1d\x07\xf0\xdf\x5e\xbc\xbe\x94\xa6\x56" "\x1f\xaa\x10\x71\x49\x53\x2e\x2d\xa5\x49\xe3\xa4\x4d\xcb\xad\xa9\x90\x78" "\x00\x01\x95\xaa\xbc\x27\x32\x6e\x15\xe1\x02\x4a\x42\x45\x2b\x8b\xb8\x8a" "\xc4\x3b\x12\xcf\xa8\xfc\x11\x3c\x83\x50\x1f\x8b\xc4\x9f\xc0\x3f\x10\xc9" "\xee\x53\x05\xa2\x83\xc6\x3e\x27\x19\xaf\xd7\x5e\xa7\x89\x77\xd6\x3e\x9f" "\x8f\xe4\xcc\xfc\xe6\xec\x78\xcf\xe4\xeb\xf1\xec\x7a\x66\xf6\x04\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x3f\xfe\xd1\x9b\xe7\x3b" "\x11\x71\xf5\xdd\xb4\x60\x31\xe2\x0b\xd1\x8b\xe8\x46\xcc\xd7\xf5\xe9\xa8" "\x67\x2e\xe7\xc7\xf7\x23\xe2\x64\x6c\x35\xc7\x53\x11\x71\x62\x36\xa2\x5e" "\x7f\xeb\x9f\x27\x22\x2e\x46\xc4\xc7\x27\x22\x36\x36\xd7\x96\xeb\xc5\x4b" "\x07\xec\xc7\x4b\x6f\xdc\xfd\xe7\x4f\xdf\xfc\xd9\xfa\x1f\xbf\xfa\x8f\x7f" "\xfd\xf7\xa3\x3f\xff\x6d\xb8\xfd\x8d\x8f\x7e\xf8\x93\xbf\xde\x8e\x58\x3c" "\xf9\x87\x3f\xfd\xef\xf6\xa3\xd9\x76\x00\x00\x00\x28\x45\x55\x55\x55\x27" "\xbd\xcd\x3f\x95\xde\xdf\x77\xdb\xee\x14\x00\x30\x11\xf9\xf8\x5f\x25\x79" "\xb9\x5a\xad\x56\xab\xd5\xea\xe3\x57\x37\x55\xa3\xdd\x6e\x16\x11\xb1\xde" "\x5c\xa7\x7e\xcd\xe0\x74\x3c\x00\x1c\x31\xeb\xf1\x69\xdb\x5d\xa0\x45\xf2" "\x2f\x5a\x3f\x22\x1e\x6b\xbb\x13\xc0\x54\xeb\xb4\xdd\x01\x0e\xc5\xc6\xe6" "\xda\x72\x27\xe5\xdb\x69\x1e\x0f\x4e\x6f\xb7\xe7\x6b\x41\x76\xe4\xbf\xde" "\xb9\x77\x7f\xc7\x5e\xd3\x71\x86\xaf\x31\x99\xd4\xcf\xd7\x9d\xe8\xc5\x93" "\x7b\xf4\x67\x7e\x42\x7d\x98\x26\x39\xff\xee\x70\xfe\x57\xb7\xdb\x07\xe9" "\x71\x87\x9d\xff\xa4\xec\x95\xff\x60\xfb\xd6\xa7\xe2\xe4\xfc\x7b\xc3\xf9" "\x0f\x39\x3e\xf9\x77\x47\xe6\x5f\xaa\x9c\x7f\xff\x81\xf2\xef\xc9\x1f\x00" "\x00\x00\x00\x00\xa6\x58\xfe\xfb\xff\x62\xcb\xe7\x7f\x67\x1f\x7e\x53\x0e" "\x64\xbf\xf3\xbf\xa7\x27\xd4\x07\x00\x00\x00\x00\x00\x00\x00\x78\xd4\x1e" "\x76\xfc\xbf\x7b\x8c\xff\x07\x00\x00\x00\x53\xab\x7e\xaf\x5e\xfb\xf0\xc4" "\xfd\x65\x7b\x7d\x16\x5b\xbd\xfc\x4a\x27\xe2\xf1\xa1\xc7\x03\x85\x49\x37" "\xcb\x2c\xb4\xdd\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x49\x7f" "\xfb\x1a\xde\x2b\x9d\x88\x99\x88\x78\x7c\x61\xa1\xaa\xaa\xfa\xab\x69\xb8" "\x7e\x50\x0f\xbb\xfe\x51\x57\xfa\xf6\x43\xc9\xda\xfe\x25\x0f\x00\x00\xdb" "\x3e\x3e\x31\x74\x2f\x7f\x27\x62\x2e\x22\xae\xa4\xcf\xfa\x9b\x59\x58\x58" "\xa8\xaa\xb9\xf9\x85\x6a\xa1\x9a\x9f\xcd\xaf\x67\x07\xb3\x73\xd5\x7c\xe3" "\x7d\x6d\x9e\xd6\xcb\x66\x07\x07\x78\x41\xdc\x1f\x54\xf5\x37\x9b\x6b\xac" "\xd7\x34\xee\xfd\xf2\xc8\xf6\xf4\xa9\x80\xa3\xbe\x5f\xfd\x5c\x83\xaa\x77" "\x80\x8e\x4d\x46\x5b\x69\x03\xc0\xb6\xed\xa3\xd1\x86\x23\xd2\x31\x53\x55" "\x4f\x44\xdb\xaf\x72\x38\x1a\xec\xff\xc7\x8f\xfd\x9f\x83\x68\xfb\xe7\x14" "\x00\x00\x00\x38\x7c\x55\x55\x55\x9d\xf4\x71\xde\xa7\xd2\x39\xff\x6e\xdb" "\x9d\x02\x00\x26\x22\x1f\xff\x87\xcf\x0b\xa8\xd5\xea\x49\xd4\x9d\x34\xc2" "\xd6\xb4\xf4\x47\xad\x56\x1f\xf7\xba\xa9\x1a\xed\x76\xb3\x88\x88\xf5\xe6" "\x3a\xf5\x6b\x06\xc3\xf1\x03\xc0\x11\xb3\x1e\x9f\xb6\xdd\x05\x5a\x24\xff" "\xa2\xf5\x23\xe2\x64\xdb\x9d\x00\xa6\x5a\xa7\xed\x0e\x70\x28\x36\x36\xd7" "\x96\xf3\x5f\x9e\x3b\xcd\xe3\x41\x1a\xdf\x3d\x5f\x0b\xb2\x23\xff\xf5\xce" "\xd6\x7a\x79\xfd\x51\xd3\x71\x86\xaf\x31\x99\xd4\xcf\xd7\x9d\xe8\xc5\x93" "\x7b\xf4\xe7\xa9\x09\xf5\x61\x9a\xe4\xfc\xbb\xc3\xf9\x5f\xdd\x6e\x1f\xa4" "\xc7\x1d\x76\xfe\x93\xb2\x57\xfe\xf5\x76\x2e\xb6\xd0\x9f\xb6\xe5\xfc\x7b" "\xc3\xf9\x0f\x39\x3e\xf9\x77\x47\xe6\x5f\xaa\x9c\x7f\xff\x81\xf2\xef\xc9" "\x1f\x00\x00\x00\x00\x00\xa6\x58\xfe\xfb\xff\xa2\xf3\xbf\x79\x93\x01\x00" "\x00\x00\x00\x00\x00\xe0\xc8\xd9\xd8\x5c\x5b\xce\xf7\xbd\xe6\xf3\xff\x5f" "\x1a\xf1\x38\xf7\x7f\x1e\x4f\x39\xff\x8e\xfc\x8b\x94\xf3\xef\x0e\xe7\x3f" "\x74\x41\x4e\xaf\x31\x7f\xf7\xf5\xfb\xf9\x7f\xb2\xb9\xb6\xfc\xe1\x17\x2f" "\x7d\x25\x4f\xa7\x3e\xff\x99\xde\xa0\x7e\xee\x99\x4e\xb7\xd7\x4f\xd7\xfc" "\x54\x33\x6f\xc5\xf5\x58\x8d\x95\x78\x71\xd7\xe3\xfb\x3b\xda\xcf\xef\x6a" "\x9f\xd9\xd1\xbe\x34\xa6\xfd\xc2\xae\xf6\x41\xdd\x3e\x9f\xdb\xcf\xc6\x72" "\xfc\x3a\x56\xe3\x17\xf7\xda\x67\xc7\x5c\x18\x35\x37\xa6\xbd\x1a\xd3\x9e" "\xf3\xef\xd9\xff\x8b\x94\xf3\xef\x37\xbe\xea\xfc\x17\x52\x7b\x67\x68\x5a" "\xbb\xfb\x41\x77\xd7\x7e\xdf\x9c\x8e\x7a\x9e\xcb\x3f\xff\xec\xd2\xee\xbd" "\x6b\xf2\xee\x44\xef\xde\xb6\x35\xd5\xdb\x77\xa6\x85\xfe\x6c\xfd\x9f\x3c" "\x36\x88\xdf\xde\x5c\xb9\x71\xf6\x77\xd7\x6e\xdd\xba\x71\x3e\xd2\x64\xc7" "\xd2\xa5\x48\x93\x47\x2c\xe7\x3f\x93\xbe\x72\xfe\xcf\x3e\xb3\xdd\x9e\x7f" "\xef\x37\xf7\xd7\xbb\x1f\x0c\x1e\x38\xff\x69\x71\x27\xfa\x7b\xe6\xff\x4c" "\x63\xbe\xde\xde\xe7\x26\xdc\xb7\x36\xe4\xfc\x07\xe9\x2b\xe7\x9f\x8f\x40" "\xa3\xf7\xff\xa3\x9c\xff\xde\xfb\xff\xf3\x2d\xf4\x07\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf6\x53\x55\xd5\xd6\x2d\xa2\x97\x23\xe2\xe5" "\x74\xff\x4f\x5b\xf7\x66\x02\x00\x93\x95\x8f\xff\x55\x92\x97\xab\xd5\x6a" "\xb5\x5a\xad\x3e\x7e\x75\x53\x35\xda\x6b\xcd\x22\x22\xfe\xde\x5c\xa7\x7e" "\xcd\xf0\xfb\x51\xdf\x0c\x00\x98\x66\x9f\x45\xc4\xbf\xdb\xee\x04\xad\x91" "\x7f\xc1\xf2\xe7\xfd\xd5\xd3\xaf\xb5\xdd\x19\x60\xa2\x6e\xbe\xf7\xfe\x2f" "\xaf\xad\xae\xae\xdc\xb8\xd9\x76\x4f\x00\x00\x00\x00\x00\x00\x00\x80\xcf" "\x2b\x8f\xff\x79\xba\x31\xfe\xf3\xd6\x75\x40\x43\xe3\x46\xef\x18\xff\xf5" "\xf5\x38\xfd\xc9\xe6\xda\xf2\xbb\x8b\xff\xf9\xf2\x91\x1b\xff\xb3\x3b\xe8" "\x6d\x8d\x75\x9e\x36\xe8\xe9\xd8\x7f\xfc\xef\x33\xb1\xff\xf8\xdf\xfd\x31" "\xcf\x37\x33\xa6\x7d\x30\xa6\x7d\x76\x4c\xfb\xdc\x98\xf6\x91\x37\x7a\x34" "\xe4\xfc\x9f\x4e\x19\xe7\xfc\x4f\xa5\x0d\xdb\x6f\xfc\xd7\x9c\xff\xf0\x74" "\xcc\x53\xb6\x6a\xbf\xf1\x5f\x9f\x6d\xa1\x3f\x6d\xcb\xf9\x9f\x49\x63\x3d" "\xe7\xfc\xbf\x39\xf4\xb8\x66\xfe\xd5\x5f\x8e\xf2\xf8\xbf\xdd\x1d\xf9\x9f" "\xbb\xf5\xce\x6f\xce\xdd\x7c\xef\xfd\x17\xae\xbf\x73\xed\xed\x95\xb7\x57" "\x7e\x75\xe1\xe2\xd2\xab\xe7\x97\x2e\x5d\x7c\xe5\xc5\x73\x6f\x5d\x5f\x5d" "\x49\xff\xb6\xd8\xe3\xc3\x95\xf3\xcf\x63\x5f\xbb\x0e\xb4\x2c\x39\xff\x9c" "\xb9\xfc\xcb\x92\xf3\xff\x7a\xaa\xe5\x5f\x96\x9c\xff\x37\x52\x2d\xff\xb2" "\xe4\xfc\xf3\xeb\x3d\xf9\x97\x25\xe7\x9f\xdf\xfb\xc8\xbf\x2c\x39\xff\xe7" "\x52\x2d\xff\xb2\xe4\xfc\xbf\x95\x6a\xf9\x97\x25\xe7\xff\x7c\xaa\xe5\x5f" "\x96\x9c\xff\xb7\x53\x2d\xff\xb2\xe4\xfc\x5f\x48\xb5\xfc\xcb\x92\xf3\x3f" "\x9b\x6a\xf9\x97\x25\xe7\x7f\x2e\xd5\xf2\x2f\x4b\xce\x3f\x9f\xe1\x92\x7f" "\x59\x72\xfe\xf9\xca\x06\xf9\x97\x25\xe7\xbf\x94\x6a\xf9\x97\x25\xe7\x7f" "\x21\xd5\xf2\x2f\x4b\xce\xff\x62\xaa\xe5\x5f\x96\x9c\xff\x4b\xa9\x96\x7f" "\x59\x72\xfe\x2f\xa7\x5a\xfe\x65\xc9\xf9\x5f\x4a\xb5\xfc\xcb\x92\xf3\x7f" "\x25\xd5\xf2\x2f\x4b\xce\xff\xd5\x54\xcb\xbf\x2c\x39\xff\xef\xa4\x5a\xfe" "\x65\xc9\xf9\x7f\x37\xd5\xf2\x2f\x4b\xce\xff\x7b\xa9\x96\x7f\x59\x72\xfe" "\xdf\x4f\xb5\xfc\xcb\x92\xf3\xff\x41\xaa\xe5\x5f\x96\x9c\xff\x6b\xa9\x3e" "\x58\xfe\x46\x88\x3f\x2e\xee\x7f\xfe\x7f\x3d\xd3\xc9\x33\xab\x66\xcc\x98" "\x29\x79\xa6\xed\xdf\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xb0" "\x49\x5c\x4e\xdc\xf6\x36\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\x67\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\xca\xfb\x7e\xe0\x67\xd7\xbb\xf6\xda\x10\x7b" "\x93\x38\x04\x88\x93\xac\x8d\x21\x26\x2c\xde\xf5\x0b\x7e\xf9\xff\xeb\xc4" "\x90\x90\x52\x68\x1b\x42\x42\xfa\x46\x6a\x5c\x7b\x6d\x9c\xf8\xad\x5e\x9b" "\x37\x21\xb1\x11\x34\x45\x02\xa9\x5c\x70\x41\x2b\x25\x05\x84\xaa\x5c\xb4" "\x0a\x6a\x13\x35\x48\x34\xe2\xa2\x52\x9b\xde\xb4\x57\xed\x4d\x95\xb6\x6a" "\x54\xa1\x28\x54\x4e\x54\xa9\x6a\x54\x70\x75\xe6\x3c\xcf\xe3\x99\xd9\xd9" "\x39\xeb\xb5\x27\x3b\x73\xce\xe7\x13\xe1\x9f\xbd\x73\x66\xe6\xd9\x33\xcf" "\xcc\xee\x77\xa3\xef\x2c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xcd\x36\x7e\x6a\xe6\xf7\x87\xb2\x2c\xcb" "\xff\x6b\xfc\x31\x9e\x65\x57\xe7\x7f\x5f\x9d\xed\xcf\xff\x39\xb7\x6b\xb9" "\x57\x08\x00\x00\x00\x5c\xae\x77\x1a\x7f\xfe\xe9\xba\xf4\x81\xfd\xdd\x8e" "\x3e\xb9\xae\xfd\x98\xbf\xf9\xc8\xdf\x7f\xfb\xc2\x85\x0b\x17\xb2\xec\x8f" "\xd6\x7f\xf0\x85\x7c\x06\x13\x59\xb6\x76\x55\x96\x15\x97\x05\x63\x3f\x3a" "\xdd\x72\x4c\xf0\x54\x36\x36\x34\xdc\xf4\xef\xe1\x92\x35\xaf\x28\xb9\x7c" "\xa4\xe4\xf2\xd1\x92\xcb\x57\x96\x5c\xbe\xaa\xe4\xf2\xb1\x92\xcb\xe7\x9d" "\x80\x79\x56\x17\x3f\x8f\x69\xdc\xd8\xe6\xc6\x5f\xc7\x8b\x53\x9a\xad\xcf" "\x46\x1b\x97\x6d\xee\x70\xad\xa7\x86\x56\x0d\x0f\xc7\x9f\xe5\x34\x0c\x35" "\xae\x73\x61\xf4\x48\x76\x2c\x3b\x9e\xcd\x64\xd3\xf3\xae\x33\xd4\xf8\x5f" "\x96\xbd\xb1\x31\xbf\xaf\xbb\xb2\x78\x5f\xc3\x4d\xf7\xb5\x21\xcb\xb2\xf3" "\x3f\x79\xe2\x50\x5c\xc3\x50\x38\xc7\x9b\xb3\x96\x3b\x6b\x68\x7e\xec\xde" "\xbe\x3d\x9b\xf8\xe9\x4f\x9e\x38\xf4\xf0\xf8\xcf\x3e\xdc\x69\x96\x9e\x86" "\x79\x2b\xcd\xb2\x2d\x9b\xf2\x75\x3e\x9d\x65\x17\x7f\x5c\x95\x0d\x65\xab" "\xd2\x39\x89\xeb\x1c\x6e\x5a\xe7\x86\x79\xeb\x9c\x68\xd9\x43\x6f\xdf\x3e" "\xd4\xb8\x5e\xfe\xf7\xf6\x75\x9e\x5f\xe4\x3a\xe3\xe7\x3d\x16\xd6\xf9\x0f" "\x5d\xd6\xb9\x21\x7c\xec\xd1\x1b\xb2\x2c\x9b\xcb\x16\x3c\xa6\xdd\x53\xd9" "\x70\xb6\xa6\xed\x5e\xd3\xf9\x1e\x2b\x76\x44\x7e\x1b\xf9\x43\xf9\xbe\x6c" "\xe4\x92\xf6\xc9\xc6\x45\xec\x93\xfc\x3a\x3f\xbc\xa1\x75\x9f\xb4\xef\xc9" "\x78\xfe\x37\x86\x73\x32\xb2\xc0\x1a\x9a\x1f\x8e\xb7\xbf\xba\x72\xde\x79" "\x5f\xea\x3e\xc9\x3f\xeb\x7e\xd8\xab\xf9\x6d\xdf\x9b\xdf\xe9\xd8\x58\xf3" "\x8f\x56\x5b\xf6\x6a\x7e\xcc\x13\x37\x2e\xbc\x07\x3a\x3e\x76\x1d\xf6\x40" "\xda\xcb\x4d\x7b\x60\x53\xd9\x1e\x18\x5e\xb9\xa2\xb1\x07\x86\x2f\xae\x79" "\x53\xcb\x1e\xd8\x36\xef\x3a\xc3\xd9\x50\xe3\xbe\xde\xba\xb1\xfb\x1e\x98" "\x3a\x7b\xe2\xf4\xd4\xec\x63\x8f\xdf\x7a\xec\xc4\xc1\xa3\x33\x47\x67\x4e" "\xee\xd8\xb9\x7d\xef\xb6\xed\xbb\x77\xee\x99\x9e\x3a\x72\xec\xf8\x4c\xf8" "\xf3\xd2\x4e\xe9\x00\x59\x93\x0d\xa7\x3d\xb8\x29\x7c\xbd\x8a\x7b\xf0\x63" "\x6d\xc7\x36\x6f\xc9\x0b\x2f\x17\xcf\x83\x97\xae\xdb\xfd\x91\x4e\xf3\x52" "\xd6\x30\x76\x85\x9e\x07\x97\xb3\x86\x2c\xec\x97\x2f\xdc\x94\x2f\xe8\xea" "\xe1\x6c\x81\x3d\x9e\x1f\xf3\xf4\x96\xcb\x7f\x1e\xa4\xaf\xfb\x4d\xcf\x83" "\x91\xa6\xe7\x41\xc7\xd7\xd4\x0e\xcf\x83\x91\x45\x3c\x0f\xf2\x63\xce\x6f" "\x59\xdc\xd7\xcc\x91\xa6\xff\x3a\xad\xa1\xd3\x6b\xe1\x95\xd8\x03\xe3\x4d" "\x7b\xa0\xfb\xd7\xc3\xac\xeb\xd7\xc3\xe6\x35\x2c\xe5\xeb\x61\x7e\x9f\x0f" "\xdc\xbc\xf0\x6b\xe1\x86\xb0\xae\x67\x3e\x7e\xa9\x5f\x0f\x57\xcc\xdb\x03" "\xf1\xd3\x1a\x0a\xcf\xbd\xfc\x23\xe9\xfb\xbd\xb1\x3d\xe1\xbc\xcc\xdf\x17" "\xd7\xe7\x17\x5c\xb5\x32\x3b\x37\x3b\x73\x66\xeb\xa3\x07\xcf\x9e\x3d\xb3" "\x2d\x0b\xa3\x8b\xa1\xc5\x9c\x8a\x45\x79\x7f\xd3\x63\xd5\xbe\x5f\xd6\xb4" "\xdd\x5b\xeb\x7e\x19\xbe\xe4\xfd\xb2\xff\xb3\xef\xee\xbe\xbe\xc3\xc7\xc7" "\xc3\xb9\x1a\xbb\xa5\xfb\x63\x95\x1f\xb3\x73\xb2\xfb\x63\xd5\x78\x75\xef" "\x7c\x3e\x5b\x3e\xba\x3d\x0b\x63\x11\xdf\xb7\xf7\xf3\xf9\xec\xf4\xd5\x2c" "\x3f\x9f\x29\x4b\x74\x39\x9f\xf9\x31\x4f\xdf\x7a\xf9\xdf\x0b\xa6\x5c\xd2" "\xf4\xfa\x37\x5a\xf6\xfa\xb7\x62\x74\xa4\x78\xfd\x5b\x91\xce\xc6\x68\xcb" "\xeb\xdf\xf6\x79\xd7\x59\xd1\x58\x59\x96\x9d\xbf\x75\x71\xaf\x7f\xa3\xe1" "\xbf\x9f\xf7\xeb\xdf\xfa\x3e\x79\xfd\xcb\xcf\xd5\x03\x5b\xbb\xef\x81\xfc" "\x98\x67\xa6\x2e\x75\x0f\x8c\x74\x7d\xfd\xbb\x21\xcc\xa1\xb0\x9e\x9b\x43" "\x62\x18\x6b\xca\xfd\xef\x36\x2e\x9f\x2b\xb6\x69\xd3\x63\x59\xba\x6f\x46" "\x46\x46\xc3\xbe\x19\x89\xf7\xd8\xba\x6f\x76\xcc\xbb\x4e\x7e\x6b\xf9\x7d" "\x6f\x99\x5e\xda\xbe\xd9\x72\x43\xeb\x63\xd5\xf2\x7d\x4b\x05\xf7\x4d\x7e" "\xae\x5e\x98\xee\xbe\x6f\xf2\x63\xde\xdc\x76\xf9\xaf\x1d\xab\xe3\x5f\x9b" "\x5e\x3b\x56\x96\xed\x81\xd1\x15\x2b\xf3\xf5\x8e\xa6\x4d\x50\xbc\xde\x5d" "\x58\x1d\xf7\xc0\xd6\xec\x50\x76\x2a\x3b\x9e\x1d\x4e\xd7\xc9\x1f\xe5\xfc" "\xbe\x26\xb7\x2f\x6e\x0f\xac\x0c\xff\xfd\xbc\x5f\x3b\xae\xed\x93\x3d\x90" "\x9f\xab\x17\xb7\x77\xdf\x03\xf9\x31\x7f\xbd\xe3\xca\x7e\xef\xb4\x25\x7c" "\x24\x1d\xd3\xf4\xbd\x53\xfb\xcf\x17\x16\xca\xfc\xd7\x8f\x5c\xbc\xbd\xf6" "\xd3\x76\xa5\x33\x7f\xbe\xce\x4f\xef\xec\xfe\xb3\xa1\xfc\x98\x1f\xef\xbc" "\xd4\x9c\xd1\xfd\x3c\xdd\x12\x3e\x72\x55\x87\xf3\xd4\xfe\xfc\x59\x68\x4f" "\x1f\xce\xca\xcf\xd3\x95\xda\xd3\xf9\x3a\x8f\xdf\xd6\xfd\x67\x53\xf9\x31" "\xeb\x77\x2d\x72\x3f\xed\xcf\xb2\xec\xf5\x67\x5f\x2d\x7e\xde\x55\xfc\x7c" "\xf7\xcf\xcf\xfd\xe3\xb7\x5b\x7e\xee\xdb\xe9\x67\xca\xaf\x3f\xfb\xea\xe7" "\xae\xfb\xfe\xf7\x2f\x65\xfd\x00\x00\x2c\xdd\xbb\x8d\x3f\xe7\x56\x16\xdf" "\x6b\x36\xfd\x3f\xd6\x5d\xff\xff\x7f\x00\x00\x00\x60\x90\xc4\xdc\x3f\x1c" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x22\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\x7f\x24\xcc\xa4\x26\xf9\xff\xa1\xa1\xaf\xbd\xf0\xce\x93" "\x59\x7a\x37\xc0\x0b\x41\xbc\x3c\x9e\x86\x7b\x57\x15\xc7\xc5\x8e\xf7\x5c" "\xf8\xf7\xc4\x85\x8b\xf2\x8f\xdf\xf1\xea\xe8\x3d\xdf\x79\x72\x71\xf7\x3d" "\x9c\x65\xd9\xff\xde\xfd\xa1\x8e\xc7\x3f\xb4\x2a\xae\xab\x70\x3a\xae\x73" "\x45\xeb\xc7\xe7\xb9\xf6\xa3\x8b\xba\xff\x07\xef\xbf\x78\x5c\xf3\xfb\x27" "\x9c\x1f\x2e\x6e\x3f\x7e\x3e\x8b\xdd\x06\xb1\xab\xfc\xc6\xbf\xdc\xd1\xb8" "\xdd\x89\x9b\x8b\xf9\xe6\xdd\x59\x63\xde\x37\xf7\xcc\x53\x8d\xdb\xdf\x5b" "\xfc\x3b\x1e\xff\xd6\xbf\x17\xc7\x7d\x3d\xbc\x69\xc9\xfe\x23\x43\x2d\xd7" "\xdf\x12\xd6\xb3\x39\xcc\x89\xf0\x9e\x32\xf7\xae\xbe\x78\x1e\xf2\x19\xaf" "\xf7\xad\x37\x8e\xfe\xed\x27\xbe\x78\xf1\xfe\xe2\xf5\x86\x36\xad\x6d\x7c" "\x9a\x2f\x6e\x2d\x6e\x37\xbe\xc7\xcc\xf3\x7f\x51\x1c\x1f\x3f\xef\x85\xd6" "\xff\x57\xcf\x7e\xf3\x5b\xf9\xf1\x8f\xde\xd8\x79\xfd\x4f\x0e\x77\x5e\xff" "\x5b\xe1\x76\x7f\x18\xe6\xff\xbc\x5d\x7c\xbc\xf9\x9c\x7f\xa7\x69\xfd\xbf" "\x17\xd6\x1f\xef\x2f\x5e\x6f\xeb\x2b\xdf\xeb\xb8\xfe\xd7\xfe\xb2\x38\xfe" "\xb5\xb0\x2f\x5e\x0a\xb3\x7d\xfd\xb7\xff\xc1\x87\xdf\xe9\xf4\x78\xc5\xfb" "\xd9\x3f\x52\x5c\x2f\xde\xff\xf4\x9f\xdc\xd9\xb8\x5e\xbc\xbd\x78\xfb\xed" "\xeb\x1f\x9b\xba\xa3\xe5\x7c\xb4\xdf\xfe\x9b\xaf\x14\xb7\xb3\xef\xe1\xff" "\x5a\xd1\x7c\x7c\xfc\x78\xbc\x9f\xe8\xc1\x91\xd6\xfd\x3d\x14\x1e\xdf\x96" "\x1e\x79\x96\x65\xdf\xfc\x5a\xd6\x72\x9e\xb3\xd1\xe2\x7a\xaf\xb7\xad\x3f" "\xde\xde\xe9\x91\xce\xeb\xbf\xa5\x6d\x9d\xa7\x5f\x7e\xa8\x71\xfd\x85\xde" "\xd1\xe9\x1b\xf7\x7f\xaa\xe3\xe7\x1b\xd7\xb3\xff\xcf\xc6\x5b\x3e\x9f\xe7" "\xd7\x86\xf3\x37\xbc\xfa\xef\xf2\xdb\x7d\xeb\x43\x61\x3f\x86\xcb\x7f\x36" "\x57\xdc\x5e\xfb\x7b\x99\xbe\xb6\xb6\xf5\xf5\x26\x1e\xff\xd2\x78\xf1\xbc" "\x8d\xb7\x37\xd5\xb6\xfe\xe7\xdb\xd6\x3f\xf7\xd1\xfc\xdc\x95\xaf\xff\xae" "\x9f\x16\xeb\x7f\xed\x93\xab\x5a\xd6\xbf\x7f\x5d\xd8\x4f\xef\x2d\x66\xd9" "\xfa\x8f\xfe\xf1\xba\x96\xeb\xbf\xfc\x99\x62\x3d\x67\x1e\x99\x3c\x79\x6a" "\xf6\xdc\xb1\xf8\x1e\x07\xe3\x6d\xcf\xe3\x55\x63\xab\xd7\x5c\x75\xf5\x7b" "\xd6\xae\x0b\xaf\xa5\xed\xff\x3e\x70\xea\xec\x43\x33\x67\x26\xa6\x27\xa6" "\xb3\x6c\x62\x00\xdf\x32\xb0\xd7\xeb\x7f\x25\xcc\xff\x2c\xc6\xdc\x95\xbf" "\x87\xc2\x3f\x8d\x14\xfb\xee\xb9\x7b\x8a\xaf\x5b\x1f\x1b\x2d\xfe\xfd\x7c" "\xf8\xf8\x83\xe1\xf1\x8c\x5f\x1f\xbf\xf1\x87\xa3\x2d\xfb\xb5\xfd\x71\x9f" "\x1b\x2b\xe6\xe5\xae\xff\xe3\x61\x1d\x8b\xb5\x61\xf3\x8f\xf6\x2c\xea\xc0" "\xff\xd8\xf9\xda\x0b\xff\x7c\xdf\x97\xda\xbf\x2f\x88\x9f\xcf\xe9\x0f\x8c" "\x35\x3e\xbf\x17\x37\x5e\xd3\xb8\x6c\xe8\xcd\xe2\xf2\xf6\xd7\xab\x32\xff" "\xfa\x81\xd6\xe7\xf5\x0f\xd6\x17\xf3\xbb\xe1\xbc\x5e\x08\xef\xcc\xbc\xe9" "\x9a\xe2\xfe\xda\x6f\x3f\xbe\x37\xc9\x73\x9f\x2f\x9e\xbf\xf1\x3b\xb9\x78" "\xfd\xac\xed\xfd\x44\xc6\x57\xb4\x7e\x1e\x97\xbb\xfe\x1f\x84\xef\x63\xbe" "\x77\x6d\xeb\xeb\x5f\xdc\x1f\xdf\x7d\xb2\xed\xdd\x9c\xc7\xb3\xa1\x7c\x09" "\x73\xe1\xf5\x21\x9b\x2b\x2e\x8f\x47\xc5\xf3\xfd\xdc\xf9\x6b\x3a\xde\x5f" "\x7c\x1f\x9e\x6c\xee\xba\x4b\x59\xe6\x82\x66\x1f\x9b\x9d\x3a\x7e\xec\xe4" "\xb9\x47\xa7\xce\xce\xcc\x9e\x9d\x9a\x7d\xec\xf1\x03\x27\x4e\x9d\x3b\x79" "\xf6\x40\xe3\xbd\x4b\x0f\x7c\xb9\xec\xfa\x17\x9f\xdf\x6b\x1a\xcf\xef\xc3" "\x33\xbb\x76\x66\x8d\x67\xfb\xa9\x62\xf4\xd8\x72\xaf\xff\xf4\xfd\x87\x0e" "\xef\x9e\xbe\xe9\xf0\xcc\x91\x83\xe7\x8e\x9c\xbd\xff\xf4\xcc\x99\xa3\x87" "\x66\x67\x0f\xcd\x1c\x9e\xbd\xe9\xe0\x91\x23\x33\x8f\x94\x5d\xff\xd8\xe1" "\x7d\xdb\xb6\xef\xdd\xb1\x7b\xfb\xe4\xd1\x63\x87\xf7\xed\xd9\xbb\x77\xc7" "\xde\xc9\x63\x27\x4f\xe5\xcb\x28\x16\x55\x62\xd7\xf4\x57\x26\x4f\x9e\x39" "\xd0\xb8\xca\xec\xbe\x9d\x7b\xb7\xdd\x76\xdb\xce\xe9\xc9\x13\xa7\x0e\xcf" "\xec\xdb\x3d\x3d\x3d\x79\xae\xec\xfa\x8d\xaf\x4d\x93\xf9\xb5\x1f\x9e\x3c" "\x33\x73\xfc\xe0\xd9\x63\x27\x66\x26\x67\x8f\x3d\x3e\xb3\x6f\xdb\xde\x5d" "\xbb\xb6\x77\x7d\xf7\xc7\xdc\x89\xd3\x47\x66\x27\xa6\xce\x9c\x3b\x39\x75" "\x6e\x76\xe6\xcc\x54\xf1\xb9\x4c\x9c\x6d\x7c\x38\xff\xda\x57\x76\x7d\xea" "\x61\x76\x5d\x78\xbd\x6b\x33\x14\xbe\x3b\xbf\xf3\x96\x5d\xe9\xfd\x71\x73" "\xaf\x7e\x75\xc1\x9b\x2a\x0e\x19\x6f\xfd\xe0\x8f\xc3\x7b\x41\x7d\x7d\x6c" "\xc7\x9e\xc5\xfc\x3b\xe6\xfe\xd1\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83" "\x98\xfb\xc3\x1b\xff\x5f\xbc\x40\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x55" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x58\x98\x49\x4d\xf2\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xd3" "\xb3\xfe\xff\xea\x2c\xcb\xf4\xff\x4b\x2d\x77\x7f\x7e\xd0\xd7\xaf\xff\xaf" "\xff\x4f\xb9\x7e\xeb\xff\xc7\xdc\xbf\x3a\xcb\x6a\x99\xff\x01\x00\x00\xa0" "\x0e\x62\xee\x5f\x13\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x55\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xd5\x61\x26\x35\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xa4\xff\xaf\xff\xdf\x8d\xdf" "\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\x5c\xbf\xf5\xff\x63\xee\x7f" "\x4f\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x6b\xc3\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\xd7\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\x8f\x87\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xf7\x92\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd" "\x7f\xca\xf5\x5b\xff\x3f\xe6\xfe\xf7\x86\x99\xd4\x24\xff\x03\x00\x00\x40" "\x1d\xc4\xdc\xff\xbe\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf7\x87" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xaf\x0f\x33\xa9\x49\xfe\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd\x7f\xfd\xff\x6e\xf4" "\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x94\xeb\xb7\xfe\x7f\xcc\xfd\x1f" "\x08\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x9a\x30\x13\xf9\x1f" "\x00\x00\x00\x2a\x23\xe6\xfe\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\x5f\x1b\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xdf\x4b\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5" "\xff\x29\xd7\x6f\xfd\xff\x98\xfb\xaf\x0b\x33\xa9\x49\xfe\x07\x00\x00\x80" "\x3a\x88\xb9\xff\xfa\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x0f\x85" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x6f\x08\x33\xa9\x49\xfe\xef\xd3" "\xfe\xff\x70\x96\xe9\xff\xeb\xff\xeb\xff\xeb\xff\xb7\x9e\x4f\xfd\x7f\xfd" "\xff\x4e\xf4\xff\xf5\xff\x33\xfd\xff\x25\x5b\xee\xfe\xfc\xa0\xaf\x5f\xff" "\x5f\xff\x9f\x72\xfd\xd6\xff\x8f\xb9\xff\xc3\x61\x26\x35\xc9\xff\x00\x00" "\x00\x50\x07\x31\xf7\x7f\x24\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff" "\xa3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x13\x61\x26\x35\xc9\xff" "\x7d\xda\xff\xf7\xfb\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x17\x45" "\xff\x5f\xff\x3f\xd3\xff\x5f\xb2\xe5\xee\xcf\x0f\xfa\xfa\xf5\xff\xf5\xff" "\x29\xd7\x6f\xfd\xff\x98\xfb\x37\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d" "\xc4\xdc\xbf\x29\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x86\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xcd\x61\x26\x35\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xa4\xff\xaf\xff\xdf\x8d\xfe\xbf" "\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\x72\xfd\xd6\xff\x8f\xb9\xff\xc6\x30" "\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x6f\x0a\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\xff\x58\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\x96\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\x5e\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\x7f\x90\xd7\xaf\xff\xaf\xff\x4f" "\xb9\x7e\xeb\xff\xc7\xdc\x7f\x73\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41" "\xcc\xfd\x1f\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x25\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x32\xcc\xa4\x26\xf9\xbf\x07\xfd\xff" "\x95\x99\xfe\xbf\xfe\xbf\xfe\x7f\x83\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x7f\x77\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd\x7f\xca\xf5\x5b\xff\x3f" "\xe6\xfe\x5b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf\x1a\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x15\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x3f\x1d\x66\x52\x93\xfc\xef\xf7\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xf7\x92\xfe\xff\xb2\xf4\xff\xff\x7b\xa1\x12\xbb\xfe\x7f" "\xeb\xe7\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x6f\xf5\x5b\xff\x3f\xe6\xfe" "\x6d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x6f\x0f\x33\x91\xff" "\x01\x00\x00\xa0\x32\x62\xee\xdf\x11\x66\x22\xff\x03\x00\x00\x40\x65\xc4" "\xdc\xbf\x33\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\xbf\x97\xf4\xff\xfd\xfe\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff" "\xfa\xff\x94\xeb\xb7\xfe\x7f\xcc\xfd\xb7\x85\x99\xd4\x24\xff\x03\x00\x00" "\x40\x1d\xc4\xdc\xbf\x2b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x77" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x9e\x30\x93\x9a\xe4\x7f\xfd" "\xff\x7e\xed\xff\x1f\xd1\xff\xd7\xff\xd7\xff\x6f\x3b\x9f\xfa\xff\xfa\xff" "\x9d\xe8\xff\xeb\xff\x67\xfa\xff\x4b\xb6\xdc\xfd\xf9\x41\x5f\xbf\xfe\xbf" "\xfe\x3f\xe5\xfa\xad\xff\x1f\x73\xff\xde\x30\x93\x9a\xe4\x7f\x00\x00\x00" "\xa8\x83\x98\xfb\xff\x5f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xff" "\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x85\x30\x93\x9a\xe4\x7f" "\xfd\xff\x7e\xed\xff\xfb\xfd\xff\x99\xfe\xbf\xfe\x7f\xdb\xf9\xd4\xff\xd7" "\xff\xef\x44\xff\x5f\xff\x3f\xd3\xff\x5f\xb2\xe5\xee\xcf\x0f\xfa\xfa\xf5" "\xff\xf5\xff\x29\xd7\x6f\xfd\xff\x98\xfb\xf7\x85\x99\xd4\x24\xff\x03\x00" "\x00\x40\x1d\xc4\xdc\xff\x89\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\x4f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0f\x33\xa9\x49\xfe" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd\x7f\xfd\xff" "\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x94\xeb\xb7\xfe\x7f\xcc" "\xfd\xb7\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x47\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xa7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\x3f\x1d\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xdf\x4b\xfa\xff\x35\xe8\xff\x4f\xe6\x4f\xc4\xe2\x72\xfd\xff" "\x82\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x85\x7e\xeb\xff\xc7\xdc\x7f\x67\x98" "\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x9f\x09\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\xff\xc5\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\xbb\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\x7b\x49\xff\xbf\x06\xfd\x7f\xbf\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f" "\x05\xf4\x5b\xff\x3f\xe6\xfe\x5f\x0a\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a" "\x88\xb9\xff\xee\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x7b\xc2\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x39\xcc\xa4\x26\xf9\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\xbb\xd1\xff" "\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\x53\xae\xdf\xfa\xff\x31\xf7\xff\x4a" "\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xbf\x1a\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\xff\xd9\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6" "\xfe\x7b\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\x7b\x49\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x41\x5e\xbf\xfe\xbf\xfe" "\x3f\xe5\xfa\xad\xff\x1f\x73\xff\xe7\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0" "\x0e\x62\xee\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xf3\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x5f\x08\x33\xa9\x49\xfe\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd\x7f\xfd\xff\x6e\xf4" "\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x94\xeb\xb7\xfe\x7f\xcc\xfd\xf7" "\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xc5\x30\x13\xf9\x1f" "\x00\x00\x00\x2a\x23\xe6\xfe\x5f\x0b\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xff\xf5\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\xff\x5e\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\x7f\x90\xd7\xaf\xff\xaf" "\xff\x4f\xb9\x7e\xeb\xff\xc7\xdc\xff\x1b\x61\x26\x35\xc9\xff\x00\x00\x00" "\x50\x07\x31\xf7\xff\x66\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x6f" "\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x3f\x10\x66\x52\x93\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xdf\xbf\xfd\xff\xb1\x96\xf3\xa9\xff\xaf\xff" "\xdf\x89\xfe\xbf\xfe\x7f\xa6\xff\xbf\x64\xcb\xdd\x9f\x1f\xf4\xf5\xeb\xff" "\xeb\xff\x53\xae\xdf\xfa\xff\x31\xf7\x7f\x29\xcc\xa4\x26\xf9\x1f\x00\x00" "\x00\xea\x20\xe6\xfe\xdf\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f" "\x10\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x60\x98\x49\x4d\xf2\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xff\xf6\xff\x5b\xcf\xa7\xfe\xbf\xfe\x7f" "\x27\xfa\xff\xfa\xff\x99\xfe\xff\x92\x2d\x77\x7f\x7e\xd0\xd7\xaf\xff\xaf" "\xff\x4f\xb9\x7e\xeb\xff\xc7\xdc\x7f\x30\xcc\xa4\x26\xf9\x1f\x00\x00\x00" "\xea\x20\xe6\xfe\xdf\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x14" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x38\xcc\xa4\x26\xf9\x5f\xff" "\x5f\xff\xbf\x3f\xfb\xff\xff\xd6\xb8\x4c\xff\x5f\xff\x3f\xd3\xff\xd7\xff" "\x2f\xa1\xff\xaf\xff\x9f\xe9\xff\x2f\xd9\x72\xf7\xe7\x07\x7d\xfd\xfa\xff" "\xfa\xff\x94\xeb\xb7\xfe\x7f\xcc\xfd\x33\x61\x26\x35\xc9\xff\x00\x00\x00" "\x50\x07\x31\xf7\x1f\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x1a" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x50\x98\x49\x4d\xf2\xbf\xfe" "\xbf\xfe\x7f\x7f\xf6\xff\xfd\xfe\xff\x4c\xff\x5f\xff\x5f\xff\x7f\x51\xf4" "\xff\xf5\xff\x33\xfd\xff\x25\x5b\xee\xfe\xfc\xa0\xaf\x5f\xff\x5f\xff\x9f" "\x72\xfd\xd6\xff\x8f\xb9\xff\x58\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41" "\xcc\xfd\x5f\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x4a\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xf1\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x5e\xd2\xff\xd7\xff\xef\x46\xff\x5f" "\xff\x7f\x90\xd7\xaf\xff\xaf\xff\x4f\xb9\x7e\xeb\xff\xc7\xdc\x7f\x22\xcc" "\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x93\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\xa7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x4f" "\x87\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7" "\x92\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd\x7f\xca" "\xf5\x5b\xff\x3f\xe6\xfe\xdf\x0d\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88" "\xb9\xff\x4c\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x6c\x98\x89\xfc" "\x0f\x00\x00\x00\x95\x11\x73\xff\xd9\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x5e\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff" "\x7f\x90\xd7\xaf\xff\xaf\xff\x4f\xb9\x7e\xeb\xff\xc7\xdc\x7f\x2e\xcc\xa4" "\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x87\xc3\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8c\x98\xfb\x1f\x09\x33\x91\xff\xe1\xff\xd8\xbb\x8b\x5e\x41\xae\x23" "\x8e\xa3\x2f\x51\xa4\xc9\x3e\x1f\x33\xbb\x64\x13\x66\x66\x66\x66\x66\x66" "\x66\x66\x66\x66\x9e\x24\x9e\x85\x65\xbd\xaa\xb2\xc6\xd0\x2d\x4b\x6e\xeb" "\x76\xd5\x39\x9b\xb2\x07\xa4\x3b\xd2\xcc\xe2\xbf\xf8\xa9\x01\x00\x00\xda" "\xc8\xdd\x7f\xbf\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\xff\xcc\xef\xd7\xff\xeb\xff" "\xd9\xb7\x5a\xff\x9f\xbb\xff\xfe\x71\xcb\x90\xfd\x0f\x00\x00\x00\x5d\x5c" "\xd9\xf8\xb9\xdc\xfd\x0f\x88\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x03" "\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xa0\xb8\x65\xc8\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf" "\xfe\xff\xcc\xef\xd7\xff\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb\xff\xc1\x71\xcb" "\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f\x48\xdc\x62\xff\x03\x00\x00\x40" "\x1b\xb9\xfb\x1f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x87\xc5\x2d" "\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x47\xd2\xff\xdf" "\xa5\xfd\xff\xb5\xbd\x5f\xaf\xff\xbf\xfe\xcf\xa1\xff\xd7\xff\xeb\xff\xf5" "\xff\x1c\x6b\xb5\xfe\x3f\x77\xff\xc3\xe3\x96\x21\xfb\x1f\x00\x00\x00\x26" "\xc8\xdd\xff\x88\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x3f\x32\x6e\xb1" "\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x8f\x8a\x5b\x86\xec\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x3f\x59\xff\x7f\xaf\x0b\xfd\xff\xa9\xe8\xff\x7d\xff\x7f\x8b" "\xfe\x5f\xff\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd\xff\xe8" "\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x3f\x26\x6e\xb1\xff\x01\x00" "\x00\xa0\x8d\xdc\xfd\x8f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xe3" "\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x4f\xd6\xff\xfb\xfe\xff" "\xc9\xe8\xff\xf5\xff\x5b\xf4\xff\xfa\xff\x33\xbf\x5f\xff\xaf\xff\x67\xdf" "\x6a\xfd\x7f\xee\xfe\xc7\xc7\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff" "\x09\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x62\xdc\x62\xff\x03\x00" "\x00\x40\x1b\xb9\xfb\x9f\x14\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x1f\x49\xff\xaf\xff\xdf\xa2\xff\xd7\xff\x9f\xf9\xfd\xfa" "\x7f\xfd\x3f\xfb\x56\xeb\xff\x73\xf7\x3f\x39\x6e\x19\xb2\xff\x01\x00\x00" "\x60\x82\xdc\xfd\x4f\x89\x5b\xec\x7f\x00\x00\x00\xe8\xe1\x3e\xf7\x8e\xff" "\xb8\xe7\xc5\x53\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xb4\xb8\x65" "\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x48\xfa\x7f\xfd" "\xff\x16\xfd\xbf\xfe\xff\xcc\xef\xd7\xff\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb" "\xff\xe9\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f\x46\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\x9f\x19\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\x67\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\x47\xd2\xff\xeb\xff\xb7\xe8\xff\xf5\xff\x67\x7e\xbf\xfe\x5f\xff\xcf\xbe" "\xd5\xfa\xff\xdc\xfd\xcf\x8e\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff" "\x73\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xdc\xb8\xc5\xfe\x07\x00" "\x00\x80\x36\x72\xf7\x3f\x2f\x6e\x19\xb2\xff\x3b\xf6\xff\xb7\x9f\x8c\xdc" "\x4c\xff\x7f\x49\xff\xaf\xff\xbf\xd0\xff\xeb\xff\x0f\xa6\xff\xd7\xff\x6f" "\xd1\xff\xeb\xff\xcf\xfc\x7e\xfd\xbf\xfe\x9f\x7d\xab\xf5\xff\xb9\xfb\x9f" "\x1f\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\x17\xc4\x2d\xf6\x3f\x00" "\x00\x00\xb4\x91\xbb\xff\x85\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f" "\x51\xdc\x32\x64\xff\x77\xec\xff\x7d\xff\x5f\xff\xaf\xff\xd7\xff\x5f\xe8" "\xff\x97\xa1\xff\xd7\xff\x6f\xd1\xff\xeb\xff\xcf\xfc\x7e\xfd\xbf\xfe\x9f" "\x7d\xab\xf5\xff\xb9\xfb\x5f\x1c\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee" "\xfe\x97\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xa5\x71\x8b\xfd\x0f" "\x00\x00\x00\x6d\xe4\xee\x7f\x59\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x7f\x24\xfd\xbf\xfe\x7f\x8b\xfe\x5f\xff\x7f\xe6\xf7" "\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd\xff\xf2\xb8\x65\xc8\xfe\x07\x00" "\x00\x80\x09\x72\xf7\xbf\x22\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xaf" "\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xab\xe2\x96\x21\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x23\xe9\xff\xf5\xff\x5b\xf4\xff" "\xfa\xff\x33\xbf\x5f\xff\xaf\xff\x67\xdf\x6a\xfd\x7f\xee\xfe\x57\xc7\x2d" "\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x35\x71\x8b\xfd\x0f\x00\x00\x00" "\x6d\xe4\xee\x7f\x6d\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x5f\x17\xb7" "\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\x49\xff\xaf" "\xff\xdf\xa2\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x56\xeb\xff\x73" "\xf7\xbf\x3e\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x6f\x88\x5b\xec" "\x7f\x00\x00\x00\x68\x23\x77\xff\x1b\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8" "\xdd\xff\xa6\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\xff\x48\xfa\xff\x2e\xfd\xff\xe5\x5f\x6e\xfd\xff\xf5\xf4\xff\xfa\x7f\xfd" "\xbf\xfe\x9f\x6d\xab\xf5\xff\xb9\xfb\xdf\x1c\xb7\x0c\xd9\xff\x00\x00\x00" "\x30\x41\xee\xfe\xb7\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xad\x71" "\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x5b\xdc\x32\x64\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x24\xfd\xff\x9d\xd9\xff\x5f\xbd\xd5" "\x8f\xf8\xfe\xff\xa5\x93\xf6\xff\x77\xcb\xb7\xe9\xff\xcf\xf9\x7e\xfd\xbf" "\xfe\x9f\x7d\xab\xf5\xff\xb9\xfb\xdf\x1e\xb7\x0c\xd9\xff\x00\x00\x00\x30" "\x41\xee\xfe\x77\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x9d\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x57\xdc\x32\x64\xff\xeb\xff\x8f\xeb" "\xff\xaf\x5c\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xdf\xe5\xfb\xff" "\x97\xf4\xff\xd7\xf3\xfd\x7f\xfd\xbf\xfe\x5f\xff\xcf\xb6\xd5\xfa\xff\xdc" "\xfd\xef\x8e\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x7b\xe2\x16\xfb" "\x1f\x00\x00\x00\xda\xc8\xdd\xff\xde\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72" "\xf7\xbf\x2f\x6e\x19\xb2\xff\xf5\xff\xbe\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\x47\xd2\xff\xeb\xff\xb7\xe8\xff\xf5\xff\x67\x7e\xbf\xfe\x5f\xff\xcf" "\xbe\xd5\xfa\xff\xdc\xfd\xef\x8f\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77" "\xff\x07\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xc1\xb8\xc5\xfe\x07" "\x00\x00\x80\x36\x72\xf7\x7f\x28\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\x45\xff\xaf\xff\x3f\xf3\xfb" "\xf5\xff\xfa\x7f\xf6\xad\xd6\xff\xe7\xee\xff\x70\xdc\x32\x64\xff\x03\x00" "\x00\xc0\x04\xb9\xfb\x3f\x12\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x8f" "\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x63\x71\xcb\x90\xfd\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x91\xf4\xff\xfa\xff\x2d\xfa\x7f" "\xfd\xff\x39\xde\x7f\xf7\xdb\xfc\xfd\xfa\x7f\xfd\x3f\xfb\x56\xeb\xff\x73" "\xf7\x7f\x3c\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x9f\x88\x5b\xec" "\x7f\x00\x00\x00\x68\x23\x77\xff\x27\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8" "\xdd\xff\xa9\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\xff\xcc\xef\xd7\xff\xeb\xff\xd9" "\xb7\x5a\xff\x9f\xbb\xff\xd3\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee" "\xff\x4c\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x3f\x1b\xb7\xd8\xff\x00" "\x00\x00\xd0\x46\xee\xfe\xcf\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\x47\xd2\xff\xeb\xff\xb7\xe8\xff\xf5\xff\x67\x7e\xbf" "\xfe\x5f\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd\x9f\x8f\x5b\x86\xec\x7f\x00\x00" "\x00\x98\x20\x77\xff\x17\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xc5" "\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f\x29\x6e\x19\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\x45\xff\xaf" "\xff\x3f\xf3\xfb\xf5\xff\xfa\x7f\xf6\xad\xd6\xff\xe7\xee\xff\x72\xdc\x32" "\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\xbf\x12\xb7\xd8\xff\x00\x00\x00\xd0" "\x46\xee\xfe\xaf\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x6b\x71\xcb" "\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x91\xf4\xff\xfa" "\xff\x2d\xfa\xff\x3b\xd2\xff\x5f\xd1\xff\x2f\xf6\x7e\xfd\xbf\xfe\x9f\x7d" "\xab\xf5\xff\xb9\xfb\xbf\x1e\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe" "\x6f\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x9b\x71\x8b\xfd\x0f\x00" "\x00\x00\x6d\xe4\xee\xff\x56\xdc\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\x7f\x24\xfd\xbf\xfe\x7f\x8b\xfe\xdf\xf7\xff\xcf\xfc\x7e" "\xfd\xbf\xfe\x9f\x7d\xab\xf5\xff\xb9\xfb\xbf\x1d\xb7\x0c\xd9\xff\x00\x00" "\x00\x30\x41\xee\xfe\xef\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\xbb" "\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x5e\xdc\x32\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x24\xfd\xbf\xfe\x7f\x8b\xfe\x5f" "\xff\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd\xff\xfd\xb8\x65" "\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xff\x20\x6e\xb1\xff\x01\x00\x00\xa0" "\x8d\xdc\xfd\x3f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x8f\xe2\x96" "\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x23\xe9\xff\xf5" "\xff\x5b\xf4\xff\xfa\xff\x33\xbf\x5f\xff\xaf\xff\x67\xdf\x6a\xfd\x7f\xee" "\xfe\x1f\xc7\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x27\x71\x8b\xfd" "\x0f\x00\x00\x00\x6d\xe4\xee\xff\x69\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9" "\xfb\x7f\x16\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\x1f\x49\xff\xaf\xff\xdf\x70\xd3\x3f\x1f\xfd\xbf\xfe\xff\xb4\xef\xd7\xff" "\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb\xff\xe7\x71\xcb\x90\xfd\x0f\x00\x00\x00" "\x13\xe4\xee\xff\x45\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x7f\x19\xb7" "\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x5f\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x47\xd2\xff\xeb\xff\xb7\xf8\xfe\xbf\xfe" "\xff\xcc\xef\xd7\xff\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb\xff\xd7\x71\xcb\x90" "\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x4d\xdc\x62\xff\x03\x00\x00\x40\x1b" "\xb9\xfb\x7f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xdf\xc5\x2d\x43" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x47\xd2\xff\xeb\xff" "\xb7\xe8\xff\xf5\xff\x67\x7e\xbf\xfe\x5f\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd" "\xbf\x8f\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x1f\xe2\x16\xfb\x1f" "\x00\x00\x00\xda\xc8\xdd\xff\xc7\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7" "\xff\x29\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f" "\x92\xfe\x5f\xff\xbf\x45\xff\xaf\xff\x3f\xf3\xfb\xf5\xff\xfa\x7f\xf6\xad" "\xd6\xff\xe7\xee\xff\x73\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\xff" "\x12\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xbf\xc6\x2d\xf6\x3f\x00\x00" "\x00\xb4\x91\xbb\xff\x6f\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\x91\xf4\xff\xfa\xff\x2d\xfa\x7f\xfd\xff\x99\xdf\xaf\xff" "\xd7\xff\xb3\x6f\xb5\xfe\x3f\x77\xff\xdf\xe3\x96\x21\xfb\x1f\x00\x00\x00" "\x26\xc8\xdd\xff\x8f\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xff\x33\x6e" "\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xff\x8a\x5b\x86\xec\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x8f\xa4\xff\xd7\xff\x6f\xd1\xff\xeb\xff" "\xcf\xfc\x7e\xfd\xbf\xfe\x9f\x7d\xab\xf5\xff\xb9\xfb\xff\x1d\xb7\x0c\xd9" "\xff\x00\x00\x00\x30\x41\xee\xfe\xff\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91" "\xbb\xff\x6a\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xff\x1b\xb7\x0c\xd9" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x1f\xef\xb9\x87\xfe\x5f\xff\x7f\x04\xfd" "\xbf\xfe\x7f\x8b\xfe\x5f\xff\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff" "\xcf\xdd\xff\xbf\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xff\x3f\x6e" "\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x37\xc4\x2d\xf6\x3f\x00\x00\x00\xb4" "\x91\xbb\xff\x5a\xdc\xd2\x74\xff\xdf\xf7\x16\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xbe\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\x45\xff\xaf\xff\x3f\xf3" "\xfb\xf5\xff\xfa\x7f\xf6\xad\xd6\xff\xe7\xee\xbf\x31\x00\x00\xff\xff\xf8" "\xde\x8f\x2c", 24069); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20000040, /*flags=MS_REC*/ 0x4000, /*opts=*/0x20000080, /*chdir=*/0x11, /*size=*/0x5e05, /*img=*/0x20006780); memcpy((void*)0x20000100, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000100ul, /*flags=O_CREAT|O_RDWR*/ 0x42ul, /*mode=*/0ul); if (res != -1) r[0] = res; *(uint32_t*)0x20000140 = 0; *(uint16_t*)0x20000144 = 0x18; *(uint16_t*)0x20000146 = 0xfa00; *(uint64_t*)0x20000148 = 0; *(uint64_t*)0x20000150 = 0x200000c0; *(uint16_t*)0x20000158 = 0; *(uint8_t*)0x2000015a = 0; memset((void*)0x2000015b, 0, 5); syscall(__NR_write, /*fd=*/r[0], /*data=*/0x20000140ul, /*len=*/0xfffffd1aul); return 0; }