// autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } 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; } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0xc802 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {71 75 6f 74 61 2c 64 69 73 63 61 72 64 2c 64 69 // 73 63 61 72 64 2c 69 6f 63 68 61 72 73 65 74 3d 6b 6f 69 38 2d 72 // 75 2c 64 69 73 63 61 72 64 2c 00 f4 19 3e b3 ba 2a 0d 5f d0 cd 73 // 74 28 8f f8 9e c5 13 a5 3e 00 73 45 de cb 72 09 00 f8 31 2d a2 46 // 3e b0 ed f5 2f ad 1a 00 eb d4 1c 14 b3 ce 75 d0 cf fe fd 37 96 24 // b1 6f 72 60 c8 35 71 3b 26 33 52 e0 3b 5c b8 fa 0c 04 2b d1 22 5e // d4 de d2 b6 2e 12 fe a4 d7 e6 1b 73 8e 40 78 1e 58 d5 ff f1 12 36 // 4a c1 40 f4 19 e5 da fe cd 28 3b 3f ab 6b 14 2d db c8 93 b3 5a 81 // fe 92 65 59 1e f3 5f a2 92 8e 09 5f ee 4c 10 b2 2e 42 12 37 8d e5 // 9b ca 03 07 cc 64 4b 96 20 b6 3f 00 00 00 7b bb d4 22 d8 78 56 b7 // 13 48 b8 f4 53 98 b9 66 0b 6b 3e 8e e8 a8 c3 2f 32 34 cb 46 e2 cd // 82 7e c2 5c 1c a4 d0 46 bc 00 4f 8d f7 b1 ee 69 0a 5e 50 51 07 00 // d8 0c 7f a6 5f a7 24 d0 e1 b4 36 9f 1b 64 fe 24 9a 03 12 01 00 00 // 00 4a c9 83 de 92 5f 52 d7 35 b0 3f ea 94 1b 1e 94 8a d8 d1 9c fd // a5 b7 99 32 5f d6 9d 14 fc f6 cd de 77 00 a6 31 50 eb 36 99 e5 31 // 4e 08 27 75 0e 24 41 50 ec 19 f3 f3 f1 d8 be 54 2c 08 4b 5e 40 bf // aa 8a d2 06 d2 a3 3b 0d db d7 f8 e0 7d c7 d1 71 74 a4 54 9f fa f5 // 97 69 49 cb 6d 65 8c 42 ec 7c d9 fe 8a d8 28 52 ce fb 04 64 6e db // 3a 41 eb 51 4e b6 a7 72 b3 ee 9f 21 e2 58 22 b5 4e c3 3e 59 2d 5c // 04 09 46 72 11 01 d5 3a ff 21 f9 03 51 c9 5a a0 f7 3f 18 53 d6 af // cb f9 44 8b 22 0e 98 84 66 06 6f a5 c0 9e 61 98 fc 45 20 d1 99 b9 // 3b de de e8 7c 40 43 81 5a a0 56 68 a0 6f 8d a9 66 80 cc c1 a1 39 // ad e9 0f 5c 79 af 46 20 8f 97 62 f5 4e 7c 29 08 8d 9d e6 9b d2 d5 // 1c 6b 9c 42 20 9d dc 38 80 05 13 03 b8 55 85 34 07 d9 59 a5 77 7d // ce 25 20 1c 5e a1 fa a0 84 c3 6e 3e 34 99 15 eb ec 53 43 5e b2 91 // 0c 59 39 4e e8 4b a3 ba f9 c4 40 ae 58 33 c2 3f 46 b0 ea ac 54 3c // e0 c8 0b a0 60 32 13 e5 3e a5 97 55 07 0b 18 bc 10 b9 22 4a a0 82 // d9 67 20 61 15 b4 92 d8 25 75 1f cc 00 00 00 00 00 00 00 e6 3d 51 // c5 bf fa 4f 71 2c 2d 7f af b9 cf 50 6c 06 e1 dd ad 4f c1 90 38 40 // 77 86 fe db 9a fd fb 11 a5 f1 82 67 6d d8 4c 91 9f 71 d5 ee e2 f3 // b7 40 b6 8e e7 f6 51 8e b9 d8 ba a2 6f 1c 38 71 f8 63 b1 34 ee 94 // 2e b3 af 92 d1 9e 70 d8 26 88 39 cd 7b 46 37 f0 62 72 99 f9 9b 18 // 73 ca 16 5e 41 0f 8b d4 21 e1 a4 85 9f d9 bd 6b b3 4d 25 c0 7e 1a // 52 b9 66 8a 53 0b 10 b8 58 5d 79 71 24 a6 97 5a 71 ae db e5 57 a1 // 7b 06 bb fe 54 7a a5 53 c3 d0 8b 89 21 a4 b0 d9 38 c0 36 87 bd 48 // a9 a3 87 b4 c0 66 c0 56 f4 57 fb a5 73 87 75 b9 00 a1 e8 2a 89 aa // e1 49 4b 05 c4 bb 0f c8 ed 1a 93 68 8b f8 50 a4 f7 b0 94 2e da 1f // 16 ec f0 43 ef a6 b8 c1 f9 e0 fb a3 1f 4a 58 ed 00 31 18 0f b1 b8 // a0 0e 4a 86 82 6b 03 00 00 00 2d d1 27 2a 3d 16 09 be bb 74 9d ae // f2 02 e0 41 2a 73 d5 45 b8 6c a7 a6 bf 56 9e d3 5d 00 00 ca 23 b0 // de 74 2f 60 08 fd f2 09 28 37 0d 88 f8 c0 4b c3 b9 7b 9a 9e 00 62 // e8 fc 5f d2 33 7d 85 a6 6b d2 07 30 f3 15 3d b2 45 9f b3 4c 13 4c // 06 c1 93 64 e9 64 5e 83 04 0d d1 6e e0 8f 18 f0 ba 69 ac 9c a3 e2 // 5e 15 44 2b 07 00 00 00 d3 0d 38 a6 46 13 b5 35 fa 80 8a 9b 3b ae // 00 bc 37 12 71 d4 5d b2 00 a5 cb f4 33 e2 f6 dd 03 b7 c7 fc c0 40 // 78 1e 51 51 c9 ba db 78 7e 7e 1e 2f 39 d6 09 98 91 9a a8 db d1 56 // f3 1a 5b 7f a5 f9 e5 ec 01 e8 c7 99 ed c3 22 70 3c 7f c4 a8 1a b9 // bc 02 dd 96 71 4e e9 d7 e7 5d 28 d0 40 ff 35 66 40 4f d6 db 54 7a // 4b 55 31 97 c1 f3 16 d2 0e a5 4f 94 59 cd 81 35 1a 51 0d 10 1e 90 // ea be 6d c6 c6 ac 3f fa 18 9c 07 3a 5f b3 fc 38 2d f6 20 bf 5a f9 // e6 38 81 9c 77 a0 51 e6 87 58 66 a8 49 f6 f5 78 c0 68 c0 e4 c7 cf // bc 15 03 39 97 ef a8 53 c9 62 97 b3 20 1d d3 0e a4 0d c9 4d 01 0a // 0c 33 da 9f 63 a1 0b 8f 81 3d c7 89 b8 0b e3 bb 3f 00 ee 58 b3 0d // 5c 03 a6 dd bf 41 8a c1 b3 d4 a1 38 39 e4 b2 73 c4 f9 14 be d1 3f // 88 06 29 54 95 d4 16 09 47 87 98 39 6a ee c0 6e 8d 34 2e fd 8a c6 // b4 22 f6 c2 3a 01 1b 14 00 00 00 00 00 00 00 bc 2a 02 09 4e 19 a1 // ee 8b b3 c3 c0 c0 88 ae 8e fa f6 8c 85 00 1f af 7c f5 42 6f b7 c5 // c3 67 ed 93 eb 25 c4 8a 29 35 49 d1 5b 91 b5 9f 1b 57 4b 3f 61 71 // f8 e5 6a 40 2e c5 6b df 51 d9 03 12 b3 ca 53 98 f4 05 00 00 00 75 // 04 be 21 45 6e c9 53 bf 06 f1 2f ff 20 c3 1e 7c 8b 55 fe e5 c4 9a // a9 39 83 0b 09 99 5f f1 49 25 81 18 f9 aa e2 92 06 f9 73 12 88 b5 // 6b 10 de 51 52 56 65 fd b4 e2 89 b1 c1 77 de 97 af 30 85 f8 20 45 // fb d0 12 f1 dd e9 4f fe cd 90 b7 b6 3d 81 97 d9 c2 4a 6f e5 91 5a // c7 d7 24 08 47 f6 d0 bf 90 99 ee 11 7c 83 e3 63 f2 ad 36 a4 a9 f4 // fa a5 73 4a fe 97 70 c3 8c 56 5c ae 87 a4 08 d0 ac bb 2d b7 db 91 // 74 ac ab 60 a3 44 81 4e e6 43 fa 82 ba 41 70 6d 23 60 26 9e d2 76 // e1 3d d8 3a bb c2 58 f0 7b 0d 58 ab 0b 65 20 0b 18 b7 f9 f8 71 bc // b4 3f ec 5a 2e 37 89 ec d0 c1 06 9d 2d a8 0b 93 c8 6d ff 89 33 e7 // 0c 21 08 34 60 03 dd f6 b6 03 79 ee e6 3b 66 e7 34 1c dd 8f 87 ed // 9f 11 89 4c 9a e0 40 97 63 21 d8 74 05 b4 92 f4 19 eb fa 77 eb 36 // 7c a6 e3 60 b8 f8 45 11 02 f5 48 93 d7 d1 69 5c 24 bc c1 84 b1 e7 // d1 99 40 a2 b6 93 1a de 86 38 dd 2b 85 a8 6d c5 11 db b9 7f 50 52 // 0f 91 fb f7 20 1f c9 62 1d 0a ee 97 35 d0 7c a0 24 07 6e 85 81 db // 33 2b 1c 5f 13 5f e6 b2 e9 d2 c1 8c 9d 5d 5a 52 4d 3d 5b 26 57 e4 // b2 8f 1a 09 69 6b d5 b0 76 a1 47 1c 8b 2a b2 ca 3b a5 78 43 af 1d // 03 59 0f 4e 89 85 e1 c4 63 c7 81 bb 03 ad 7e c8 16 ea 70 bb e0 64 // 11 aa e0 01 e0 ca 72 ee 7e 82 8a d1 4b b7 a0 92 d8 83 ad 00 05 54 // bf 7f 00 00 00 00 00 00 75 cc 01 f8 a2 e1 80 21 92 f0 9e 77 bc 48 // 8b 3b d3 f0 8a 9c e8 8b a2 e2 bc c2 3c f5 d7 37 2b 33 9c e1 f5 00 // 3d b0 ad 70 fa 6e 93 aa 90 8a 2c ed 81 f5 51 4e 23 e2 f9 4f f0 3c // 1c 02 f5 a9 19 5f 47 35 56 3e fd 0a 1f c7 da fc fb 3d ae 04 3f e0 // c1 72 ec 3a 12 74 7d 7a bf 43 82 bf 74 53 c1 3d f9 94 64 10 17 a0 // f4 61 ad d9 56 ef 8f 83 4b 76 2a f3 04 08 af 6a 61 f3 17 fd 3c 7b // 08 16 23 6a 76 86 01 b7 c6 60 6b a5 2f f1 26 eb 13 d3 3c 91 5c 5d // a9 9d 11 8d b4 88 da 3f 3d 77 83 a6 08 28 2a 93 fc be 09 10 f0 38 // 9c 3e f9 1d e7 c8 4e 23 da a6 55 4c 42 b2 b3 e9 f7 0a 9f 79 0f 29 // 01 1a 0b 51 02 00 3b fe ba 6e 52 87 7e d8 a1 88 95 8e 39 37 5d d2 // 03 d4 34 be f4 dc 82 cc 8a 21 fc 40 c6 e6 e6 a2 47 5f 70 bf 15 03 // be b9 55 50 36 e6 3b dc 93 7f 8a 4d 61 b2 1d 06 a9 d3 23 9d 1d f6 // f2 e9 ef 16 de e5 90 b1 5a c0 28 c6 d8 73 bb 29 65 37 4b 73 3d 8e // 11 ba 76 3a b1 57 ed 91 dd 87 1b 09 8c 05 43 dc bb a4 cf 67 db 8c // 83 c8 43 69 dc 67 73 5f a4 fa a0 fd cf 34 b1 c6 a8 62 cc ae 9f e4 // fa 28 74 65 04 64 3b 57 f0 26 23 a2 ef 34 ea 90 f2 e7 f7 dd 77 1f // 8f 75 21 7c 79 9d 97 8a 35 33 fc fa b6 c6 f5 39 1b 62 6d 61 b4 00 // f0 81 72 fc 67 5e 2a 06 2d 06 c3 1b 85 45 28 04 f7 b1 25 c2 91 f6 // 0a 02 a5 d6 22 71 e9 6f e7 0d 64 ba e3 6e 28 b4 2e 19 72 59 16 9e // be e8 f6 43 55 54 4f ba d8 b8 3c 1c 8f ad 02 cd 1a 2e 56 a6 f6 e8 // 2e c7 71 9a 48 a1 be a8 03 54 6b 8a f7 a8 9f af 7c ef 94 d8 ad a4 // 5f c0 a9 8a 79 ba 90 c9 52 62 f0 11 07 25 c6 bf 7c 81 23 75 34 dc // d6 a8 a1 13 bd 8a c4 8b 7d b5 52 6a b7 62 ce c1 03 67 47 42 47 6c // d6 b9 2b 8c 7a bc fb 1f 8e 08 f0 a0 5c 1b 20 91 87 04 9f 32 06 bd // 54 5e 8c 20 f8 db 6d 8a 7c dd 0c 9e cb b9 01 1b 61 1a 01 3c d5 81 // 52 1d fc b0 28 d5 9d 5c 69 d2 86 fb 93 e4 c4 98 b3 aa ff 7e 0c dc // f1 f4 1f ec 65 eb db e4 c2 bf 45 31 40 25 1c dd 94 c3 2b 87 c4 63 // 4d 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 81 6e 6c 33 // f9 2d ca 3e 03 c4 00 00 00 5e 53 8c 77 b2 b1 4f 63 d2 53 70 53 63 // 84 6b c4 e9 cd 32 84 ff 32 93 30 81 2d 22 11 ae 34 10 6e 03 06 37 // 6a 2b 1c fe 60 a0 9b ec ae 2b 05 ec 9a dc ac 47 61 2a f8 5f 59 8a // 88 0f a9 78 91 a7 a2 90 b6 e7 30 80 05 42 ae a7 61 ae b4 63 f5 ff // 5b df 50 99 ae 8a d4 af e9 9d b9 e9 c4 e7 03 cb 90 0e 9a e2 72 74 // 2f e2 ff 81 d1 a4 f1 56 68 39 2c da fd 2e 17 57 70 6f 47 f9 f8 4e // 53 2f 25 e2 73 7c b6 f6 e8 93 78 f8 d7 9a b8 50 7b 10 9c 7f 1f 36 // 53 a5 bc 9d 54 cc c6 33 de 62 63 52 6e ac 10 51 92 74 0d a5 fa 46 // a7 4b 10 a1 18 ec 17 01 81 9e c2 5f a0 02 8e c4 a8 57 83 72 41 8b // 09 53 93 7d ec 79 4f c6 64 99 05 67 53 e9 11 0c d1 5c 34 9e 1a 33 // 61 f3 4c 32 fc e8 48 a1 40 6b 3e ee f8 9e 65 e4 f0 c3 4f f9 ca 55 // ae b1 e4 e7 cb 06 54 74 78 68 3c 51 21 d2 48 a4 71 64 c3 c4 bf 23 // c5 3d cc 89 0d 0a 69 a1 de ea 8b cc 99 d2 24 81 89 ef 0b 20 38 54 // e5 0e a5 6b a7 5a 35 30 89 7c be 6f 6d 84 69 51 74 bf 9d a4 09 8f // c9 7c fb 1e 31 c7 c8 41 87 a1 21 b7} (length 0xa40) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x5f85 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5f85) // } // ] // returns fd_dir memcpy((void*)0x200000000400, "jfs\000", 4); memcpy((void*)0x2000000000c0, "./bus\000", 6); memcpy( (void*)0x200000001980, "\x71\x75\x6f\x74\x61\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x64\x69\x73\x63" "\x61\x72\x64\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6b\x6f\x69\x38" "\x2d\x72\x75\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x00\xf4\x19\x3e\xb3\xba" "\x2a\x0d\x5f\xd0\xcd\x73\x74\x28\x8f\xf8\x9e\xc5\x13\xa5\x3e\x00\x73\x45" "\xde\xcb\x72\x09\x00\xf8\x31\x2d\xa2\x46\x3e\xb0\xed\xf5\x2f\xad\x1a\x00" "\xeb\xd4\x1c\x14\xb3\xce\x75\xd0\xcf\xfe\xfd\x37\x96\x24\xb1\x6f\x72\x60" "\xc8\x35\x71\x3b\x26\x33\x52\xe0\x3b\x5c\xb8\xfa\x0c\x04\x2b\xd1\x22\x5e" "\xd4\xde\xd2\xb6\x2e\x12\xfe\xa4\xd7\xe6\x1b\x73\x8e\x40\x78\x1e\x58\xd5" "\xff\xf1\x12\x36\x4a\xc1\x40\xf4\x19\xe5\xda\xfe\xcd\x28\x3b\x3f\xab\x6b" "\x14\x2d\xdb\xc8\x93\xb3\x5a\x81\xfe\x92\x65\x59\x1e\xf3\x5f\xa2\x92\x8e" "\x09\x5f\xee\x4c\x10\xb2\x2e\x42\x12\x37\x8d\xe5\x9b\xca\x03\x07\xcc\x64" "\x4b\x96\x20\xb6\x3f\x00\x00\x00\x7b\xbb\xd4\x22\xd8\x78\x56\xb7\x13\x48" "\xb8\xf4\x53\x98\xb9\x66\x0b\x6b\x3e\x8e\xe8\xa8\xc3\x2f\x32\x34\xcb\x46" "\xe2\xcd\x82\x7e\xc2\x5c\x1c\xa4\xd0\x46\xbc\x00\x4f\x8d\xf7\xb1\xee\x69" "\x0a\x5e\x50\x51\x07\x00\xd8\x0c\x7f\xa6\x5f\xa7\x24\xd0\xe1\xb4\x36\x9f" "\x1b\x64\xfe\x24\x9a\x03\x12\x01\x00\x00\x00\x4a\xc9\x83\xde\x92\x5f\x52" "\xd7\x35\xb0\x3f\xea\x94\x1b\x1e\x94\x8a\xd8\xd1\x9c\xfd\xa5\xb7\x99\x32" "\x5f\xd6\x9d\x14\xfc\xf6\xcd\xde\x77\x00\xa6\x31\x50\xeb\x36\x99\xe5\x31" "\x4e\x08\x27\x75\x0e\x24\x41\x50\xec\x19\xf3\xf3\xf1\xd8\xbe\x54\x2c\x08" "\x4b\x5e\x40\xbf\xaa\x8a\xd2\x06\xd2\xa3\x3b\x0d\xdb\xd7\xf8\xe0\x7d\xc7" "\xd1\x71\x74\xa4\x54\x9f\xfa\xf5\x97\x69\x49\xcb\x6d\x65\x8c\x42\xec\x7c" "\xd9\xfe\x8a\xd8\x28\x52\xce\xfb\x04\x64\x6e\xdb\x3a\x41\xeb\x51\x4e\xb6" "\xa7\x72\xb3\xee\x9f\x21\xe2\x58\x22\xb5\x4e\xc3\x3e\x59\x2d\x5c\x04\x09" "\x46\x72\x11\x01\xd5\x3a\xff\x21\xf9\x03\x51\xc9\x5a\xa0\xf7\x3f\x18\x53" "\xd6\xaf\xcb\xf9\x44\x8b\x22\x0e\x98\x84\x66\x06\x6f\xa5\xc0\x9e\x61\x98" "\xfc\x45\x20\xd1\x99\xb9\x3b\xde\xde\xe8\x7c\x40\x43\x81\x5a\xa0\x56\x68" "\xa0\x6f\x8d\xa9\x66\x80\xcc\xc1\xa1\x39\xad\xe9\x0f\x5c\x79\xaf\x46\x20" "\x8f\x97\x62\xf5\x4e\x7c\x29\x08\x8d\x9d\xe6\x9b\xd2\xd5\x1c\x6b\x9c\x42" "\x20\x9d\xdc\x38\x80\x05\x13\x03\xb8\x55\x85\x34\x07\xd9\x59\xa5\x77\x7d" "\xce\x25\x20\x1c\x5e\xa1\xfa\xa0\x84\xc3\x6e\x3e\x34\x99\x15\xeb\xec\x53" "\x43\x5e\xb2\x91\x0c\x59\x39\x4e\xe8\x4b\xa3\xba\xf9\xc4\x40\xae\x58\x33" "\xc2\x3f\x46\xb0\xea\xac\x54\x3c\xe0\xc8\x0b\xa0\x60\x32\x13\xe5\x3e\xa5" "\x97\x55\x07\x0b\x18\xbc\x10\xb9\x22\x4a\xa0\x82\xd9\x67\x20\x61\x15\xb4" "\x92\xd8\x25\x75\x1f\xcc\x00\x00\x00\x00\x00\x00\x00\xe6\x3d\x51\xc5\xbf" "\xfa\x4f\x71\x2c\x2d\x7f\xaf\xb9\xcf\x50\x6c\x06\xe1\xdd\xad\x4f\xc1\x90" "\x38\x40\x77\x86\xfe\xdb\x9a\xfd\xfb\x11\xa5\xf1\x82\x67\x6d\xd8\x4c\x91" "\x9f\x71\xd5\xee\xe2\xf3\xb7\x40\xb6\x8e\xe7\xf6\x51\x8e\xb9\xd8\xba\xa2" "\x6f\x1c\x38\x71\xf8\x63\xb1\x34\xee\x94\x2e\xb3\xaf\x92\xd1\x9e\x70\xd8" "\x26\x88\x39\xcd\x7b\x46\x37\xf0\x62\x72\x99\xf9\x9b\x18\x73\xca\x16\x5e" "\x41\x0f\x8b\xd4\x21\xe1\xa4\x85\x9f\xd9\xbd\x6b\xb3\x4d\x25\xc0\x7e\x1a" "\x52\xb9\x66\x8a\x53\x0b\x10\xb8\x58\x5d\x79\x71\x24\xa6\x97\x5a\x71\xae" "\xdb\xe5\x57\xa1\x7b\x06\xbb\xfe\x54\x7a\xa5\x53\xc3\xd0\x8b\x89\x21\xa4" "\xb0\xd9\x38\xc0\x36\x87\xbd\x48\xa9\xa3\x87\xb4\xc0\x66\xc0\x56\xf4\x57" "\xfb\xa5\x73\x87\x75\xb9\x00\xa1\xe8\x2a\x89\xaa\xe1\x49\x4b\x05\xc4\xbb" "\x0f\xc8\xed\x1a\x93\x68\x8b\xf8\x50\xa4\xf7\xb0\x94\x2e\xda\x1f\x16\xec" "\xf0\x43\xef\xa6\xb8\xc1\xf9\xe0\xfb\xa3\x1f\x4a\x58\xed\x00\x31\x18\x0f" "\xb1\xb8\xa0\x0e\x4a\x86\x82\x6b\x03\x00\x00\x00\x2d\xd1\x27\x2a\x3d\x16" "\x09\xbe\xbb\x74\x9d\xae\xf2\x02\xe0\x41\x2a\x73\xd5\x45\xb8\x6c\xa7\xa6" "\xbf\x56\x9e\xd3\x5d\x00\x00\xca\x23\xb0\xde\x74\x2f\x60\x08\xfd\xf2\x09" "\x28\x37\x0d\x88\xf8\xc0\x4b\xc3\xb9\x7b\x9a\x9e\x00\x62\xe8\xfc\x5f\xd2" "\x33\x7d\x85\xa6\x6b\xd2\x07\x30\xf3\x15\x3d\xb2\x45\x9f\xb3\x4c\x13\x4c" "\x06\xc1\x93\x64\xe9\x64\x5e\x83\x04\x0d\xd1\x6e\xe0\x8f\x18\xf0\xba\x69" "\xac\x9c\xa3\xe2\x5e\x15\x44\x2b\x07\x00\x00\x00\xd3\x0d\x38\xa6\x46\x13" "\xb5\x35\xfa\x80\x8a\x9b\x3b\xae\x00\xbc\x37\x12\x71\xd4\x5d\xb2\x00\xa5" "\xcb\xf4\x33\xe2\xf6\xdd\x03\xb7\xc7\xfc\xc0\x40\x78\x1e\x51\x51\xc9\xba" "\xdb\x78\x7e\x7e\x1e\x2f\x39\xd6\x09\x98\x91\x9a\xa8\xdb\xd1\x56\xf3\x1a" "\x5b\x7f\xa5\xf9\xe5\xec\x01\xe8\xc7\x99\xed\xc3\x22\x70\x3c\x7f\xc4\xa8" "\x1a\xb9\xbc\x02\xdd\x96\x71\x4e\xe9\xd7\xe7\x5d\x28\xd0\x40\xff\x35\x66" "\x40\x4f\xd6\xdb\x54\x7a\x4b\x55\x31\x97\xc1\xf3\x16\xd2\x0e\xa5\x4f\x94" "\x59\xcd\x81\x35\x1a\x51\x0d\x10\x1e\x90\xea\xbe\x6d\xc6\xc6\xac\x3f\xfa" "\x18\x9c\x07\x3a\x5f\xb3\xfc\x38\x2d\xf6\x20\xbf\x5a\xf9\xe6\x38\x81\x9c" "\x77\xa0\x51\xe6\x87\x58\x66\xa8\x49\xf6\xf5\x78\xc0\x68\xc0\xe4\xc7\xcf" "\xbc\x15\x03\x39\x97\xef\xa8\x53\xc9\x62\x97\xb3\x20\x1d\xd3\x0e\xa4\x0d" "\xc9\x4d\x01\x0a\x0c\x33\xda\x9f\x63\xa1\x0b\x8f\x81\x3d\xc7\x89\xb8\x0b" "\xe3\xbb\x3f\x00\xee\x58\xb3\x0d\x5c\x03\xa6\xdd\xbf\x41\x8a\xc1\xb3\xd4" "\xa1\x38\x39\xe4\xb2\x73\xc4\xf9\x14\xbe\xd1\x3f\x88\x06\x29\x54\x95\xd4" "\x16\x09\x47\x87\x98\x39\x6a\xee\xc0\x6e\x8d\x34\x2e\xfd\x8a\xc6\xb4\x22" "\xf6\xc2\x3a\x01\x1b\x14\x00\x00\x00\x00\x00\x00\x00\xbc\x2a\x02\x09\x4e" "\x19\xa1\xee\x8b\xb3\xc3\xc0\xc0\x88\xae\x8e\xfa\xf6\x8c\x85\x00\x1f\xaf" "\x7c\xf5\x42\x6f\xb7\xc5\xc3\x67\xed\x93\xeb\x25\xc4\x8a\x29\x35\x49\xd1" "\x5b\x91\xb5\x9f\x1b\x57\x4b\x3f\x61\x71\xf8\xe5\x6a\x40\x2e\xc5\x6b\xdf" "\x51\xd9\x03\x12\xb3\xca\x53\x98\xf4\x05\x00\x00\x00\x75\x04\xbe\x21\x45" "\x6e\xc9\x53\xbf\x06\xf1\x2f\xff\x20\xc3\x1e\x7c\x8b\x55\xfe\xe5\xc4\x9a" "\xa9\x39\x83\x0b\x09\x99\x5f\xf1\x49\x25\x81\x18\xf9\xaa\xe2\x92\x06\xf9" "\x73\x12\x88\xb5\x6b\x10\xde\x51\x52\x56\x65\xfd\xb4\xe2\x89\xb1\xc1\x77" "\xde\x97\xaf\x30\x85\xf8\x20\x45\xfb\xd0\x12\xf1\xdd\xe9\x4f\xfe\xcd\x90" "\xb7\xb6\x3d\x81\x97\xd9\xc2\x4a\x6f\xe5\x91\x5a\xc7\xd7\x24\x08\x47\xf6" "\xd0\xbf\x90\x99\xee\x11\x7c\x83\xe3\x63\xf2\xad\x36\xa4\xa9\xf4\xfa\xa5" "\x73\x4a\xfe\x97\x70\xc3\x8c\x56\x5c\xae\x87\xa4\x08\xd0\xac\xbb\x2d\xb7" "\xdb\x91\x74\xac\xab\x60\xa3\x44\x81\x4e\xe6\x43\xfa\x82\xba\x41\x70\x6d" "\x23\x60\x26\x9e\xd2\x76\xe1\x3d\xd8\x3a\xbb\xc2\x58\xf0\x7b\x0d\x58\xab" "\x0b\x65\x20\x0b\x18\xb7\xf9\xf8\x71\xbc\xb4\x3f\xec\x5a\x2e\x37\x89\xec" "\xd0\xc1\x06\x9d\x2d\xa8\x0b\x93\xc8\x6d\xff\x89\x33\xe7\x0c\x21\x08\x34" "\x60\x03\xdd\xf6\xb6\x03\x79\xee\xe6\x3b\x66\xe7\x34\x1c\xdd\x8f\x87\xed" "\x9f\x11\x89\x4c\x9a\xe0\x40\x97\x63\x21\xd8\x74\x05\xb4\x92\xf4\x19\xeb" "\xfa\x77\xeb\x36\x7c\xa6\xe3\x60\xb8\xf8\x45\x11\x02\xf5\x48\x93\xd7\xd1" "\x69\x5c\x24\xbc\xc1\x84\xb1\xe7\xd1\x99\x40\xa2\xb6\x93\x1a\xde\x86\x38" "\xdd\x2b\x85\xa8\x6d\xc5\x11\xdb\xb9\x7f\x50\x52\x0f\x91\xfb\xf7\x20\x1f" "\xc9\x62\x1d\x0a\xee\x97\x35\xd0\x7c\xa0\x24\x07\x6e\x85\x81\xdb\x33\x2b" "\x1c\x5f\x13\x5f\xe6\xb2\xe9\xd2\xc1\x8c\x9d\x5d\x5a\x52\x4d\x3d\x5b\x26" "\x57\xe4\xb2\x8f\x1a\x09\x69\x6b\xd5\xb0\x76\xa1\x47\x1c\x8b\x2a\xb2\xca" "\x3b\xa5\x78\x43\xaf\x1d\x03\x59\x0f\x4e\x89\x85\xe1\xc4\x63\xc7\x81\xbb" "\x03\xad\x7e\xc8\x16\xea\x70\xbb\xe0\x64\x11\xaa\xe0\x01\xe0\xca\x72\xee" "\x7e\x82\x8a\xd1\x4b\xb7\xa0\x92\xd8\x83\xad\x00\x05\x54\xbf\x7f\x00\x00" "\x00\x00\x00\x00\x75\xcc\x01\xf8\xa2\xe1\x80\x21\x92\xf0\x9e\x77\xbc\x48" "\x8b\x3b\xd3\xf0\x8a\x9c\xe8\x8b\xa2\xe2\xbc\xc2\x3c\xf5\xd7\x37\x2b\x33" "\x9c\xe1\xf5\x00\x3d\xb0\xad\x70\xfa\x6e\x93\xaa\x90\x8a\x2c\xed\x81\xf5" "\x51\x4e\x23\xe2\xf9\x4f\xf0\x3c\x1c\x02\xf5\xa9\x19\x5f\x47\x35\x56\x3e" "\xfd\x0a\x1f\xc7\xda\xfc\xfb\x3d\xae\x04\x3f\xe0\xc1\x72\xec\x3a\x12\x74" "\x7d\x7a\xbf\x43\x82\xbf\x74\x53\xc1\x3d\xf9\x94\x64\x10\x17\xa0\xf4\x61" "\xad\xd9\x56\xef\x8f\x83\x4b\x76\x2a\xf3\x04\x08\xaf\x6a\x61\xf3\x17\xfd" "\x3c\x7b\x08\x16\x23\x6a\x76\x86\x01\xb7\xc6\x60\x6b\xa5\x2f\xf1\x26\xeb" "\x13\xd3\x3c\x91\x5c\x5d\xa9\x9d\x11\x8d\xb4\x88\xda\x3f\x3d\x77\x83\xa6" "\x08\x28\x2a\x93\xfc\xbe\x09\x10\xf0\x38\x9c\x3e\xf9\x1d\xe7\xc8\x4e\x23" "\xda\xa6\x55\x4c\x42\xb2\xb3\xe9\xf7\x0a\x9f\x79\x0f\x29\x01\x1a\x0b\x51" "\x02\x00\x3b\xfe\xba\x6e\x52\x87\x7e\xd8\xa1\x88\x95\x8e\x39\x37\x5d\xd2" "\x03\xd4\x34\xbe\xf4\xdc\x82\xcc\x8a\x21\xfc\x40\xc6\xe6\xe6\xa2\x47\x5f" "\x70\xbf\x15\x03\xbe\xb9\x55\x50\x36\xe6\x3b\xdc\x93\x7f\x8a\x4d\x61\xb2" "\x1d\x06\xa9\xd3\x23\x9d\x1d\xf6\xf2\xe9\xef\x16\xde\xe5\x90\xb1\x5a\xc0" "\x28\xc6\xd8\x73\xbb\x29\x65\x37\x4b\x73\x3d\x8e\x11\xba\x76\x3a\xb1\x57" "\xed\x91\xdd\x87\x1b\x09\x8c\x05\x43\xdc\xbb\xa4\xcf\x67\xdb\x8c\x83\xc8" "\x43\x69\xdc\x67\x73\x5f\xa4\xfa\xa0\xfd\xcf\x34\xb1\xc6\xa8\x62\xcc\xae" "\x9f\xe4\xfa\x28\x74\x65\x04\x64\x3b\x57\xf0\x26\x23\xa2\xef\x34\xea\x90" "\xf2\xe7\xf7\xdd\x77\x1f\x8f\x75\x21\x7c\x79\x9d\x97\x8a\x35\x33\xfc\xfa" "\xb6\xc6\xf5\x39\x1b\x62\x6d\x61\xb4\x00\xf0\x81\x72\xfc\x67\x5e\x2a\x06" "\x2d\x06\xc3\x1b\x85\x45\x28\x04\xf7\xb1\x25\xc2\x91\xf6\x0a\x02\xa5\xd6" "\x22\x71\xe9\x6f\xe7\x0d\x64\xba\xe3\x6e\x28\xb4\x2e\x19\x72\x59\x16\x9e" "\xbe\xe8\xf6\x43\x55\x54\x4f\xba\xd8\xb8\x3c\x1c\x8f\xad\x02\xcd\x1a\x2e" "\x56\xa6\xf6\xe8\x2e\xc7\x71\x9a\x48\xa1\xbe\xa8\x03\x54\x6b\x8a\xf7\xa8" "\x9f\xaf\x7c\xef\x94\xd8\xad\xa4\x5f\xc0\xa9\x8a\x79\xba\x90\xc9\x52\x62" "\xf0\x11\x07\x25\xc6\xbf\x7c\x81\x23\x75\x34\xdc\xd6\xa8\xa1\x13\xbd\x8a" "\xc4\x8b\x7d\xb5\x52\x6a\xb7\x62\xce\xc1\x03\x67\x47\x42\x47\x6c\xd6\xb9" "\x2b\x8c\x7a\xbc\xfb\x1f\x8e\x08\xf0\xa0\x5c\x1b\x20\x91\x87\x04\x9f\x32" "\x06\xbd\x54\x5e\x8c\x20\xf8\xdb\x6d\x8a\x7c\xdd\x0c\x9e\xcb\xb9\x01\x1b" "\x61\x1a\x01\x3c\xd5\x81\x52\x1d\xfc\xb0\x28\xd5\x9d\x5c\x69\xd2\x86\xfb" "\x93\xe4\xc4\x98\xb3\xaa\xff\x7e\x0c\xdc\xf1\xf4\x1f\xec\x65\xeb\xdb\xe4" "\xc2\xbf\x45\x31\x40\x25\x1c\xdd\x94\xc3\x2b\x87\xc4\x63\x4d\x65\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x81\x6e\x6c\x33" "\xf9\x2d\xca\x3e\x03\xc4\x00\x00\x00\x5e\x53\x8c\x77\xb2\xb1\x4f\x63\xd2" "\x53\x70\x53\x63\x84\x6b\xc4\xe9\xcd\x32\x84\xff\x32\x93\x30\x81\x2d\x22" "\x11\xae\x34\x10\x6e\x03\x06\x37\x6a\x2b\x1c\xfe\x60\xa0\x9b\xec\xae\x2b" "\x05\xec\x9a\xdc\xac\x47\x61\x2a\xf8\x5f\x59\x8a\x88\x0f\xa9\x78\x91\xa7" "\xa2\x90\xb6\xe7\x30\x80\x05\x42\xae\xa7\x61\xae\xb4\x63\xf5\xff\x5b\xdf" "\x50\x99\xae\x8a\xd4\xaf\xe9\x9d\xb9\xe9\xc4\xe7\x03\xcb\x90\x0e\x9a\xe2" "\x72\x74\x2f\xe2\xff\x81\xd1\xa4\xf1\x56\x68\x39\x2c\xda\xfd\x2e\x17\x57" "\x70\x6f\x47\xf9\xf8\x4e\x53\x2f\x25\xe2\x73\x7c\xb6\xf6\xe8\x93\x78\xf8" "\xd7\x9a\xb8\x50\x7b\x10\x9c\x7f\x1f\x36\x53\xa5\xbc\x9d\x54\xcc\xc6\x33" "\xde\x62\x63\x52\x6e\xac\x10\x51\x92\x74\x0d\xa5\xfa\x46\xa7\x4b\x10\xa1" "\x18\xec\x17\x01\x81\x9e\xc2\x5f\xa0\x02\x8e\xc4\xa8\x57\x83\x72\x41\x8b" "\x09\x53\x93\x7d\xec\x79\x4f\xc6\x64\x99\x05\x67\x53\xe9\x11\x0c\xd1\x5c" "\x34\x9e\x1a\x33\x61\xf3\x4c\x32\xfc\xe8\x48\xa1\x40\x6b\x3e\xee\xf8\x9e" "\x65\xe4\xf0\xc3\x4f\xf9\xca\x55\xae\xb1\xe4\xe7\xcb\x06\x54\x74\x78\x68" "\x3c\x51\x21\xd2\x48\xa4\x71\x64\xc3\xc4\xbf\x23\xc5\x3d\xcc\x89\x0d\x0a" "\x69\xa1\xde\xea\x8b\xcc\x99\xd2\x24\x81\x89\xef\x0b\x20\x38\x54\xe5\x0e" "\xa5\x6b\xa7\x5a\x35\x30\x89\x7c\xbe\x6f\x6d\x84\x69\x51\x74\xbf\x9d\xa4" "\x09\x8f\xc9\x7c\xfb\x1e\x31\xc7\xc8\x41\x87\xa1\x21\xb7", 2624); memcpy( (void*)0x200000008340, "\x78\x9c\xec\xdd\xcb\x6f\x1d\x57\x1d\x07\xf0\xdf\x7d\xf8\xfa\x51\x9a\x46" "\x15\xaa\x42\xc4\xc2\x4d\xa1\xb4\x94\xe6\x9d\x40\x79\x35\x65\xc1\x02\x90" "\x40\x42\x59\x93\xc8\x75\xab\x40\x0a\x28\x49\x11\xad\x22\xe2\x2a\x0b\xc4" "\x82\xc7\x9f\x00\x9b\x6e\x58\xf4\x1f\x29\xff\x02\xe2\x0f\x20\x52\xc2\xaa" "\x12\x94\x41\x63\x9f\x93\x8c\xc7\xd7\xb9\x0e\x89\xef\xdc\xeb\xf3\xf9\x48" "\xce\xcc\x6f\xce\x8c\x7d\x26\x5f\x8f\xef\x63\x66\xee\x09\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\xbe\xf7\xdd\x1f\x9f\xea\x45\xc4" "\xa5\x5f\xa5\x05\x87\x23\x3e\x13\x83\x88\x7e\xc4\x72\x5d\xaf\x46\x3d\x73" "\x21\xaf\x3f\x8c\x88\x23\xb1\xd9\x1c\xcf\x45\xc4\x60\x31\xa2\xde\x7e\xf3" "\x9f\x67\x22\xce\x46\xc4\xc7\x87\x22\xee\xde\xbb\xb9\x56\x2f\x3e\xbd\xc7" "\x7e\x9c\x3b\x79\xe3\xda\xa7\xdf\xff\xce\xdf\x7f\xfb\xc7\xdb\x47\x7e\xfa" "\xe6\x4f\x3e\x6c\xb7\xff\xe8\xb3\x67\x3e\xfa\xdd\xad\x88\xc3\x3f\x7c\xed" "\xa3\x4f\x6f\x3d\x99\x7d\x07\x00\x00\x80\x52\x54\x55\x55\xf5\xd2\xcb\xfc" "\xa3\xe9\xf5\x7d\xbf\xeb\x4e\x01\x00\x53\x91\x1f\xff\xab\x24\x2f\x57\xab" "\xd5\x6a\xf5\x13\xad\xff\xd0\x9f\xad\xfe\xa8\x0b\xad\x9b\xaa\xf1\x6e\x35" "\x8b\x88\xd8\x68\x6e\x53\x3f\x67\x70\x3a\x1e\x00\xe6\xcc\x46\x7c\xd2\x75" "\x17\xe8\x90\xfc\x8b\x36\x8c\x88\xa7\xba\xee\x04\x30\xd3\x7a\x5d\x77\x80" "\x7d\x71\xf7\xde\xcd\xb5\x5e\xca\xb7\xd7\x7c\x3c\x58\xdd\x6a\xcf\xef\x53" "\x6e\xcb\x7f\xa3\x77\xff\xfe\x8e\xdd\xa6\x93\xb4\xaf\x31\x99\xd6\xef\xd7" "\xed\x18\xc4\xb3\xbb\xf4\x67\x79\x4a\x7d\x98\x25\x39\xff\x7e\x3b\xff\x4b" "\x5b\xed\xa3\xb4\xde\x7e\xe7\x3f\x2d\xbb\xe5\x3f\xda\xba\xf5\xa9\x38\x39" "\xff\x41\x3b\xff\x96\x6d\xf9\xff\x29\x22\xe6\x36\xff\xfe\xd8\xfc\x4b\x95" "\xf3\x1f\x3e\x4a\xfe\x1b\x83\x39\x3e\xfe\xe5\x0f\x00\x00\x00\x00\xc0\xc1" "\x97\xdf\xff\x3f\xdc\xf1\xf9\xdf\xc5\xc7\xdf\x95\x3d\x79\xd8\xf9\xdf\xd5" "\x29\xf5\x01\x00\x00\x00\x00\x00\x00\x00\x9e\xb4\xc7\x1d\xff\xef\x3e\xe3" "\xff\x01\x00\x00\xc0\xcc\xaa\x5f\xab\xd7\xfe\x7c\xe8\xc1\xb2\xdd\x3e\x8b" "\xad\x5e\x7e\xb1\x17\xf1\x74\x6b\x7d\xa0\x30\xe9\x66\x99\x95\xae\xfb\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x19\x6e\x5d\xc3\x7b\xb1\x17" "\xb1\x10\x11\x4f\xaf\xac\x54\x55\x55\x7f\x35\xb5\xeb\x47\xf5\xb8\xdb\xcf" "\xbb\xd2\xf7\x1f\x4a\xd6\xf5\x1f\x79\x00\x00\xd8\xf2\xf1\xa1\xd6\xbd\xfc" "\xbd\x88\xa5\x88\xb8\x98\x3e\xeb\x6f\x61\x65\x65\xa5\xaa\x96\x96\x57\xaa" "\x95\x6a\x79\x31\x3f\x9f\x1d\x2d\x2e\x55\xcb\x8d\xd7\xb5\x79\x5a\x2f\x5b" "\x1c\xed\xe1\x09\xf1\x70\x54\xd5\xdf\x6c\xa9\xb1\x5d\xd3\xa4\xd7\xcb\x93" "\xda\xdb\xdf\xaf\xfe\x59\xa3\x6a\xb0\x87\x8e\x4d\x47\x87\x81\x03\x40\x44" "\x6c\x3d\x1a\xdd\xf5\x88\x74\xc0\x54\xd5\x33\xd1\xf5\xb3\x1c\xe6\x83\xe3" "\xff\xe0\x71\xfc\xb3\x17\x5d\xff\x9e\x02\x00\x00\x00\xfb\xaf\xaa\xaa\xaa" "\x97\x3e\xce\xfb\x68\x3a\xe7\xdf\xef\xba\x53\x00\xc0\x34\x2c\xe5\xc7\xff" "\xf6\x79\x01\xb5\x5a\xad\x7e\x9c\xfa\xdd\x19\xeb\x8f\x5a\xad\xde\xa9\x1a" "\xef\x56\xb3\x88\x88\x8d\xe6\x36\xf5\x73\x06\xc3\xf1\x03\xc0\x9c\xd9\x88" "\x4f\xba\xee\x02\x1d\x92\x7f\xd1\x86\x11\x71\xa4\xeb\x4e\x00\x33\xad\xd7" "\x75\x07\xd8\x17\x77\xef\xdd\x5c\xeb\xa5\x7c\x7b\xcd\xc7\x83\x34\xbe\x7b" "\xbe\x16\x64\x5b\xfe\x1b\xbd\xcd\xed\xf2\xf6\xe3\xa6\x93\xb4\xaf\x31\x99" "\xd6\xef\xd7\xed\x18\xc4\xb3\xbb\xf4\xe7\xb9\x29\xf5\x61\x96\xe4\xfc\xfb" "\xed\xfc\x2f\x6d\xb5\x8f\xd2\x7a\xfb\x9d\xff\xb4\xec\x96\x7f\xbd\x9f\x87" "\x3b\xe8\x4f\xd7\x72\xfe\x83\x76\xfe\x2d\x07\x27\xff\xfe\xd8\xfc\x4b\x95" "\xf3\x1f\x3e\x52\xfe\x03\xf9\x03\x00\x00\x00\x00\xc0\x0c\xcb\xef\xff\x1f" "\x7e\xf8\xf9\xdf\xa5\x6d\x1b\x1d\xd0\xf3\xbf\xab\x53\xea\x03\x00\x00\x00" "\x00\x00\x00\x00\x3c\x69\x77\xef\xdd\x5c\xcb\xf7\xbd\xe6\xf3\xff\x9f\x1f" "\xb3\x5e\xaf\x39\xe7\xfe\xcf\x03\x23\xe7\xdf\xdb\x73\xfe\xee\xff\x3d\x48" "\x72\xfe\xfd\x76\xfe\xad\x0b\x72\x06\x8d\xf9\x3b\x6f\x3c\xc8\xff\x5f\xf7" "\x6e\xae\x7d\x78\xe3\x9f\x9f\xcb\xd3\x99\xcf\x7f\x61\x30\xaa\x7f\xf6\x42" "\xaf\x3f\x18\xa6\x6b\x7e\xaa\x85\xb7\xe2\x4a\x5c\x8d\xf5\x38\xb9\x63\xfd" "\xe1\xb6\xf6\x53\x3b\xda\x17\xb6\xb5\x9f\x9e\xd0\x7e\x66\x47\xfb\xa8\x6e" "\x5f\xce\xed\xc7\x63\x2d\x7e\x11\x57\xe3\xcd\xfb\xed\x8b\x13\x2e\x8c\x5a" "\x9a\xd0\x5e\x4d\x68\xcf\xf9\x0f\x1c\xff\x45\xca\xf9\x0f\x1b\x5f\x75\xfe" "\x2b\xa9\xbd\xd7\x9a\xd6\xee\x7c\xd0\xdf\x71\xdc\x37\xa7\xe3\x7e\xce\x85" "\xbf\xfe\xe7\xc5\x9d\x47\xd7\xf4\xdd\x8e\xc1\xfd\x7d\x6b\xaa\xf7\xef\x58" "\x07\xfd\xd9\xfc\x3f\x79\x6a\x14\xef\x5e\x5f\xbf\x76\xfc\xd7\x97\x6f\xdc" "\xb8\x76\x2a\xd2\x64\xdb\xd2\xd3\x91\x26\x4f\x58\xce\x7f\x21\x7d\xe5\xfc" "\x5f\x7a\x61\xab\x3d\xff\xdd\x6f\x1e\xaf\x77\x3e\x18\x3d\x72\xfe\xb3\xe2" "\x76\x0c\x77\xcd\xff\x85\xc6\x7c\xbd\xbf\x2f\x4f\xb9\x6f\x5d\xc8\xf9\x8f" "\xd2\x57\xce\x3f\x3f\x02\x8d\x3f\xfe\xe7\x39\xff\xdd\x8f\xff\x57\x3a\xe8" "\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x4c\x55\x55\x9b" "\xb7\x88\x5e\x88\x88\xf3\xe9\xfe\x9f\xae\xee\xcd\x04\x00\xa6\xea\xf7\x3f" "\x48\x33\x55\x12\x6a\xb5\x5a\xad\x56\xab\xe7\xa6\xee\xa5\x65\x7b\x5d\xbf" "\xa9\x1a\xef\xf5\x66\xd1\x1a\x09\x70\xf3\x3d\x83\xdf\x8c\xfb\x66\x00\xc0" "\x2c\xfb\x6f\x44\xfc\xa3\xeb\x4e\xd0\x19\xf9\x17\x2c\x7f\xde\x5f\x3d\xfd" "\x42\xd7\x9d\x01\xa6\xea\xfa\x7b\xef\xff\xec\xf2\xd5\xab\xeb\xd7\xae\x77" "\xdd\x13\x00\x00\x00\x00\x00\x00\x00\xe0\xff\x95\xc7\xff\x5c\x6d\x8c\xff" "\xbc\x79\x1d\x50\x6b\xdc\xe8\x6d\xe3\xbf\xbe\x11\xab\x73\x3b\xfe\x67\x7f" "\x34\xd8\x1c\xeb\x3c\xed\xd0\xf3\xf1\xf0\xf1\xbf\x8f\xc5\xc3\xc7\xff\x1e" "\x4e\xf8\x79\x0b\x13\xda\x47\x13\xda\x17\x27\xb4\x2f\x4d\x68\x1f\x7b\xa3" "\x47\x43\xce\xff\xf9\x94\x71\xce\xff\x68\xda\xb1\x92\xc6\x7f\x7d\xa9\x83" "\xfe\x74\x2d\xe7\x7f\x2c\x8d\xf5\x9c\xf3\xff\x52\x6b\xbd\x66\xfe\xd5\x5f" "\xe6\x39\xff\xfe\xb6\xfc\x4f\xdc\x78\xe7\x97\x27\xae\xbf\xf7\xfe\xab\x57" "\xde\xb9\xfc\xf6\xfa\xdb\xeb\x3f\x3f\x75\xf2\xfc\xd9\x33\xe7\xce\x9e\x39" "\x77\xee\xc4\x5b\x57\xae\xae\x9f\xdc\xfa\xb7\xc3\x1e\xef\xaf\x9c\x7f\x1e" "\xfb\xda\x75\xa0\x65\xc9\xf9\xe7\xcc\xe5\x5f\x96\x9c\xff\x17\x53\x2d\xff" "\xb2\xe4\xfc\x5f\x4c\xb5\xfc\xcb\x92\xf3\xcf\xcf\xf7\xe4\x5f\x96\x9c\x7f" "\x7e\xed\x23\xff\xb2\xe4\xfc\x5f\x4e\xb5\xfc\xcb\x92\xf3\xff\x72\xaa\xe5" "\x5f\x96\x9c\xff\x2b\xe9\xad\x44\xf9\x97\x25\xe7\xff\x95\x54\xcb\xbf\x2c" "\x39\xff\x57\x53\x2d\xff\xb2\xe4\xfc\x8f\xa7\x5a\xfe\x65\xc9\xf9\x9f\x48" "\xb5\xfc\xcb\x92\xf3\xcf\x67\xb8\xe4\x5f\x96\x9c\x7f\xbe\xb2\x41\xfe\x65" "\xc9\xf9\x9f\x4e\xb5\xfc\xcb\x92\xf3\x3f\x93\x6a\xf9\x97\x25\xe7\x7f\x36" "\xd5\xf2\x2f\x4b\xce\xff\x5c\xaa\xe5\x5f\x96\x9c\xff\xf9\x54\xcb\xbf\x2c" "\x39\xff\xaf\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\xb5" "\x54\xcb\xbf\x2c\x39\xff\xaf\xa7\x5a\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f" "\x4b\xce\xff\x9b\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\xff" "\x76\xaa\xe5\x5f\x96\x9c\xff\xeb\xa9\x96\x7f\x59\x1e\x7c\xfe\xbf\x99\x29" "\xcf\xfc\xfb\x6f\x11\x33\xd0\x0d\x33\x66\xc6\xcd\x74\xfd\x97\x09\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x68\x9b\xc6\xe5\xc4\x5d\xef\x23\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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" "\x3f\x76\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xb0\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\xbd\xbb\x8b\x91\xeb\xac\xef\x07" "\xfe\xec\x9b\xbd\x76\x02\xf1\x9f\x84\x10\x82\x21\x6b\xc7\x09\x86\x6c\xbc" "\xbb\x7e\x4b\x4c\x30\x98\xd7\x7f\x1a\x5a\x9a\x06\x42\x4b\x0b\x75\x8c\xbd" "\x76\x0c\x7e\xab\x77\x0d\x09\x42\xcd\xd2\xd0\x16\x04\x52\x23\x95\x0b\x7a" "\x51\x0a\x88\x22\xa4\xb6\x4a\x84\x90\x4a\x25\x8a\x22\x15\xa9\xbd\x2b\x57" "\xa0\xdc\xa0\x56\xe2\xc2\x52\xa1\x32\x11\x54\xa2\x02\xb6\x3a\x73\x9e\xe7" "\xd9\x99\xd9\xd9\x99\x5d\xdb\x6b\xcf\x9c\xf3\xf9\x44\xf1\xcf\x3b\x73\x66" "\xe6\x99\x33\x67\x66\xf7\xbb\xd6\x77\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x66\xdb\xde\x36" "\xfb\xe7\x43\x21\x84\xe2\xff\xc6\x1f\x5b\x42\xb8\xb1\xf8\xfb\xa6\x70\xa8" "\xf8\x72\x61\xff\xf5\x5e\x21\x00\x00\x00\x70\xa5\x7e\xd5\xf8\xf3\xef\x6f" "\xca\x27\x1c\x5a\xc5\x85\x9a\xb6\xf9\xd7\xd7\xfc\xfb\x37\x17\x17\x17\x17" "\xc3\x87\x5e\xbc\xf8\xeb\xbf\x5c\x5c\xcc\x67\x4c\x84\x30\xb2\x31\x84\xc6" "\x79\xc9\xbf\xfd\xe2\xe7\x8b\xcd\xdb\x44\x4f\x87\xf1\xa1\xe1\xa6\xaf\x87" "\x7b\xdc\xfc\x48\x8f\xf3\x47\x7b\x9c\x3f\xd6\xe3\xfc\x0d\x3d\xce\xdf\xd8" "\xe3\xfc\xf1\x1e\xe7\x2f\xdb\x01\xcb\x6c\x2a\x7f\x1f\xd3\xb8\xb2\x1d\x8d" "\xbf\x6e\x29\x77\x69\xb8\x25\x8c\x35\xce\xdb\xd1\xe1\x52\x4f\x0f\x6d\x1c" "\x1e\x4e\xbf\xcb\x69\x18\x6a\x5c\x66\x71\xec\x78\x38\x19\x4e\x85\xd9\x30" "\xbd\xec\x32\x43\x8d\xff\x42\xf8\xf6\xb6\xe2\xb6\x1e\x0c\xe9\xb6\x86\x9b" "\x6e\x6b\x6b\x08\xe1\xd2\x4f\x3f\x71\x34\xad\x61\x28\xee\xe3\x1d\xa1\xe5" "\xc6\x1a\x9a\x1f\xbb\x9f\xbc\x25\x4c\xbc\xf8\xd3\x4f\x1c\xfd\xda\xfc\x8f" "\x5f\xd9\x69\xf6\xdc\x0d\xcb\x56\x1a\xc2\xce\xed\xc5\x3a\x3f\x15\xc2\xd2" "\xaf\xab\xc2\x50\xd8\x98\xf7\x49\x5a\xe7\x70\xd3\x3a\xb7\x76\x58\xe7\x48" "\xcb\x3a\x87\x1a\x97\x2b\xfe\xde\xbe\xce\x4b\xab\x5c\x67\xba\xdf\xe3\x71" "\x9d\xdf\xeb\xb2\xce\xad\xf1\xb4\x27\xee\x0c\x21\x2c\x84\x15\xb7\x69\xf7" "\x74\x18\x0e\x9b\xdb\x6e\x35\xef\xef\xf1\xf2\x88\x28\xae\xa3\x78\x28\x5f" "\x16\x46\xd7\x74\x9c\x6c\x5b\xc5\x71\x52\x5c\xe6\x47\x77\xb6\x1e\x27\xed" "\xc7\x64\xda\xff\xdb\xe2\x3e\x19\x5d\x61\x0d\xcd\x0f\xc7\x4f\x3e\xb9\x61" "\xd9\x7e\xbf\xdc\xe3\xa4\xb8\xd7\xfd\x70\xac\x16\xd7\xfd\x70\x71\xa3\xe3" "\xe3\xcd\xbf\x5a\x6d\x39\x56\x8b\x6d\x3e\x71\xd7\xca\xc7\x40\xc7\xc7\xae" "\xc3\x31\x90\x8f\xe5\xa6\x63\x60\x7b\xaf\x63\x60\x78\xc3\x48\xe3\x18\x18" "\x5e\x5a\xf3\xf6\x96\x63\x60\x66\xd9\x65\x86\xc3\x50\xe3\xb6\x2e\xde\xd5" "\xfd\x18\x98\x9a\x3f\x7d\x6e\x6a\xee\xc9\x8f\xdf\x7b\xf2\xf4\x91\x13\xb3" "\x27\x66\xcf\xcc\x4c\xef\xdf\xbb\x67\xdf\xde\x3d\xfb\xf6\x4d\x1d\x3f\x79" "\x6a\x76\xba\xfc\x73\x6d\xbb\x74\x80\x6c\x0e\xc3\xf9\x18\xdc\x1e\x5f\x6b" "\xd2\x31\xf8\xda\xb6\x6d\x9b\x0f\xc9\xc5\x2f\x5f\xbd\xe7\xc1\x78\x9f\x3c" "\x0f\x8a\xfb\xfe\xde\xbb\x8b\x05\xdd\x38\x1c\x56\x38\xc6\x8b\x6d\x3e\xb5" "\xf3\xca\x9f\x07\xf9\xfb\x7e\xd3\xf3\x60\xb4\xe9\x79\xd0\xf1\x35\xb5\xc3" "\xf3\x60\x74\x15\xcf\x83\x62\x9b\x4b\x3b\x57\xf7\x3d\x73\xb4\xe9\xff\x4e" "\x6b\x58\xaf\xd7\xc2\x2d\x4d\xc7\xc0\xf5\xfc\x7e\x58\xdc\xe6\x07\x5e\xb7" "\xf2\x6b\xe1\xd6\xb8\xae\x4f\xbf\x7e\xad\xdf\x0f\x47\x96\x1d\x03\xe9\x6e" "\x0d\xc5\xe7\x5e\x71\x4a\xfe\x79\x6f\xfc\xfe\xb8\x5f\x96\x1f\x17\xb7\x17" "\x67\xdc\xb0\x21\x5c\x98\x9b\x3d\xbf\xeb\x89\x23\xf3\xf3\xe7\x67\x42\x1c" "\xd7\xc4\xcd\x4d\x8f\x55\xfb\xf1\xb2\xb9\xe9\x3e\x85\x65\xc7\xcb\xf0\x9a" "\x8f\x97\x43\x7f\xf7\xcb\xbb\x6f\xef\x70\xfa\x96\xb8\xaf\xc6\xef\xe9\xfe" "\x58\x15\xdb\xec\x9d\xec\xfe\x58\x35\x5e\xdd\x5b\xf7\xe7\x86\x50\xee\xcf" "\x96\x53\x77\x87\x38\xae\xb2\x6b\xbd\x3f\x3b\x7d\x37\x2b\xf6\x67\xce\x12" "\x5d\xf6\x67\xb1\xcd\xa7\xee\xbd\xf2\x9f\x05\x73\x2e\x69\x7a\xfd\x1b\xeb" "\xf5\xfa\x37\x32\x36\x5a\xbe\xfe\x8d\xe4\xbd\x31\xd6\xf2\xfa\xb7\xfc\xa1" "\x19\x69\xac\x2c\x84\x4b\xf7\xae\xee\xf5\x6f\x2c\xfe\x7f\xad\x5f\xff\x6e" "\xe9\x93\xd7\xbf\x62\x5f\x7d\x60\x57\xf7\x63\xa0\xd8\xe6\xd3\x53\x6b\x3d" "\x06\x46\xbb\xbe\xfe\xdd\x19\xe7\x50\x5c\xcf\xeb\x62\x62\x18\x6f\xca\xfd" "\xbf\x6e\x9c\xbf\x50\x1e\xa6\x4d\x8f\x65\xcf\xe3\x66\x74\x74\x2c\x1e\x37" "\xa3\xe9\x16\x5b\x8f\x9b\x3d\xcb\x2e\x53\x5c\x5b\x71\xdb\x3b\xa7\x2f\xef" "\xb8\xd9\x79\x67\xeb\x63\xd5\xf2\x73\x4b\x05\x8f\x9b\x62\x5f\x7d\x7e\xba" "\xfb\x71\x53\x6c\xf3\xfc\xcc\x95\xbf\x76\x6c\x4a\x7f\x6d\x7a\xed\xd8\xd0" "\xeb\x18\x18\x1b\xd9\x50\xac\x77\x2c\x1f\x04\xe5\xeb\xdd\xe2\xa6\x74\x0c" "\xec\x0a\x47\xc3\xd9\x70\x2a\x1c\xcb\x97\x29\x1e\xe5\xe2\xb6\x26\x77\xaf" "\xee\x18\xd8\x10\xff\xbf\xd6\xaf\x1d\xb7\xf5\xc9\x31\x50\xec\xab\x2f\xec" "\xee\x7e\x0c\x14\xdb\x7c\x77\xcf\xd5\xfd\xd9\x69\x67\x3c\x25\x6f\xd3\xf4" "\xb3\x53\xfb\xef\x17\x56\xca\xfc\xb7\x8f\x2e\x5d\x5f\xfb\x6e\xbb\xda\x99" "\xbf\x58\xe7\xdb\xbf\xff\xee\x7c\x5a\xa7\x0c\x51\x6c\xf3\xe3\xbd\x6b\xcd" "\x19\xdd\xf7\xd3\x3d\xf1\x94\x1b\x3a\xec\xa7\xf6\xe7\xcf\x4a\xc7\xf4\xb1" "\x70\x6d\xf6\xd3\x6d\x71\x9d\xa7\xf6\x75\xff\xdd\x54\xb1\xcd\x2d\xfb\x57" "\x79\x3c\x1d\x0a\x21\xbc\x30\xf3\x42\xe3\xf7\x5d\xf1\xf7\xbb\xdf\xb8\xf0" "\xfd\x6f\xb6\xfc\xde\xb7\xd3\xef\x94\x5f\x98\x79\xe1\xa1\xa9\x47\x7e\xb0" "\x96\xf5\x03\x00\x70\xf9\x7e\xdd\xf8\x73\x61\x43\xf9\xb3\x66\xd3\xbf\x58" "\xaf\xe6\xdf\xff\x01\x00\x00\x80\x81\x90\x72\xff\x70\x9c\x99\xfc\x0f\x00" "\x00\x00\x95\x91\x72\xff\x48\x9c\x99\xfc\x0f\x00\x00\x00\x95\x91\x72\xff" "\x68\x9c\x59\x4d\xf2\xff\xe3\xf7\x1f\x78\xf6\x57\x4f\x85\xfc\x6e\x80\x8b" "\x51\x3a\x3f\xed\x86\x87\xdf\x54\x6e\x97\x3a\xde\x0b\xf1\xeb\x89\xc5\x25" "\xc5\xe9\x6f\xfd\xea\xd8\xb3\x9f\x79\x6a\x75\xb7\x3d\x1c\x42\xf8\xe5\x43" "\xaf\xea\xb8\xfd\xe3\x6f\x4a\xeb\x2a\x9d\x4b\xeb\x7c\x43\xeb\xe9\xcb\xdc" "\x76\xc7\xaa\x6e\xff\xb1\x47\x97\xb6\x6b\x7e\xff\x84\x4b\x07\xca\xeb\x4f" "\xf7\x67\xb5\x87\x41\xea\x2a\x7f\x7b\x6a\x77\xe3\x7a\x27\x9e\x9c\x69\xcc" "\xe7\x1f\x0a\x8d\xf9\xc8\xc2\xa7\x9f\x2e\xaf\xbf\xfc\x3a\x6d\x7f\x71\x4f" "\xb9\xfd\x5f\xc7\x37\x2d\x39\x74\x7c\xa8\xe5\xf2\x3b\xe3\x7a\x76\xc4\x39" "\x11\xdf\x53\xe6\xe1\x43\x4b\xfb\xa1\x98\xe9\x72\xcf\x6e\x7d\xcd\xbf\xdc" "\xfc\xbe\xa5\xdb\x4b\x97\x1b\xda\xfe\xd2\xc6\xdd\xfc\xc2\x1f\x97\xd7\x9b" "\xde\x23\xea\x99\x9b\xcb\xed\xd3\xfd\x5e\x69\xfd\xff\xfc\xd9\xaf\x3f\x5b" "\x6c\xff\xc4\x5d\x9d\xd7\xff\xd4\x70\xe7\xf5\x5f\x8c\xd7\xfb\xa3\x38\x7f" "\x71\xb0\xdc\xbe\x79\x9f\x7f\xa6\x69\xfd\x7f\x1a\xd7\x9f\x6e\x2f\x5d\x6e" "\xd7\x57\xbe\xd3\x71\xfd\xcf\xbd\xa2\xdc\xfe\xb9\x78\x5c\x7c\x29\xce\xf6" "\xf5\xbf\xe5\x2f\x5e\xfd\xab\x4e\x8f\x57\xba\x9d\x43\x0f\x94\x97\x4b\xb7" "\x3f\xfd\x3f\x7b\x1b\x97\x4b\xd7\x97\xae\xbf\x7d\xfd\xe3\x4f\xcd\xb4\xec" "\x8f\xf6\xeb\x7f\xfe\xc5\xf2\x7a\x0e\x7e\xf4\x67\x23\xcd\xdb\xa7\xd3\xd3" "\xed\x24\x8f\x3d\xd0\x7a\x7c\x0f\xc5\xc7\xb7\xa5\x47\x1e\x42\xf8\xfa\x9f" "\x85\x96\xfd\x1c\xde\x58\x5e\xee\x9f\xda\xd6\x9f\xae\xef\xdc\x03\x9d\xd7" "\x7f\x4f\xdb\x3a\xcf\x0d\xdd\xd1\xb8\xfc\xd2\xfd\xd9\xd2\x72\xbf\xbe\xf8" "\xb7\xbb\x3b\xde\xdf\xb4\x9e\x43\xff\xb0\xa5\xe5\xfe\x3c\xf3\x8e\xb8\xff" "\x5e\x9c\xfa\x6e\x71\xbd\x17\x1f\x89\xc7\x63\x3c\xff\x7f\xbf\x57\x5e\x5f" "\xfb\x7b\x99\x3e\xf7\x8e\xd6\xd7\x9b\xb4\xfd\x97\xb6\x94\xcf\xdb\x74\x7d" "\x53\x6d\xeb\x7f\xa6\x6d\xfd\x0b\x77\x14\xfb\xae\xf7\xfa\x1f\x7c\xb1\x5c" "\xff\x73\x6f\xde\xd8\xb2\xfe\x43\xef\x8c\xc7\xd3\x83\xe5\xec\xb5\xfe\x13" "\x7f\x73\x53\xcb\xe5\xbf\xfc\xb5\xf2\xf1\x38\xff\xb1\xc9\x33\x67\xe7\x2e" "\x9c\x3c\xd6\xb4\x57\x9b\x9f\xc7\x1b\xc7\x37\x6d\xbe\xe1\xc6\x97\xbc\xf4" "\xa6\xf8\x5a\xda\xfe\xf5\xe1\xb3\xf3\x8f\xcf\x9e\x9f\x98\x9e\x98\x0e\x61" "\x62\x00\xdf\x32\x70\xbd\xd7\xff\x95\x38\xff\xbb\x1c\x0b\x57\xff\x16\x4a" "\x3f\xf8\x59\x79\xdc\x7d\xee\x5d\xe5\xf7\xad\xd7\xfe\xbc\xfc\xfa\x99\x78" "\xfa\x63\xf1\xf1\x4c\xdf\x1f\xbf\xf8\x57\x63\x2d\xc7\x6b\xfb\xe3\xbe\xf0" "\xe6\x72\x5e\xe9\xfa\x5f\x1f\xd7\xb1\x5a\xaf\xf8\xec\x7f\xde\xb1\xaa\x0d" "\x2f\x7e\xf0\xdb\x17\xfe\xf1\x4f\x7e\xdc\xfe\x73\x41\xba\x3f\xe7\x5e\x3e" "\xde\xb8\x7f\x5f\xd8\x76\x6b\xe3\xbc\xa1\xe7\xcb\xf3\xdb\x5f\xaf\x7a\xf9" "\x8f\x97\xb7\x3e\xaf\x7f\x38\x3a\xdd\x98\xdf\x8a\xfb\x75\x31\xbe\x33\xf3" "\xf6\x5b\xcb\xdb\x6b\xbf\xfe\xf4\xde\x24\x9f\x7b\x4f\xf9\xfc\x4d\x3f\xc9" "\xa5\xcb\x87\xb6\xf7\x13\xd9\x32\xd2\x7a\x3f\xae\x74\xfd\x3f\x8c\x3f\xc7" "\x7c\xe7\xb6\xd6\xd7\xbf\x74\x7c\x7c\xeb\xa9\xb6\x77\x73\xde\x12\x86\x8a" "\x25\x2c\xc4\xd7\x87\xb0\x50\x9e\x9f\xb6\x4a\xfb\xfb\x73\x97\x6e\xed\x78" "\x7b\xe9\x7d\x78\xc2\xc2\x2b\xd7\xb2\xcc\x15\xcd\x3d\x39\x37\x75\xea\xe4" "\x99\x0b\x4f\x4c\xcd\xcf\xce\xcd\x4f\xcd\x3d\xf9\xf1\xc3\xa7\xcf\x5e\x38" "\x33\x7f\xb8\xf1\xde\xa5\x87\x3f\xdc\xeb\xf2\x4b\xcf\xef\xcd\x8d\xe7\xf7" "\xb1\xd9\xfd\x7b\x43\xe3\xd9\x7e\xb6\x1c\xeb\xec\x7a\xaf\xff\xdc\xa3\x47" "\x8f\xdd\x37\x7d\xf7\xb1\xd9\xe3\x47\x2e\x1c\x9f\x7f\xf4\xdc\xec\xf9\x13" "\x47\xe7\xe6\x8e\xce\x1e\x9b\xbb\xfb\xc8\xf1\xe3\xb3\x1f\xeb\x75\xf9\x93" "\xc7\x0e\xce\xec\x3e\xb0\xe7\xbe\xdd\x93\x27\x4e\x1e\x3b\x78\xff\x81\x03" "\x7b\x0e\x4c\x9e\x3c\x73\xb6\x58\x46\xb9\xa8\x1e\xf6\x4f\x7f\x64\xf2\xcc" "\xf9\xc3\x8d\x8b\xcc\x1d\xdc\x7b\x60\x66\xdf\xbe\xbd\xd3\x93\xa7\xcf\x1e" "\x9b\x3d\x78\xdf\xf4\xf4\xe4\x85\x5e\x97\x6f\x7c\x6f\x9a\x2c\x2e\xfd\xd1" "\xc9\xf3\xb3\xa7\x8e\xcc\x9f\x3c\x3d\x3b\x39\x77\xf2\xe3\xb3\x07\x67\x0e" "\xec\xdf\xbf\xbb\xe7\xbb\x3f\x9e\x3e\x77\x7c\x6e\x62\xea\xfc\x85\x33\x53" "\x17\xe6\x66\xcf\x4f\x95\xf7\x65\x62\xbe\x71\x72\xf1\xbd\xaf\xd7\xe5\xa9" "\x87\xb9\xb3\xf1\xf5\xae\xcd\x50\xfc\xe9\xfc\xfd\xf7\xec\xcf\xef\x8f\x5b" "\xf8\xea\x27\x57\xbc\xaa\x72\x93\xd6\x1f\x4f\xc3\x4f\xe2\x7b\x41\xa5\xef" "\x6f\xbd\xbe\x4e\xb9\x7f\x2c\xce\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\xe5" "\xfe\xf8\xc6\xff\x4b\x67\xc8\xff\x00\x00\x00\x50\x19\x29\xf7\x6f\x8c\x33" "\x93\xff\x01\x00\x00\xa0\x32\x52\xee\x2f\x93\xff\x78\xfe\xf8\xf7\xba\xe4" "\xff\xab\xd5\xff\xff\xa4\xfe\x7f\x83\xfe\xbf\xfe\x7f\xd0\xff\xcf\xf4\xff" "\xf5\xff\x83\xfe\xbf\xfe\x7f\x0f\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd" "\x7f\x7a\xeb\xb7\xfe\x7f\xcc\xfd\x61\x53\x08\xfe\xfd\x1f\x00\x00\x00\x2a" "\x2a\xe5\xfe\xcd\x71\x66\xf2\x3f\x00\x00\x00\x54\x46\xca\xfd\x37\xc4\x99" "\xc9\xff\x00\x00\x00\x50\x19\x29\xf7\xdf\x18\x67\x56\x93\xfc\xef\xf3\xff" "\xf5\xff\xf5\xff\xbb\xf5\xff\xd3\xb6\xfa\xff\x41\xff\xbf\x1f\xfa\xff\x3b" "\xfe\x4b\xff\x7f\x19\xfd\x7f\xfd\xff\xa0\xff\x7f\xd9\xae\x77\x7f\x7e\xd0" "\xd7\xdf\x87\xfd\xff\x4d\xfa\xff\xf4\x9b\x75\xe8\xff\x6f\x6c\x3e\x71\xad" "\xfd\xff\x94\xfb\x5f\x12\x67\x56\x93\xfc\x0f\x00\x00\x00\x75\x90\x72\xff" "\x4b\xe3\xcc\xe4\x7f\x00\x00\x00\xa8\x8c\x94\xfb\x6f\x8a\x33\x93\xff\x01" "\x00\x00\xa0\x32\x52\xee\xdf\x12\x67\x56\x93\xfc\xaf\xff\xaf\xff\xaf\xff" "\xef\xf3\xff\xf5\xff\x07\xa6\xff\xef\xf3\xff\x3b\xd0\xff\xd7\xff\x0f\xfa" "\xff\x97\xed\x7a\xf7\xe7\x07\x7d\xfd\x7d\xd8\xff\xf7\xf9\xff\xf4\x9d\x7e" "\xfb\xfc\xff\x94\xfb\xff\x5f\x9c\x59\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xca" "\xfd\x2f\x8b\x33\x93\xff\x01\x00\x00\xa0\x32\x52\xee\xbf\x39\xce\x4c\xfe" "\x07\x00\x00\x80\xca\x48\xb9\xff\x96\x38\xb3\x9a\xe4\xff\x7a\xf6\xff\x7f" "\x14\x42\xd0\xff\x0f\xfa\xff\xfa\xff\x6d\xeb\xd4\xff\xd7\xff\x5f\x0f\xfa" "\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xe9\xad\xdf" "\xfa\xff\x29\xf7\xbf\x3c\xce\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\xe5\xfe" "\x5b\xe3\xcc\xe4\x7f\x00\x00\x00\xa8\x8c\x94\xfb\x5f\x11\x67\x26\xff\x03" "\x00\x00\x40\x65\xa4\xdc\x7f\x5b\x9c\x59\x4d\xf2\x7f\x3d\xfb\xff\x3e\xff" "\x5f\xff\xbf\xa4\xff\xdf\xba\x4e\xfd\x7f\xfd\xff\xf5\xa0\xff\xaf\xff\xdf" "\x8d\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff\x9f\x72" "\xff\x2b\xe3\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x52\xee\xbf\x3d\xce\x4c" "\xfe\x07\x00\x00\x80\xca\x48\xb9\xff\x55\x71\x66\xf2\x3f\x00\x00\x00\x54" "\x46\xca\xfd\x5b\xe3\xcc\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xd7\xd3\x60\xf5\xff\x87\x57\x3c\x47\xff\xbf\xa4\xff\xdf\xea" "\xea\xf5\xff\x17\x96\x16\xa0\xff\x3f\x30\xeb\xd7\xff\xd7\xff\xa7\xb7\x7e" "\xeb\xff\xa7\xdc\xff\xea\x38\xb3\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x94\xfb" "\x5f\x13\x67\x26\xff\x03\x00\x00\x40\x65\xa4\xdc\x7f\x47\x9c\x99\xfc\x0f" "\x00\x00\x00\x95\x91\x72\xff\x44\x9c\x59\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xff\x7a\x1a\xac\xfe\xff\xca\xf4\xff\x4b\xfa\xff" "\xad\x7c\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\xdd\xf5\x5b\xff\x3f\xe5\xfe\x6d" "\x71\x66\x35\xc9\xff\x00\x00\x00\x50\x07\x29\xf7\x6f\x8f\x33\x93\xff\x01" "\x00\x00\xa0\x32\x52\xee\xbf\x33\xce\x4c\xfe\x07\x00\x00\x80\xca\x48\xb9" "\x7f\x47\x9c\x59\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\xff\x7a\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\x7f\x90\xd7\xaf\xff\xaf\xff" "\x4f\x6f\xfd\xd6\xff\x4f\xb9\xff\xae\x38\xb3\x9a\xe4\x7f\x00\x00\x00\xa8" "\x83\x94\xfb\xef\x8e\x33\x93\xff\x01\x00\x00\xa0\x32\x52\xee\x7f\x6d\x9c" "\x99\xfc\x0f\x00\x00\x00\x95\x91\x72\xff\xce\x38\xb3\x9a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\x01\xee\xff\x8f\xe8\xff\x07\xfd\xff\xbe\xa7\xff\xaf\xff" "\xdf\x8d\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff\x9f" "\x72\xff\xeb\xe2\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x52\xee\x7f\x7d\x9c" "\x99\xfc\x0f\x00\x00\x00\x95\x91\x72\xff\x3d\x71\x66\xf2\x3f\x00\x00\x00" "\x54\x46\xca\xfd\x93\x71\x66\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\x03\xdc" "\xff\xf7\xf9\xff\x2d\xeb\xd7\xff\xef\x4f\xfa\xff\xfa\xff\xdd\xe8\xff\xeb" "\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x29\xf7\xdf\x1b\x67" "\x56\x93\xfc\x0f\x00\x00\x00\x75\x90\x72\xff\xae\x38\x33\xf9\x1f\x00\x00" "\x00\x2a\x23\xe5\xfe\xa9\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\xe9" "\x38\xb3\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xf5" "\xa4\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\xde" "\xfa\xad\xff\x9f\x72\xff\x4c\x9c\x59\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xca" "\xfd\xbb\xe3\xcc\xe4\x7f\x00\x00\x00\xa8\x8c\x94\xfb\xf7\xc4\x99\xc9\xff" "\x00\x00\x00\x50\x19\x29\xf7\xef\x8d\x33\xab\x49\xfe\x1f\x90\xfe\xff\xae" "\x5c\x80\xd2\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x1f\x28\xfa\xff\xfa\xff" "\xdd\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\x69\x35\xdc\xe1\xb4\x7e" "\xeb\xff\xa7\xdc\xbf\x2f\xce\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\xe5\xfe" "\xfd\x71\x66\xf2\x3f\x00\x00\x00\x54\x46\xca\xfd\xf7\xc5\x99\xc9\xff\x00" "\x00\x00\x50\x19\x29\xf7\xdf\x1f\x67\x56\x93\xfc\x3f\x20\xfd\x7f\x9f\xff" "\xaf\xff\xaf\xff\xdf\x44\xff\x5f\xff\x7f\x90\xe8\xff\xeb\xff\x77\xa3\xff" "\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\xb7\x7e\xeb\xff\xa7\xdc\x7f\x20" "\xce\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\xe5\xfe\x37\xc4\x99\xc9\xff\x00" "\x00\x00\x50\x19\x29\xf7\x3f\x10\x67\x26\xff\x03\x00\x00\xc0\x40\xe9\xf4" "\x39\x84\x49\xca\xfd\x6f\x8c\x33\xab\x49\xfe\xd7\xff\xaf\x7a\xff\x7f\x71" "\xa3\xfe\xbf\xfe\xbf\xfe\x7f\xf7\xf5\xeb\xff\xaf\x2f\xfd\x7f\xfd\xff\x6e" "\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd\xff\x94\xfb" "\x0f\xc6\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\xa4\xdc\xff\xa6\x38\x33\xf9" "\x1f\x00\x00\x00\x2a\x23\xe5\xfe\x37\xc7\x99\xc9\xff\x00\x00\x00\x50\x19" "\x29\xf7\x1f\x8a\x33\xab\x49\xfe\xd7\xff\xaf\x7a\xff\xdf\xe7\xff\xeb\xff" "\xeb\xff\xf7\x5a\xbf\xfe\xff\xfa\xd2\xff\xd7\xff\xef\x46\xff\x7f\x30\xfb" "\xff\xf1\xc7\x16\xfd\xff\x3e\xea\xff\x17\xc7\x90\xfe\x3f\xfd\xa8\xdf\xfa" "\xff\x29\xf7\xbf\x25\xce\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\xe5\xfe\xb7" "\xc6\x99\xc9\xff\x00\x00\x00\x50\x19\x29\xf7\xbf\x2d\xce\x4c\xfe\x07\x00" "\x00\x80\xca\x48\xb9\xff\xed\x71\x66\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xeb\x49\xff\x7f\xdd\xfa\xff\x8d\x97\x42\xfd\xff" "\x92\xfe\xff\xe5\x59\x4b\x7f\x7e\x43\x87\xcb\xeb\xff\xf7\x4f\xff\xdf\xe7" "\xff\xd3\xaf\xfa\xad\xff\x9f\x72\xff\x3b\xe2\xcc\x6a\x92\xff\x01\x00\x00" "\xa0\x0e\x52\xee\x7f\x67\x9c\x99\xfc\x0f\x00\x00\x00\x95\x91\x72\xff\xff" "\x8f\x33\x93\xff\x01\x00\x00\xa0\x32\x52\xee\x7f\x30\xce\xac\x26\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x3d\xe9\xff\xfb\xfc\xff" "\x6e\xf4\xff\x07\xa7\xff\xdf\x89\xfe\xbf\xfe\xbf\xfe\x3f\xbd\xf4\x5b\xff" "\x3f\xe5\xfe\xdf\x88\x33\xab\x49\xfe\x07\x00\x00\x80\x3a\x48\xb9\xff\xa1" "\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\x77\xc5\x99\xc9\xff\x00\x00" "\x00\x30\x60\x3a\x7d\x62\x69\x29\xe5\xfe\xdf\x8c\x33\xab\x49\xfe\x1f\xbc" "\xfe\xff\xc4\x40\xf6\xff\x87\xf3\xf5\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\x5f\x4d\xfa\xff\xfa\xff\x41\xff\xff\xb2\x5d\xef\xfe\xfc\xa0\xaf\x5f" "\xff\x5f\xff\x9f\xde\xfa\xad\xff\x9f\x72\xff\x6f\xc5\x99\xd5\x24\xff\x03" "\x00\x00\x40\x1d\xa4\xdc\xff\xee\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5" "\xfe\xdf\x8e\x33\x93\xff\x01\x00\x00\xa0\x32\x52\xee\x7f\x38\xce\xac\x26" "\xf9\xff\x6a\xf7\xff\xdb\x2f\xdf\x8d\xcf\xff\xd7\xff\x0f\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\x57\x48\xff\x5f\xff\x3f\xe8\xff\x5f\xb6\xeb\xdd\x9f\x1f" "\xf4\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff\x53\xee\xff\x9d\x38\xb3\x9a" "\xe4\x7f\x00\x00\x00\xa8\x83\x94\xfb\x1f\x89\x33\x93\xff\x01\x00\x00\xa0" "\x4f\x3d\xbe\xe6\x4b\xa4\xdc\xff\x9e\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23" "\xe5\xfe\xf7\xc6\x99\xd5\x24\xff\x0f\xde\xe7\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\x0f\x12\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd" "\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd\xff\x94\xfb\x1f\x8d\x33\xab\x49\xfe\x07" "\x00\x00\x80\x3a\x48\xb9\xff\x7d\x71\x66\xf2\x3f\x00\x00\x00\x54\x46\xca" "\xfd\xbf\x1b\x67\x26\xff\x03\x00\x00\x40\x65\xa4\xdc\xff\x7b\x71\x66\x35" "\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xeb\x49\xff\x7f" "\x79\xff\xbf\x78\x0d\xd3\xff\x2f\xe9\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5" "\xff\xe9\xad\xdf\xfa\xff\x29\xf7\xbf\x3f\xce\xac\x26\xf9\x1f\x00\x00\x00" "\xea\x20\xe5\xfe\xdf\x8f\x33\x93\xff\x01\x00\x00\xa0\x32\x52\xee\xff\x83" "\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\x0f\xc4\x99\xd5\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf\x27\xfd\x7f\x9f\xff\xdf" "\x8d\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff\x9f\x72" "\xff\x07\xe3\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x52\xee\xff\xc3\x38\x33" "\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\xc3\x71\x66\xf2\x3f\x00\x00\x00\x54" "\x46\xca\xfd\x8f\xc5\x99\xd5\x24\xff\xeb\xff\xf7\x6f\xff\xff\xf3\xfa\xff" "\xfa\xff\xfa\xff\x2d\xfb\x53\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\xa0\xff" "\x7f\xd9\xae\x77\x7f\x7e\xd0\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x4f" "\xb9\xff\x48\x9c\xd9\xa1\xd6\x9b\x01\x00\x00\x00\x06\x57\xca\xfd\x1f\x8a" "\x33\xab\xc9\xbf\xff\x03\x00\x00\x40\x1d\xa4\xdc\x7f\x34\xce\x4c\xfe\x07" "\x00\x00\x80\xca\x48\xb9\xff\x58\x9c\x59\x4d\xf2\xbf\xfe\x7f\xff\xf6\xff" "\x7d\xfe\xbf\xfe\xff\xb5\xef\xff\x87\x61\xfd\xff\xa5\xd3\xf5\xff\xaf\x0e" "\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\xf4\xd6" "\x6f\xfd\xff\x94\xfb\x67\xe3\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x52\xee" "\x3f\x1e\x67\x26\xff\x03\x00\x00\x40\x65\xa4\xdc\x7f\x22\xce\x4c\xfe\x07" "\x00\x00\x80\xca\x48\xb9\xff\xf1\x38\xb3\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\xff\xda\xf6\xff\xbf\xf7\x8d\xb6\x75\xfa\xfc\x7f\xfd\xff\xf5\xa0\xff\xaf" "\xff\xdf\x8d\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff" "\x9f\x72\xff\xc9\x38\xb3\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x94\xfb\x3f\x1c" "\x67\x26\xff\x03\x00\x00\x40\x65\xa4\xdc\xff\x91\x38\x33\xf9\x1f\x00\x00" "\x00\x2a\x23\xe5\xfe\x53\x71\x66\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xb5" "\xed\xff\x77\xf8\xfc\xff\x0e\xfd\xff\x4d\x4b\xb7\xab\xff\xaf\xff\x7f\x39" "\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5b" "\xbf\xf5\xff\x53\xee\x3f\x1d\x67\x56\x93\xfc\x0f\x00\x00\x00\x75\x90\x72" "\xff\x99\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\xb3\x71\x66\xf2\x3f" "\x00\x00\x00\x54\x46\xca\xfd\xe7\xe2\xcc\x6a\x92\xff\xf5\xff\xd7\xd6\xff" "\x1f\x5a\xa1\x1b\xa8\xff\xdf\x79\xfd\xfa\xff\x15\xe8\xff\x37\x59\x6d\xff" "\x3f\x15\x98\xf5\xff\xf5\xff\x83\xfe\xbf\xfe\x7f\x0f\xfa\xff\xfa\xff\x83" "\xbc\x7e\xfd\x7f\xfd\x7f\x7a\xeb\xb7\xfe\x7f\xca\xfd\x7f\x14\x67\x56\x93" "\xfc\x0f\x00\x00\x00\x75\x90\x72\xff\xf9\x38\x33\xf9\x1f\x00\x00\x00\x2a" "\x23\xe5\xfe\xb9\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\xf9\x38\xb3" "\x9a\xe4\x7f\xfd\x7f\x9f\xff\xaf\xff\xaf\xff\x7f\xb5\xfb\xff\x89\xfe\xbf" "\xfe\x7f\xd0\xff\xd7\xff\xef\x41\xff\x5f\xff\x7f\x90\xd7\xaf\xff\xaf\xff" "\xff\x7f\xec\xdd\xe7\xae\xa7\x65\xd5\xc7\xf1\xff\x33\x30\x3c\x43\x8c\xe7" "\xc0\x29\x78\x04\x7a\x06\xbe\xf5\xad\x89\x47\x60\x62\x6f\x60\xc7\xae\x58" "\x11\xbb\xd8\x1b\x76\xc5\xde\x7b\xef\xbd\x77\x14\x7b\x4d\x34\xcc\x5e\x6b" "\xe1\x8c\xb3\xef\x7b\xca\xfe\xcf\xbe\xee\x6b\x7d\x3e\x2f\x58\xba\xc1\x70" "\x11\x30\xe6\x97\xf1\x9b\x9b\x75\xa3\xf5\xff\xb9\xfb\xef\x17\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\xfb\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23" "\x77\xff\x03\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x81\x71\x4b\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x3e\xe9\xff\xf5\xff" "\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe" "\x07\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xc1\x71\x8b\xfd\x0f" "\x00\x00\x00\xd3\xc8\xdd\xff\x90\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee" "\x7f\x68\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf" "\x4f\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59\x37" "\x5a\xff\x9f\xbb\xff\x61\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f" "\x78\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x22\x6e\xb1\xff\x01\x00" "\x00\x60\x1a\xb9\xfb\xaf\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xbf\xc1" "\xfe\xff\x4a\xfd\xbf\xfe\x7f\x3b\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x96" "\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x75\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\x7f\x64\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7" "\x3f\x2a\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x1f\x1d\xb7\x34\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\x83\xfd\xbf\xef\xff\xeb\xff\x37\x44\xff\xaf\xff" "\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7" "\x3f\x26\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x8f\x8d\x5b\xec\x7f" "\x00\x00\x00\x98\x46\xee\xfe\xc7\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\xe3\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\x7d\xd2\xff\xeb\xff\x97\xe8\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba" "\xbd\xf7\xff\xf7\xbc\xfe\xf4\x3d\xdf\xfe\x3f\x77\xff\xf5\x71\x4b\x93\xfd" "\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x42\xdc\x62\xff\x03\x00\x00\xc0\x34\x72" "\xf7\x3f\x31\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x14\xb7\x34\xd9" "\xff\xfa\x7f\xfd\xff\x9d\xfd\xff\xbf\xff\x4f\xff\xaf\xff\xd7\xff\xdf\xf9" "\x73\xfd\xff\xd1\xd0\xff\xeb\xff\x97\xe8\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f" "\xff\xcf\xba\xbd\xf7\xff\x2b\xbd\xff\xd9\xff\x3e\x77\xff\x93\xe3\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x94\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\x7f\x6a\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x2d\x6e\x69" "\xb2\xff\xf5\xff\xfa\x7f\xdf\xff\xd7\xff\xeb\xff\xf5\xff\xfb\xa4\xff\x1f" "\xb6\xff\x3f\xfb\xbf\x7a\x67\xd2\xff\x9f\x17\xfd\xbf\xfe\xff\xb0\xfe\xff" "\xee\xe7\xf1\x7e\xfd\x3f\x1d\x8c\xd6\xff\xe7\xee\x7f\x7a\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x9f\x11\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc" "\xfd\x37\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x33\xe3\x96\x26\xfb" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xcf\xec\xff\x4f\xb4\xec\xff\xef\xf8\x99" "\xfe\x7f\x3f\xf4\xff\xc3\xf6\xff\xcb\xf4\xff\xe7\x45\xff\xaf\xff\xf7\xfd" "\x7f\xfd\x3f\xcb\x46\xeb\xff\x73\xf7\x3f\x2b\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\xcf\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xe7\xc4" "\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x73\xe3\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x2f\xe9\xfb\xff\x57\xcc\xd1\xff\xfb\xfe\xff\xfe\x6c" "\xac\xff\xbf\xea\xb0\xdf\xa1\xff\x3f\xa0\xff\x3f\x93\xfe\x5f\xff\xaf\xff" "\xd7\xff\xb3\x6c\xb4\xfe\x3f\x77\xff\xf3\xe2\x96\x26\xfb\x1f\x00\x00\x00" "\xa6\x77\x62\x57\xbb\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f" "\x7e\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xdf\x14\xb7\x34\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\x7f\x49\xfd\xff\x24\xdf\xff\xd7\xff\xef\xcf\xc6" "\xfa\xff\x43\xe9\xff\x0f\x1c\x57\xff\xbf\xd3\xff\xd7\x5f\x8b\xfe\x7f\x9c" "\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\x82\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\xbf\x30\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\x5f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x8e\x5b\x9a\xec\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf7\x49\xff\xaf\xff\x5f\xe2" "\xfb\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x97" "\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x4c\xe0\xe4\xda\x1f\x90\xbb\xff\xa5\x71" "\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xb2\xb8\xc5\xfe\x07\x00\x00\x80" "\x69\xe4\xee\x7f\x79\xdc\x72\xf6\xfe\x3f\x71\x39\x5f\x75\xf9\xe8\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4f\xfa\x7f\xfd\xff\x12\xfd\xff\xb9" "\xfb\xff\x53\x87\xfc\xf9\xa6\xea\xff\x6f\xbc\x69\xdb\xef\xd7\xff\xeb\xff" "\x39\x2f\xa3\xf5\xff\xb9\xfb\x6f\x8e\x5b\xfc\xfa\x3f\x00\x00\x00\x4c\x23" "\x77\xff\x2b\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x95\x71\x8b\xfd" "\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xaa\xb8\xa5\xc9\xfe\x3f\xac\xff\xbf\xfd" "\x2e\x07\xbf\x5f\xff\x7f\x7e\xf4\xff\xe7\x7e\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\x4b\xf4\xff\xbe\xff\xbf\xe5\xf7\xeb\xff\xf5\xff\xac" "\x1b\xad\xff\xcf\xdd\xff\xea\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7" "\xbf\x26\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x1b\xb7\xd8\xff\x00" "\x00\x00\x30\x8d\xdc\xfd\xaf\x8b\x5b\x9a\xec\xff\xa3\xff\xfe\xff\x35\xfa" "\x7f\xfd\xbf\xfe\x3f\xae\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x97\xe9\xff" "\xf5\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xaf\x8f\x5b" "\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x1b\xe2\x16\xfb\x1f\x00\x00\x00" "\xa6\x91\xbb\xff\x8d\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xa6\xb8" "\xa5\xc9\xfe\x3f\xfa\xfe\xdf\xf7\xff\xf5\xff\x17\xd8\xff\x9f\xd0\xff\x27" "\xfd\x7f\xfc\x7d\xd5\xff\xeb\xff\x2f\x80\xfe\x5f\xff\xbf\xd3\xff\x5f\xb4" "\xe3\xee\xe7\xb7\xfe\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x6f\x39" "\x3d\xf5\xfa\xed\x7f\x00\x00\x00\xe8\xe0\x96\xd3\xbf\x3d\xb5\x7b\x73\xdc" "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x25\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\xdf\x1a\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\xb1\xf7\xff\xbe\xff" "\x5f\xf4\xff\xf1\xf7\x55\xff\xaf\xff\xbf\x00\xfa\x7f\xfd\xff\x4e\xff\x7f" "\xd1\x8e\xbb\x9f\xdf\xfa\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\x7f" "\x5b\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x1e\xb7\xd8\xff\x00" "\x00\x00\x30\x8d\xd8\xfd\x07\xff\xe7\x77\xfb\x1f\x00\x00\x00\xa6\xf4\x8e" "\xd3\xbf\x3d\xb5\x7b\x67\xdc\xd2\x64\xff\x37\xee\xff\xaf\xb9\xd4\xfe\xff" "\xea\xff\xfa\xd7\xfa\xff\x73\xbf\x5f\xff\x7f\x24\xfd\xff\x2d\x67\xff\xb3" "\xa7\xff\xd7\xff\x6f\x89\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xc7" "\xe9\xff\xe3\x07\xd7\xea\xff\x19\xcf\x68\xfd\x7f\xee\xfe\x77\xc5\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xdd\x71\x8b\xfd\x0f\x00\x00\x00\xd3" "\xc8\xdd\x7f\x6b\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x27\x6e\x69" "\xb2\xff\x1b\xf7\xff\x93\x7c\xff\xff\xde\xb7\xc5\x0b\xf4\xff\xf3\xf6\xff" "\xbe\xff\x1f\x57\xff\xaf\xff\x3f\x17\xfd\xbf\xfe\x7f\xa7\xff\xbf\x68\xc7" "\xdd\xcf\x6f\xfd\xfd\xe3\xf4\xff\xbe\xff\xcf\xb8\x46\xeb\xff\x73\xf7\xbf" "\x37\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xef\x8b\x5b\xec\x7f\x00" "\x00\x00\x98\x46\xee\xfe\xf7\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff" "\x07\xe2\x96\x26\xfb\x5f\xff\xbf\xf5\xfe\xdf\xf7\xff\xf5\xff\xfa\x7f\xfd" "\xff\xd8\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff\xb3" "\x6e\xb4\xfe\x3f\x77\xff\x07\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xa1\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x70\xdc\x62\xff\x03" "\x00\x00\xc0\x34\x72\xf7\x7f\x24\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x7d\xf5" "\xff\x77\xfc\x49\xf4\xff\x4d\xfa\xff\xeb\xf4\xff\x3b\xfd\xff\xa1\xf4\xff" "\xfa\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f" "\x77\xff\x47\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb1\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x78\xdc\x62\xff\x03\x00\x00\xc0\x34" "\x72\xf7\x7f\x22\x6e\xb8\xdb\x5d\x8f\xef\x49\x47\xeb\xe4\x21\x3f\x8f\xde" "\x5c\xff\xaf\xff\xf7\xfd\x7f\xfd\xbf\xef\xff\xeb\xff\xf7\x49\xff\xaf\xff" "\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7" "\x7f\x32\x6e\xf1\xeb\xff\x00\x00\x00\x30\x8d\xdc\xfd\x9f\x8a\x5b\xec\x7f" "\x00\x00\x00\x98\x46\xee\xfe\x4f\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\x67\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\x6f\xb6\xff\xbf\x5a\xff" "\x7f\xe6\xfb\xf5\xff\x63\xd2\xff\xeb\xff\x97\xe8\xff\xf5\xff\x5b\x7e\xbf" "\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x9f\x8d\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\xe7\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xf3" "\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x85\xb8\xa5\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\x9b\xed\xff\x7d\xff\xff\xac\xf7\xeb\xff\xc7\xa4\xff\xd7" "\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9" "\xfb\xbf\x18\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x2f\xc5\x2d\xf6" "\x3f\x00\x00\x00\x6c\xcf\xa9\x73\xff\x38\x77\xff\x97\xcf\xfe\x83\xec\x7f" "\x00\x00\x00\x98\x46\xee\xfe\xaf\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xfb\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\x2f\xdf" "\xfb\xaf\x3c\xf2\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xd5\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x2d\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\xbf\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xdf\x88" "\x5b\x9a\xec\xff\x99\xfb\xff\xa5\x3f\x4c\xff\x7f\x40\xff\xaf\xff\xdf\xe9" "\xff\xf5\xff\x7b\xa6\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf" "\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xbf\x19\xb7\xdc\x63\xb7\xbb\xa0\xff\x01" "\x00\x00\x00\x00\x86\x95\xbb\xff\x5b\x71\x4b\x93\x5f\xff\x07\x00\x00\x80" "\x0e\x72\xf7\x7f\x3b\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xbf\x13\xb7" "\x34\xd9\xff\x33\xf7\xff\x4b\xf4\xff\x07\xf4\xff\xfa\xff\x9d\xfe\x5f\xff" "\xbf\x67\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59" "\x77\x4c\xfd\xff\xc9\xdd\x21\xfd\x7f\xee\xfe\xef\xc6\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x7b\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff" "\xfd\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x41\xdc\x32\xcf\xfe\xbf" "\xcf\xad\x0b\xbf\x53\xff\x7f\xe4\xfd\xff\xe9\x7f\x88\xf4\xff\xfa\xff\x9d" "\xfe\x5f\xff\xaf\xff\x3f\x4d\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd" "\xfa\x7f\xfd\x3f\xeb\x46\xfb\xfe\x7f\xee\xfe\x1f\xc6\x2d\xf3\xec\x7f\x00" "\x00\x00\x68\x2f\x77\xff\x8f\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff" "\xc7\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x93\xb8\xa5\xc9\xfe\xd7" "\xff\xfb\xfe\xbf\xfe\xbf\x55\xff\x7f\xc5\x4e\xff\xaf\xff\xbf\xcc\xf4\xff" "\xfa\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f" "\x77\xff\x4f\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb3\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x79\xdc\x62\xff\x03\x00\x00\xc0\x34" "\x72\xf7\xff\x22\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\x7f\xab\xfe\xdf\xf7" "\xff\xf5\xff\x97\x9d\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xb3\xff" "\xcf\x7f\xee\xf4\xff\xfa\x7f\xfe\xd7\x68\xfd\x7f\xee\xfe\x5f\xc6\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x57\x71\x8b\xfd\x0f\x00\x00\x00\xd3" "\xc8\xdd\xff\xeb\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x4d\xdc\xd2" "\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4f\xfa\x7f\xfd" "\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xf7\xfd\x7f\xfd\x3f\xeb\x46\xeb\xff\x73" "\xf7\xdf\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xdf\xc6\x2d\xf6" "\x3f\x00\x00\x00\x4c\x23\x77\xff\xef\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91" "\xbb\xff\xf6\xb8\xa5\xc9\xfe\xbf\x84\xfe\xff\x5e\xf7\xdd\x9d\xf1\x1f\xd1" "\xff\xeb\xff\xc7\xe9\xff\xff\x5f\xff\xaf\xff\xd7\xff\x8f\x42\xff\xaf\xff" "\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7" "\xff\x3e\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f\x88\x5b\xec\x7f" "\x00\x00\x00\x98\x46\xee\xfe\x3f\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\x9f\xe2\x96\x26\xfb\xdf\xf7\xff\xf5\xff\x17\xde\xff\x9f\xac\xbf\xee" "\x61\xfb\x7f\xdf\xff\xd7\xff\xeb\xff\x87\x31\x6f\xff\x7f\x95\xfe\x5f\xff" "\x7f\xc9\xfd\xff\x0d\x37\x1f\xfc\x58\xff\xbf\xcd\xf7\xeb\xff\xf5\xff\xac" "\x1b\xad\xff\xcf\xdd\xff\xe7\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7" "\xff\x25\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xff\x1a\xb7\xd8\xff\x00" "\x00\x00\x30\x8d\xdc\xfd\x7f\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\xca\xef" "\xff\xeb\xff\xf5\xff\xfa\xff\x61\xcc\xdb\xff\xfb\xfe\xbf\xfe\xdf\xf7\xff" "\xf5\xff\xfa\x7f\xfd\x3f\x6b\x46\xeb\xff\x73\xf7\xff\x3d\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\xff\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee" "\xfe\x7f\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xbf\xe2\x96\x26\xfb" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x7d\xd2\xff\xeb\xff\x97" "\xe8\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xff" "\x09\x00\x00\xff\xff\x59\xaa\x2c\x9a", 24453); syz_mount_image(/*fs=*/0x200000000400, /*dir=*/0x2000000000c0, /*flags=MS_REC|MS_SILENT|MS_NOSUID|MS_NODIRATIME*/ 0xc802, /*opts=*/0x200000001980, /*chdir=*/1, /*size=*/0x5f85, /*img=*/0x200000008340); // syz_mount_image$vfat arguments: [ // fs: ptr[in, buffer] { // buffer: {76 66 61 74 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {13 13 77 c5 fc 35 d4 14 54 d5 d4 1d 29 ad 1a 60 29 59 81 46 // e6 be 16 6e 41 ad 0d bd 40 54 03 3c 9f 33 bb da 82 24 a2 f3 d7 72 e7 // 63 6e 48 b3 3c bf 70 83 72 e8 f1 b9 93 3e c5 12 77 43 be 22 06 20 9e // f0 2d f9 cb f2 f6 e8 80 d3 38 2f 00} (length 0x4e) // } // flags: mount_flags = 0x840013 (8 bytes) // opts: nil // chdir: int8 = 0xfc (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "vfat\000", 5); memcpy((void*)0x200000000040, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); syz_mount_image( /*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_I_VERSION|MS_PRIVATE|MS_SYNCHRONOUS|MS_RDONLY|MS_NOSUID*/ 0x840013, /*opts=*/0, /*chdir=*/0xfc, /*size=*/0, /*img=*/0x2000000000c0); return 0; }