// https://syzkaller.appspot.com/bug?id=5d7d3df369e64113cdd6205b6d5f7e11160403be // 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_fallocate #define __NR_fallocate 47 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_setrlimit #define __NR_setrlimit 164 #endif #ifndef __NR_truncate #define __NR_truncate 45 #endif #ifndef __NR_write #define __NR_write 64 #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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } 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=*/(intptr_t)-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=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x810000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {6a 6f 75 72 6e 61 6c 5f 74 72 61 6e 73 41 63 74 // 69 52 2a 6f 6e 5f 6e 61 6d 65 73 2c 62 74 72 65 65 5f 6e 6f 64 65 // 5f 0d cb cc 28 b5 ef 6f 8b 2c 6a 6f 75 72 6e 61 6c 5f 66 6c 75 73 // 68 5f 64 69 73 61 62 6c 65 64 2c 66 73 63 6b 2c 6a 6f 75 72 6e 61 // 6c 5f 66 6c 75 73 68 5f 64 69 73 61 62 6c 65 64 2c 72 61 74 65 6c // 69 6d 69 74 5f 65 72 72 6f 72 73 2c 72 65 63 6f 76 65 72 79 5f 70 // 61 73 73 5f 6c 61 73 74 3d 73 65 74 5f 6d 61 79 5f 67 6f 5f 72 77 // 2c 72 65 63 6f 6e 73 74 72 75 63 74 5f 61 6c 6c 6f 63 2c 6e 6f 5f // 64 61 74 61 5f 69 6f 2c 00 60 ba 0f d1 8a c8 bd 49 29 51 5a 5c 35 // 93 d2 e2 e6 23 93 83 a7 56 22 d9 d4 b7 cf 4d 00 64 a3 e4 13 e7 20 // 01 fd 1f 59 a9} (length 0xdb) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x5917 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5917) // } // ] // returns fd_dir memcpy((void*)0x200000c0, "bcachefs\000", 9); memcpy((void*)0x20000000, "./file1\000", 8); memcpy((void*)0x20000100, "\x6a\x6f\x75\x72\x6e\x61\x6c\x5f\x74\x72\x61\x6e\x73\x41\x63\x74\x69" "\x52\x2a\x6f\x6e\x5f\x6e\x61\x6d\x65\x73\x2c\x62\x74\x72\x65\x65\x5f" "\x6e\x6f\x64\x65\x5f\x0d\xcb\xcc\x28\xb5\xef\x6f\x8b\x2c\x6a\x6f\x75" "\x72\x6e\x61\x6c\x5f\x66\x6c\x75\x73\x68\x5f\x64\x69\x73\x61\x62\x6c" "\x65\x64\x2c\x66\x73\x63\x6b\x2c\x6a\x6f\x75\x72\x6e\x61\x6c\x5f\x66" "\x6c\x75\x73\x68\x5f\x64\x69\x73\x61\x62\x6c\x65\x64\x2c\x72\x61\x74" "\x65\x6c\x69\x6d\x69\x74\x5f\x65\x72\x72\x6f\x72\x73\x2c\x72\x65\x63" "\x6f\x76\x65\x72\x79\x5f\x70\x61\x73\x73\x5f\x6c\x61\x73\x74\x3d\x73" "\x65\x74\x5f\x6d\x61\x79\x5f\x67\x6f\x5f\x72\x77\x2c\x72\x65\x63\x6f" "\x6e\x73\x74\x72\x75\x63\x74\x5f\x61\x6c\x6c\x6f\x63\x2c\x6e\x6f\x5f" "\x64\x61\x74\x61\x5f\x69\x6f\x2c\x00\x60\xba\x0f\xd1\x8a\xc8\xbd\x49" "\x29\x51\x5a\x5c\x35\x93\xd2\xe2\xe6\x23\x93\x83\xa7\x56\x22\xd9\xd4" "\xb7\xcf\x4d\x00\x64\xa3\xe4\x13\xe7\x20\x01\xfd\x1f\x59\xa9", 219); memcpy( (void*)0x20006f40, "\x78\x9c\xec\xdd\x6d\x90\x5c\x55\xdd\x20\xf0\x73\xbb\x7b\x32\x9d\x99\x4c" "\x32\x09\x20\x11\x64\x32\x04\xa2\x08\x6a\x26\xbc\x15\xbe\x94\x46\xd7\xb7" "\x02\xa4\x62\x61\x29\x61\xa3\x30\x90\x09\x46\x93\x90\x4a\x82\x40\x40\x09" "\x2e\xb8\x50\x80\x85\x96\x96\xa2\x7e\x40\x0b\xa9\x45\xa3\x45\x15\xac\x12" "\x29\x91\x97\x4d\x58\x45\x29\x56\x97\xda\x42\x6a\x75\x17\xfd\xe0\x53\xc8" "\x43\x4a\x20\x0f\x65\xf9\x38\x4f\xcd\xf4\x3d\x9d\x9e\x3b\x7d\xe7\xf6\xf4" "\xf4\x84\x04\x7e\xbf\x4a\xe6\xf6\x39\x7d\xfb\x7f\xce\xbd\xf7\xf4\xed\xfb" "\x3f\xdd\x33\x1d\x00\x00\x00\x78\x4d\xd8\x73\xfd\xd6\x7d\xe7\x1c\xf5\x81" "\x5f\x7d\x71\xe4\xa5\x6b\x3e\xfc\xb3\x8d\xd7\x86\xde\xf2\x78\x7d\x35\xae" "\xd0\x9f\x2e\xaf\x78\xa5\x7a\xc8\x81\xd4\x5d\x59\x3c\xbe\xcc\x8e\x8b\x37" "\x5d\xf5\x83\x3f\x0f\x5e\xfc\xbe\x5f\xde\xdd\xf3\xfd\x97\x77\xaf\x3d\x76" "\xdd\xef\xdf\x7f\xd8\xc5\xf7\x7f\xe6\xcc\x5d\xb7\x7d\xfb\xa1\x17\xfb\xee" "\xfd\xe7\x33\x45\x71\xe3\x78\x3a\x71\x7f\x39\x79\x2e\x09\xa1\xfa\xf3\xbd" "\x5f\xff\xd2\xee\xc7\x8e\x1c\xab\x4b\x42\x08\xe5\xa4\x7f\x47\x08\x0b\x93" "\x45\x0f\x2d\x4c\x32\x21\x86\xfe\x1e\x42\x58\x9b\x16\x16\x67\xee\xbc\xe7" "\xa5\x53\xd6\x8d\x2d\xaf\xbd\xa9\x7b\x42\xfd\x82\xcc\x7a\xc6\xfb\x6b\x5b" "\x35\x1d\x67\xdb\xf7\x5d\x7e\x52\xf8\xc3\x7b\x57\x5f\xf7\x9b\x25\x3f\xfe" "\x51\xd7\xce\x67\x77\xec\x5f\x25\xa9\x36\x8c\xa7\x10\xe6\x5f\xd8\xf8\xf8" "\xae\x10\xc2\xdc\xf4\xff\x98\x38\xda\xe2\x78\x8c\x83\x76\x55\x08\xa1\xa7" "\xe1\x71\x67\x14\xf4\xeb\xb8\x16\xfb\xbf\x3c\xa7\x7c\x74\xba\x9c\x93\x2e" "\x7b\x0b\xe2\xc4\xfb\x97\x66\xca\xa5\xcc\x7a\xd9\x72\xd4\x95\x59\xf6\x14" "\xb4\x37\x53\x79\xfd\x68\x77\xbd\x22\xf3\x32\xe5\xec\xc9\x68\xa6\xf2\xfa" "\x19\xeb\x17\xa6\xcb\x9f\xa6\xcb\x13\xa7\x19\xbf\x1c\xff\x27\xa1\x94\x84" "\x4a\xbd\xfb\x1b\x92\xfd\x63\x24\x34\x1c\xb7\x24\x24\xe3\xc7\xb2\x5a\x2f" "\x97\xea\xc7\x36\xa4\xdb\x9f\x29\x27\x99\x72\x29\x53\x2e\x77\x65\xb6\x6b" "\xbc\xdd\x74\xa0\x95\x93\x64\x62\x7d\x5c\x2f\x53\x1f\x4f\xc7\x95\xb4\xfe" "\xd8\xc6\x73\x75\x13\xe7\xe6\xd4\xbf\x3e\x5d\x56\xd3\x27\xea\xcb\xb1\x1c" "\xb2\x37\x6a\x7a\x27\xdd\xa8\x6f\xd7\xb8\xd8\xaf\xbd\x53\xf4\xe5\x40\x28" "\x35\x9c\x83\x9a\xd5\xd7\x0f\x7c\x7a\x30\x7a\xd3\xba\xde\x64\xd1\xa4\xc7" "\x8c\x36\x11\xef\xdb\xbd\xfa\xe6\x65\xe5\x35\x0f\xef\xe9\xcf\xe9\x47\x72" "\x77\x92\xc6\x4f\xda\x8a\xbf\xfd\xd7\x0b\xe7\x7d\xea\x87\x37\x5e\x96\x7d" "\x5d\xaf\xc7\xbf\xb0\x94\xc6\x2f\xb5\x15\xff\x8f\x67\x3d\xfe\xfc\xf9\x37" "\x7e\xef\x5b\xb9\xf1\x6f\x8d\xf1\xcb\x6d\xc5\x3f\xf9\x81\x9e\xe7\xce\x7a" "\xe4\xfa\xa5\xb9\xfb\x67\x6f\xdc\x3f\x95\xb6\xe2\x0f\x3f\xf3\xe8\x2d\x4b" "\x0e\xbf\x68\x67\x6e\xff\x6f\x8f\xf1\xab\x6d\xc5\x5f\xb9\xeb\xf1\xee\xbe" "\x7d\x0f\x3c\x98\xdb\xff\xa1\xb8\x7f\xe6\xb6\x15\xff\xe9\x77\x7e\xf0\x4f" "\x77\x3d\x79\xdf\xb3\xb9\xf1\x43\x8c\xdf\xd3\x56\xfc\x35\xbb\x36\x7f\xb9" "\x7b\x60\xdf\x09\xb9\xf1\x1f\x8c\xfb\xa7\xb7\xbd\xf1\xf3\xc2\xce\xd3\x9f" "\x1a\x18\xf8\xcb\x60\x5e\xfc\x27\x62\xfc\xbe\xb6\xe2\xdf\xb9\xe3\xb6\x77" "\xdc\xb1\xe0\xa6\x33\x73\x8f\xef\xaa\xb8\x7f\xfa\xdb\x8a\x7f\xf6\xf1\xf7" "\x5f\x37\x6f\xdf\x7d\xc7\xe4\x9d\x3b\x93\xdb\x3b\xf5\xca\x09\xf0\xda\x74" "\x58\x7a\x8d\x75\x43\x5a\x6e\x37\xcf\x9c\xa9\x86\x7c\xe1\x9b\x83\x95\xda" "\x35\xdf\xbc\xf4\x7f\x5f\x27\x1b\xca\x5c\x7c\x8e\xb5\x33\xbf\x93\xf1\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x20\x84\x70\xc4\x49\xff\xf3\x43\xff\xff\xe3\xfd\xcf\x55\xd2\x72\x77\x7a" "\xe3\xe9\x52\x6d\x19\xeb\xe7\x84\x90\xcc\x0d\x21\x6c\xdd\x36\xbc\x65\xdb" "\xfa\x4d\x97\x0c\x7e\xe6\xd2\xcb\xb6\x6c\x1a\xde\x30\x38\xbc\x6d\x70\x64" "\xd3\xb6\x2d\x57\x0e\x9e\xfa\x96\xc1\x2d\x23\x9b\x37\x0c\x5f\x39\x76\xef" "\xd0\x5b\x4f\xa9\x3d\x6e\x51\x48\x6a\xcb\xe4\x98\x49\x6d\x77\x8f\x8e\x8e" "\x96\xfa\x27\xd6\xc5\xf6\xfe\xd3\xf1\x3b\xff\xb0\xec\x8c\x7f\xf9\x6b\x08" "\x43\x47\xfc\x6e\xa0\x92\xdb\xff\xe5\xb7\x6d\xbc\xe3\xf0\x26\x3f\x33\x92" "\x95\xa3\xef\xd9\x78\xd9\x39\xbf\x3b\xed\xbb\xe9\x76\xf5\xa7\xfd\xea\x6f" "\xd2\xaf\xd1\xd1\xd1\xd1\x90\xd3\xaf\x7f\x3d\xef\x1f\x77\x7c\x75\xef\x9f" "\x4f\x08\x61\xe8\x75\x53\xf5\xeb\xd1\xa7\xdf\xfd\x8b\x09\x1d\x1a\xaf\xd8" "\x1f\x27\x55\xea\x0e\xb5\x0e\x75\x27\x3d\x4d\xfb\x51\xef\x75\xda\x9f\xb8" "\xbf\x2a\xeb\xd6\x6f\x18\x19\x9a\x7a\xff\x8e\x3d\xbe\x9c\xb3\x1d\xff\xf9" "\xaa\x67\xff\xbe\xee\x8a\xaf\xfc\xa3\xb6\x7f\xab\xb9\xdb\xd1\xe2\xfe\x9d" "\xbb\x72\x74\x43\xe9\x1b\xab\xcf\xfe\xf7\x6f\x5c\x5d\xab\x28\xea\xd7\x2b" "\x75\xdc\x8b\xf6\x77\xdc\x8a\xd8\xbf\xb8\xff\xaa\xe9\xfe\x9e\x9f\x6e\xd7" "\xfc\x9c\xed\xaa\xe4\x6c\xd7\xf5\xbf\x79\xf0\xc9\x9f\x1f\x75\xe3\x8b\x3b" "\xc2\x50\xe5\x85\x25\x93\xdb\x2e\xda\xae\xae\x74\x00\x74\x25\xaf\x6f\xa9" "\xdd\xd8\x42\x4f\xb2\x70\x42\x7d\x35\x5d\x3f\x1e\xf1\xf8\xb8\xe5\xdb\x36" "\x6e\x5e\xbe\xf5\xca\xed\x6f\x5d\xbf\x71\xf8\x92\x91\x4b\x46\x36\xbd\x7d" "\xc5\xa9\x2b\x4e\x1f\x3a\xed\xf4\xd3\x96\x8f\x6f\xf9\xf2\x0e\x6f\x7f\x6c" "\xff\x8d\x2d\x6e\xff\x81\x19\x4f\x0b\x3e\xb7\xe3\xa7\xf1\x67\x6b\xe3\xa9" "\xa8\x5f\x45\xfb\x63\xac\x5f\xc5\xfb\xa3\xb1\x47\x79\xcf\xbf\x9e\x73\xbf" "\xf4\xb5\xb7\xdf\xf6\xc8\x39\xb5\x8a\xa2\x71\x1e\xd7\xae\x9f\x4f\xd2\x65" "\xcf\xd8\x71\x5e\x11\x1a\xc6\xdb\xe4\x7d\xd5\x6c\xbb\x8a\xf6\x43\x08\x61" "\xb0\xd9\x7e\x78\xfe\xc5\x33\xc3\x91\xff\x67\xfd\x75\x45\xe7\xa1\xc6\x23" "\xd3\xf8\x33\x23\x59\x39\xfa\xd8\xd2\xbf\x7d\xf7\x8c\xef\x2c\x7e\x57\xad" "\xe2\x80\x9c\xe7\x1b\x3b\xd4\xe6\x79\xbe\xde\xeb\xfd\xfd\x19\xdf\x5f\xd5" "\xf4\x78\x8c\x1e\xa4\xfb\xb7\x3b\x94\xd3\xed\xea\x6d\xda\xaf\x15\x8f\x3d" "\xd2\x75\xf3\x9e\xbf\x7e\xbe\xde\xbf\x39\x73\xc2\x15\xc3\xdb\xb6\x6d\x59" "\x51\xfb\x39\x2f\xed\xe9\xbc\xe4\xe8\xa6\xfd\xca\xd6\xc6\xed\x5a\x32\xfe" "\xb3\x1c\xd2\xdd\x12\xea\xc3\xb4\xc9\x78\x1d\xd3\x15\x6a\xfd\xcb\x9e\x3f" "\xe3\xea\xd9\xbd\xda\x9b\xde\xd7\x9b\x2c\x6a\xba\x5d\x59\xf1\xbe\xdd\xab" "\x6f\x5e\x56\x5e\xf3\xf0\x9e\xbc\x3d\x9d\xdc\x5d\x6b\x71\x6e\xe8\xab\x2d" "\x93\x37\xe4\xac\xb9\x21\xf3\xc0\x72\xbd\xc3\xcd\xda\x3f\x58\x9f\x7f\x45" "\xe3\x63\xe0\x43\xdf\xb9\xf7\xe3\xf7\xfe\xe4\xd4\x49\xe3\xe3\xe4\xda\xcf" "\xa2\xed\x4a\x72\xb6\xeb\xc7\x4f\xde\xf9\xb5\xef\x7f\xe5\xbf\xfe\xa4\x73" "\xdb\xf5\xa1\x77\x3f\xde\xff\xb7\xff\xfb\xe9\x65\xb5\x8a\x43\xe5\xbc\x52" "\xef\x75\xda\x9f\xa4\xf1\xbc\x72\x72\x08\x45\xcf\xbf\x25\xa1\xf9\x76\xe4" "\x3e\xff\x4a\xcd\xb7\xa7\xe8\xf9\x97\x6d\x67\xff\xfa\xcd\xe3\x0d\x66\xca" "\xbd\xa1\xdc\xd6\xf3\xf5\xe4\x07\x7a\x9e\x3b\xeb\x91\xeb\x97\xe6\x3e\x5f" "\xf7\xb6\xfa\x7c\xbd\x7a\x42\xa9\x5c\xf0\x7c\x3d\x58\xc6\x4f\xf6\xf9\x95" "\x54\x26\xf6\x63\xf6\x9e\x5f\x13\x06\x4a\xb2\x72\xf4\x97\x37\x1c\xb6\xe3" "\xa1\x6b\x56\x1d\x55\xab\x28\x1a\xd7\xf5\xb5\x9b\x8d\xeb\x53\x5a\xc8\x3f" "\x72\xb6\xeb\x17\xe7\x3f\x35\x70\xe9\xe0\x7f\xf9\xdf\x9d\x3b\x6f\xfc\xe0" "\x2d\xf7\x5c\xf0\xfb\xe1\x95\x5f\xa8\x55\xb4\x7f\xdc\x63\x5f\x3a\x73\xdc" "\xab\xe9\xfe\xad\xe6\xec\xdf\x7a\xaf\x63\xde\xd9\xb8\x7f\xdf\x76\xf1\xa5" "\x1b\xd6\xd6\xea\x0f\xde\xeb\xdf\x74\x59\x90\xff\xc4\x53\xc9\xd6\x2b\xb7" "\x7f\x76\x78\xc3\x86\x91\x2d\x5b\x5b\xdb\xae\x56\x5f\x4f\x63\x3b\xd9\xbd" "\xdc\xee\xeb\x69\x3c\xbb\x2d\x2a\xd8\xae\xd2\xa4\xed\x9a\xbd\x1b\xad\xec" "\xaf\x56\x9f\x6f\xb1\xff\x6b\xdb\xde\x5f\x13\x9f\x6f\xbd\x21\x69\xeb\x75" "\x61\xfb\xaf\x17\xce\xfb\xd4\x0f\x6f\xbc\xac\x7f\xd2\xa3\xd2\x86\x2e\x2c" "\xa5\xf1\x4b\x6d\xc5\xff\xe3\x59\x8f\x3f\x7f\xfe\x8d\xdf\xfb\x56\x6e\xfc" "\x5b\x63\xfc\x4a\x5b\xf1\x87\x9f\x79\xf4\x96\x25\x87\x5f\xb4\x33\x37\xfe" "\xed\x49\x1a\xbf\xda\x56\xfc\x95\xbb\x1e\xef\xee\xdb\xf7\xc0\x83\xb9\xf1" "\x87\x62\xff\xe7\xb6\x15\xff\xe9\x77\x7e\xf0\x4f\x77\x3d\x79\xdf\xb3\xb9" "\xf1\x43\x8c\xdf\xdb\xde\xfe\x7f\x61\xe7\xe9\x4f\x0d\x0c\xfc\x25\x37\xfe" "\x13\x49\xda\xce\xd8\x35\x52\x08\xf7\xbc\x74\xca\xba\x5a\x39\x09\x5d\xe9" "\xf3\x2d\xf6\xa3\x6b\x42\xbf\x42\xb6\x9c\x64\xca\xa5\x4c\xb9\xdc\x58\x2e" "\xd5\xe6\x5a\xeb\x0d\x94\x93\x64\x62\x7d\x5c\x2f\xad\x3f\xb6\xa1\x2f\xcd" "\x7c\x22\xa7\x3e\x5e\x85\x55\x17\xd7\x96\x2f\xc7\x72\xc8\xde\x98\xba\xfe" "\x60\x53\x6a\x38\xf7\x37\xab\x2f\xba\x4e\x05\x00\x78\xb5\x8b\xef\xff\xc7" "\x6b\xd0\xf8\xfe\xff\x48\x7a\xa1\x94\x3f\xd3\x00\xfb\xcd\x34\x0f\x5b\x9c" "\x13\x37\xe6\x61\xfb\xe7\x73\xe6\x4c\xb8\x7f\x71\x1a\x3f\x3e\x3e\xce\x03" "\x0e\xbc\x2d\x0c\x8d\x2d\xaf\x1d\xac\x5d\xe8\x4f\xf7\x7d\x84\xf8\x7c\xc8" "\xce\x73\xc6\x76\x4e\x38\x6e\x62\x8c\x76\xe7\x39\x8b\xe6\xdf\x97\x66\xca" "\xb1\x5f\xb5\xf9\xf2\x4a\x43\x1e\x9a\x9a\x9c\xd7\x54\x42\x0b\xf3\xef\x93" "\xdb\x99\x7a\xfe\x3d\xb3\xf9\xc5\xf3\xe3\x83\x37\x4c\xea\xd6\x60\xc3\xbc" "\x55\xf6\xf8\x75\xa5\x33\x66\xcd\x3e\xef\x90\xe9\x6f\x65\x2c\x42\xde\xf8" "\xc8\xce\x8b\xc5\xcf\x73\x0c\xcc\x0f\xab\xc6\xdb\x6b\x71\x7c\x64\x3f\x47" "\x13\x8f\x43\xf6\x73\x34\xb1\x9d\xa3\x32\x27\xce\x76\x3f\x47\x33\xd3\xf1" "\x11\xbb\x3d\xc5\xf8\x18\xef\x72\xf1\xfb\x1b\x93\x8f\x5f\x98\x62\xff\xee" "\x3f\x7e\xcd\xa3\x65\x8f\xdf\x34\x8e\x77\x75\x6c\xfd\xd9\x7e\x7f\xb6\x03" "\xf3\x86\x4d\x4f\x69\x07\x6e\xde\x70\x76\xdf\x0f\x33\x2f\x99\x13\x3f\x7d" "\x82\x1d\xec\xf3\x86\xb1\x3e\x6e\x47\xa5\xc5\xf9\xc4\x8f\xe7\xd4\x77\x6a" "\x3e\x31\x9e\x2e\x62\xbf\xf6\x4e\xd1\x97\x03\xc1\x7c\x22\xf0\x6a\x15\xf3" "\xff\xf8\x1a\x31\x96\xff\x8f\x5d\x80\xff\x5b\x66\xbd\xa2\xeb\xd0\xec\x55" "\x63\x8c\x97\xfb\x39\xa1\x72\xf3\xfe\x34\xcf\x3b\xf6\x5f\x4c\x4f\xfe\x9c" "\x5e\x4f\x5b\xaf\xe3\x6b\x76\x6d\xfe\x72\xf7\xc0\xbe\x13\x72\xaf\x73\x1e" "\x6c\xf5\x73\x3f\x9b\x27\x94\x7a\x0a\x3e\xf7\x53\xb4\x1f\x97\x65\xca\x85" "\xfb\x31\x67\x82\xa6\x28\xdf\xcb\xb6\x53\x94\xef\x65\x3f\x97\xd1\x1b\xfa" "\xda\xda\xef\x77\xee\xb8\xed\x1d\x77\x2c\xb8\xe9\xcc\xdc\xfd\xbe\xaa\xf6" "\x42\x5a\xbc\xdf\xbf\x36\xa1\xd4\x57\xb0\xdf\x0f\x81\x7c\xa1\x79\x7c\xf9" "\xc2\x6b\x22\x5f\x98\xed\xf9\xb3\x57\x2c\x1f\x49\x3f\xf8\x34\x5b\xf9\xc8" "\xc7\x72\xea\xa7\x9b\x8f\xf4\x4c\xba\x51\xdf\xae\x71\x87\x5c\x3e\xd2\x75" "\x60\xfb\x05\x00\x1c\x3a\x62\xfe\x5f\x7f\xff\x2c\xcd\xff\xff\x5f\x5c\x21" "\xbd\x8e\x28\xca\x5b\x4f\xcc\x94\x63\xbc\xdc\xbc\x35\xe7\xfa\x24\x2f\x6f" "\xfd\x48\xba\xbc\x22\xb3\x7e\x6f\xfa\x1b\x15\xd3\xbd\x6e\x3e\xfb\xf8\xfb" "\xaf\x9b\xb7\xef\xbe\x63\x72\xf3\x96\xdb\x5b\xcd\x43\xff\xdb\x84\x52\x7f" "\x61\x1e\x3a\xb3\xbc\x39\x37\x8f\x58\xd5\x99\xcf\x8b\xe7\xe6\x11\xf5\x3c" "\x6b\x66\x79\x62\x6e\xff\xeb\x79\xe2\xcc\xf2\xf4\xdc\xf8\xf5\x3c\x7d\x66" "\x79\x74\xee\xfe\xa9\xe7\xd1\x33\x9b\x07\xc8\x8d\x5f\x9f\x07\x38\xd4\xf3" "\xdc\x82\xf9\xba\x4c\x63\xb1\xd8\xea\x7c\xdd\xab\x36\x8f\x4e\x7f\x7d\x76" "\xb6\xf2\xe8\x73\x73\xea\xa7\x9b\x47\xf7\x4e\xba\x51\xdf\xae\x71\xf2\x68" "\x00\x80\x57\x56\xcc\xff\xe3\x65\x5c\xcc\xff\x1f\xc9\xac\x37\xd3\xf7\xd9" "\x73\xf3\x82\x0e\x5d\xb7\x67\xff\x1e\x48\x3d\xfe\x13\x07\x2a\xaf\x9c\xed" "\xbc\x6f\xb6\xf3\xd6\xd9\xce\xeb\x67\x7b\x5e\xe2\x50\xcf\x8b\x67\x7b\x5e" "\x68\x76\xe7\xc9\x5e\xf3\x79\x71\xda\xa8\xbc\x18\x00\x80\x83\x59\xcc\xff" "\xe7\xa6\xe5\xfc\xfc\x7f\x66\xf9\x49\xb3\xfc\xad\x6b\x42\x7e\x22\x3f\x6f" "\x1a\x5f\x7e\x7e\x90\xe4\xe7\x87\xfa\xfc\x97\xfc\xdf\xfb\xe2\xc5\xe4\xff" "\x00\x00\xaf\x6e\x31\xff\x8f\xbf\xf6\x18\xff\xfe\xdf\xff\x48\xcb\xd9\xbf" "\x5b\x2f\x4f\xcf\x89\x2f\x4f\xef\xee\xab\xc8\xd3\x73\xc7\x4f\xcb\x79\x7a" "\xe7\xe7\xd9\x82\xcf\x01\xbc\xb2\xf3\x00\x73\xf7\xaf\x6f\x1e\x00\x00\x80" "\x57\x42\xd7\x78\xa6\x34\xf9\xf7\xec\x3f\x99\x2e\xb3\xbf\x67\x9f\xf7\x7b" "\xf9\xe7\xe7\xac\xdf\xaa\x4a\x7a\x79\x7c\xd1\xb6\x2d\x23\x23\x17\x5c\xb6" "\x79\xed\xf0\xb6\x91\x0b\x36\x5d\xba\x76\x64\xeb\x05\x97\x6f\x59\xbf\x6d" "\xdb\xc8\xa6\xda\x7a\x33\xcd\x1b\x73\xf3\x96\x34\x6f\xec\x0a\x95\x74\x7f" "\x34\x5f\x2f\x9b\xb7\x2d\x48\xff\x1e\xc2\x82\x9c\xbf\x87\x90\x5d\x3f\x86" "\x3d\x7a\xfc\xc6\xe4\xbf\x87\x90\x6d\x76\x6e\xc1\xdf\x11\xd8\x7f\xfc\x5a" "\xeb\x6f\xde\xf1\x2b\x4d\xb1\x7e\xb3\xf1\x91\x77\xbc\xf3\xe2\x7f\x22\x67" "\xfd\xa8\x7e\xfc\x2f\xfe\xf4\xc9\x17\xac\xdb\x7a\xc1\xfa\x4d\xeb\xb7\xad" "\x1f\xde\xb0\x7e\xfb\xc8\xc4\xf5\xc6\xb2\xd6\x9e\x69\x7c\x6f\x66\xdc\x2d" "\xd3\xfa\xbe\xd4\xcc\x8f\x49\x4a\xd3\xff\xfe\xce\xce\xf4\xa3\x34\xa9\x1f" "\x5d\xe9\xfe\xc8\xfb\x7e\xf6\x24\xd3\x8f\x85\x69\x4f\x16\xe6\x7d\xff\x41" "\x4e\xbf\x7f\xf5\xbf\xbe\xfa\xb9\xe3\x47\xff\x71\x57\x08\x43\x47\x94\xdf" "\x30\xa3\xfd\x97\xac\x1c\xfd\xef\xe7\x8d\x7c\x64\xdb\x9e\xdf\x6d\x1e\xeb" "\x7f\x69\xca\xfe\xd7\xd7\x4c\xfb\x55\xf4\x7d\xa5\xd9\xf5\xe3\xf6\x54\x36" "\x5c\xba\x75\xdb\x49\xeb\x2e\xbd\x6c\x53\xf6\x1b\x25\xdb\x13\xe7\x33\x4a" "\xf5\xf2\x2c\xcd\x67\xa4\x4f\xff\x72\x8b\xf3\x13\x6b\x72\xea\xa7\xfb\x39" "\x85\xf2\xa4\x1b\x07\xa7\x96\xe7\x27\x00\x00\x98\x20\xbe\xff\x1f\xaf\x67" "\xe3\xfb\x87\x5f\x49\x2f\xa0\x62\x7d\xeb\x79\xfa\xcc\x3e\xe7\x9d\x9b\xa7" "\x0f\xb5\x96\xa7\x67\xbf\x97\xac\x28\x4f\xcf\xae\x1f\xb7\xb7\xd5\x3c\xbd" "\x3a\xc3\x3c\x3d\xdb\x7e\x51\x9e\xde\x6c\xfd\x66\x79\x7a\x5e\xde\x9d\x17" "\xff\x63\x39\xeb\x4f\x57\xeb\xe3\x64\x66\x9f\xf3\xc8\x1d\x27\x17\xb6\x36" "\x4e\xb2\xdf\x67\x50\x34\x4e\xb2\xeb\x4f\x77\x9c\x24\x33\x1c\x27\xd9\xf6" "\x8b\xc6\x49\xb3\xf5\x9b\x8d\x93\xbc\xe3\x9e\x17\xff\xa3\x39\xeb\xe7\x69" "\x7d\x3c\xcc\xec\x73\x39\xb9\xe3\xe1\xd6\xd6\xc6\xc3\x9b\x33\xe5\xa2\xf1" "\x90\x5d\x7f\xba\xe3\xa1\x34\xc3\xf1\x90\x6d\xbf\x68\x3c\x34\x5b\xbf\xd9" "\x78\xc8\x3b\xbe\x79\xf1\xcf\xc9\x59\xbf\x55\x13\xc7\xc7\xd8\xc0\x18\x1f" "\x17\x23\x17\x5c\x7e\xe9\x96\xcf\x36\xac\x37\xdb\xdf\x7f\x31\xf3\xfe\xcd" "\xee\xf7\x7f\xb4\xab\xf5\xfe\xcf\xee\xef\x67\xcd\x7e\xff\x67\xf7\x73\x65" "\xb3\xdf\xff\x99\x7d\xae\x2c\xb7\xff\x4f\xcc\x6c\x26\xac\xf5\xfe\xcf\xee" "\xf7\xbb\xb4\xeb\x80\xcd\xd7\xa6\x1f\x36\x2b\xfa\xfc\x59\xd1\x3c\xee\xea" "\x9c\xfa\xe9\xce\xe3\xce\x99\x74\xe3\xe0\x64\x1e\x17\x5e\x39\x31\xff\x8f" "\x6f\xf7\xc4\xfc\xff\xa6\x74\xd9\xe9\xb7\x81\x0e\xfd\xef\x49\x7b\x95\x7e" "\x8f\xd9\xdc\x83\xe3\x7b\xcc\x8a\xae\x63\xbc\x9e\x4f\xd1\xd8\x41\xc0\xeb" "\x39\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x40\x6b\xba\x2b\x8b\xc7\x97\x7b\xae\xdf\xba\xef\x9c\xa3\x3e\xf0\xab" "\x2f\x8e\xbc\x74\xcd\x87\x7f\xb6\xf1\xda\x37\x5d\xf5\x83\x3f\x0f\x5e\xfc" "\xbe\x5f\xde\xdd\xf3\xfd\x97\x77\xaf\x3d\x76\xdd\xef\xdf\x7f\xd8\xc5\xf7" "\x7f\xe6\xcc\x5d\xb7\x7d\xfb\xa1\x17\xfb\xee\xfd\xe7\x33\x85\x81\xfb\xc7" "\x7f\x56\x4e\x4c\x8b\xd5\x10\x92\xe7\x92\x10\xaa\x3f\xdf\xfb\xf5\x2f\xed" "\x7e\xec\xc8\xb1\xba\x24\x84\x50\x4e\xfa\x77\x84\xb0\x30\x59\xf4\xd0\xc2" "\x24\x13\x61\xe8\xef\x21\x84\xb5\xf5\x7e\x4e\xbc\xf3\x9e\x97\x4e\x59\x37" "\xb6\xbc\xf6\xa6\xee\x09\xf5\x0b\x32\x41\xb2\xdb\x15\x7a\xcb\xb1\x3f\x8d" "\xfd\x0c\xe1\x8a\xc2\x2d\xe2\x10\x54\x4d\xc7\xd9\xf6\x7d\x97\x9f\x14\xfe" "\xf0\xde\xd5\xd7\xfd\x66\xc9\x8f\x7f\xd4\xb5\xf3\xd9\x1d\xfb\x57\x49\xaa" "\x0d\xe3\x29\x84\xf9\x17\x36\x3e\xbe\x2b\x84\x30\x37\xfd\x3f\x26\x8e\xb6" "\xc5\xf1\xc1\xe9\x72\x55\x08\xa1\xa7\xe1\x71\x67\x14\xf4\xeb\xb8\x16\xfb" "\xbf\x3c\xa7\x7c\x74\xba\x9c\x93\x2e\x7b\x0b\xe2\xc4\xfb\x97\x66\xca\xa5" "\xcc\x7a\xd9\x72\xd4\x95\x59\xf6\x14\xb4\x37\x53\x79\xfd\x68\x77\xbd\x22" "\xf3\x32\xe5\xec\xc9\x68\xa6\xf2\xfa\x19\xeb\x17\xa6\xcb\x9f\xa6\xcb\x13" "\xa7\x19\xbf\x1c\xff\x27\xa1\x94\x84\x4a\xbd\xfb\x1b\x92\xfd\x63\x24\x34" "\x1c\xb7\x24\x24\xe3\xc7\xb2\x5a\x2f\x97\xea\xc7\x36\xa4\xdb\x9f\x29\x27" "\x99\x72\x29\x53\x2e\x77\x65\xb6\x6b\xbc\xdd\x74\xa0\x95\x93\x64\x62\x7d" "\x5c\x2f\x53\x1f\x4f\xc7\x95\xb4\xfe\xd8\xc6\x73\x75\x13\xe7\xe6\xd4\xbf" "\x3e\x5d\x56\xd3\x27\xea\xcb\xb1\x1c\xb2\x37\x6a\x7a\x27\xdd\xa8\x6f\xd7" "\xb8\xd8\xaf\xbd\x53\xf4\xe5\x40\x28\x35\x9c\x83\x9a\xd5\xd7\x0f\x7c\x7a" "\x30\x7a\xd3\xba\xde\x64\xd1\xa4\xc7\x8c\x36\x11\xef\xdb\xbd\xfa\xe6\x65" "\xe5\x35\x0f\xef\xe9\xcf\xe9\x47\x72\x77\x92\xc6\x4f\xda\x8a\xbf\xfd\xd7" "\x0b\xe7\x7d\xea\x87\x37\x5e\xb6\x38\x2f\xfe\x85\xa5\x34\x7e\xa9\xad\xf8" "\x7f\x3c\xeb\xf1\xe7\xcf\xbf\xf1\x7b\xdf\xca\x8d\x7f\x6b\x8c\x5f\x6e\x2b" "\xfe\xc9\x0f\xf4\x3c\x77\xd6\x23\xd7\x2f\xcd\xdd\x3f\x7b\xe3\xfe\xa9\xb4" "\x15\x7f\xf8\x99\x47\x6f\x59\x72\xf8\x45\x3b\x73\xfb\x7f\x7b\x8c\x5f\x6d" "\x2b\xfe\xca\x5d\x8f\x77\xf7\xed\x7b\xe0\xc1\xdc\xfe\x0f\xc5\xfd\x33\xb7" "\xad\xf8\x4f\xbf\xf3\x83\x7f\xba\xeb\xc9\xfb\x9e\xcd\x8d\x1f\x62\xfc\x9e" "\xb6\xe2\xaf\xd9\xb5\xf9\xcb\xdd\x03\xfb\x4e\xc8\x8d\xff\x60\xdc\x3f\xbd" "\xed\x8d\x9f\x17\x76\x9e\xfe\xd4\xc0\xc0\x5f\x06\xf3\xe2\x3f\x11\xe3\xf7" "\x8d\xc5\xef\x99\x6e\xfc\x3b\x77\xdc\xf6\x8e\x3b\x16\xdc\x74\x66\xee\xf1" "\x5d\x15\xf7\x4f\x7f\x5b\xfd\x3f\xfb\xf8\xfb\xaf\x9b\xb7\xef\xbe\x63\xf2" "\xce\x9d\xc9\xed\x9d\x7a\xe5\x04\x78\x6d\x3a\x2c\xbd\xc6\xba\x21\x2d\xb7" "\x9b\x67\xce\x54\x43\xbe\xf0\xcd\xc1\x4a\xed\x9a\x6f\x5e\xfa\xbf\xaf\x93" "\x0d\x65\x8c\xb5\x33\x7f\x16\xe3\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xea\xf4\xdb\xab" "\x4f\xfd\xe4\x79\xef\xf9\xe8\xea\x4a\x12\x42\x92\xb3\xce\x68\x13\xf1\xbe" "\xf2\x9c\x95\x2b\x07\xdb\x68\x77\xf8\x99\x47\x6f\x59\x72\xf8\x45\x3b\x1b" "\xeb\x16\xb7\x11\x07\x00\x00\x00\x28\x16\xf3\xf0\x52\xbd\xa6\x1a\x16\x87" "\xcb\x93\xb9\xe1\xe8\xa6\xeb\xc7\x39\x82\xa3\x63\x29\x99\x58\x9f\x9d\x43" "\x88\x71\xb2\x73\x04\xed\xc6\x29\x75\x28\x4e\xb9\x43\x71\x2a\x1d\x8a\xd3" "\xd5\xa1\x38\x73\x3a\x14\xa7\xbb\x43\x71\xaa\x05\x71\xaa\xa1\xb5\x38\x73" "\xa7\x88\x53\x19\x1b\x15\x2d\xf6\xa7\x67\xca\xfe\xb4\x1e\xa7\xb7\x43\x71" "\xe6\x75\x28\x4e\x5f\x87\xe2\xcc\xef\x50\x9c\x05\x1d\x8a\xd3\x3f\x65\x9c" "\xd6\xc7\xe1\xc2\x0e\xc5\x59\xd4\xa1\x38\x87\x75\x28\xce\xe1\x1d\x8a\x73" "\x44\x87\xe2\xbc\xae\xb1\xb2\xbb\xfd\x38\x47\x76\xa8\x3f\xd9\x39\xe5\xe9" "\x8e\xc3\xbe\x74\xcd\xa3\xf2\xe2\x8c\xdf\x28\x17\xc6\xa9\x24\xe5\xfa\x1d" "\xcd\xe6\xd3\x8f\x4c\xdb\x39\x66\x86\xed\xf4\x16\xb4\xd3\x57\xf4\x7a\xdc" "\x62\x3b\x73\x5b\x6c\xe7\xb8\xcc\xe3\x4a\xd3\x6c\xa7\xda\x62\x3b\x6f\x9c" "\x61\x3b\x49\x8b\xed\xbc\x79\x86\xed\x94\x0a\xda\x89\xe3\xf6\x8a\x6c\xff" "\x62\x3b\xb1\xd4\xe2\xf8\xbf\xb2\x43\x71\xb6\x77\x28\xce\x55\x1d\x8a\x73" "\x75\x87\xe2\x7c\xbe\x43\x71\xbe\xd0\xa1\x38\xd7\xcc\x30\x0e\x40\xab\x62" "\xfe\xbf\x3f\xdf\xeb\x0f\xdd\x95\x77\x85\x9e\xf4\x8c\x93\x9d\x05\x88\xf9" "\xee\x92\xf1\x9f\x93\x5f\xef\xf2\x4e\x48\x31\xde\x1b\x32\xf5\x73\x8a\xe2" "\x65\x13\xf5\x4c\xbc\x25\xd3\xed\x5f\x76\x02\x21\x13\x6f\x69\xa6\xbe\x6b" "\x42\xbc\x4a\x3d\x1f\x99\x22\x5e\xb5\x31\xde\xb2\xcc\x9d\x85\xdb\x9b\x9d" "\x50\xc8\xf4\xef\xc4\x4c\x7d\x77\x51\xbc\xec\xc4\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\xcc\xa2\xdf\x5e\x7d\xea\x27\xcf\x7b\xcf\x47\x57\x87" "\x24\x8c\xfd\x6b\x6a\xb4\x89\x78\x5f\x79\xce\xca\x95\x83\x6d\xb4\xbb\x7b" "\xf5\xcd\xcb\xca\x6b\x1e\xde\xd3\x58\xd7\x5d\x69\x23\x10\x00\x00\x00\x50" "\x28\xe6\xe1\x5d\xf5\x9a\x6a\xe8\xae\xac\x08\xdd\xc9\x9c\x09\xeb\x55\xd3" "\x79\x80\x6a\x5a\x2e\xf7\xd7\x96\x03\xf3\xc3\xaa\xb1\x65\x32\x58\x1a\x2f" "\xf7\x24\x0b\xa7\x7c\x5c\x25\x7d\xdc\xf2\x6d\x1b\x37\x2f\xdf\x7a\xe5\xf6" "\xb7\xae\xdf\x38\x7c\xc9\xc8\x25\x23\x9b\xde\xbe\xe2\xd4\x15\xa7\x0f\x9d" "\x76\xfa\x69\xcb\xd7\xad\xdf\x30\x32\x54\xfb\x19\x42\x77\x41\xbc\x10\xc2" "\xf8\xf4\xc3\xd6\x2b\xb7\x7f\x76\x78\xc3\x86\x91\x2d\x5b\x6b\x95\xd9\xfe" "\x2f\x4e\x1f\xb7\x38\x2d\x27\xe9\xe3\x06\xde\x16\x86\xc6\x96\xd7\xa6\xfd" "\x5f\x54\xd0\x5e\x69\x52\x7b\xb3\x77\xa3\xf8\xe8\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xff\xc1\xae\xdd\x85\xc8\x75\xd6\x7f\x00\x7f\xce\xcc\xec" "\xcc\x74\xdb\xfc\x3b\x7f\xfa\x36\x0d\xcd\x76\xc8\x4b\x89\x5a\x34\x89\x5b" "\x49\xb5\x74\x0e\x08\x16\xda\x24\x64\x29\xc8\x4c\x75\x2d\xc1\x26\x58\xdc" "\x34\xa1\x4d\x4a\xac\x63\x1b\xb0\xad\x09\x8a\xd0\x12\x08\x91\x5c\x18\x89" "\xc5\xd6\xe2\x4d\x5f\x6c\x11\xfb\x42\x20\x52\xa3\x01\x37\x06\x69\x8b\xf6" "\x42\x2f\x94\x56\x2b\x69\xc9\x85\xa4\x8c\x64\x77\xce\xec\xcc\x64\x4e\x66" "\x1d\x4b\xd3\xc6\xcf\xe7\x62\xce\xcc\xf3\xfc\x9e\xe7\x77\x9e\xb9\x58\xf8" "\x9e\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xe0\x83\x35\xdd\x18\x9f\xac\x55\x27\xea\xa3\x51" "\x08\x51\x4a\x4d\xb3\x8f\x64\x2e\x9b\x8f\xe3\xca\xd9\x1a\x64\xfb\x0f\x7f" "\xf9\xf9\xad\xdf\x2f\x8c\x9d\x5c\xde\x39\x56\xc8\x0d\x75\x04\x00\x00\x00" "\x60\x80\x24\x87\x8f\xb4\x47\x8a\xa1\x90\xcb\x86\x6c\xb8\x72\xe6\xd3\xe2" "\xd0\x31\x11\xe6\x72\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf0\xbf\x67\xba\x31\x3e\x59\xab\x4e\xd4\x2f\x8c\x42\x88\x52\x6a" "\x9a\x7d\x24\x73\xd9\x7c\x1c\x57\x86\xe8\xfb\xc6\x3b\x4f\x7e\xe6\xd5\xb1" "\xb1\xbf\x76\x8e\x95\x87\xd8\x07\x00\x00\x00\x18\x2c\xc9\xe1\x99\xf6\x48" "\x31\x94\xc3\x92\x30\x12\x5d\xd9\x55\x97\x3c\x1b\x58\xd8\xb3\xbe\xb7\x2e" "\xd9\x67\xd1\x3c\xeb\x7a\x9f\x1d\xa4\xd5\x2d\x99\x67\xdd\x35\xf3\xac\xfb" "\xd8\x80\xba\x75\xad\xeb\x8e\x00\x00\x00\x00\x1f\x7d\x49\xfe\xcf\xb5\x47" "\x4a\xa1\x90\x5b\x90\x9a\xff\x07\xe5\xfa\xa4\xee\xea\x9e\xba\x6c\xeb\x3a" "\xcc\x6f\x05\x00\x00\x00\x80\xff\x4e\x92\xff\x0b\xed\x91\x72\x28\xe4\xca" "\xed\xbc\x3e\xdf\xbc\xbf\xb8\xa7\x2e\x59\x3f\xe8\xff\xf6\xc9\xfa\x65\x29" "\xeb\x07\xfd\x3f\x7f\x6d\xeb\xea\xff\xf4\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0" "\xd1\x31\xdd\x18\x9f\xac\x55\x27\xea\xd9\x28\x84\x28\xa5\xa6\xd9\x47\x32" "\x97\xcd\xc7\x71\x65\x88\xbe\xab\x5e\x18\xfd\xfb\x2d\x87\x1e\x5a\xdc\x39" "\x56\xc8\x0d\xb1\x11\x00\x00\x00\x30\x50\x92\xc3\xe7\xa2\x77\x31\x14\x72" "\xa3\x61\x24\x5c\x38\x93\xfb\xc7\x6e\xda\xff\xf4\x17\x9f\x7e\x76\x3c\x84" "\x30\x1b\xf3\xf3\xf9\xb0\x63\xc3\xb6\x6d\x77\xaf\x9a\x7d\x4d\xea\x56\x1e" "\x39\x34\xf2\xbd\xc3\x6f\x7d\xeb\x8c\xba\x95\xb3\xaf\xe7\xec\x80\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xfb\x66\xba\x31\x3e" "\x59\xab\x4e\xd4\x2f\x88\x42\x88\x52\x6a\x9a\x7d\x24\x73\xd9\x7c\x1c\x57" "\x86\xe8\xfb\xfa\xe7\xbe\xf0\xe7\xc7\x8f\x3f\xf7\x66\xe7\x58\x79\x88\x7d" "\x00\x00\x00\x80\xc1\x92\x1c\x3e\x97\xfd\x8b\xa1\x1c\xf2\x21\x1f\x2e\x9f" "\xf9\xd4\x99\xf5\x4f\xcb\xf4\xac\x4f\x7b\x66\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9c\x3f\xee\xf9\xc6\x7d\x5f\xdf\x30" "\x35\xb5\xf1\x6e\x6f\xbc\xf1\xc6\x9b\xf6\x9b\x73\xfd\x97\x09\x00\x00\x78" "\xbf\x5d\x1d\xa2\xd0\xfc\x0f\x5d\xb1\xfe\x5c\xdf\x35\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x61\x30\xdd\x18\x9f\xac\x55\x27" "\xea\xc5\x28\x84\x28\xa5\xa6\xd9\x47\x32\x97\xcd\xc7\x71\x65\x88\xbe\xf1" "\xf3\x47\x0b\x0b\x4e\xbe\xf0\x52\xe7\x58\x79\x88\x7d\x00\x00\x00\x80\xc1" "\x92\x1c\x3e\x97\xfd\x8b\xa1\x1c\x46\xc2\x48\xb8\x6c\xe6\x53\xbf\x67\x02" "\x33\xf9\xbf\xf4\x01\xde\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\xa1\x32\xdd\x18\x9f\xac\x55\x27\xea\x0b\xa2\x10\xa2" "\x94\x9a\x66\x1f\xc9\x5c\x36\x1f\xc7\x95\x21\xfa\x3e\xb6\x73\xdf\x67\x0f" "\x5e\xfc\xdd\x9b\x3b\xc7\x0a\xb9\x21\x36\x02\x00\x00\x00\x06\x4a\x72\x78" "\xbe\x3d\x52\x0c\x85\xdc\xc7\x43\x21\x5c\xd5\xfa\x3c\xd5\xbd\x20\xca\xb6" "\xae\xfd\x9f\x0b\xcc\xad\xdb\xda\xb5\x6c\x74\xde\xeb\x1a\x5d\xeb\xb2\xf3" "\x5e\xb7\xab\xe7\x64\xb9\xd6\x69\x66\xd7\x15\x93\xfd\x4a\xb3\xd7\xf6\xba" "\xca\x99\xeb\x2a\x1d\xeb\xca\xa1\xdd\xbe\xd2\xb5\x2e\xec\xe9\x5a\xb5\x60" "\xc0\x7d\x06\x00\x00\x00\x38\x87\x92\xfc\x5f\x68\x8f\x94\x42\x21\x57\xe8" "\xc8\xb9\x3f\xe9\xaa\x2f\xc9\xb9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x40\x8a\xe9\xc6\xf8\x64\xad\x3a\x51\x8f\xa2\x10\xa2\x94\x9a\x66\x1f\xc9" "\x5c\x36\x1f\xc7\x95\x21\xfa\xde\xf7\x9b\xff\xbf\xe8\x2b\x3f\xdd\xbd\xbd" "\x73\xac\x3c\xc4\x3e\x00\x00\x00\xc0\x60\x49\x0e\x9f\xcb\xfe\xc5\x50\x0e" "\x8b\xc2\xff\x85\x45\x33\xb9\x3f\x94\xba\xeb\x93\xba\x7f\xd4\x4e\x1d\x7c" "\xf4\x9f\x7f\x59\x1e\xc2\x8a\xcb\x8f\x8d\xe5\x42\xa6\xbb\xec\x87\xc9\x9b" "\x5f\xbd\x7e\xe3\x8b\xbd\x2f\xa1\xb7\x3a\x13\xc2\xc5\xad\x7e\x51\x4a\xbf" "\x5f\xff\xee\xd1\x7b\x97\x36\x4f\x3d\x1e\xc2\x8a\xcb\xb2\x57\xe5\x52\xcf" "\xd3\xbf\x5f\xf7\x96\x71\xf3\x99\xda\xc6\xb5\xdb\x0e\x1f\xdb\x3a\xf0\xeb" "\x01\x00\x00\x80\xf3\x42\x92\xff\x47\xda\x23\xa5\x50\xc8\xdd\x95\x9a\xff" "\x93\xe4\xdd\x9b\xff\xd3\xcc\x04\xf0\x8b\xef\xdd\xf9\xf3\x4b\x5b\xaf\xad" "\x44\xde\xb3\x22\x53\x6a\xf5\xcb\xa4\xf4\xfb\xfc\xd2\x27\xff\xb4\x6c\xf5" "\xdf\xde\x3a\x9d\xff\xcf\xd6\xef\x53\xfb\x36\x1f\xbc\xb4\xab\xe1\xec\x48" "\x87\x9d\x99\x10\x42\xdc\xac\x6e\xde\xbe\xee\xd8\x75\x07\x32\xc9\xa9\x67" "\xfb\x67\x7b\xfa\x27\xdf\xcb\x97\xbe\xf9\xe6\xbf\x36\xed\x78\xe4\xd4\x6c" "\xff\x62\x28\xb6\xc6\x17\xe6\xfa\xf5\x3f\xf3\xb5\xc7\x05\x71\x73\x2a\xb3" "\xb7\xbe\xe6\xbd\xbd\x8d\xee\xfe\xb9\x94\xf3\x3f\xf4\xdb\x97\x8e\xff\x72" "\xe1\xee\x77\x4f\xf7\x7f\xe7\xea\xd1\x76\xff\x6b\xce\x72\xfe\xb3\xf7\x1f" "\xbd\xf5\xe1\x3d\xd7\xef\x3b\xb4\xae\xbb\x7f\x08\xa1\xd2\xaf\xff\xdb\xef" "\xde\x1c\xae\xf8\xc3\x9d\x0f\xf6\x9e\x7f\xb4\x67\xe3\xce\x6f\xbe\xf3\xb5" "\x47\x14\x37\x8f\x2c\x3e\x71\x60\xf5\xfe\xf2\x0d\xdd\xfd\xa3\x9e\xfe\xc9" "\xf7\xff\xb3\xe3\x8f\xed\xf9\xf1\x23\xdf\x79\x36\xe9\x9f\xfc\x56\x64\xf9" "\x92\xf9\xf6\xcf\xf4\xf4\x7f\x65\xd7\x25\x3b\x5f\x7e\x60\xfd\xc2\xee\xfe" "\x99\x94\xf3\xbf\x78\xdb\xab\x63\x5b\x2a\xdf\xfe\x7d\xef\xf9\xef\xe8\xda" "\x35\x97\x7a\x17\x67\x9e\xff\x89\x6b\x9f\xba\xfd\xb5\x0d\xf1\xfd\xbd\x53" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe7\x97\xe9\xc6\xf8\x64" "\xad\x3a\x51\xcf\x44\x21\x44\x29\x35\xcd\x3e\x92\xb9\x6c\x3e\x8e\x2b\x43" "\xf4\x7d\xe3\x96\xa3\x6f\xdf\xb6\xfb\x47\x3f\xe8\x1c\x2b\x0f\xb1\x0f\x00" "\x00\x00\x30\x58\x92\xc3\xe7\xb2\x7f\x31\x94\x43\x3e\xe4\xc3\xe8\x4c\xee" "\x7f\xa6\xb6\x71\xed\xb6\xc3\xc7\xb6\x86\xd2\xec\x6c\xd4\xba\xe6\xa6\xb6" "\xdc\xb3\xed\x13\x9b\xb6\x6c\xbf\xeb\x8e\x73\x74\xe7\x00\x00\x00\xc0\x7c" "\x25\xf9\x3f\xd7\x1e\x29\x85\x42\x6e\x69\x18\x69\xe5\xff\xea\xe6\xed\xeb" "\x8e\x5d\x77\x20\x93\xe4\xff\x4c\x92\xff\x37\xdd\x39\xb5\x71\x45\x68\xd7" "\xbd\xb2\xeb\x92\x9d\x2f\x3f\xb0\x7e\x61\xfb\x39\x41\x08\x33\x3f\x0b\x28" "\x9e\xae\xfb\xf4\x5c\xdd\x4d\x37\x1e\x2d\x9d\xf8\xe3\xd7\x96\xf5\xad\x5b" "\x35\x57\x77\x64\xf1\x89\x03\xab\xf7\x97\x6f\x48\xea\x42\x67\xdd\xca\xd0" "\x7e\x3e\xf1\xc4\xb5\x4f\xdd\xfe\xda\x86\xf8\xfe\xf6\xfd\x75\xd6\x7d\xf2" "\xab\x5b\xa6\x5a\x8f\x27\x92\x7d\x47\x6f\x7d\x78\xcf\xf5\xfb\x0e\xad\x6b" "\x9f\xa3\x75\x1d\x6d\xed\x9b\xd4\x4d\x65\xf6\xd6\xd7\xbc\xb7\xb7\x91\xd4" "\x65\x5b\xd7\x62\xeb\xdc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x99" "\xa6\x1b\xe3\x93\xb5\xea\x44\x3d\x64\x43\x88\x52\x6a\x9a\x7d\x24\x73\xd9" "\x7c\x1c\x57\x86\xe8\xbb\x66\xe9\x2f\x1e\xbc\xe8\xe4\x73\x8b\x3a\xc7\x0a" "\xb9\x21\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\x80\x7f" "\xb3\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x85\xfd\xfa\x0b\x91\xaa\x8a\xe3\x00\x7e\xce\xcc\x6e\x3b" "\xee\xec\xea\xae\x06\x6d\x45\xeb\x6a\x45\x61\x0f\x49\x41\x44\xbd\x54\x54" "\x84\x46\x08\x3d\x19\x12\x96\xe6\x43\x14\x04\x11\x85\x3d\xb4\x86\x46\x62" "\x45\x2f\x41\xd6\x8b\x44\x05\xd5\x16\x42\x41\x6e\x92\x68\xb1\x46\xff\xa4" "\x97\x1e\x2a\x28\xb0\x1e\x02\x91\x16\xca\x41\x7a\xa8\xd8\x99\x73\xa7\xd9" "\xeb\xdc\x26\xaf\x16\x85\x9f\x0f\x5c\xce\x9e\x73\xef\xfd\xde\xdf\xbd\xe7" "\xcc\x9d\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xe0\x7f\x65\xa0\x6f\xac\xd9\x1e\xdc\xf6\x60\xe3\xb6\xf3\x6e" "\xfa\xe4\xf1\x7b\x8e\x3d\x76\xcb\x7b\xf7\x6f\xb9\xe4\xd1\xd7\x7f\x98\xd8" "\x70\xc3\xc7\xbb\x07\x5f\x39\x3e\xb3\x71\xd9\xa6\xaf\x6f\x5c\xb2\x61\xef" "\xbd\xab\xa6\x77\xbe\x78\xe0\x97\xe1\x77\x7e\x3b\xdc\x33\xf8\x91\x56\xb3" "\x22\x75\x6b\x21\xc4\xa3\x31\x84\xda\xfb\xb3\xcf\x3d\x31\xf3\xe9\x39\x73" "\x63\x31\x84\x50\x8d\x23\x93\x21\x8c\xc6\xc5\x07\x46\x63\x2e\x61\xe5\xaf" "\x21\x84\x8d\xed\x3a\xe7\xef\x7c\xfb\xd8\x95\x9b\xe6\xda\x2d\x3b\x06\xe6" "\x8d\x2f\xca\x85\xe4\xef\x2b\xd4\xab\x59\x3d\x2d\x23\xf3\xeb\xe5\xbf\x2d" "\xbf\x48\x7a\xa9\xa5\x73\x36\x37\x1e\xbe\x2c\x7c\x7b\xfd\xda\xad\x9f\x2f" "\x7d\xeb\xcd\xfe\xa9\x23\x93\x1d\x91\xb5\x8e\xf5\x14\xc2\xc2\xf5\x9d\xe7" "\xf7\x87\x10\x16\xa4\x6d\x4e\xb6\xda\xc6\x72\xf5\xac\x09\x21\x0c\x76\x9c" "\x77\x75\x8f\xba\x2e\xfc\x9b\xf5\x5f\x5e\xd0\x3f\x3f\xb5\x67\xa5\xb6\xde" "\x23\x27\xdb\xbf\x3c\xd7\xaf\xe4\x8e\xcb\xf7\x33\xfd\xb9\x76\xb0\xc7\xf5" "\x4e\x55\x51\x1d\x65\x8f\xeb\x65\x28\xd7\x3f\xd9\x75\xd6\x4b\x51\x9d\xd9" "\xf8\x68\x6a\xdf\x4d\xed\x8a\x93\xcc\xaf\x66\x5b\x0c\x95\x18\xfa\xda\xe5" "\xdf\x17\xff\x5c\x23\xa1\x63\xde\x62\x88\xcd\xb9\xac\xb5\xfb\x95\xf6\xdc" "\x86\x74\xff\xb9\x7e\xcc\xf5\x2b\xb9\x7e\xb5\x3f\x77\x5f\xcd\xeb\xa6\x85" "\x56\x8d\x71\xfe\x78\x76\x5c\x6e\x3c\x7b\x1d\xf7\xa5\xf1\x65\x9d\xef\xea" "\x2e\x6e\x2f\x18\x3f\x37\xb5\xb5\xf4\x41\x3d\x9e\xf5\x43\xfe\x8f\x96\xfa" "\x09\x7f\xb4\xef\xab\x29\xab\x6b\xf6\x2f\x6a\xf9\x37\x54\x3a\xde\x41\xdd" "\xc6\xdb\x13\x9f\x26\xa3\x9e\xc6\xea\x71\xf1\x09\xe7\xfc\xde\x45\xb6\x6f" "\x66\xed\x53\x17\x57\xd7\x7d\x70\x70\xa4\xa0\x8e\xb8\x3b\xa6\xfc\x58\x2a" "\x7f\xf3\x67\xa3\x43\x77\xbe\xb1\xfd\xa1\xb1\xa2\xfc\xf5\x95\x94\x5f\x29" "\x95\xff\xdd\xea\x43\x3f\xdd\xb1\xfd\xa5\x17\x0a\xf3\x9f\xcd\xf2\xab\xa5" "\xf2\xaf\xd8\x37\x78\x74\xf5\x87\xdb\x96\x17\x3e\x9f\xd9\xec\xf9\xf4\x95" "\xca\xbf\xeb\xf0\x47\x4f\x2f\x3d\xfb\xee\xa9\x6e\x73\xdd\xcc\xdf\x95\xe5" "\xd7\x4a\xe5\x5f\x37\x7d\x68\x60\xb8\xb1\x6f\x7f\x61\xfd\x2b\xb3\xe7\xb3" "\xa0\x54\xfe\x37\xd7\xde\xfc\xfd\x6b\x5f\xee\x39\x52\x98\x1f\xb2\xfc\xc1" "\x52\xf9\xeb\xa6\x1f\x78\x66\x60\xbc\x71\x69\x61\xfe\xfe\xd6\x47\xa1\xde" "\x5c\xa1\x25\xd6\xcf\xcf\x53\x57\x7d\x35\x3e\xfe\xe3\x44\x51\xfe\x17\xd9" "\xf3\x1f\xee\x92\x1f\x7b\xe6\xbf\x3a\xb9\xf3\x9a\x97\x17\xed\x58\x55\xb8" "\x3e\xd7\x64\xcf\x67\xa4\x54\xfd\xb7\x5e\xb4\x77\xeb\x50\x63\xcf\x05\x45" "\xef\xce\xb8\xeb\x74\x7d\x73\x02\x9c\x99\x96\xa4\xff\xb1\x9e\x4c\xfd\xb2" "\xbf\x33\x4f\x55\xc7\xef\x85\xe7\x27\xfa\x5a\xdf\x40\x43\x69\x1b\x3e\x9d" "\x17\xca\x99\xbb\xce\xc2\x7f\x30\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\x60\x07\x0e\x48\x00\x00" "\x00\x00\x04\xfd\x7f\xdd\x8e\x40\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x80\xa7\x02\x00\x00\xff\xff\x37\x95\x27" "\xf8", 22807); syz_mount_image(/*fs=*/0x200000c0, /*dir=*/0x20000000, /*flags=MS_I_VERSION|MS_POSIXACL*/ 0x810000, /*opts=*/0x20000100, /*chdir=*/1, /*size=*/0x5917, /*img=*/0x20006f40); // setrlimit arguments: [ // res: rlimit_type = 0x1 (8 bytes) // rlim: ptr[in, rlimit] { // rlimit { // soft: intptr = 0xffffffffffffffff (8 bytes) // hard: intptr = 0xffffffffffffffff (8 bytes) // } // } // ] *(uint64_t*)0x20000140 = -1; *(uint64_t*)0x20000148 = -1; syscall(__NR_setrlimit, /*res=RLIMIT_FSIZE*/ 1ul, /*rlim=*/0x20000140ul); // truncate arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // len: intptr = 0x7fffffffffffffff (8 bytes) // ] memcpy((void*)0x200002c0, "./file1\000", 8); syscall(__NR_truncate, /*file=*/0x200002c0ul, /*len=*/0x7ffffffffffffffful); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x441 (4 bytes) // mode: open_mode = 0x108 (2 bytes) // ] // returns fd memcpy((void*)0x200000c0, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000c0ul, /*flags=O_CREAT|O_APPEND|O_WRONLY*/ 0x441, /*mode=S_IXGRP|S_IRUSR*/ 0x108); if (res != -1) r[0] = res; // fallocate arguments: [ // fd: fd (resource) // mode: fallocate_mode = 0x20 (8 bytes) // off: intptr = 0x0 (8 bytes) // len: intptr = 0x8000 (8 bytes) // ] syscall(__NR_fallocate, /*fd=*/r[0], /*mode=FALLOC_FL_INSERT_RANGE*/ 0x20ul, /*off=*/0ul, /*len=*/0x8000ul); // write$P9_RLOCK arguments: [ // fd: wfd9p (resource) // data: ptr[in, p9_msg[P9_RLOCK, flags[p9_lock_status, int8]]] { // p9_msg[P9_RLOCK, flags[p9_lock_status, int8]] { // size: bytesize = 0x8 (4 bytes) // type: const = 0x35 (1 bytes) // tag: int16 = 0x2 (2 bytes) // payload: p9_lock_status = 0x1 (1 bytes) // } // } // size: bytesize = 0x8 (8 bytes) // ] *(uint32_t*)0x20000300 = 8; *(uint8_t*)0x20000304 = 0x35; *(uint16_t*)0x20000305 = 2; *(uint8_t*)0x20000307 = 1; syscall(__NR_write, /*fd=*/r[0], /*data=*/0x20000300ul, /*size=*/8ul); return 0; }