// https://syzkaller.appspot.com/bug?id=d83b0f7a09db4d080b183681028bd1c163dda6cd // 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; } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; 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; intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$udf arguments: [ // fs: ptr[in, buffer] { // buffer: {75 64 66 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x800 (8 bytes) // opts: ptr[in, fs_options[udf_options]] { // fs_options[udf_options] { // elems: array[fs_opt_elem[udf_options]] { // fs_opt_elem[udf_options] { // elem: union udf_options { // shortad: buffer: {73 68 6f 72 74 61 64} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[udf_options] { // elem: union udf_options { // nostrict: buffer: {6e 6f 73 74 72 69 63 74} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[udf_options] { // elem: union udf_options { // umask: fs_opt["umask", fmt[oct, int32]] { // name: buffer: {75 6d 61 73 6b} (length 0x5) // eq: const = 0x3d (1 bytes) // val: int32 = 0xffff (23 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[udf_options] { // elem: union udf_options { // gid_forget: buffer: {67 69 64 3d 66 6f 72 67 65 74} (length // 0xa) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[udf_options] { // elem: union udf_options { // volume: fs_opt["volume", fmt[dec, int32]] { // name: buffer: {76 6f 6c 75 6d 65} (length 0x6) // eq: const = 0x3d (1 bytes) // val: int32 = 0x3ff (20 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[udf_options] { // elem: union udf_options { // noadinicb: buffer: {6e 6f 61 64 69 6e 69 63 62} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[udf_options] { // elem: union udf_options { // novrs: buffer: {6e 6f 76 72 73} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[udf_options] { // elem: union udf_options { // lastblock: fs_opt["lastblock", fmt[dec, int32]] { // name: buffer: {6c 61 73 74 62 6c 6f 63 6b} (length 0x9) // eq: const = 0x3d (1 bytes) // val: int32 = 0x2 (20 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[udf_options] { // elem: union udf_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {63 70 38 35 35} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0xc32 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0xc32) // } // ] // returns fd_dir memcpy((void*)0x2000000000c0, "udf\000", 4); memcpy((void*)0x200000000180, "./file0\000", 8); memcpy((void*)0x200000002440, "shortad", 7); *(uint8_t*)0x200000002447 = 0x2c; memcpy((void*)0x200000002448, "nostrict", 8); *(uint8_t*)0x200000002450 = 0x2c; memcpy((void*)0x200000002451, "umask", 5); *(uint8_t*)0x200000002456 = 0x3d; sprintf((char*)0x200000002457, "%023llo", (long long)0xffff); *(uint8_t*)0x20000000246e = 0x2c; memcpy((void*)0x20000000246f, "gid=forget", 10); *(uint8_t*)0x200000002479 = 0x2c; memcpy((void*)0x20000000247a, "volume", 6); *(uint8_t*)0x200000002480 = 0x3d; sprintf((char*)0x200000002481, "%020llu", (long long)0x3ff); *(uint8_t*)0x200000002495 = 0x2c; memcpy((void*)0x200000002496, "noadinicb", 9); *(uint8_t*)0x20000000249f = 0x2c; memcpy((void*)0x2000000024a0, "novrs", 5); *(uint8_t*)0x2000000024a5 = 0x2c; memcpy((void*)0x2000000024a6, "lastblock", 9); *(uint8_t*)0x2000000024af = 0x3d; sprintf((char*)0x2000000024b0, "%020llu", (long long)2); *(uint8_t*)0x2000000024c4 = 0x2c; memcpy((void*)0x2000000024c5, "iocharset", 9); *(uint8_t*)0x2000000024ce = 0x3d; memcpy((void*)0x2000000024cf, "cp855", 5); *(uint8_t*)0x2000000024d4 = 0x2c; *(uint8_t*)0x2000000024d5 = 0; memcpy( (void*)0x200000009100, "\x78\x9c\xec\xdd\x4d\x6c\x5c\xd7\x7d\x37\xe0\xff\xb9\x1c\x8a\x23\xf9\x7d" "\x2b\x26\x76\x14\x27\x8d\x8b\x49\x5b\xa4\xb2\x62\xb9\xfa\x8a\xa9\x58\x85" "\x3b\xaa\x69\xb6\x01\x64\x59\x08\xc5\xec\x02\x70\x24\x8e\xd4\x81\x29\x92" "\x20\xa9\x46\x36\xd2\x82\xe9\xa6\x8b\x2e\x02\x14\x45\x17\x59\x11\x68\x8d" "\x02\x29\x1a\x18\x4d\x11\x74\xc9\xb4\x2e\x90\x6c\xbc\x28\xb2\xea\x8a\x68" "\x61\x23\x28\xba\x60\x8b\x00\x59\x05\x2c\xee\x9d\x33\xd2\x90\x22\x6d\x46" "\x14\x25\x4a\x7a\x1e\x9b\xfa\xcd\xdc\x7b\xce\x9d\x73\xee\x19\xdf\x2b\x0b" "\x3a\xf7\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\xf1" "\x7b\xaf\x9d\x3f\x71\x32\x3d\xec\x56\x00\x00\x0f\xd2\xc5\xf1\xaf\x9e\x38" "\xe5\xfe\x0f\x00\x4f\x94\xcb\xfe\xff\x1f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xf6\xbb\x14\x45\x3c\x1d\x29\xe6\x2e\xae\xa5\xc9\xea\x7d\x57" "\xfd\x42\x67\xf0\xe6\xad\x89\xd1\xb1\xad\xab\x1d\x4c\x55\xcd\x81\xaa\x7c" "\xf9\x53\x3f\x79\xea\xf4\x99\x2f\xbd\x34\x72\xb6\x97\x17\x3a\x33\x1f\x51" "\xff\x7e\xfb\x6c\xbc\x31\x7e\xf9\x7c\xe3\xd5\xd9\x1b\x73\xf3\xed\x85\x85" "\xf6\x54\x63\x62\xa6\x73\x75\x76\xaa\xbd\xe3\x23\xec\xb6\xfe\x66\xc7\xaa" "\x13\xd0\xb8\xf1\xe6\xcd\xa9\x6b\xd7\x16\x1a\xa7\x5e\x3c\xbd\x61\xf7\xad" "\xe1\x0f\x87\x9e\x3a\x32\x7c\x6e\xe4\xf9\xe3\xcf\xf5\xca\x4e\x8c\x8e\x8d" "\x8d\xdf\x29\x52\xef\x2f\x5f\xbb\xe7\x86\x74\x6d\x37\xc3\xe3\x40\x14\x71" "\x3c\x52\xbc\xf0\xbd\x9f\xa6\x56\x44\x14\xb1\xfb\x73\x51\x7f\xb0\x63\xbf" "\xd9\xc1\xaa\x13\xc7\xaa\x4e\x4c\x8c\x8e\x55\x1d\x99\xee\xb4\x66\x16\xcb" "\x9d\x97\x7a\x27\xa2\x88\x68\xf4\x55\x6a\xf6\xce\xd1\xd6\x63\x11\xb5\xc1" "\x07\xda\x87\xed\x35\x23\x96\xca\xe6\x97\x0d\x3e\x56\x76\x6f\x7c\xae\x35" "\xdf\xba\x32\xdd\x6e\x5c\x6a\xcd\x2f\x76\x16\x3b\xb3\x33\x97\x52\xb7\xb5" "\x65\x7f\x1a\x51\xc4\xd9\x14\xb1\x1c\x11\xab\x43\x77\x1f\x6e\x30\x8a\xa8" "\x45\x8a\xef\x1c\x5e\x4b\x57\x22\x62\xa0\x77\x1e\xbe\x58\x4d\x0c\xde\xbe" "\x1d\xc5\x1e\xf6\x71\x07\xca\x76\x36\x06\x23\x96\x8b\x47\x60\xcc\xf6\xb1" "\xa1\x28\xe2\xf5\x48\xf1\xb3\xf7\x8e\xc6\xd5\x7c\x9d\xa9\xae\x35\x5f\x88" "\x78\xbd\xcc\x1f\x44\xbc\x53\xe6\x2b\x11\xa9\xfc\x62\x9c\x89\xf8\x60\x8b" "\xef\x11\x8f\xa6\x5a\x14\xf1\xe7\xe5\xf8\x9f\x5b\x4b\x53\xd5\xf5\xa0\x77" "\x5d\xb9\xf0\xb5\xc6\x57\x66\xae\xcd\xf6\x95\xed\x5d\x57\x7e\xc9\xfb\xc3" "\x5d\x57\x8a\x87\x74\x7f\x38\xb8\x29\x1f\x8c\x7d\x7e\x6d\xaa\x47\x11\xad" "\xea\x8a\xbf\x96\xee\xfd\x37\x3b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xdc\x6f\x07\xa3\x88\xcf\x44\x8a\xd7\xfe\xed\x8f\xaa\x79\xc5" "\x51\xcd\x4b\x3f\x7c\x6e\xe4\xf7\x87\xff\x7f\xff\x9c\xf1\x67\x3f\xe6\x38" "\x65\xd9\x17\x23\x62\xa9\xd8\xd9\x9c\xdc\x03\x79\x62\xe0\xa5\x74\x29\xa5" "\x87\x3c\x97\xf8\x49\x56\x8f\x22\xfe\x38\xcf\xff\xfb\xd6\xc3\x6e\x0c\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x13\xad\x88\x9f" "\x44\x8a\x97\xdf\x3f\x9a\x96\xa3\x7f\x4d\xf1\xce\xcc\xf5\xc6\xe5\xd6\x95" "\xe9\xee\xaa\xb0\xbd\xb5\x7f\x7b\x6b\xa6\xaf\xaf\xaf\xaf\x37\x52\x37\x9b" "\x39\x27\x73\x2e\xe5\x5c\xce\xb9\x92\x73\x35\x67\x14\xb9\x7e\xce\x66\xce" "\xc9\x9c\x4b\x39\x97\x73\xae\xe4\x5c\xcd\x19\x03\xb9\x7e\xce\x66\xce\xc9" "\x9c\x4b\x39\x97\x73\xae\xe4\x5c\xcd\x19\xb5\x5c\x3f\x67\x33\xe7\x64\xce" "\xa5\x9c\xcb\x39\x57\x72\xae\xe6\x8c\x7d\xb2\x76\x2f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xc0\xe3\xa4\x88\x22\x7e\x11\x29\xbe\xfd\x8d\xb5\x14" "\x29\x22\x9a\x11\x93\xd1\xcd\x95\xa1\x87\xdd\x3a\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x34\x94\x8a\xf8" "\x7e\xa4\x68\xfc\x41\xf3\xf6\xb6\x5a\x44\xa4\xea\xdf\xae\xa3\xe5\x2f\x67" "\xa2\x79\xa0\xcc\x4f\x46\x73\xa4\xcc\x57\xa2\x79\x3e\x67\xab\xca\x5a\xf3" "\x5b\x0f\xa1\xfd\xec\xce\x60\x2a\xe2\xc7\x91\x62\xa8\xfe\xee\xed\x01\xcf" "\xe3\x3f\xd8\x7d\x77\xfb\x6b\x10\xef\x7c\xf3\xce\xbb\xcf\xd6\xba\x39\xd0" "\xdb\x39\xfc\xe1\xd0\x53\x47\x0e\x9f\x1b\x19\xfb\xb5\x67\xb7\x7b\x9d\xb6" "\x6a\xc0\xb1\x0b\x9d\x99\x9b\xb7\x1a\x13\xa3\x63\x63\xe3\x7d\x9b\x6b\xf9" "\xd3\x3f\xd9\xb7\x6d\x38\x7f\x6e\x71\x7f\xba\x4e\x44\x2c\xbc\xf5\xf6\x9b" "\xad\xe9\xe9\xf6\xfc\xbd\xbf\x28\xbf\x02\xbb\xa8\xfe\x08\xbd\x48\xb5\x27" "\xa5\xa7\x5e\x54\x2f\xa2\xb6\x2f\x9a\xf1\x70\xfa\xce\x13\xa0\xbc\xff\x7f" "\x10\x29\x7e\xfb\xfd\x7f\xef\xdd\xf0\xbb\xf7\xff\x7a\xfc\xbf\xee\xbb\xdb" "\x77\xf8\xf8\xf9\x9f\xdc\xb9\xff\xbf\xbc\xf9\x40\x3b\xbc\xff\xd7\x36\xd7" "\xcb\xf7\xff\xf2\x9e\xbe\xd5\xfd\xff\xe9\xbe\x6d\x2f\xe7\xdf\x8d\x0c\xd6" "\x22\xea\x8b\x37\xe6\x06\x8f\x44\xd4\x17\xde\x7a\xfb\x78\xe7\x46\xeb\x7a" "\xfb\x7a\x7b\xe6\xcc\x89\x13\x5f\x1e\x19\xf9\xf2\xe9\x13\x83\x07\x22\xea" "\xd7\x3a\xd3\xed\xbe\x57\xf7\xe5\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x3c\x38\xa9\x88\xdf\x8d\x14\xad\x1f\xaf\xa5\x46\x44\xdc" "\xaa\xe6\x6b\x0d\x9f\x1b\x79\xfe\xf8\x73\x03\x31\x50\xcd\xb7\xda\x30\x6f" "\xfb\x8d\xf1\xcb\xe7\x1b\xaf\xce\xde\x98\x9b\x6f\x2f\x2c\xb4\xa7\x1a\x13" "\x33\x9d\xab\xb3\x53\xed\x9d\x7e\x5c\xbd\x9a\xee\x35\x31\x3a\xb6\x27\x9d" "\xf9\x58\x07\xf7\xb8\xfd\x07\xeb\xaf\xce\xce\xbd\x35\xdf\xb9\xfe\x87\x8b" "\x5b\xee\x3f\x54\x3f\x7f\x65\x61\x71\xbe\x75\x75\xeb\xdd\x71\x30\x8a\x88" "\x66\xff\x96\x63\x55\x83\x27\x46\xc7\xaa\x46\x4f\x77\x5a\x33\x55\xd5\x4b" "\x5b\x4e\xa6\xff\xe5\x0d\xa6\x22\xfe\x23\x52\x5c\x3d\xd3\x48\x9f\xcf\xdb" "\xf2\xfc\xff\xcd\x33\xfc\x37\xcc\xff\x5f\xda\x7c\xa0\x3d\x9a\xff\xff\x89" "\xbe\x6d\xe5\x67\xa6\x54\xc4\xcf\x23\xc5\x6f\xfd\xc5\xb3\xf1\xf9\xaa\x9d" "\x87\xe2\xae\x73\x96\xcb\xfd\x4d\xa4\x38\x76\xf6\x73\xb9\x5c\x1c\x28\xcb" "\xf5\xda\xd0\x7d\xae\x40\x77\x66\x60\x59\xf6\x7f\x22\xc5\x3f\xfc\x62\x63" "\xd9\xde\x7c\xc8\xa7\xef\x94\x3d\xb9\xe3\x13\xfb\x88\x28\xc7\xff\x70\xa4" "\xf8\xfe\x9f\x7d\x37\x7e\x3d\x6f\xdb\xf8\xfc\x87\xad\xc7\xff\xd0\xe6\x03" "\xed\xd1\xf8\x3f\xd3\xb7\xed\xd0\x86\xe7\x15\xec\xba\xeb\xe4\xf1\x3f\x1e" "\x29\x5e\x79\xfa\xdd\xf8\x8d\xbc\xed\xa3\x9e\xff\xd1\x7b\xf6\xc6\xd1\x5c" "\xf8\xf6\xf3\x39\xf6\x68\xfc\x3f\xd5\xb7\x6d\x38\x7f\xee\x6f\xde\x9f\xae" "\x03\x00\x00\x00\x00\x00\x00\x00\x00\x3c\xd2\x06\x53\x11\x7f\x1b\x29\x7e" "\x38\x56\x4b\x2f\xe5\x6d\x3b\xf9\xfb\x7f\x53\x9b\x0f\xb4\x47\x7f\xff\xeb" "\xd3\x7d\xdb\xa6\xee\xcf\x7a\x45\x1f\xfb\x62\xd7\x27\x15\x00\x00\x00\x00" "\xf6\x89\xc1\x54\xc4\x4f\x22\xc5\xf5\xc5\x77\x6f\xcf\xa1\xde\x38\xff\xbb" "\x6f\xfe\xe7\xef\xdc\x99\xff\x39\x9a\x36\xed\xad\xfe\x9c\xef\x57\xaa\xe7" "\x06\xdc\xcf\x3f\xff\xeb\x37\x9c\x3f\x77\x72\xf7\xdd\x06\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x7d\x25\xa5\x22\x5e\xca\xeb" "\xa9\x4f\x56\xf3\xf9\xa7\xb6\x5d\x4f\x7d\x25\x52\xbc\xf6\x5f\x2f\xe4\x72" "\xe9\x48\x59\xae\xb7\x0e\xfc\x70\xf5\x6b\xfd\xe2\xec\xcc\xf1\xf3\xd3\xd3" "\xb3\x57\x5b\x8b\xad\x2b\xd3\xed\xc6\xf8\x5c\xeb\x6a\xbb\xac\xfb\x4c\xa4" "\x58\xfb\xeb\xcf\xe5\xba\x45\xb5\xbe\x7a\x6f\xbd\xf9\xee\x1a\xef\x77\xd6" "\x62\x9f\x8f\x14\x63\x7f\xd7\x2b\xdb\x5d\x8b\xbd\xb7\x36\xf9\x33\xbd\xb2" "\x4b\xed\x93\x65\xd9\x4f\x44\x8a\xff\xfc\xfb\x8d\x65\x7b\xeb\x58\x7f\xea" "\xce\x71\x4f\x95\x65\xff\x2a\x52\x7c\xfd\x9f\xb6\x2e\x7b\xe4\x4e\xd9\xd3" "\x65\xd9\xef\x46\x8a\x1f\x7d\xbd\xd1\x2b\x7b\xa8\x2c\xdb\x7b\x3e\xea\xa7" "\xef\x94\x7d\xf1\xea\x6c\xb1\x07\xa3\x02\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc0\x93\x66\x30\x15\xf1\xa7\x91\xe2\xbf\x6f\x2c" "\xdf\x9e\xcb\x9f\xd7\xff\x1f\xec\x7b\x5b\x79\xe7\x9b\x7d\xeb\xfd\x6f\x72" "\xab\x5a\xe7\x7f\xb8\x5a\xff\x7f\xbb\xd7\xf7\xb2\xfe\x7f\xf5\x5c\x81\xa5" "\xed\x3e\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x1e\x4f\x29\x8a\x78\x3b\x52\xcc\x5d\x5c\x4b\x2b\x43\xe5\xfb\xae" "\xfa\x85\xce\xcc\xcd\x5b\x13\xa3\x63\x5b\x57\x3b\x98\xaa\x9a\x03\x55\xf9" "\xf2\xa7\x7e\xf2\xd4\xe9\x33\x5f\x7a\x69\xe4\x6c\x2f\x3f\xba\xfe\xfd\xf6" "\x99\x78\x63\xfc\xf2\xf9\xc6\xab\xb3\x37\xe6\xe6\xdb\x0b\x0b\xed\xa9\xc6" "\xc4\x4c\xe7\xea\xec\x54\x7b\xc7\x47\xd8\x6d\xfd\xcd\x8e\x55\x27\xa0\x71" "\xe3\xcd\x9b\x53\xd7\xae\x2d\x34\x4e\xbd\x78\x7a\xc3\xee\x5b\xc3\x1f\x0e" "\x3d\x75\x64\xf8\xdc\xc8\xf3\xc7\x9f\xeb\x95\x9d\x18\x1d\x1b\x1b\xef\x2b" "\x53\x1b\xbc\xe7\x4f\xbf\x4b\xda\x66\xfb\x81\x28\xe2\x2f\x23\xc5\x0b\xdf" "\xfb\x69\xfa\xe1\x50\x44\x11\xbb\x3f\x17\x1f\xf3\xdd\xd9\x6b\x07\xab\x4e" "\x1c\xab\x3a\x31\x31\x3a\x56\x75\x64\xba\xd3\x9a\x59\x2c\x77\x5e\xea\x9d" "\x88\x22\xa2\xd1\x57\xa9\xd9\x3b\x47\x0f\x60\x2c\x76\xa5\x19\xb1\x54\x36" "\xbf\x6c\xf0\xb1\xb2\x7b\xe3\x73\xad\xf9\xd6\x95\xe9\x76\xe3\x52\x6b\x7e" "\xb1\xb3\xd8\x99\x9d\xb9\x94\xba\xad\x2d\xfb\xd3\x88\x22\xce\xa6\x88\xe5" "\x88\x58\x1d\xba\xfb\x70\x83\x51\xc4\x9b\x91\xe2\x3b\x87\xd7\xd2\x3f\x0f" "\x45\x0c\xf4\xce\xc3\x17\x2f\x8e\x7f\xf5\xc4\xa9\xed\xdb\x51\xec\x61\x1f" "\x77\xa0\x6c\x67\x63\x30\x62\xb9\xf8\xa8\x31\xdb\xa2\xc3\x6c\x30\x14\x45" "\xfc\x63\xa4\xf8\xd9\x7b\x47\xe3\x5f\x86\x22\x6a\xd1\xfd\x89\x2f\x44\xbc" "\x5e\xe6\x0f\x22\xde\x89\xee\x78\xa7\xf2\x8b\x71\x26\xe2\x03\xa7\xf5\xb1" "\x51\x8b\x22\xfe\xb7\x1c\xff\x73\x6b\xe9\xbd\xa1\xf2\x7a\xd0\xbb\xae\x5c" "\xf8\x5a\xe3\x2b\x33\xd7\x66\xfb\xca\xf6\xae\x2b\x8f\xfc\xfd\xe1\x41\xda" "\xe7\xf7\x93\x7a\x14\xf1\xa3\xea\x8a\xbf\x96\xfe\xd5\x7f\xd7\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfb\x48\x11\xbf\x1a\x29\x5e\x7e" "\xff\x68\xaa\xe6\x07\xdf\x9e\x53\xdc\x99\xb9\xde\xb8\xdc\xba\x32\xdd\x9d" "\xd6\xd7\x9b\xfb\xd7\x9b\x33\xbd\xbe\xbe\xbe\xde\x48\xdd\x6c\xe6\x9c\xcc" "\xb9\x94\x73\x39\xe7\x4a\xce\xd5\x9c\x51\xe4\xfa\x39\x9b\x65\xd6\xd7\xd7" "\x27\xf3\xfb\xa5\x9c\xcb\x39\x57\x72\xae\xe6\x8c\x81\x5c\x3f\x67\x33\xe7" "\x64\xce\xa5\x9c\xcb\x39\x57\x72\xae\xe6\x8c\x5a\xae\x9f\xb3\x99\x73\x32" "\xe7\x52\xce\xe5\x9c\x2b\x39\x57\x73\xc6\x3e\x99\xbb\x07\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x5e\x8a\xea\x9f\x14\xdf\xfe" "\xc6\x5a\x5a\x1f\xaa\xd6\x97\x1e\xe8\xed\x5b\xb1\x1e\xe8\x63\xef\xff\x02" "\x00\x00\xff\xff\x4a\x5a\xf8\x29", 3122); syz_mount_image(/*fs=*/0x2000000000c0, /*dir=*/0x200000000180, /*flags=MS_NODIRATIME*/ 0x800, /*opts=*/0x200000002440, /*chdir=*/1, /*size=*/0xc32, /*img=*/0x200000009100); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x42 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000100, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000100ul, /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=*/0); if (res != -1) r[0] = res; // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x42 (4 bytes) // mode: open_mode = 0x5 (2 bytes) // ] // returns fd memcpy((void*)0x200000000040, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=S_IXOTH|S_IROTH*/ 5); if (res != -1) r[1] = res; // pwrite64 arguments: [ // fd: fd (resource) // buf: ptr[in, buffer] { // buffer: {32} (length 0x1) // } // count: len = 0x1 (8 bytes) // pos: intptr = 0x8000c64 (8 bytes) // ] memset((void*)0x200000000140, 50, 1); syscall(__NR_pwrite64, /*fd=*/r[1], /*buf=*/0x200000000140ul, /*count=*/1ul, /*pos=*/0x8000c64ul); // write$FUSE_WRITE arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_write_out]] { // fuse_out_t[fuse_unique, fuse_write_out] { // len: len = 0x18 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_write_out { // size: int32 = 0x0 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // len: bytesize = 0xfffffdef (8 bytes) // ] *(uint32_t*)0x2000000000c0 = 0x18; *(uint32_t*)0x2000000000c4 = 0; *(uint64_t*)0x2000000000c8 = 0; *(uint32_t*)0x2000000000d0 = 0; *(uint32_t*)0x2000000000d4 = 0; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x2000000000c0ul, /*len=*/0xfffffdeful); // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x2010880 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {65 72 72 6f 72 73 3d 6d 6f 75 6e 74 2d 72 6f 2c // 6e 6f 69 6e 74 65 67 72 69 74 79 2c 6e 6f 64 69 73 63 61 72 64 2c // 64 69 73 63 61 72 64 2c 65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 // 65 2c 65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 6e 6f 69 6e // 74 65 67 72 69 74 79 00 69 6f 63 68 61 72 73 65 74 3d 6d 61 63 67 // 72 65 65 6b 2c 71 75 6f 74 61 2c 67 72 70 71 75 6f 74 61 2c 54 73 // 72 70 75 6f 74 61 2c 67 69 64 3d} (length 0x89) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 64 69 73 63 61 72 64 2c 6e 6f 71 75 6f 74 61 // 2c 6e 6f 71 75 6f 74 61 2c 00} (length 0x1a) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6112 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6112) // } // ] // returns fd_dir memcpy((void*)0x200000000080, "jfs\000", 4); memcpy((void*)0x2000000001c0, "./file0\000", 8); memcpy( (void*)0x200000002f00, "errors=mount-ro,nointegrity,nodiscard,discard,errors=continue,errors=" "continue,nointegrity\000iocharset=macgreek,quota,grpquota,Tsrpuota,gid=", 137); sprintf((char*)0x200000002f89, "0x%016llx", (long long)-1); memcpy((void*)0x200000002f9b, ",discard,noquota,noquota,\000", 26); memcpy( (void*)0x200000002fc0, "\x78\x9c\xec\xdd\x4b\x8f\x1c\x57\xd9\x07\xf0\xa7\xfa\x36\x97\x24\xce\x28" "\x8b\x28\xaf\xf5\x0a\x4d\x9c\x70\x09\x21\xbe\x06\x63\x08\x90\x64\x01\x0b" "\x36\x59\x20\x6f\x91\xad\xc9\x24\xb2\xb0\x01\xd9\x06\x39\x91\x85\x27\x9a" "\x0d\x0b\x56\x7c\x02\x10\x12\x4b\x84\x58\x22\x16\x7c\x80\x2c\xd8\xb2\x63" "\xc5\x0a\x4b\x36\x12\x28\x2b\x0a\xd5\xcc\x39\x9e\xea\x4a\xb7\x7b\x9c\xf1" "\x74\x8d\xbb\x7e\x3f\xa9\x5d\xfd\xd4\xa9\xea\x3e\x35\xff\xbe\xba\xaa\xfa" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\xdf\xfb\xee" "\xf7\xcf\x14\x11\x71\xe9\x67\x69\xc6\x5a\xc4\xd3\xd1\x8f\xe8\x45\xac\x54" "\xf5\x7a\x44\xac\xac\xaf\xe5\xe5\x07\x11\xf1\x42\xec\x34\xc7\xf3\x11\x31" "\x5c\x8a\xa8\xd6\xdf\xf9\xe7\xd9\x88\xd7\x23\xe2\xe3\x63\x11\xf7\xee\xdf" "\xde\xa8\x66\x9f\xdd\x67\x3f\xbe\xf3\x87\xbf\xfd\xf6\x07\x4f\xbd\xf3\xd7" "\xdf\x0f\x4f\xfd\xe7\x8f\x37\xfb\x6f\x4c\x5b\xee\xd6\xad\x5f\xfe\xfb\x4f" "\x77\x0e\xb6\xcd\x00\x00\x00\xd0\x35\x65\x59\x96\x45\xfa\x9a\x7f\x3c\x7d" "\xbf\xef\xb5\xdd\x29\x00\x60\x2e\xf2\xfb\x7f\x99\xe4\xf9\x0b\x5f\xff\xea" "\x1f\xef\xfc\xf9\x28\xf5\x47\xad\x56\xab\xd5\xea\x39\xd4\x75\xe5\x64\x77" "\xea\x45\x44\x6c\xd5\xd7\xa9\x3e\x33\xd8\x1d\x0f\x00\x4f\x98\xad\xf8\xa4" "\xed\x2e\xd0\x22\xf9\x77\xda\x20\x22\x9e\x6a\xbb\x13\xc0\x91\x56\xb4\xdd" "\x01\x0e\xc5\xbd\xfb\xb7\x37\x8a\x94\x6f\x51\x7f\x3f\x58\xdf\x6d\xcf\xc7" "\x82\x8c\xe5\xbf\x55\x3c\x38\xbf\x63\xda\x74\x96\xe6\x31\x26\xf3\x7a\x7c" "\x6d\x47\x3f\x9e\x9b\xd2\x9f\x95\x39\xf5\xe1\x28\xc9\xf9\xf7\x9a\xf9\x5f" "\xda\x6d\x1f\xa5\xe5\x0e\x3b\xff\x79\x99\x96\xff\x68\xf7\xd4\xa7\xce\xc9" "\xf9\xf7\x9b\xf9\x37\x2c\x4e\xfe\xbd\x89\xf9\x77\x55\xce\x7f\xf0\x48\xf9" "\xf7\xe5\x0f\x00\x00\x00\x00\x00\x47\x58\xfe\xff\xff\xb5\x96\xf7\xff\x2e" "\x1d\x7c\x53\xf6\xe5\x61\xfb\x7f\xd7\xe7\xd4\x07\x00\x00\x00\x00\x00\x00" "\x00\x78\xdc\x0e\x3a\xfe\xdf\x03\xc6\xff\x03\x00\x00\x80\x23\xab\xfa\xae" "\x5e\xf9\xf5\xb1\xbd\x79\xd3\x7e\x8b\xad\x9a\x7f\xb1\x88\x78\xa6\xb1\x3c" "\xd0\x31\xe9\x64\x99\xd5\xb6\xfb\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x5d\x32\xd8\x3d\x86\xf7\x62\x11\x31\x8c\x88\x67\x56\x57\xcb\xb2\xac" "\x2e\x75\xcd\xfa\x51\x1d\x74\xfd\x27\x5d\xd7\xb7\x1f\xba\xac\xed\x17\x79" "\x00\x00\xd8\xf5\xf1\xb1\xc6\xb9\xfc\x45\xc4\x72\x44\x5c\x4c\xbf\xf5\x37" "\x5c\x5d\x5d\x2d\xcb\xe5\x95\xd5\x72\xb5\x5c\x59\xca\x9f\x67\x47\x4b\xcb" "\xe5\x4a\xed\x7b\x6d\x9e\x56\xf3\x96\x46\xfb\xf8\x40\x3c\x18\x95\xd5\x8d" "\x2d\xd7\xd6\xab\x9b\xf5\x7d\x79\x56\x7b\xf3\xf6\xaa\xfb\x1a\x95\xfd\x7d" "\x74\xec\x31\x19\xa6\xbf\xe6\x94\xe6\x96\xc2\x06\x80\x64\xf7\xdd\xe8\x9e" "\x77\xa4\x05\x53\x96\xcf\x4e\xfb\xf0\x01\x63\x3c\xff\x17\x8f\xe7\x3f\xfb" "\xd1\xf6\xe3\x14\x00\x00\x00\x38\x7c\x65\x59\x96\x45\xfa\x39\xef\xe3\x69" "\x9f\x7f\xaf\xed\x4e\x01\x00\x73\x91\xdf\xff\x9b\xfb\x05\x0e\xa5\x8e\x38" "\xdc\xdb\x57\xab\xd5\x8b\x55\x17\xe3\x33\x5a\xef\x8f\x5a\xbd\x00\x75\x5d" "\x39\xd9\x9d\x7a\x11\x11\x5b\xf5\x75\xaa\xcf\x0c\x86\xe3\x07\x80\x27\xcc" "\x56\x7c\xf2\xe8\x2b\x5d\x7b\xfa\x30\xba\x42\x0b\x3e\x53\xfe\x2c\x8a\x41" "\x44\xbc\xd0\x76\x27\x80\x23\xad\x68\xbb\x03\x1c\x8a\x7b\xf7\x6f\x6f\x14" "\x29\xdf\xa2\xfe\x7e\x90\xc6\x77\xcf\xc7\x82\x8c\xe5\xbf\x55\xec\xac\x97" "\xd7\x9f\x34\x9d\xa5\x79\x8c\xc9\xbc\x1e\x5f\xdb\xd1\x8f\xe7\xa6\xf4\xe7" "\xf9\x39\xf5\xe1\x28\xc9\xf9\xf7\x9a\xf9\x5f\xda\x6d\x1f\xa5\xe5\x0e\x3b" "\xff\x79\x99\x96\x7f\xb5\x9d\x6b\x2d\xf4\xa7\x6d\x39\xff\x7e\x33\xff\x86" "\xc5\xc9\xbf\x37\x31\xff\xae\xca\xf9\x0f\x1e\x29\xff\xfe\xc3\xf2\xdf\xd7" "\x4b\xb9\xfc\x01\x00\x00\x00\x00\xe0\xf0\xe4\xff\xff\x5f\xb3\xff\x37\x6f" "\x32\x00\x00\x00\x00\x00\x00\x00\x3c\x71\xee\xdd\xbf\xbd\x91\xcf\x7b\xcd" "\xfb\xff\xff\x7f\xc2\x72\xce\xff\x5c\x4c\x39\xff\x42\xfe\x9d\x94\xf3\xef" "\x35\xf2\xff\x52\x63\xb9\x7e\xed\xfa\xdd\xb7\xf7\xf2\xff\xd7\xfd\xdb\x1b" "\xbf\xbb\xf9\xcf\xff\xcb\xd3\xfd\xe6\xbf\x94\x6f\xb2\x48\x8f\xac\x22\x3d" "\x22\x8a\x74\x4f\xc5\x20\x4d\x0f\xb8\x81\x0d\xdb\xc3\xfe\xa8\xba\xa7\x61" "\xd1\xeb\x0f\xd2\x31\x3f\xe5\xf0\xbd\xb8\x12\x57\x63\x33\x4e\x8f\x2d\xdb" "\x4b\x7f\x8f\xbd\xf6\x33\x63\xed\x55\x4f\x87\x63\xed\x67\xc7\xda\x07\x9f" "\x6a\x3f\x37\xd6\x3e\x4c\xbf\x3b\x50\xae\xe4\xf6\x93\xb1\x11\x3f\x8e\xab" "\xf1\xee\x4e\x7b\xd5\xb6\x34\x63\xfb\x97\x67\xb4\x97\x33\xda\x73\xfe\x7d" "\xcf\xff\x4e\xca\xf9\x0f\x6a\x97\x2a\xff\xd5\xd4\x5e\x34\xa6\x95\xbb\x1f" "\xf5\x3e\xf5\xbc\xaf\x4f\x27\xdd\xcf\x5b\x57\x3e\xf7\x8b\xd3\x87\xbf\x39" "\x33\x6d\x47\xff\xc1\xb6\xd5\x55\xdb\x77\xa2\x85\xfe\xec\xfc\x4d\x9e\x1a" "\xc5\x4f\x6f\x6c\x5e\x3f\x79\xeb\xf2\xcd\x9b\xd7\xcf\x44\x9a\x8c\xcd\x3d" "\x1b\x69\xf2\x98\xe5\xfc\x87\x3b\x97\xa5\xbd\xd7\xff\x97\x76\xdb\xf3\xeb" "\x7e\xfd\xf9\x7a\xf7\xa3\xd1\x23\xe7\x7f\x54\x6c\xc7\x60\x6a\xfe\x2f\xd5" "\xae\x57\xdb\xfb\xca\x9c\xfb\xd6\x86\x9c\xff\x28\x5d\x72\xfe\xef\xa6\xf6" "\xc9\xcf\xff\x27\x39\xff\xe9\xcf\xff\x57\x5b\xe8\x0f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x3c\x4c\x59\x96\x3b\xa7\x88\xbe\x15\x11\xe7" "\xd3\xf9\x3f\x6d\x9d\x9b\x09\x00\xcc\x57\x7e\xff\x2f\x93\x3c\x5f\xad\x56" "\xab\xd5\x6a\xf5\xe2\xd5\x75\xe5\x64\x6f\xd6\x8b\x88\xf8\x4b\x7d\x9d\xea" "\x33\xc3\xcf\x27\xdd\x18\x00\x70\x94\xfd\x37\x22\xfe\xde\x76\x27\x68\x8d" "\xfc\x3b\x2c\xff\xde\x5f\x35\x7d\xb9\xed\xce\x00\x73\x75\xe3\x83\x0f\x7f" "\x78\xf9\xea\xd5\xcd\xeb\x37\xda\xee\x09\x00\x00\x00\x00\x00\x00\x00\xf0" "\x59\xe5\xf1\x3f\xd7\x6b\xe3\x3f\xbf\x1c\x11\x6b\x8d\xe5\xc6\xc6\x7f\x7d" "\x3b\xd6\x0f\x3a\xfe\xe7\x20\x5f\x79\x30\xc0\xe8\x63\x1e\xe8\x7b\x8a\xed" "\xde\xa8\xdf\xab\x0d\x37\xfe\x62\xec\x8c\xcf\x7d\x72\xda\xf8\xdf\x27\xe2" "\xe1\xe3\x7f\x0f\x66\xdc\xdf\x70\x46\xfb\x68\x46\xfb\xd2\x8c\xf6\xe5\x89" "\x73\xf7\xd2\x9a\x78\xa2\x47\x4d\xce\xff\xc5\xda\x78\xe7\x55\xfe\xc7\x1b" "\xc3\xaf\x77\x61\xfc\xd7\xe6\x98\xf7\x5d\x90\xf3\x3f\x51\x7b\x3c\x57\xf9" "\x7f\xb1\xb1\x5c\x3d\xff\xf2\x37\x47\x2e\xff\xad\xfd\x2e\xb8\x1d\xbd\xb1" "\xfc\x4f\xdd\xbc\xf6\x93\x53\x37\x3e\xf8\xf0\xb5\x2b\xd7\x2e\xbf\xbf\xf9" "\xfe\xe6\x8f\xce\x9d\x39\x73\xfa\xdc\xf9\xf3\x17\x2e\x5c\x38\xf5\xde\x95" "\xab\x9b\xa7\x77\xff\x3d\x9c\x5e\x1f\x01\x39\xff\x3c\xf6\xb5\xe3\x40\xbb" "\x25\xe7\x9f\x33\x97\x7f\xb7\xe4\xfc\x3f\x9f\x6a\xf9\x77\x4b\xce\xff\x0b" "\xa9\x96\x7f\xb7\xe4\xfc\xf3\xe7\x3d\xf9\x77\x4b\xce\x3f\x7f\xf7\x91\x7f" "\xb7\xe4\xfc\x5f\x49\xb5\xfc\xbb\x25\xe7\xff\xe5\x54\xcb\xbf\x5b\x72\xfe" "\xaf\xa6\x5a\xfe\xdd\x92\xf3\xff\x4a\xaa\xe5\xdf\x2d\x39\xff\xd7\x52\x2d" "\xff\x6e\xc9\xf9\x9f\x4c\xb5\xfc\xbb\x25\xe7\x7f\x2a\xd5\xfb\xc8\xdf\xcf" "\xc3\x2f\x90\x9c\x7f\xde\xc3\xe5\xf9\xdf\x2d\x39\xff\x7c\x64\x83\xfc\xbb" "\x25\xe7\x7f\x36\xd5\xf2\xef\x96\x9c\xff\xb9\x54\xcb\xbf\x5b\x72\xfe\xaf" "\xa7\x5a\xfe\xdd\x92\xf3\xff\x6a\xaa\xe5\xdf\x2d\x39\xff\xf3\xa9\x96\x7f" "\xb7\xe4\xfc\xbf\x96\x6a\xf9\x77\x4b\xce\xff\x42\xaa\xe5\xdf\x2d\x39\xff" "\xaf\xa7\x5a\xfe\xdd\x92\xf3\xff\x46\xaa\xe5\xdf\x2d\x39\xff\x37\x52\x2d" "\xff\x6e\xc9\xf9\x7f\x33\xd5\xf2\xef\x96\x9c\xff\xb7\x52\x2d\xff\x6e\xc9" "\xf9\x7f\x3b\xd5\xf2\xef\x96\x9c\xff\x9b\xa9\x96\x7f\xb7\xec\xfd\xfe\xbf" "\x2b\xae\xb8\xe2\x4a\xbe\xd2\xf6\x2b\x13\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd0\x34\x8f\xc3\x89\xdb\xde\x46\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xe0\x7f\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23" "\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\x07\x0e\x04\x00\x00\x00\x00" "\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x7b\x77\x17" "\x23\xd7\x59\x9f\x01\xfc\xec\x7a\xd7\x5e\x3b\x84\x18\x08\xc1\x49\x0d\x6c" "\x12\x13\x42\xb2\x64\xd7\x76\xe2\x0f\xda\x14\x13\x20\xd0\x00\xa5\x40\x42" "\xa1\x1f\x38\xae\x77\x6d\x16\xfc\x85\xd7\x2e\x81\x22\xd9\x34\x50\x22\x61" "\x54\x54\x51\x35\xbd\xa0\x05\x84\xda\xa8\x55\x85\x55\x71\x41\x2b\x4a\x73" "\x51\xf5\xe3\xaa\xb4\x17\xf4\xa6\xa2\xaa\x84\xd4\xa8\x0a\x28\x20\x21\xd1" "\x8a\x66\xab\x39\xe7\x7d\x5f\xcf\xcc\xce\xce\x59\x7b\xc7\xeb\xd9\xf3\xfe" "\x7e\x92\xfd\xdf\x9d\x39\x33\xe7\xcc\x99\x33\xb3\xfb\xac\xfd\xec\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xdd\xad\x6f\x9c\xfb\xcc\x48\x51" "\x14\xad\x3f\xe5\x5f\x5b\x8b\xe2\x05\xad\x8f\x37\x4f\x6e\x2d\x2f\x7b\xdd" "\xb5\xde\x42\x00\x00\x00\x60\xb5\xfe\xaf\xfc\xfb\xb9\x1b\xd2\x05\x07\x56" "\x70\xa3\xb6\x65\xfe\xe1\x15\xff\xfc\xf5\xc5\xc5\xc5\xc5\xe2\x7d\x1b\x7e" "\x7f\xfc\x0b\x8b\x8b\xe9\x8a\xc9\xa2\x18\xdf\x54\x14\xe5\x75\xd1\xc5\xff" "\x7c\xff\x48\xfb\x32\xc1\xe3\xc5\xc4\xc8\x68\xdb\xe7\xa3\x35\xab\xdf\x50" "\x73\xfd\x58\xcd\xf5\xe3\x35\xd7\x6f\xac\xb9\x7e\x53\xcd\xf5\x13\x35\xd7" "\x2f\xd9\x01\x4b\x6c\xae\x7e\x1e\x53\xde\xd9\x8e\xf2\xc3\xad\xd5\x2e\x2d" "\x6e\x2c\xc6\xcb\xeb\x76\xf4\xb8\xd5\xe3\x23\x9b\x46\x47\xe3\xcf\x72\x4a" "\x23\xe5\x6d\x16\xc7\x8f\x14\xf3\xc5\xb1\x62\xae\x98\xe9\x58\xbe\x5a\x76" "\xa4\x5c\xfe\x9b\xb7\xb6\xd6\xf5\xd6\x22\xae\x6b\xb4\x6d\x5d\xdb\x5b\x47" "\xc8\x0f\x3f\x71\x38\x6e\xc3\x48\xd8\xc7\x3b\x3a\xd6\x75\xe9\x3e\xa3\xef" "\xbf\xa1\x98\xfc\xd1\x0f\x3f\x71\xf8\x4f\xce\x3c\x7b\x73\xaf\x59\xbb\x1b" "\x3a\xee\xaf\xda\xce\x3b\x6f\x6b\x6d\xe7\xa7\xc2\x25\xd5\xb6\x8e\x14\x9b" "\xd2\x3e\x89\xdb\x39\xda\xb6\x9d\xdb\x7b\x3c\x27\x1b\x3a\xb6\x73\xa4\xbc" "\x5d\xeb\xe3\xee\xed\x7c\x6e\x85\xdb\xb9\xe1\xd2\x66\xae\xa9\xee\xe7\x7c" "\xa2\x18\x2d\x3f\xfe\x76\xb9\x9f\xc6\xda\x7f\xac\x97\xf6\xd3\xf6\x70\xd9" "\x4f\x6e\x2f\x8a\xe2\xfc\xa5\xcd\xee\x5e\x66\xc9\xba\x8a\xd1\x62\x4b\xc7" "\x25\xa3\x97\x9e\x9f\x89\x1d\xe5\xcb\xae\x75\x1f\xad\x43\xe9\xc5\xc5\xd8" "\x65\x1d\xa7\xb7\xae\xe0\x38\x6d\xcd\xd9\x1d\x9d\xc7\x69\xf7\x6b\x22\x3e" "\xff\xb7\x86\xdb\x8d\x2d\xb3\x0d\xed\x4f\xd3\xf7\x3f\xb9\x71\xc9\xf3\x7e" "\xb9\xc7\x69\xd4\x7a\xd4\xcb\xbd\x56\xba\x8f\xc1\x41\xbf\x56\x86\xe5\x18" "\x8c\xc7\xc5\xb7\xcb\x07\xfd\x44\xcf\x63\x70\x47\x78\xfc\x9f\xb8\x63\xf9" "\x63\xb0\xe7\xb1\xd3\xe3\x18\x4c\x8f\x7b\xa2\xba\x45\xeb\x3e\x6e\xab\x3b" "\x06\x47\x37\x6e\x28\xb7\x39\x3d\x09\x23\xe5\x6d\x2e\x1d\x83\x3b\x3b\x96" "\xdf\x50\xae\x69\xa4\x9c\xcf\xdc\xd1\xff\x18\x9c\x3e\x73\xfc\xd4\xf4\xc2" "\xc7\x3e\xfe\xda\xf9\xe3\x87\x8e\xce\x1d\x9d\x3b\xb1\x7b\xe7\xce\x99\xdd" "\x7b\xf6\xec\xdb\xb7\x6f\xfa\xc8\xfc\xb1\xb9\x99\xea\xef\x2b\xdc\xdb\xc3" "\x6f\x4b\x31\x9a\x5e\x03\xb7\x85\x7d\x17\x5f\x03\xaf\xee\x5a\xb6\xfd\x50" "\x5d\xfc\xf2\xe0\x5e\x87\x13\x7d\x5e\x87\x5b\xbb\x96\x1d\xf4\xeb\x70\xac" "\xfb\xc1\x8d\xac\xcd\x0b\x72\xe9\x31\x5d\xbd\x36\x1e\x6e\xed\xf4\x89\x0b" "\xa3\xc5\x32\xaf\xb1\xf2\xf9\xb9\x6b\xf5\xaf\xc3\xf4\xb8\xdb\x5e\x87\x63" "\x6d\xaf\xc3\x9e\x5f\x53\x7a\xbc\x0e\xc7\x56\xf0\x3a\x6c\x2d\x73\xea\xae" "\x95\x7d\xcf\x32\xd6\xf6\xa7\xd7\x36\x5c\xad\xaf\x05\x5b\xdb\x8e\xc1\xee" "\xef\x47\xba\x8f\xc1\x41\x7f\x3f\x32\x2c\xc7\xe0\x44\x38\x2e\xfe\xfd\xae" "\xe5\xbf\x16\x6c\x0f\xdb\xfb\xc4\xd4\xe5\x7e\x3f\xb2\x61\xc9\x31\x98\x1e" "\x6e\x78\xef\x69\x5d\x92\xbe\xdf\x9f\xd8\x57\x8e\x5e\xc7\xe5\x2d\xad\x2b" "\xae\xdb\x58\x9c\x5d\x98\x3b\x7d\xcf\x63\x87\xce\x9c\x39\xbd\xb3\x08\x63" "\x4d\xbc\xa4\xed\x58\xe9\x3e\x5e\xb7\xb4\x3d\xa6\x62\xc9\xf1\x3a\x7a\xd9" "\xc7\xeb\x81\xf9\x57\x3c\x71\x4b\x8f\xcb\xb7\x86\x7d\x35\xf1\xda\xd6\x5f" "\x13\xcb\x3e\x57\xad\x65\xee\xbd\xa7\xff\x73\x55\x7e\x75\xeb\xbd\x3f\x3b" "\x2e\xdd\x55\x84\x31\x60\x6b\xbd\x3f\x7b\x7d\x35\x6f\xed\xcf\x94\x25\xfb" "\xec\xcf\xd6\x32\x9f\x9a\x5e\xfd\xf7\xe2\x29\x97\xb6\xbd\xff\x8e\x2f\xf3" "\xfe\x1b\x73\xff\xf3\xd5\xfa\xd2\x5d\x3d\xbe\x61\x7c\xac\x7a\xfd\x6e\x48" "\x7b\x67\xbc\xe3\xfd\xb8\xf3\xa9\x1a\x2b\xdf\xbb\x46\xca\x75\x3f\x37\xbd" "\xb2\xf7\xe3\xf1\xf0\x67\xad\xdf\x8f\x6f\xec\xf3\x7e\xbc\xad\x6b\xd9\x41" "\xbf\x1f\x8f\x77\x3f\xb8\xf8\x7e\x3c\x52\xf7\xd3\x8e\xd5\xe9\x7e\x3e\x27" "\xc2\x71\x72\x6c\xa6\xff\xfb\x71\x6b\x99\x6d\xbb\x2e\xf7\x98\x1c\xeb\xfb" "\x7e\x7c\x7b\x98\x23\x61\xff\xbf\x26\x24\x85\x94\x8b\xda\x8e\x9d\xe5\x8e" "\xdb\xb4\xae\xb1\xb1\xf1\xf0\xb8\xc6\xe2\x1a\x3a\x8f\xd3\xdd\x1d\xcb\x8f" "\x87\x6c\xd6\x5a\xd7\x53\xbb\xae\xec\x38\xbd\xf3\xf6\xea\xbe\x36\xa4\x47" "\x77\xc9\x5a\x1d\xa7\x93\x5d\xcb\x0e\xfa\x38\x4d\xef\x57\xcb\x1d\xa7\x23" "\x75\x3f\x7d\xbb\x32\xdd\xcf\xe7\x44\x38\x2e\x6e\xdc\xdd\xff\x38\x6d\x2d" "\xf3\xf4\xbd\xab\x7f\xef\xdc\x1c\x3f\x6c\x7b\xef\xdc\x58\x77\x0c\x8e\x6f" "\xd8\xd8\xda\xe6\xf1\x74\x10\x56\xef\xf7\x8b\x9b\xe3\x31\x78\x4f\x71\xb8" "\x38\x59\x1c\x2b\x66\xcb\x6b\x37\x96\xc7\xd3\x48\xb9\xae\xa9\xfb\x56\x76" "\x0c\x6e\x0c\x7f\xd6\xfa\xbd\x72\x5b\x9f\x63\xf0\xce\xae\x65\x07\x7d\x0c" "\xa6\xaf\x63\xcb\x1d\x7b\x23\x63\x4b\x1f\xfc\x00\x74\x3f\x9f\x13\xe1\xb8" "\x78\xf2\xbe\xfe\xc7\x60\x6b\x99\x37\xed\x1d\xec\xf7\xae\x77\x86\x4b\xd2" "\x32\x6d\xdf\xbb\x76\xff\x7c\x6d\xb9\x9f\x79\xdd\xd2\xb5\x9b\xae\xe6\xcf" "\xbc\x5a\xdb\xf9\x77\x7b\xfb\xff\x6c\xb6\xb5\xcc\xb1\x7d\x97\x9b\x33\xfb" "\xef\xa7\xbb\xc3\x25\xd7\xf5\xd8\x4f\xdd\xaf\xdf\xe5\x5e\x53\xb3\xc5\xda" "\xec\xa7\x6d\x61\x3b\x9f\xdd\xb7\xfc\x7e\x6a\x6d\x4f\x6b\x99\x2f\xec\x5f" "\xe1\xf1\x74\xa0\x28\x8a\x73\x1f\x79\xa0\xfc\x79\x6f\xf8\xf7\x95\xbf\x3c" "\xfb\x9d\xaf\x77\xfc\xbb\x4b\xaf\x7f\xd3\x39\xf7\x91\x07\x7e\x70\xfd\x91" "\xbf\xbf\x9c\xed\x07\x60\xfd\x7b\xbe\x1a\x5b\xaa\xaf\x75\x6d\xff\x32\xb5" "\x92\x7f\xff\x07\x00\x00\x00\xd6\x85\x98\xfb\x47\xc3\x4c\xe4\x7f\x00\x00" "\x00\x68\x8c\x98\xfb\xe3\xff\x0a\x4f\xe4\x7f\x00\x00\x00\x68\x8c\x98\xfb" "\xc7\xc2\x4c\x32\xc9\xff\xdb\xde\xf4\xec\xfc\xf3\xe7\x8a\xd4\xcc\x5f\x0c" "\xe2\xf5\x69\x37\x3c\x54\x2d\x17\x3b\xae\x33\xe1\xf3\xc9\xc5\x4b\x5a\x97" "\x3f\xf0\xd5\xb9\x1f\xff\xf5\xb9\x95\xad\x7b\xb4\x28\x8a\x9f\x3e\xf4\x5b" "\x3d\x97\xdf\xf6\x50\xdc\xae\xca\x64\xd8\xce\x8b\x6f\xee\xbc\x7c\xe9\x0d" "\xcf\xad\x68\xfd\x8f\x3e\x72\x69\xb9\xf6\xfe\xfa\x97\xc2\xfd\xc7\xc7\xb3" "\xd2\xc3\xa0\x57\x05\x77\xa6\x28\x8a\x6f\xde\xf0\xb9\x72\x3d\x93\xef\xbf" "\x50\xce\xa7\x1f\x7a\xb4\x9c\xef\x3e\xff\xc4\xe3\xad\x65\x9e\xdb\x5f\x7d" "\x1e\x6f\xff\xcc\x4b\xaa\xe5\xbf\x18\xca\xbf\x07\x8e\x1c\xea\xb8\xfd\x33" "\x61\x3f\x7c\x2f\xcc\x99\xb7\xf5\xde\x1f\xf1\x76\x5f\xbb\xf0\x9a\xed\x7b" "\xdf\x7b\x69\x7d\xf1\x76\x23\xb7\xbd\xb0\x7c\xd8\x4f\x7e\xa0\xba\xdf\xf8" "\x7b\x72\x3e\xff\x78\xb5\x7c\xdc\xcf\xcb\x6d\xff\xdf\x7c\xf6\xa9\xaf\xb5" "\x96\x7f\xec\x55\xbd\xb7\xff\xdc\x68\xef\xed\x7f\x2a\xdc\xef\x57\xc3\xfc" "\x9f\x97\x57\xcb\xb7\x3f\x07\xad\xcf\xe3\xed\x3e\x1d\xb6\x3f\xae\x2f\xde" "\xee\x9e\xaf\x7c\xab\xe7\xf6\x5f\xfc\x4c\xb5\xfc\xa9\x07\xab\xe5\x1e\x0d" "\x33\xae\xff\xce\xf0\xf9\x8e\x07\x9f\x9d\x6f\xdf\x5f\x8f\x8d\x1c\xea\x78" "\x5c\xc5\x5b\xaa\xe5\xe2\xfa\x67\xbe\xf3\xbb\xe5\xf5\xf1\xfe\xe2\xfd\x77" "\x6f\xff\xc4\xc1\x0b\x1d\xfb\xa3\xfb\xf8\x78\xfa\x5f\xab\xfb\x99\xee\x5a" "\x3e\x5e\x1e\xd7\x13\xfd\x55\xd7\xfa\x5b\xf7\xd3\x7e\x7c\xc6\xf5\x3f\xf5" "\x3b\x8f\x76\xec\xe7\xba\xf5\x5f\x7c\xf7\x33\x2f\x6f\xdd\x6f\xf7\xfa\xef" "\xee\x5a\x6e\x43\xd7\xed\xbb\x7f\x63\xd3\x1f\x7d\xfa\x73\x3d\xd7\x17\xb7" "\xe7\xc0\x5f\x9c\xea\x78\x3c\x07\xde\x15\x5e\xc7\x61\xfd\x4f\x7e\x20\x1c" "\x8f\xe1\xfa\xff\xbd\xf8\xb9\x8e\xf5\x46\x8f\xbe\xab\xf3\xfd\x27\x2e\xff" "\xa5\xad\xe7\x3a\x1e\x4f\xf4\xd6\x1f\x55\xeb\xbf\xf8\xfa\xa3\xe5\xfc\xaf" "\xc9\x1f\xff\xe1\x75\x2f\xb8\xfe\x85\xe7\x5f\xd9\xda\x77\x45\xf1\xed\xf7" "\x54\xf7\x57\xb7\xfe\xa3\x7f\x7c\xb2\x63\xfb\xbf\x7c\xd3\x5d\xe5\xf3\x11" "\xaf\x8f\x1d\xfd\xee\xf5\x2f\x27\xae\xff\xf4\x47\xa7\x4e\x9c\x5c\x38\x3b" "\x3f\xdb\xb6\x57\xcb\xdf\x9d\xf3\xf6\x6a\x7b\x36\x4d\x6c\xde\xd2\xda\xde" "\x1b\xc2\x7b\x6b\xf7\xe7\x07\x4f\x9e\xf9\xe0\xdc\xe9\xc9\x99\xc9\x99\xa2" "\x98\x6c\xee\xaf\xd0\xbb\x62\x5f\x09\xf3\x07\xd5\x38\x7f\xb9\xb7\xbf\xeb" "\x91\xf0\x7c\xde\xf2\x07\xdf\xdc\x72\xc7\xbf\x7c\x36\x5e\xfe\x6f\x0f\x57" "\x97\x5f\x78\x5b\xf5\x75\xeb\xd5\x61\xb9\xcf\x87\xcb\xb7\x56\xcf\xdf\xe2" "\xc8\x2a\xd7\xff\xe4\xad\x37\x95\xaf\xef\x91\xa7\xab\xcf\x3b\x7a\xec\x03" "\xb0\x7d\xc7\x7f\xef\x5b\xd1\x82\xe1\xf1\x77\x7f\x5f\x10\x8f\xf7\x53\x2f" "\xfd\x60\xb9\x1f\x5a\xd7\x95\x5f\x37\xe2\xeb\x7a\x95\xdb\xff\xdd\xd9\xea" "\x7e\xbe\x11\xf6\xeb\x62\xf8\xcd\xcc\xb7\xdd\x74\x69\x7d\xed\xcb\xc7\xdf" "\x8d\x70\xe1\x3d\xd5\xeb\x7d\xd5\xfb\x2f\xbc\xcd\xc5\xe7\xf5\x4f\xc3\xf3" "\xfd\x8e\xef\x55\xf7\x1f\xb7\x2b\x3e\xde\xef\x86\xef\x63\xbe\xb5\xad\xf3" "\xfd\x2e\x1e\x1f\xdf\x38\x37\xda\x7d\xff\xe5\x6f\xf1\x38\x1f\xde\x4f\x8a" "\xf3\xd5\xf5\x71\xa9\xb8\xbf\x2f\x3c\x77\x53\xcf\xcd\x8b\xbf\x87\xa4\x38" "\x7f\x73\xf9\xf9\xef\xa5\xfb\xb9\xf9\xb2\x1e\xe6\x72\x16\x3e\xb6\x30\x7d" "\x6c\xfe\xc4\xd9\xc7\xa6\xcf\xcc\x2d\x9c\x99\x5e\xf8\xd8\xc7\x0f\x1e\x3f" "\x79\xf6\xc4\x99\x83\xe5\xef\xf2\x3c\xf8\xa1\xba\xdb\x5f\x7a\x7f\xda\x52" "\xbe\x3f\xcd\xce\xed\xb9\xb7\x98\xd9\x5c\x14\xc5\xc9\x62\x66\x0d\xde\xb0" "\xae\xce\xf6\xb7\x3e\x5a\xd9\xf6\x9f\x7a\xe4\xf0\xec\xde\x99\x3b\x66\xe7" "\x8e\x1c\x3a\x7b\xe4\xcc\x23\xa7\xe6\x4e\x1f\x3d\xbc\xb0\x70\x78\x6e\x76" "\xe1\x8e\x43\x47\x8e\xcc\x7d\xb4\xee\xf6\xf3\xb3\xf7\xef\xdc\xb5\x7f\xf7" "\xde\x5d\x53\x47\xe7\x67\xef\xdf\xb7\x7f\xff\xee\xfd\x53\xf3\x27\x4e\xb6" "\x36\xa3\xda\xa8\x1a\x7b\x66\x3e\x3c\x75\xe2\xf4\xc1\xf2\x26\x0b\xf7\xdf" "\xbb\x7f\xe7\x7d\xf7\xdd\x3b\x33\x75\xfc\xe4\xec\xdc\xfd\x7b\x67\x66\xa6" "\xce\xd6\xdd\xbe\xfc\xda\x34\xd5\xba\xf5\x6f\x4e\x9d\x9e\x3b\x76\xe8\xcc" "\xfc\xf1\xb9\xa9\x85\xf9\x8f\xcf\xdd\xbf\x73\xff\x9e\x3d\xbb\x6a\x7f\x1b" "\xe0\xf1\x53\x47\x16\x26\xa7\x4f\x9f\x3d\x31\x7d\x76\x61\xee\xf4\x74\xf5" "\x58\x26\xcf\x94\x17\xb7\xbe\xf6\xd5\xdd\x9e\x66\x5a\xf8\x8f\xea\xfb\xd9" "\x6e\x23\xd5\x2f\xe2\x2b\xde\x79\xf7\x9e\xf4\xfb\x59\x5b\xbe\xfa\xc9\x65" "\xef\xaa\x5a\xa4\xeb\x17\x88\x3e\x1b\x7e\x17\xcd\x3f\xbd\xe8\xd4\xbe\x95" "\x7c\x1e\x73\xff\x78\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xc6" "\x30\x13\xf9\x1f\x00\x00\x00\x1a\x23\xe6\xfe\x4d\x61\x26\xf2\x3f\x00\x00" "\x00\x34\x46\xcc\xfd\x13\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\xff\x95\xf5\xff" "\xab\xeb\xf5\xff\xf3\xea\xff\x9f\xfa\x48\xd5\x2b\x5d\xef\xfd\xff\xd8\x9f" "\xd7\xff\xcf\xc3\x35\xee\xff\xaf\x7a\xfd\xfa\xff\xfa\xff\xcd\xeb\xff\xaf" "\xbc\x3f\xbf\xde\xb7\x5f\xff\x5f\xff\x9f\xa5\x86\xad\xff\x1f\x73\xff\xe6" "\xa2\xc8\x32\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x12\x66\x22\xff\x03\x00" "\x00\x40\x63\xc4\xdc\x7f\x5d\x98\x89\xfc\x0f\x00\x00\x00\x8d\x11\x73\xff" "\x0b\xc2\x4c\x32\xc9\xff\xfa\xff\x2b\xea\xff\xef\xaa\x2b\x5c\x35\xbf\xff" "\xef\xfc\xff\xfa\xff\xc5\xfa\xec\xff\xc7\x27\x47\xff\x3f\x1b\x97\xdd\xbf" "\x7f\xef\xc3\x1d\x9f\xea\xff\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xac\xda\xf8\xb2\xd7\x5c\xab\xfe\x7f\xcc\xfd\xd7\x87\x99\x64\x92\xff\x01" "\x00\x00\x20\x07\x31\xf7\xbf\x30\xcc\x44\xfe\x07\x00\x00\x80\xc6\x88\xb9" "\xff\x86\x30\x13\xf9\x1f\x00\x00\x00\x1a\x23\xe6\xfe\xad\x61\x26\x99\xe4" "\x7f\xfd\x7f\xe7\xff\xd7\xff\xd7\xff\x6f\x74\xff\x7f\xb5\xe7\xff\x6f\xdb" "\x18\xfd\xff\xf5\xc1\xf9\xff\xfb\xd3\xff\xaf\x71\xc5\xfd\xff\x09\xfd\xff" "\xf5\xd8\xff\x1f\x1f\xec\xf6\x0f\x77\xff\xbf\x76\xf3\xf5\xff\xb9\x2a\x86" "\xed\xfc\xff\x31\xf7\xbf\x28\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9" "\xff\xc5\x61\x26\xf2\x3f\x00\x00\x00\x34\x46\xcc\xfd\x2f\x09\x33\x91\xff" "\x01\x00\x00\xa0\x31\x62\xee\xbf\x31\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xbf" "\xc2\xfe\xff\x97\xf4\xff\xf5\xff\xb3\xec\xff\xf7\x3d\xff\x7f\xf5\x91\xfe" "\xff\x70\xd1\xff\xef\x4f\xff\xbf\x86\xf3\xff\xe7\xd5\xff\x1f\xf0\xf6\x0f" "\x77\xff\x7f\xd0\xe7\xff\x1f\x7f\x73\xf7\xed\xf5\xff\xe9\x65\xd8\xfa\xff" "\x31\xf7\xbf\x34\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xa6\x30" "\x13\xf9\x1f\x00\x00\x00\x1a\x23\xe6\xfe\x97\x85\x99\xc8\xff\x00\x00\x00" "\xd0\x18\x31\xf7\x6f\x0b\x33\xc9\x24\xff\xeb\xff\xeb\xff\x3b\xff\xff\x35" "\xeb\xff\xff\x44\xff\x7f\xbd\xf7\xff\x2b\xfa\xff\xc3\x45\xff\xbf\x3f\xfd" "\xff\x1a\xfa\xff\xfa\xff\xfa\xff\x2b\xeb\xff\xf7\xf8\xe6\x57\xff\x9f\x5e" "\x86\xad\xff\x1f\x73\xff\xcd\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc" "\xfd\xb7\x84\x99\xc8\xff\x00\x00\x00\xd0\x18\x31\xf7\xff\x4c\x98\x89\xfc" "\x0f\x00\x00\x00\x8d\x11\x73\xff\xf6\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf" "\xfe\x7f\x5e\xe7\xff\xbf\x7b\xa3\xfe\xbf\xfe\x7f\xb3\xe9\xff\xf7\xa7\xff" "\x5f\x43\xff\x5f\xff\x5f\xff\x7f\x85\xe7\xff\x5f\xea\x72\xfa\xff\x9b\xea" "\xee\x8c\xc6\x18\xb6\xfe\x7f\xcc\xfd\x2f\x0f\x33\xc9\x24\xff\x03\x00\x00" "\x40\x0e\x62\xee\x7f\x45\x98\x89\xfc\x0f\x00\x00\x00\x8d\x11\x73\xff\x2b" "\xc3\x4c\xe4\x7f\x00\x00\x00\x68\x8c\x98\xfb\x27\xc3\x4c\x32\xc9\xff\xfa" "\xff\xcd\xea\xff\xff\xf9\xdf\x3e\xf9\xca\x42\xff\x5f\xff\xbf\x66\xfd\x0d" "\xed\xff\xc7\xc3\x40\xff\x3f\x73\xfa\xff\xfd\xe9\xff\xd7\xd0\xff\xd7\xff" "\xd7\xff\x5f\x93\xfe\x3f\xf9\x18\xb6\xfe\x7f\xcc\xfd\xb7\x86\x99\x64\x92" "\xff\x01\x00\x00\x20\x07\x31\xf7\xdf\x16\x66\x22\xff\x03\x00\x00\x40\x63" "\xc4\xdc\x7f\x7b\x98\x89\xfc\x0f\x00\x00\x00\x8d\x11\x73\xff\x8e\x30\x93" "\x4c\xf2\xbf\xfe\x7f\xb3\xfa\xff\x91\xfe\xff\x1a\xf6\xff\xbf\xf8\x60\xba" "\x1f\xfd\xff\x8a\xf3\xff\xf7\xa6\xff\xbf\x36\xf4\xff\x7b\x68\x7b\x91\xea" "\xff\xd7\xd0\xff\xd7\xff\xcf\xbe\xff\x1f\xbf\xfb\xd5\xff\x67\x30\x86\xad" "\xff\x1f\x73\xff\xab\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xef" "\x08\x33\x91\xff\x01\x00\x00\xa0\x31\x62\xee\x7f\x75\x98\x89\xfc\x0f\x00" "\x00\x00\x8d\x11\x73\xff\x9d\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xe7\xff\xd7\xff\xef\xbd\x7e\xfd\xff\xf5\x49\xff\xbf\x3f\xfd\xff\x1a\xfa" "\xff\xfa\xff\xd9\xf7\xff\x9d\xff\x9f\xc1\x1a\xb6\xfe\x7f\xcc\xfd\xaf\x09" "\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xbf\x2b\xcc\x44\xfe\x07\x00" "\x00\x80\xc6\x88\xff\x7f\xb3\xfa\x7f\xaf\xf2\x3f\x00\x00\x00\x34\x51\xcc" "\xfd\x53\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\xff\x9c\xfa\xff\x23\xfa\xff\xfa" "\xff\xfa\xff\x8d\xa7\xff\xdf\x9f\xfe\x7f\x0d\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\x06\x6a\xd8\xfa\xff\x31\xf7\xbf\x36\xcc\x24\x93\xfc\x0f\x00\x00\x00" "\x39\x88\xb9\xff\x9e\x30\x13\xf9\x1f\x00\x00\x00\x1a\x23\xe6\xfe\xe9\x30" "\x13\xf9\x1f\x00\x00\x00\x1a\x23\xe6\xfe\x99\x30\x93\x4c\xf2\xbf\xfe\xbf" "\xfe\x7f\x4e\xfd\x7f\xe7\xff\xd7\xff\xd7\xff\x6f\x3e\xfd\xff\xfe\xf4\xff" "\x6b\xe8\xff\xeb\xff\x37\xad\xff\x5f\x14\xfa\xff\x5c\x53\xc3\xd6\xff\x8f" "\xb9\x7f\x67\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xae\x30\x13" "\xf9\x1f\x00\x00\x00\x1a\x23\xe6\xfe\xdd\x61\x26\xf2\x3f\x00\x00\x00\x34" "\x46\xcc\xfd\xf7\x86\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\x7b\xaf\x5f\xff\x7f\x7d\xd2\xff\xef\x4f\xff\xbf\x86\xfe\xbf\xfe\x7f" "\xd3\xfa\xff\xce\xff\xcf\x35\x36\x6c\xfd\xff\x98\xfb\xef\x0b\x33\xc9\x24" "\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x13\x66\x22\xff\x03\x00\x00\x40\x63" "\xc4\xdc\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xc6\x88\xb9\x7f\x5f\x98\x49" "\x26\xf9\x5f\xff\xbf\x21\xfd\xff\xdf\xfe\xc7\x8e\x75\xeb\xff\xeb\xff\xf7" "\x5b\xff\x60\xfa\xff\x9b\xf5\xff\xc3\xd4\xff\x1f\x2e\x0d\xed\xff\x77\xbf" "\x2c\xae\x98\xfe\x7f\x0d\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x06\x6a\xd8\xfa" "\xff\x31\xf7\xef\x0f\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f\x5d" "\x98\x49\x47\xfe\x7f\xfc\xcf\xd6\x78\xb3\x00\x00\x00\x80\x01\x8a\xb9\xff" "\x67\xc3\x4c\xfc\xfb\x3f\x00\x00\x00\x34\x46\xcc\xfd\x3f\x17\x66\x92\x49" "\xfe\xd7\xff\x6f\x48\xff\xbf\x8b\xfe\xbf\xfe\x7f\xbf\xf5\x3b\xff\xbf\xfe" "\x7f\x93\x35\xb4\xff\x3f\x30\xfa\xff\x35\x72\xed\xff\x87\x37\xb4\x6b\xdd" "\x9f\x5f\xad\x6b\xbd\xfd\xfa\xff\xfa\xff\x2c\x75\xf5\xfb\xff\xf1\xa3\x95" "\xf5\xff\x63\xee\xbf\x3f\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff" "\xe7\xc3\x4c\xe4\x7f\x00\x00\x00\x68\x8c\x98\xfb\x5f\x1f\x66\x22\xff\x03" "\x00\x00\x40\x63\xc4\xdc\x7f\x20\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\x7f\x75\xfa\xff\xaf\x2f\xba\x0d\x63\xff\xbf\x75\xf0\xe8\xff\x37" "\x8b\xfe\x7f\x7f\xfa\xff\x35\x72\xed\xff\x07\xd7\xba\x3f\xbf\xde\xb7\x5f" "\xff\x5f\xff\x9f\xa5\x86\xed\xfc\xff\x31\xf7\xbf\x21\xcc\x24\x93\xfc\x0f" "\x00\x00\x00\x39\x88\xb9\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x1a\x23\xe6" "\xfe\x37\x86\x99\xc8\xff\x00\x00\x00\xd0\x18\x31\xf7\xbf\x29\xcc\x24\x93" "\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xef\xfc\xff\xbd\xd7\xaf\xff\xbf\x3e" "\xe9\xff\xf7\xa7\xff\x5f\x43\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x81\x1a\xb6" "\xfe\x7f\xcc\xfd\x6f\x0e\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f" "\x30\xcc\x44\xfe\x07\x00\x00\x80\xc6\x88\xb9\xff\x2d\x61\x26\xf2\x3f\x00" "\x00\x00\x34\x46\xcc\xfd\x6f\x0d\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xf7\x5e\xbf\xfe\xff\xfa\xa4\xff\xdf\x9f\xfe\x7f\x0d\xfd" "\x7f\xfd\xff\xee\xed\x2f\xdf\xec\xf5\xff\xf5\xff\xb9\x52\xc3\xd6\xff\x8f" "\xb9\xff\x17\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x1f\x0a\x33" "\x91\xff\x01\x00\x00\xa0\x31\x62\xee\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00" "\x8d\x11\x73\xff\xdb\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xbd\xd7\xaf\xff\xbf\x3e\xe9\xff\xf7\xa7\xff\x5f\x43\xff\x5f\xff" "\xdf\xf9\xff\xf5\xff\x19\xa8\x61\xeb\xff\xc7\xdc\xff\x8e\x30\x93\x4c\xf2" "\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x5f\x0c\x33\x91\xff\x01\x00\x00\xa0\x31" "\x62\xee\x7f\x67\x98\x89\xfc\x0f\x00\x00\x00\x8d\x11\x73\xff\x2f\x85\x99" "\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xb3\xe8\xff\xb7\x6e\xa4\xff" "\x9f\x05\xfd\xff\xfe\xf4\xff\x6b\xf4\xe8\xff\x6f\xd2\xff\xd7\xff\xd7\xff" "\xd7\xff\xe7\x8a\x0d\x5b\xff\x3f\xe6\xfe\x77\x85\x99\x64\x92\xff\x01\x00" "\x00\x20\x07\x31\xf7\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xc6\x88\xb9\xff" "\x3d\x61\x26\xf2\x3f\x00\x00\x00\x34\x46\xcc\xfd\x0f\x87\x99\x64\x92\xff" "\xf5\xff\xb3\xec\xff\xa7\x87\xac\xff\x5f\xd1\xff\x5f\x5d\xff\x7f\xa2\x6b" "\x7d\x43\xd9\xff\x77\xfe\xff\x6c\xe8\xff\xf7\xa7\xff\x5f\xc3\xf9\xff\xf5" "\xff\xf5\xff\xf5\xff\x19\xa8\x61\xeb\xff\xc7\xdc\xff\x48\x98\x49\x26\xf9" "\x1f\x00\x00\x00\x72\x10\x73\xff\x7b\xc3\x4c\xe4\x7f\x00\x00\x00\x68\x8c" "\x98\xfb\x7f\x39\xcc\x44\xfe\x07\x00\x00\x80\xc6\x88\xb9\xff\x7d\x61\x26" "\x4d\xc8\xff\x9b\xeb\x17\xd1\xff\xcf\xb2\xff\xef\xfc\xff\x6b\xd6\xff\x1f" "\xeb\x38\x3e\x9a\xda\xff\xef\x75\xfe\xff\x89\xb6\xe7\x33\x1d\x97\xfa\xff" "\xfa\xff\x6b\x40\xff\xbf\x3f\xfd\xff\x1a\xfa\xff\xfa\xff\xc3\xdc\xff\x0f" "\x47\xf3\x72\xdf\xe2\xeb\xff\x33\x8c\x86\xad\xff\x1f\x73\xff\xfb\xc3\x4c" "\x9a\x90\xff\x01\x00\x00\x80\x52\xcc\xfd\xbf\x12\x66\x22\xff\x03\x00\x00" "\x40\x63\xc4\xdc\xff\xab\x61\x26\xf2\x3f\x00\x00\x00\x34\x46\xcc\xfd\xbf" "\x16\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\x77\xfe\xff\xab\xd1\xff\x77" "\xfe\xff\xa5\xf4\xff\xd7\x86\xfe\x7f\x7f\xfa\xff\x35\xf4\xff\xf5\xff\x87" "\xb9\xff\x5f\x43\xff\x9f\x61\x34\x6c\xfd\xff\x98\xfb\x7f\x3d\xcc\x24\x93" "\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x03\x61\x26\xf2\x3f\x00\x00\x00\x34" "\x46\xcc\xfd\x07\xc3\x4c\xe4\x7f\x00\x00\x00\x68\x8c\x98\xfb\x1f\x0d\x33" "\xc9\x24\xff\xeb\xff\x77\xf7\xff\xe3\x19\x55\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xd7\xa3\xc1\xf5\xff\x5f\x76\x7d\x51\xe8\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xb3\x1a\xc3\xd6\xff\x8f\xb9\xff\x50\x98\x49\x26" "\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x6f\x84\x99\xc8\xff\x00\x00\x00\xd0" "\x18\x31\xf7\x1f\x0e\x33\x91\xff\x01\x00\x00\xa0\x31\x62\xee\x9f\x0d\x33" "\xc9\x24\xff\xeb\xff\x3b\xff\xff\xa0\xfa\xff\x3f\xd5\xff\xd7\xff\x0f\xf4" "\xff\x7b\xd3\xff\x5f\x1b\xce\xff\xdf\x9f\xfe\x7f\x0d\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\x06\x6a\xd8\xfa\xff\x31\xf7\xcf\x85\x99\x64\x92\xff\x01\x00" "\x00\xa0\xc1\xd2\x8f\x83\x63\xee\x3f\x12\x66\x22\xff\x03\x00\x00\x40\x63" "\xc4\xdc\x7f\x34\xcc\x44\xfe\x07\x00\x00\x80\xc6\x88\xb9\xff\x83\x61\x26" "\x99\xe4\x7f\xfd\x7f\xfd\x7f\xe7\xff\xbf\x16\xfd\xff\xb1\x8e\xe5\xf5\xff" "\x2b\xfa\xff\xfa\xff\x83\xa0\xff\xdf\x9f\xfe\x7f\x0d\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\x06\x6a\xd8\xfa\xff\x31\xf7\xcf\x87\x99\x64\x92\xff\x01\x00" "\x00\x20\x07\x31\xf7\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xc6\x88\xb9\xff" "\xc3\x61\x26\xf2\x3f\x00\x00\x00\x34\x46\xcc\xfd\xc7\xc2\x4c\x32\xc9\xff" "\x0d\xef\xff\x8f\x2e\xb7\x98\xfe\xbf\xfe\x7f\xdb\x73\x77\xde\xf9\xff\xf5" "\xff\x7b\xad\x5f\xff\x7f\x7d\xd2\xff\xef\x4f\xff\xbf\x86\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x3f\x03\x35\x6c\xfd\xff\x98\xfb\x8f\x87\x99\x64\x92\xff\x01" "\x00\x00\x20\x07\x31\xf7\x9f\x08\x33\x91\xff\x01\x00\x00\xa0\x31\x62\xee" "\x3f\x19\x66\x22\xff\xf3\xff\xec\xdd\x47\x93\x1d\x77\xd5\xc7\xf1\xfb\xf8" "\x91\x2d\x69\x05\x2f\x81\x35\x2b\x96\xb0\xe2\x2d\xb0\x65\x47\x15\x6b\xaa" "\x08\x26\x07\x63\x72\x06\x93\x73\x30\x39\xe7\x9c\x4c\xce\x39\x67\x93\x73" "\x34\xd1\x50\x25\x8a\xd1\x39\xc7\x23\xcd\x55\xb7\xe4\xb9\x9a\xe9\xfe\x9f" "\xcf\x67\x73\x90\x0a\xb9\xaf\xa4\x41\xd4\xcf\xaa\x6f\x35\x00\x00\x00\xc3" "\xc8\xdd\x7f\xcf\xb8\xa5\xc9\xfe\x1f\xbc\xff\xbf\x20\xfd\xbf\xfe\x7f\xff" "\xaf\x97\xfe\x5f\xff\xbf\xed\xf9\xfa\xff\x75\x3a\xd0\xdf\x9f\xb8\xb4\x1f" "\x7f\xc1\xfe\xff\x0e\x77\xbc\xfa\x6e\xfa\x7f\xfd\xbf\xfe\x7f\x92\xfe\x5f" "\xff\xaf\xff\xe7\x7c\x4b\xeb\xff\x73\xf7\xdf\x2b\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\xf7\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xfb" "\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xd5\x71\x4b\x93\xfd\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xe7\xf4\xff\x37\xe8\xff\xf5\xff\xeb\xe6\xfd\xff" "\xd3\xf4\xff\x33\x76\xd3\xff\xff\xff\x46\xff\xaf\xff\xd7\xff\xeb\xff\xd9" "\xb3\xb4\xfe\x3f\x77\xff\x7d\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\x7f\xbf\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x7f\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x3f\x20\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\xdf\xfb\xff\xb7\x3f\x5f\xff\xbf\x4e\xfa\xff\x69\xfa\xff\x19\xde\xff" "\xaf\xff\xd7\xff\xeb\xff\xd9\xa9\xa5\xf5\xff\xb9\xfb\x1f\x18\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\x07\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\x83\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x21\x71\x4b\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xcf\xd7\xff\xaf\xd3\xf5" "\x9b\x5b\xfe\x4c\xd0\xff\x1f\xa4\xff\x9f\x31\xd3\xff\x6f\x36\xfa\xff\x29" "\x17\xdd\xcf\x6f\xff\xe9\xad\xe7\xf3\x5f\x80\xfe\x5f\xff\xcf\x41\x4b\xeb" "\xff\x73\xf7\x3f\x34\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x0f\x8b" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x6b\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\xe1\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\xff\xed\xcf\xd7\xff\xaf\x93\xf7\xff\x4f\x3b\x7c\xff\x7f\xfb\xdb\xde\xe3" "\xee\x7d\xfb\x7f\xef\xff\x9f\xe6\xfd\xff\xfa\x7f\xfd\x3f\xe7\x5b\x5a\xff" "\x9f\xbb\xff\xda\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x22\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x19\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x8f\x8a\x5b\x9a\xec\x7f\xfd\x7f\x9b\xfe\x7f\xaf\x76\xd1\xff" "\xeb\xff\xf5\xff\xfa\xff\xd1\xe9\xff\xa7\x79\xff\xff\x8c\xbd\x3f\xe6\x4e" "\xd7\x37\xf5\xff\xfa\x7f\xfd\xbf\xfe\x9f\xc3\x59\x5a\xff\x9f\xbb\xff\xd1" "\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x4c\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\x3f\x36\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f" "\x17\xb7\x34\xd9\xff\xfa\xff\x36\xfd\xbf\xf7\xff\xeb\xff\xf5\xff\xfa\xff" "\x16\xf4\xff\xd3\xf4\xff\x33\x46\x79\xff\xff\xad\xfc\xaa\x39\xee\x7e\xfe" "\xb0\x8e\xfb\xf3\xeb\xff\xf5\xff\x1c\xb4\xb4\xfe\x3f\x77\xff\xe3\xe3\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x84\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\x7f\x62\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x29\x6e" "\x69\xb2\xff\xf5\xff\xfa\xff\x75\xf4\xff\xf9\x04\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x9f\xa6\xff\x9f\xa6\xff\x9f\x31\x4a\xff\x7f\x2b\x1d\x77\x3f\xbf\xf6" "\xcf\xaf\xff\xd7\xff\x73\xd0\xd2\xfa\xff\xdc\xfd\x4f\x8e\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\x53\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\xa9\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb4\xb8\xa5\xc9\xfe" "\xd7\xff\xeb\xff\xd7\xd1\xff\x7b\xff\xbf\xfe\x5f\xff\xaf\xff\xbf\x38\xfa" "\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4e\x2d\xad\xff\xcf" "\xdd\x7f\x5d\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x9f\x1e\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\xcf\x88\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x67\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7" "\x3f\x5f\xff\xbf\x4e\xfa\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xcf\x4e\x2d\xa8\xff\xdf\xf7\xa3\x4e\x6d\x9e\x15\xb7\x34\xd9\xff\x00\x00" "\x00\xd0\x41\xee\xfe\x67\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x73" "\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xb9\x71\x4b\x93\xfd\xaf\xff" "\x5f\x4c\xff\xbf\x97\xf3\x0d\xd0\xff\xef\x6b\x5d\x4f\x6f\x36\x1b\xfd\xff" "\xa6\x69\xff\x7f\x7a\xdf\xef\x67\xd2\xff\xeb\xff\x8f\x82\xfe\x7f\x9a\xfe" "\x7f\x86\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x53\x0b\xea\xff\xf7\xbe\x9d\xbb" "\xff\x79\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x7e\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xbf\x20\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x5f\x18\xb7\x34\xd9\xff\xfa\xff\xc5\xf4\xff\x7b\x06\xe8\xff\xbd\xff" "\x5f\xff\xef\xfd\xff\x17\xa0\xff\x3f\x1a\xfa\xff\x69\xfa\xff\x19\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xcf\x4e\x2d\xad\xff\xcf\xdd\xff\xa2\xb8\xe9\xaa\x2b" "\x6f\xf5\x4f\x11\x00\x00\x00\x58\x98\xdc\xfd\x2f\x8e\x5b\x9a\xfc\xfd\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x25\x71\x8b\xfd\x0f\x00\x00\x00\x2b\x75\xdd" "\x81\xef\xc9\xdd\xff\xd2\xb8\xa5\xc9\xfe\xd7\xff\xef\xb6\xff\xbf\x6a\xdf" "\xf7\xe9\xff\xf5\xff\xe7\x7f\x7d\xe8\xff\xf5\xff\xfa\xff\xcb\x4f\xff\x3f" "\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa9\xa5\xf5\xff\xb9\xfb" "\x5f\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xeb\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\xe5\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\x8a\xb8\xa5\xc9\xfe\xd7\xff\x7b\xff\xbf\xfe\x5f\xff\xaf\xff\xdf\xfe" "\x7c\xfd\xff\x3a\xe9\xff\xa7\xe9\xff\x67\xe8\xff\xf5\xff\xc7\xdb\xff\x9f" "\xbc\xe5\x3f\xea\xff\x19\xc3\x25\xf4\xff\x67\xce\x9c\xb9\xe6\xb2\xf7\xff" "\xb9\xfb\x5f\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x57\xc5\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xab\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x35\x71\x4b\x93\xfd\xaf\xff\x6f\xda\xff\xe7\x97\xba\xfe\x7f" "\x8f\xfe\x5f\xff\xbf\xed\xf9\xfa\xff\x75\xd2\xff\x4f\xd3\xff\xcf\xd0\xff" "\xeb\xff\xbd\xff\x5f\xff\xcf\x4e\x2d\xed\xfd\xff\xb9\xfb\x5f\x1b\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xd7\xc5\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\xeb\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x0d\x71\x4b" "\x93\xfd\xaf\xff\x6f\xda\xff\x7b\xff\xbf\xfe\x5f\xff\x7f\xd4\xfd\xff\xcd" "\x1b\xfd\xff\x91\x58\x45\xff\x7f\xfa\xc2\xcf\x5f\x7a\xff\x7f\xad\xfe\x5f" "\xff\x3f\xa1\x5d\xff\x7f\x97\x3b\x9d\xf3\x4d\xfd\xbf\xfe\x9f\x83\x96\xd6" "\xff\xe7\xee\x7f\x63\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x14" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\xb7\xc4\x4d\x27\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x6f\x7f\xfe\x11\xbf\xff\xff\xaa\xcd\x66\xa3\xff\xdf\x81\x55\xf4" "\xff\x13\x96\xde\xff\x7b\xff\xbf\xfe\x7f\x4a\xbb\xfe\xff\x3c\xfa\x7f\xfd" "\x3f\x07\x2d\xad\xff\xcf\xdd\xff\xd6\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\xbf\x2d\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x1e\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\xef\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x1f\xbe\xff\xbf\x76\x15\xfd\xbf\xf7\xff\xef\x88\xfe\x7f\x9a" "\xfe\x7f\x86\xfe\x5f\xff\xaf\xff\xd7\xff\x73\x24\x8e\xab\xff\xcf\xdd\xff" "\xce\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x2b\x6e\xb1\xff\x01" "\x00\x00\x60\x18\xb9\xfb\xdf\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd" "\xef\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\xb9\xb8\xfe\xff" "\xd4\x39\xff\xbc\x26\xef\xff\xd7\xff\xef\xc8\xe0\xfd\xff\x89\x4b\xfd\xe7" "\x9d\x6f\x89\xfd\xff\xfe\x3f\x43\xf4\xff\xfa\xff\x35\x7f\xfe\x41\xfa\xff" "\xeb\xf4\xff\xec\xd2\xd2\xde\xff\x9f\xbb\xff\xbd\x71\x4b\x93\xfd\x0f\x00" "\x00\x00\x1d\xe4\xee\x7f\x5f\xdc\xfa\x57\xb7\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xfb\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x03\x71\x4b\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xc3\xbf\xff\x5f\xff\xdf\xca\xe0\xfd" "\xff\xa1\x2d\xb1\xff\xdf\x4f\xff\xaf\xff\x5f\xf3\xe7\x1f\xa4\xff\xf7\xfe" "\x7f\x76\x6a\x69\xfd\x7f\xee\xfe\x0f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x43\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe1\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x21\x6e\x69\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x7f\xf6\xf7\x50\xff\x3f\x06\xfd\xff\xb4\xa3\xe9\xff" "\x4f\xeb\xff\xf5\xff\xd5\xcf\xff\x5f\xfc\xaf\x40\xff\xaf\xff\x9f\xfb\xf1" "\x8c\x69\x69\xfd\x7f\xee\xfe\x8f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90" "\xbb\xff\xa3\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb1\xb8\xc5\xfe" "\x07\x00\x00\x80\x55\x3a\xb1\xe5\xfb\x72\xf7\x7f\x3c\x6e\x69\xb2\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfd\xf9\xfa\xff\x75\xd2\xff\x4f\xf3" "\xfe\xff\x19\xfa\xff\x4b\xec\xe7\x6f\x77\xce\xb7\xd6\xf6\xfe\xff\xf3\xff" "\xff\x4b\xff\xaf\xff\x67\xf7\x96\xd6\xff\xe7\xee\xff\x44\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x3f\x19\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x9f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x4f\xc7\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\x3f\x5f\xff\xbf\x4e\xfa\xff" "\x69\xfa\xff\x19\xfa\xff\x63\x7d\x7f\xfe\xda\x3f\xbf\xfe\x5f\xff\xcf\x41" "\x4b\xeb\xff\x73\xf7\x7f\x26\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\x9f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xcf\xc5\x2d\xf6\x3f\x00" "\x00\x00\x0c\x63\x6f\xf7\x67\x5c\xd6\x70\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\xfb\xf3\xf5\xff\xeb\xa4\xff\x9f\xa6\xff\x9f\xa1\xff\xd7\xff" "\xeb\xff\xf5\xff\xec\xd4\xd2\xfa\xff\xcf\xef\xfd\xa8\x53\x9b\x2f\xc4\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x8b\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xa5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x72\xdc" "\xd2\x64\xff\xeb\xff\xf5\xff\xeb\xe8\xff\xcf\x9c\x39\x73\x8d\xfe\x5f\xff" "\x7f\xee\xcf\xe7\x96\xfe\xff\x46\xfd\x3f\x45\xff\x3f\x4d\xff\x3f\x43\xff" "\xaf\xff\xd7\xff\xeb\xff\xd9\xa9\xa5\xf5\xff\xb9\xfb\xbf\x12\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\xaf\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xd7\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xeb\x71\x4b\x93" "\xfd\xaf\xff\x5f\x40\xff\x7f\x4a\xff\xef\xfd\xff\xfa\xff\x8d\xf7\xff\xeb" "\xff\x77\x44\xff\x3f\x4d\xff\x3f\x63\xc4\xfe\xff\xd4\xc5\xff\xf4\x8f\xbb" "\x9f\x3f\xac\xe3\xfe\xfc\xfa\x7f\xfd\x3f\x07\x2d\xad\xff\xcf\xdd\xff\x8d" "\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x33\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\xbf\x15\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xdf" "\x8e\x5b\x9a\xec\x7f\xfd\xff\xd1\xf5\xff\xff\xfb\xb5\xeb\xf2\xfe\xff\xd3" "\x9b\xed\x9f\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x2f\x37\xfd\xff\x34\xfd\xff" "\x8c\x11\xfb\xff\x4b\x70\xdc\xfd\xfc\xda\x3f\xbf\xfe\x5f\xff\xcf\x41\x4b" "\xeb\xff\x73\xf7\x7f\x27\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xdf" "\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xef\xc5\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\xf7\xe3\x96\x26\xfb\x5f\xff\xbf\x80\xf7\xff\x0f\xd8" "\xff\x7b\xff\xff\xf6\xaf\x0f\xfd\xff\xa2\xfb\xff\x2b\xf4\xff\x63\xd0\xff" "\x4f\xd3\xff\xcf\xd0\xff\xeb\xff\xf5\xff\x3b\xea\xff\xf3\xab\x59\xff\xdf" "\xdd\xd2\xfa\xff\xdc\xfd\x3f\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x0f\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x47\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\x7f\x63\xdc\xb2\x6f\xff\x6f\x6b\xbb\x47\xa1\xff" "\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xed\xcf\xd7\xff\xaf\x93\xfe\x7f\xda\xc5" "\xf6\xff\x27\x37\x87\xeb\xff\x93\xfe\x5f\xff\xaf\xff\xef\xda\xff\x7b\xff" "\x3f\x67\x2d\xad\xff\xcf\xdd\xff\xe3\xb8\xc5\xdf\xff\x03\x00\x00\xc0\xea" "\x5c\x79\x81\xef\xcf\xdd\xff\x93\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\xff\x69\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x2c\x6e\xb9\xe9\x8a" "\xe3\xfa\x48\x47\x4a\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\x9f\xaf\xff" "\x5f\x27\xfd\xff\x34\xef\xff\x9f\xa1\xff\xdf\x45\x3f\x7f\x67\xfd\xff\x18" "\xfd\xff\x66\xa3\xff\xe7\xf0\x96\xd6\xff\xe7\xee\xff\x79\xdc\xe2\xef\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x7f\x11\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xbf\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x5f\xc5\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\x7f\xc8\xfe\x7f\x2f\xcd\xd4\xff\x9f\xa5\xff\x3f\x4b\xff" "\xbf\x9d\xfe\xff\x68\xe8\xff\xa7\xe9\xff\x67\xe8\xff\xbd\xff\x5f\xff\xef" "\xfd\xff\xec\xd4\xd2\xfa\xff\xdc\xfd\xbf\x8e\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x6f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xb7\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xbb\xb8\xa5\xc9\xfe\x3f\xb6\xfe" "\x3f\x7e\xa9\xf5\xff\xab\xef\xff\xbd\xff\x5f\xff\xaf\xff\xd7\xff\x2f\x8a" "\xfe\x7f\x9a\xfe\x7f\x86\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x53\x4b\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\x18\x46\xee\xfe\x3f\xc6\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\x9f\xe2\x96\x26\xfb\xdf\xfb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xfb\xf3\xf5\xff\xeb\xa4\xff\x9f\xa6\xff\xdf\xae\x7e\xa3\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x9f\x9d\x5a\x5a\xff\x9f\xbb\xff\xcf\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xff\x4b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\xdf\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x7f\x8d\x5b\x9a\xec\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x7f\xbe\xfe\x7f\x9d\xf4\xff\xd3" "\x8e\xb3\xff\xbf\xeb\x6d\xe6\x1f\xeb\xfd\xff\xc7\xde\xff\xe7\x47\xd0\xff" "\xeb\xff\xf5\xff\xec\xc4\xd2\xfa\xff\xdc\xfd\x7f\x8b\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\xdf\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\x1f\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xcf\xb8\xa5\xc9\xfe\x9f" "\xe9\xff\x4f\xd6\x7f\x51\xff\x3f\x49\xff\x7f\xee\xe7\xd7\xff\x6f\xff\xfa" "\xd0\xff\xeb\xff\xf5\xff\x97\x9f\xfe\x7f\x9a\xf7\xff\xcf\xd0\xff\x7b\xff" "\xbf\xfe\x5f\xff\xcf\x4e\x2d\xad\xff\xcf\xdd\xff\xaf\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\xdf\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd" "\xff\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xff\xc4\x2d\x4d\xf6\xbf" "\xf7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xe7\xeb\xff\xd7\x49\xff\x3f" "\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa9\xa5\xf5\xff\xb9\xfb" "\xff\x1b\x00\x00\xff\xff\x35\x65\x5f\x03", 24850); syz_mount_image( /*fs=*/0x200000000080, /*dir=*/0x2000000001c0, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_DIRSYNC*/ 0x2010880, /*opts=*/0x200000002f00, /*chdir=*/1, /*size=*/0x6112, /*img=*/0x200000002fc0); // open arguments: [ // file: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: open_flags = 0x0 (8 bytes) // mode: open_mode = 0x0 (8 bytes) // ] // returns fd memcpy((void*)0x200000000000, ".\000", 2); res = syscall(__NR_open, /*file=*/0x200000000000ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[2] = res; // mkdirat arguments: [ // fd: fd_dir (resource) // path: 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) // } // mode: open_mode = 0x0 (8 bytes) // ] memcpy((void*)0x200000000200, "\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); syscall(__NR_mkdirat, /*fd=*/r[2], /*path=*/0x200000000200ul, /*mode=*/0ul); return 0; }