// https://syzkaller.appspot.com/bug?id=5fe15ed0436495eb85f1bbbbc2474705702f1670 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } uint64_t r[1] = {0xffffffffffffffff}; int main(void) { syscall(__NR_mmap, /*addr=*/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; install_segv_handler(); intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$ocfs2 arguments: [ // fs: ptr[in, buffer] { // buffer: {6f 63 66 73 32 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x20008c0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {61 63 6c 2c 68 65 61 72 74 62 65 61 74 3d 6e 6f // 6e 65 2c 65 72 72 6f 72 73 3d 72 65 6d 6f 75 6e 74 2d 72 6f 2c 63 // 6f 68 65 72 65 6e 63 79 3d 66 75 6c 6c 2c 63 6f 68 65 72 65 6e 63 // 79 3d 66 75 6c 6c 2c 6c 6f 63 61 6c 66 6c 6f 63 6b 73 2c 69 6e 74 // 72 2c 6e 6f 61 63 6c 2c 00 59 8f 2f 22 3a 0a 12 f7 64 04 ad 3b d5 // 9a 04 fb d7 5d 10 08 c0 39 c5 1a 2a 01 3e 63 af 1c 9e d7 41 6f aa // 1e 2e a9 8d 0f 1c 73 37 a5 c8 19 20 98 8a 42 99 a7 70 54 cd b1 22 // 85 fd 7a 0e 5b 43 38 2d 96 23 72 b7 30 42 59 3a 5b d6 b7 db 4a 1b // 37 21 c6 2f 11 01 87 27 c2 9f 3a 1b d1 e5 54 47 4e a0 d1 da 2a 20 // b2 05 df 34 2a 04 a3 4b 65 e1 6a 23 e8 e7 81 1a 98 49 63 07 3e bc // be ad 85 f9 e4 33 2b de f4 c1 ce 54 a1 c6 f7 a4 7b 75 aa 95 b9 e8 // cb 61 6b e4 0a 00 00 b1 30 9e e4 26 d1 80 3e f0 9a bb 95 09 84 6c // 34 b9 ac 0b f1 09 ce db d1 2c 85 0e ff da 9a e6 77 56 61 59 f9 c8 // 3d a7 ff 6e 24 7e 3a c4 3c 0a 66 3c 8c 83 65 06 92 e4 74 ba c2 c0 // 47 b2 38 60 1b d5 18 7d 6b ed 82 fe 20 34 51 2e f1 1b 74 a9 82 52 // 19 8c 44 02 bc f3 16 55 61 15 76 78 e9 d5 08 31 c2 7d 10 94 a0 4d // 8c 76 07 d7 16 40 33 cd a7 a8 17 04 82} (length 0x167) // } // } // } // chdir: int8 = 0x3 (1 bytes) // size: len = 0x4463 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x4463) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000004440, "ocfs2\000", 6)); NONFAILING(memcpy((void*)0x200000000040, "./file1\000", 8)); NONFAILING(memcpy( (void*)0x200000000180, "\x61\x63\x6c\x2c\x68\x65\x61\x72\x74\x62\x65\x61\x74\x3d\x6e\x6f\x6e\x65" "\x2c\x65\x72\x72\x6f\x72\x73\x3d\x72\x65\x6d\x6f\x75\x6e\x74\x2d\x72\x6f" "\x2c\x63\x6f\x68\x65\x72\x65\x6e\x63\x79\x3d\x66\x75\x6c\x6c\x2c\x63\x6f" "\x68\x65\x72\x65\x6e\x63\x79\x3d\x66\x75\x6c\x6c\x2c\x6c\x6f\x63\x61\x6c" "\x66\x6c\x6f\x63\x6b\x73\x2c\x69\x6e\x74\x72\x2c\x6e\x6f\x61\x63\x6c\x2c" "\x00\x59\x8f\x2f\x22\x3a\x0a\x12\xf7\x64\x04\xad\x3b\xd5\x9a\x04\xfb\xd7" "\x5d\x10\x08\xc0\x39\xc5\x1a\x2a\x01\x3e\x63\xaf\x1c\x9e\xd7\x41\x6f\xaa" "\x1e\x2e\xa9\x8d\x0f\x1c\x73\x37\xa5\xc8\x19\x20\x98\x8a\x42\x99\xa7\x70" "\x54\xcd\xb1\x22\x85\xfd\x7a\x0e\x5b\x43\x38\x2d\x96\x23\x72\xb7\x30\x42" "\x59\x3a\x5b\xd6\xb7\xdb\x4a\x1b\x37\x21\xc6\x2f\x11\x01\x87\x27\xc2\x9f" "\x3a\x1b\xd1\xe5\x54\x47\x4e\xa0\xd1\xda\x2a\x20\xb2\x05\xdf\x34\x2a\x04" "\xa3\x4b\x65\xe1\x6a\x23\xe8\xe7\x81\x1a\x98\x49\x63\x07\x3e\xbc\xbe\xad" "\x85\xf9\xe4\x33\x2b\xde\xf4\xc1\xce\x54\xa1\xc6\xf7\xa4\x7b\x75\xaa\x95" "\xb9\xe8\xcb\x61\x6b\xe4\x0a\x00\x00\xb1\x30\x9e\xe4\x26\xd1\x80\x3e\xf0" "\x9a\xbb\x95\x09\x84\x6c\x34\xb9\xac\x0b\xf1\x09\xce\xdb\xd1\x2c\x85\x0e" "\xff\xda\x9a\xe6\x77\x56\x61\x59\xf9\xc8\x3d\xa7\xff\x6e\x24\x7e\x3a\xc4" "\x3c\x0a\x66\x3c\x8c\x83\x65\x06\x92\xe4\x74\xba\xc2\xc0\x47\xb2\x38\x60" "\x1b\xd5\x18\x7d\x6b\xed\x82\xfe\x20\x34\x51\x2e\xf1\x1b\x74\xa9\x82\x52" "\x19\x8c\x44\x02\xbc\xf3\x16\x55\x61\x15\x76\x78\xe9\xd5\x08\x31\xc2\x7d" "\x10\x94\xa0\x4d\x8c\x76\x07\xd7\x16\x40\x33\xcd\xa7\xa8\x17\x04\x82", 359)); NONFAILING(memcpy( (void*)0x200000004480, "\x78\x9c\xec\xdd\xcf\x6f\x13\xd9\x1d\x00\xf0\x37\x93\x00\x09\xe5\x47\x42" "\xa9\x44\xa5\x4a\xb5\x54\xa4\x56\x6d\x15\x25\x9c\xda\x06\xa9\x21\x04\x42" "\x02\x29\x15\x2d\xa8\xea\xc5\x38\x89\x81\xb4\x4e\x8c\x12\xa7\xea\x81\x43" "\x7a\x43\xea\xa9\x52\x0f\x55\x0f\x88\x4a\xbd\xe5\x84\x38\xec\x95\xfd\x13" "\xf6\xb2\x47\xf6\xb4\xd2\x22\xed\x1e\x76\x0f\x2b\xad\xc4\x6e\x56\xb6\xc7" "\x89\x67\x62\x6f\x0c\xb2\x93\x65\xf9\x7c\x0e\x19\xcf\xfb\x35\xdf\xf8\x3b" "\xf3\xf2\x1c\x69\x3c\x71\xa2\x72\x6f\x69\x2d\xb7\xb4\x96\x2b\xac\xe4\xca" "\x0b\x77\xd6\xce\xe5\xfe\x56\x2e\xad\x2f\x17\x43\xbc\x4f\x5a\x1e\xff\xd0" "\xfe\x1d\x9f\xce\xf4\xe2\x3c\x39\xe8\x73\xef\x6d\x76\xfd\xe2\xe5\x3f\xdc" "\x3a\x17\xc2\xbb\x8b\xef\xbf\xd8\xda\xda\xda\x0a\x55\xfd\xa1\xa5\xb1\xa6" "\xd7\x9f\x7f\xfa\x60\x61\x67\x7b\x64\xbb\x3c\xce\xf4\xa9\x8e\xdb\x7a\xb4" "\x6e\xf9\x73\x08\xe1\xf4\xae\xb8\xaa\xfa\x42\x08\x7f\x7a\x27\x84\x28\x84" "\x70\x21\x29\x9b\x4c\xb6\x83\x21\x84\xe3\xa1\x5e\x77\xeb\xc1\x3f\x6f\xe7" "\xba\x14\xcd\x93\xe7\xc5\xf3\xf9\x97\x73\x0f\x9f\x8e\x9f\x9d\xdd\x7c\xf4" "\xb4\xfe\xbb\x9f\x6d\xd1\x30\x0a\xe1\xbf\xa5\x1f\xfe\xf2\xee\xf2\xc7\x3f" "\xe9\x1b\xff\xe0\xe7\x5d\x3a\x3c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x6f\xb8\xe9\x1b\xd7\x6f\xfe\x7e\x74\x2c\x3c\x8b\x42\xff" "\x66\xb4\xfb\x7e\xdd\xe9\x64\xdb\xee\xfe\xd8\xad\xae\xf9\x71\xef\x7f\x59" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x96\xda" "\xb9\xff\x3f\x17\x9d\x6a\x71\xff\xff\x54\xb2\x9d\x68\xd3\x7f\xeb\xb7\xbd" "\x8f\x91\xde\x99\xf9\xdd\xf5\xa9\x4b\xa3\x63\xc9\xf3\xdf\xa3\x5d\xf5\xbf" "\x4a\x8a\x3e\xb9\xd0\x17\x86\x77\x3d\xf7\x3d\xfd\xbc\xf5\xd0\xf4\x9c\xf5" "\x86\x96\xcf\x7f\x9f\xfd\xa8\x6b\xf1\x37\xe2\x6b\x1c\x77\x28\xce\xec\x87" "\x38\x1e\x19\x09\xe1\x7f\xc9\x83\xdf\xcf\x44\x47\xe3\x52\x79\xad\xf2\x8b" "\x3b\xe5\xf5\x95\xc5\xae\x85\xf1\xc6\x4a\xe7\xbf\xfe\xe6\xa5\xce\x82\xe4" "\xfd\xec\x34\xff\x93\x99\xf1\x7b\xff\xfc\xff\xef\x87\xec\x59\x5b\xdd\xbf" "\xbd\xfb\x54\xa6\x85\x74\xfe\xfb\xda\xb6\xfb\xff\x3f\xa2\x8e\xf2\x7f\x31" "\xd3\x6f\x3f\xf2\xcf\xeb\x4b\xe7\xbf\xbf\x56\x36\xd8\xdc\x60\xa2\x3e\x01" "\x54\xf3\xff\xaf\xfe\xbd\xf3\x3f\x95\x19\xbf\x57\xf9\x3f\x11\x42\xc8\x45" "\xd5\x58\x73\xa9\x19\xa0\xba\x86\xa9\x96\xb7\x5b\xaf\x90\x96\xce\xff\xa1" "\x5a\x59\x6a\xea\x4c\xde\xc8\x76\xd7\xff\x17\x99\xfc\x5f\xca\x8c\x7f\x50" "\xf3\xff\x46\xf6\x0f\x11\x2d\xa5\xf3\x7f\xb8\x56\x36\x90\x6a\xb1\x73\xfd" "\x0f\xc7\x7b\x5f\xff\x97\x33\xe3\x1f\x44\xfe\xab\xf1\x6f\xf8\xfb\xdf\x91" "\x74\xfe\x8f\xd4\x0b\xfb\x53\x4d\x6a\xef\x64\xa7\xf3\xff\x74\x66\xfc\xae" "\xe5\xff\x70\x7a\xf7\x66\xfc\x59\xfd\xc5\x89\x28\x75\x06\x6c\x46\xf5\xf8" "\xdb\x7d\x5f\x1d\x69\xe9\xfc\x0f\xec\xaa\xdf\xf9\xfc\xf7\x65\xf2\x3d\x7d" "\xdf\x9c\xff\x2b\x99\xfe\xad\xf3\xdf\xbd\x8b\xb3\x11\x5f\xe3\xb8\x43\x21" "\x8a\x47\x9a\x3e\x87\xfc\x2c\xaa\x7f\xfe\xa3\xb5\x74\xfe\x07\xdb\xb6\xeb" "\xf4\xfa\x9f\xc9\xf4\xeb\xf5\xfc\x3f\x51\x5b\xff\x75\xf5\x94\x7a\xab\xa4" "\xf3\x7f\xb4\x56\x96\x5e\x3b\x0f\xd5\x7e\x76\x9a\xff\xd9\xcc\xf8\xd9\xfc" "\x7f\xf8\xbd\xee\xc4\x5d\x5b\x95\x0c\x34\xf2\xbf\x93\xfc\xaf\x8e\xd4\xcb" "\x1f\x5b\xff\x75\x24\x9d\xff\x24\x39\x71\x73\x8b\x8d\xda\xcf\xda\xfa\x2f" "\xda\x7b\xfd\x7f\x35\x33\xfe\x41\xac\xff\xaa\xf1\x6f\xc4\xbd\x3d\xea\x77" "\x45\x3a\xff\xc7\xb2\xd5\x3f\x18\x4f\x5e\x54\xf3\xff\x5e\x9b\xff\xff\x6c" "\x9d\xdc\xe9\x70\x2d\x33\x40\xef\xf3\x1f\xc2\xa8\xb9\xff\xb5\xa5\xf3\x7f" "\x7c\xbb\x3c\xb3\xdc\xae\x5f\xff\x03\x7b\xcf\xff\x73\x99\x7e\xbd\xce\xff" "\x4f\x7b\x39\x38\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\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\x1b\x60\x32\xd9" "\x0e\x85\x28\x1e\x49\xed\xc7\xf1\xc8\x48\x08\x17\x93\xfd\x33\xe1\x68\x34" "\x5f\x58\xcc\xcf\x97\xca\x0b\x7f\x5d\x0b\x61\x2a\x29\xcf\x85\x53\xd1\xdd" "\x52\x79\xbe\x50\xca\x2f\xad\x94\x17\x8b\xf9\x42\xa9\x54\x5e\x08\xe1\x52" "\x52\x7f\x3a\x0c\x44\x6b\xa5\x72\x25\xbf\x5c\xb8\x7f\x79\x7b\xac\xc1\xe8" "\x5e\xb1\xb0\x5a\x99\x2f\x16\x2a\x21\x84\xe9\xa4\xfc\x47\xe1\x78\x63\xac" "\xf9\xa5\xca\x72\xe1\x7e\x08\xe1\xca\x76\xdd\xc9\xb8\xbc\x7a\xff\x5e\x61" "\x25\xbf\xb8\xb4\xfa\x9b\xd1\xd1\xd1\xd1\x30\xb3\x1d\xc3\x70\x54\xfc\x7b" "\xa5\xb8\x52\xa9\x1f\xbd\x5e\x1b\xc2\xec\x76\xdf\xa1\xa8\x29\xb8\x5a\xf5" "\xd5\xed\x58\x8e\x45\x7f\x29\xaf\xaf\xae\x14\x4a\xb5\xf2\x6b\x4d\x7d\x4a" "\xe5\x85\x42\xa9\xa9\xcf\x5c\x52\xf7\xef\x30\x1c\x55\x56\xd7\x57\x16\x0a" "\x95\x62\xbe\x54\xbe\xdb\x38\x5e\x4d\xd4\xbd\xdc\xbc\x8a\x89\x64\x3b\x35" "\x73\xe3\x8f\x37\xae\x8d\xed\xaa\xbf\x9d\xc4\x35\xb9\xbf\x61\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\xf0\x8a\x9e\x8d\xff" "\xfa\x3f\x21\x84\xfe\xfa\x5e\x1c\x42\x98\x68\xbc\x88\x5a\xb5\x7f\xf2\xbc" "\x78\x3e\xff\x72\xee\xe1\xd3\xf1\xb3\xb3\x9b\x8f\x1e\xbf\x68\xd7\x0e\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbe\x66\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\xbb\x74\x8c\x12\x41\x10\x44\x01\xf4\x77\x1b\xec\x9a\x79\x0c\xa3" "\x61\x37\x33\x5d\x51\x44\x03\x57\x04\x4f\xa0\xc7\xf0\x30\x7a\x14\x2f\xe1" "\x1d\x14\x0c\x4c\x0d\x44\x94\xee\x64\x67\x06\x4c\x34\x7a\x2f\x29\x98\xcf" "\x54\x15\x74\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\xbf\x73\x76\xbd\xbd\xb9\x5a\xad\x93\x92\xe5\xe7\x22\x79" "\xba\x7b\x7e\x49\x52\x7b\x7e\xd1\xea\xc3\xf1\xf4\xff\x7b\xff\xb4\x27\x7f" "\xe3\xfc\x72\x7b\x72\xba\x5a\xb7\x77\x2f\xa3\xfc\xa8\x7d\x7a\xdb\xd4\x9f" "\xf4\xe3\xfd\xfe\x36\x13\xb5\x7b\xdc\xb9\x93\xef\xbe\x8b\x51\xd7\x3e\x67" "\x7f\x76\xaf\xdd\x7b\x7b\x4d\xb2\x9c\x38\xb6\xbe\x5f\x9f\x7b\x90\x52\x87" "\x24\x9b\x96\x1f\x96\x5a\x87\x61\x76\x0c\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5f\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\x8e\x05\x00\x00\x00\x00\x84\xf9\x5b\x67\xd1\xb5\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\xcc\x0a\x00\x00\xff\xff\x09\x16\x2a\x6e", 17507)); NONFAILING(syz_mount_image( /*fs=*/0x200000004440, /*dir=*/0x200000000040, /*flags=MS_LAZYTIME|MS_NODIRATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x20008c0, /*opts=*/0x200000000180, /*chdir=*/3, /*size=*/0x4463, /*img=*/0x200000004480)); // setsockopt$SO_J1939_SEND_PRIO arguments: [ // fd: sock_can_j1939 (resource) // level: const = 0x6b (4 bytes) // opt: const = 0x3 (4 bytes) // val: ptr[in, int32] { // int32 = 0x2 (4 bytes) // } // len: bytesize = 0x4 (8 bytes) // ] NONFAILING(*(uint32_t*)0x200000000080 = 2); syscall(__NR_setsockopt, /*fd=*/(intptr_t)-1, /*level=*/0x6b, /*opt=*/3, /*val=*/0x200000000080ul, /*len=*/4ul); // quotactl$Q_QUOTAON arguments: [ // cmd: quota_cmd_quota_on = 0xffffffff80000201 (8 bytes) // special: ptr[in, blockdev_filename] { // union blockdev_filename { // loop: loop_filename { // prefix: buffer: {2f 64 65 76 2f 6c 6f 6f 70} (length 0x9) // id: proc = 0x0 (1 bytes) // z: const = 0x0 (1 bytes) // } // } // } // id: uid (resource) // addr: nil // ] NONFAILING(memcpy((void*)0x200000000180, "/dev/loop", 9)); NONFAILING(*(uint8_t*)0x200000000189 = 0x30); NONFAILING(*(uint8_t*)0x20000000018a = 0); syscall(__NR_quotactl, /*cmd=Q_QUOTAON_GRP*/ 0xffffffff80000201ul, /*special=*/0x200000000180ul, /*id=*/(intptr_t)-1, /*addr=*/0ul); // mprotect arguments: [ // addr: VMA[0x3000] // len: len = 0x3000 (8 bytes) // prot: mmap_prot = 0x9 (8 bytes) // ] syscall(__NR_mprotect, /*addr=*/0x200000000000ul, /*len=*/0x3000ul, /*prot=PROT_SEM|PROT_READ*/ 9ul); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {68 75 67 65 74 6c 62 2e 31 47 42 2e 75 73 61 67 65 5f 69 6e // 5f 62 79 74 65 73 00} (length 0x1b) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING( memcpy((void*)0x200000000180, "hugetlb.1GB.usage_in_bytes\000", 27)); res = syscall(__NR_openat, /*fd=*/(intptr_t)-1, /*file=*/0x200000000180ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; // write$UHID_INPUT arguments: [ // fd: fd_uhid (resource) // data: ptr[in, uhid_req[UHID_INPUT, uhid_input_req]] { // uhid_req[UHID_INPUT, uhid_input_req] { // type: const = 0x8 (4 bytes) // data: uhid_input_req { // data: buffer: {7d ca 77 9d fb 6b 1a fe 5a fd d8 1a f7 fc 43 80 f7 // 31 93 4c 82 bc 3b ff 08 f6 66 d1 52 3e b9 3b b0 cd 69 2b 00 30 5d // 65 bd 61 1e 46 c9 d8 cb ee 60 b8 71 56 9b b8 11 19 92 ff 0c f3 d4 // 47 4c aa 9d 38 98 de 9b 2d df be ee b5 19 4c 6f 9c 0c 78 a8 39 ac // 59 49 50 9b 15 46 65 fe 9e 94 de c8 16 97 f9 2a 06 5c c9 ab 0b 59 // 33 72 6a d8 6c 5c c4 ed f2 1a 14 df f1 f7 bc a3 cc 9d a4 64 6b e0 // bb 8e 9d 6d 02 2f 28 f8 cf 21 6d 23 ff 0d a8 a1 61 ed 5b 4f 44 cb // bc 3b f5 fa 2b cd 60 94 da 99 68 1c f8 5f 73 da 26 ba 87 73 f1 79 // 04 ec 82 1f f6 1c c0 55 d6 3e 37 1a 71 2a ab 04 1e 34 e8 20 e2 a8 // 69 ab db fd b3 7d 96 74 78 3e cb 6c 55 67 1f c5 30 25 f2 29 20 d1 // 7c 9d ef 7a 62 57 75 6f 6c bb 93 1c 48 bd 41 38 c0 72 a3 6d 7d 4e // c9 13 52 5a f7 aa 3b 8b 34 9b 8b f7 a1 86 fe ed 32 ae 60 1b b9 3b // b6 60 48 f0 cb 57 cd 79 21 00 92 05 44 d7 65 80 fb 7d 74 ff 6d 88 // 01 96 8d 19 8f e8 b7 df 30 1c f0 a2 51 8e f7 16 2f f9 cd 6f 5a 15 // 93 af 7a d0 41 2f 56 12 bf e9 42 3c be 99 bb 7b a0 23 63 a8 14 3b // 74 a1 68 27 03 b1 e2 35 cf 62 39 5c 2f ea 24 93 4f b8 6b ec 8e 43 // 86 5f 20 3a c2 ca 5e 7c 02 ef cf 6b 98 a4 f7 05 d8 db ff 19 4d e7 // 90 0e 31 99 e6 0c e4 8b 97 ae 92 68 06 e1 7d bd 3e f7 77 cd 6d d9 // ea 2e 54 fe ca 22 bc ba ae 59 9c f1 0a c3 d9 e6 05 43 ca f2 67 92 // 7d fd 13 4b 70 10 bc 4a fd 4f b7 b0 2d 1c f4 4b 38 fe 79 99 4b 69 // 1c 39 26 2d f4 31 e8 f7 c5 1e d1 eb e1 46 a2 4e b8 58 ab 82 4d 1d // 51 0a 58 9c 5b 52 9d 33 b8 79 cf ec 15 96 8d b2 24 99 f7 e0 95 2a // 8f 6b 7e 00 ab 1b d5 f0 2d f8 05 4b ec 76 9c 98 6e 55 8f f0 65 ad // c8 50 bd 75 77 fa ca 7e 48 28 97 98 e2 25 8b f3 05 24 ba b5 09 56 // 35 76 12 66 c8 25 68 28 6e 10 66 4b 2e 9c 54 70 6c 71 aa 98 bb 2c // 3d a6 6f 64 6a 1d 95 47 27 f1 2f 4b 8d 64 95 9a e3 09 bd eb b9 c4 // b3 0c ca ec 46 2c 1c 55 04 73 fd c6 d6 bc 74 be 5e e4 ef b3 ab 3e // 58 ed fd b4 9f 49 19 e8 07 f7 5f b5 ee 92 63 bc c1 95 e0 03 d3 cc // e5 90 ad 4e 13 68 c4 a9 3b 83 a3 a1 32 f4 5e aa fe bf 2b cf 74 8f // 0a c9 58 17 95 3b c9 1b 51 bc 0f 61 f6 4c ca 46 a9 de 78 6b 33 f4 // 41 35 2f 95 93 2f de 87 6c e9 3a 48 d3 11 6e 67 57 e6 f1 7b 8d 37 // a2 98 d5 bb 5d 16 61 04 9f f6 a5 4d f8 c9 59 0d e5 13 95 1c af cc // b1 d3 13 4e 96 73 c4 52 c6 e5 e4 32 87 28 a3 52 cf 31 7a 96 d9 d4 // 60 b7 2d a9 4f 67 25 1a bb f5 6e c3 7d 16 e1 3a a1 ba a9 f8 e4 e5 // b7 fa d5 24 a7 9f 81 f6 17 ea ba c3 cb 67 56 cb ea 58 c5 66 e0 c7 // 10 04 b4 66 b5 03 ca 8c 67 4f c3 af ef 7b e7 4d 9e 3e 44 57 ed b8 // 64 c3 0d 76 4e 65 b9 27 8a 1d 97 f4 0e 31 d1 43 25 21 8d fd c0 a6 // da 1f dd c2 d8 ca 5e eb 51 2f d0 90 36 e6 ba 85 c1 89 49 a4 ba f9 // 20 28 b7 2c c7 ff 24 79 37 56 7a 48 3b 0f 3f 6f b0 fc 1d 39 51 0b // 58 ff b5 00 6a ee a0 de ec b8 08 b7 f0 56 aa 61 d9 d2 4f 2d 2f 10 // 93 f6 c2 05 6d 46 84 ce 49 5a 8f 1b d7 14 ff 51 c2 ca 6b 5a 80 63 // 10 4f 4c 50 4d 22 e5 a3 88 d8 39 b2 2c 28 eb 43 ec 92 ec 65 74 b5 // 36 0c 83 67 77 33 e7 d3 18 a4 dd 43 d0 08 d0 47 af 6f 9a 1d 7d a2 // 74 a8 c3 86 d0 15 0e dc f0 0e 84 63 fe e3 76 82 3e 62 c1 03 c9 fa // b9 29 78 7d b7 8d 21 87 a8 b0 ec 61 35 26 81 f6 eb ac f2 c9 bd 1f // d6 36 ba d5 12 f8 54 18 cc d7 84 9a 83 3a 96 7a 18 85 18 2b 7d 2b // 6f 7d 2b ab 7d 83 df e9 28 82 ed 3d b6 25 9d 95 41 87 fa 77 0d c9 // b7 0d 7b 18 75 ba b1 18 c6 89 9e 00 d0 d1 3c f1 b9 5c 81 ab a6 b4 // 99 b8 39 80 84 e7 a5 a5 11 0f 45 5b 94 9f 6f 12 c4 e5 70 35 28 c6 // ab a1 2f 3b b8 1b af e5 40 d2 00 72 ec 67 35 dd eb fc 4b a6 80 63 // de c0 d0 ad 00 e6 3c 29 4f af 19 1c d9 8f 4f e1 ef ae 51 45 c6 83 // 38 d6 08 93 22 a8 2c 57 30 12 b4 bf 56 9f 65 b2 44 b5 de 70 df 5e // 66 10 ad 07 6f a3 9d 9b 81 3e 8f 7d 32 aa ec f4 33 b4 77 25 62 fe // 06 2e 9d 50 2f 00 f4 64 6c ce 3a 05 15 01 2e b0 8f cf 04 55 08 31 // 9b e8 0a c3 4e 60 24 d3 99 26 bf 2e a5 cf 20 e4 88 b8 ee f7 2c d8 // ff 30 fc 9d 02 fe d9 3f 38 54 ab 97 53 b6 a5 bc 2b 03 76 49 0c 39 // 66 19 23 71 57 20 ad c8 ba e4 f8 ec 0d c2 56 79 9f 3d ec b5 7c 86 // e3 90 58 e1 f9 bc 10 67 fd 4e a2 ed ca 53 2d 83 ad 5f 06 63 22 f0 // 23 d1 c2 eb 96 86 92 d5 11 61 f9 b9 e3 20 1b b4 a5 85 99 4e 41 56 // 1b 42 e2 39 51 54 85 f2 dc 4c 2a 2b e4 26 8d c5 66 5c fd 63 53 96 // b7 21 23 41 84 25 fe 75 e5 14 4f 13 54 e5 9e d2 4f 61 77 6b 75 4f // 95 de d6 41 fc 51 6f ca 81 55 99 13 20 6f 15 84 09 e7 72 81 68 03 // 51 f0 a0 b7 64 a1 71 6a bc a4 26 b0 74 10 eb f1 90 04 b2 e4 a9 41 // df 13 91 df 29 39 92 65 c2 7d 2e f5 4c 86 6c 3a cd 7f 77 6e e6 e1 // bd fc a7 53 e6 b0 b3 05 80 f4 0d 6d ae 49 c3 7a 5d 59 08 ed 68 84 // da bd 84 69 9b 32 aa 24 88 4f d3 58 4a 4f 29 ab 90 33 ce 5f 7f 4c // 58 a8 f8 cb de 43 c5 b8 2e b9 22 5c ce a7 5f da d4 04 14 60 0d 92 // 88 29 9b 78 0e 99 59 06 aa 4e 5d 2b ad 96 f4 9b 45 a5 9a 30 66 9d // 10 35 d8 02 17 75 9b cf 04 d1 73 a4 d4 68 6f fa 19 08 06 de 90 95 // 9a 90 2c cb 66 d7 f9 68 19 cf f6 cd 96 2f c8 93 ce 74 81 89 c1 e2 // f8 0b c7 7e 67 d3 aa d1 60 be ee 40 8d 0b 2e 56 5c e2 77 07 96 d3 // 2e a0 18 a3 68 10 d0 7f b8 dd 45 ac 34 0a 7d fd 70 94 d9 4b b3 8c // d6 79 26 9c 83 7e 5a 3e 43 a9 ea e1 60 5a 5c b9 4a f8 0d a3 2b 20 // bd 23 6d d3 9b 0d e5 8d d4 ad 09 54 6d 6c cf 9b 75 fe d8 78 fd 49 // f2 02 c1 c0 0d 0f 17 aa 8b 4c 68 ae 81 1b af ed 82 31 5e d7 c9 3a // 9a 89 f1 60 d6 ee d5 63 9d 60 bf 37 93 c3 f1 cc e5 46 64 d3 9b 5d // 96 b1 95 62 1e e7 80 ab c6 2d 31 cf 19 92 51 e3 41 38 0f bd 52 ee // 1c c3 ed 49 c1 3d cb 53 81 25 63 04 cd 79 f2 7a d2 88 35 10 81 99 // fe 42 c8 6a c3 1d 40 6f fb aa ee bf 4e 17 1a cd 4c 50 61 4f b3 fe // b9 14 99 2a a4 79 12 52 47 66 9a 7b d6 75 a9 06 0d 1a f1 fb c7 2f // d4 83 18 78 4f 87 24 99 52 88 5a 3a 01 1d a3 38 1f 33 d2 68 08 41 // 36 aa ff 2f 09 35 8e 20 64 9e e5 34 fd 02 c0 03 2b 68 30 1b a0 30 // 55 88 c1 74 44 a2 6e 49 9b e7 03 f4 56 66 08 a7 6f 62 bc c7 80 c6 // 5f da ed af 98 1c c4 c1 d7 a5 ea 25 dd cf 29 f4 f1 10 fd f3 74 ef // ef 76 ea 7d 56 30 c5 52 ca c2 2f a3 23 66 0f b2 20 3c 66 fa 48 5e // a9 fe a6 15 4b 3b 26 d8 80 c4 86 90 c3 be df a8 78 6b 34 9c 29 7e // cd c8 54 59 1f f3 2d a2 ce 8c 51 02 16 28 51 f9 e4 dd a0 ed a1 5d // 68 d9 19 67 57 ec 9d 30 97 98 ed 44 f6 8d 0f f9 a4 22 86 bd ac 79 // d8 40 df 39 2c 03 a6 eb be 0d 1d 0a b1 b4 c6 56 ec c2 7f a1 99 9a // e7 eb f7 61 a8 25 41 5b d6 8e 45 55 4d 12 2e 6c 0b e6 c7 d5 6f 89 // 1e 19 2b 46 99 20 01 11 9d b0 27 71 ab a2 31 d2 4e 24 e3 80 24 10 // 94 48 c3 98 d6 cd 89 81 7d 31 82 80 0c 61 76 ba a5 2e 16 4d 81 56 // 6a b7 73 bc 63 b4 75 25 89 dc 71 80 fc 2a 44 a9 03 ed bb 04 5f 89 // 6d 76 90 6a 82 fb 14 b4 74 05 09 7f 7b 62 de 86 eb 43 e2 ab ed 2b // bb e2 5f fa 0f 8f f6 74 34 6a e8 cf 07 cc cc 0a c2 aa 80 5c fa 01 // b5 65 d3 1c f9 b1 63 c5 6b fa 0b 53 4d a9 52 9c c4 ef 1b 85 f4 e2 // a0 9d 98 c5 78 6d ee 8e f7 f5 54 7b 13 f1 c0 f2 1e 30 9a 28 0c 3c // 36 06 7f b7 6b 2f 8d 17 d2 2b 87 68 f7 44 46 ed 57 e7 9b 31 61 23 // 7c cd e8 06 77 63 f2 85 60 44 d0 ea 2d 4e 94 45 46 37 9c 22 82 cf // 05 97 a6 19 e8 1e eb 11 f2 41 25 cc f3 2e 65 c4 cc 1a 17 47 83 39 // 37 fa db 05 7d e2 76 f7 71 e5 e4 0a 5a e9 27 14 be 59 1b 03 98 86 // 62 d0 ab 59 2f 4e 3c 0f 99 bf 63 f5 aa 9a 28 03 1c e3 9d 5c 00 d9 // 5e 96 1a 8c 01 76 c3 f2 ba 7c f1 f5 81 34 aa f3 72 73 9f fc d4 49 // 03 f0 09 e2 e8 d5 4d 09 57 f9 1c 5e f5 6d 7f 1f e3 9c 18 03 2c d2 // 8f a7 89 be c0 67 31 c2 8f 79 74 c6 aa 7f 78 62 6e 4a 1a 3d d4 7e // 4f a8 ae d0 67 ad 7f 31 12 a3 86 12 03 81 3e dc 04 38 23 4a ee 77 // 0c cc 46 39 5a fd 78 39 7b 1d 31 13 f9 c8 a4 90 9f d8 e3 fb 21 4f // 32 66 85 98 1f 2a 62 07 1b a7 61 9a 4c ce 35 7c 3e bb 81 2f ed 9f // 31 ad d7 c5 0d be be 14 15 72 06 a0 06 af 17 ed bd 01 2b e2 9b 78 // 90 a6 26 1b 32 5a 2c 38 a4 66 21 20 e7 c1 b7 4f 8c 16 ce f6 b1 93 // 2c 49 e1 ad 4e a4 d9 d0 86 39 95 68 cc d6 3d df 35 f9 61 95 ac 04 // f4 7e 6b 23 06 c6 16 73 df 03 8b 1b 08 d7 94 d6 8f 48 72 eb 1e bd // f1 94 68 f0 80 26 fa a3 75 9d f5 23 63 26 e0 1d 0d bd 21 0a e3 db // ad ad a4 82 18 fa ab 10 f2 96 6c d4 d8 fd 17 91 68 b9 b3 91 97 79 // 27 7a 05 32 0c ef 56 e4 b7 ff 83 bb ea 6a 4f dc 59 11 68 8e 25 18 // cc 98 37 68 01 af f6 79 6c 89 ae b6 5c c0 15 2c 43 83 fc c2 4a b4 // 7a 9c 2a 94 51 de 5a 18 95 0f 48 23 59 a8 52 28 24 37 9f b6 21 81 // 0e bd b8 bc 5d 48 a9 df 64 16 7e 1e 59 85 c6 ab 78 ab c3 88 24 a1 // 32 65 4e b0 da 54 1c 3c 9b ef 4d 6a 4a ee 46 3b d2 52 eb bb 94 77 // f9 26 10 ab 3a 5a b6 c6 7d 48 b4 07 ef 89 e2 d6 c3 7f 5b d6 bf d5 // ab a7 fc 3a e5 c6 d9 f0 8c ec b1 36 4f 7a 35 4f 7e 98 6e 1a 3a 7b // b4 21 6d 39 64 09 69 86 bc 72 51 14 46 ee 3c 8c 33 b4 f6 17 95 1c // 2b a0 1f 93 e2 9a 00 74 3d ad a6 db ae 04 0a ac ed 7f eb f9 2e 38 // d0 48 33 83 a2 b3 31 70 f3 0f 04 5f 06 a6 64 ae 39 57 70 79 a9 00 // cd e8 51 a3 3a 33 dd 3c ee 8b bd 75 2c b7 2c 7a 5b e1 cc 83 3b 35 // 52 68 86 04 02 67 f7 3a c3 49 df 05 a6 94 c7 94 17 69 f9 5f 5a 39 // 41 e8 7c 96 08 48 d7 de b0 c3 9d 88 02 12 87 fc fd 9f 1d 6f cd dc // ac 74 a9 4d 40 ce 53 f2 32 e3 e0 bb a2 39 aa d1 7e ea 6b 25 ae cd // a6 f9 37 9e 6d 23 d6 09 0d 95 9f c2 1b b3 af 05 72 c4 5e 85 33 f3 // 67 b6 1d cf d2 c8 b9 3e 65 ac 19 b8 96 bb df c3 6c 66 8d 42 10 14 // 02 b8 a0 fa e0 6e 7b 96 14 d1 62 23 fa de 45 26 1f 84 c4 9a 74 a2 // e7 62 9a c7 bf 6b da 77 14 12 2a 3d 7e ca 01 3f 85 3e b0 e5 c9 7f // 03 57 9c 6e fe d4 39 2e 20 c5 e4 d1 b9 35 6e 87 c0 f3 9a 31 68 61 // 1d bc 61 82 19 ad f7 3e b3 d7 6c 5b b0 70 d6 af c0 17 70 c9 4e c2 // 0b 6e 9f 2c 7d 9a a7 34 f5 0f 9c 40 e2 15 00 86 0c 5c d8 08 e3 c9 // ab 6b 46 39 4d 20 75 6c f3 52 78 20 22 d4 60 09 36 01 cd c2 74 1b // 19 6a 4f 3f 06 88 67 66 02 f8 cb ec 1b ca d9 04 58 21 e5 ea ad d1 // 1e 4e 9b 43 a2 84 d3 c7 4c 20 5e 38 97 2f b1 d9 e8 12 ed b8 d6 2c // ce 5d fc e3 40 37 3f 8f 33 a3 7d 28 9b fc c6 42 02 b7 8a b3 fc e2 // 15 13 17 06 77 b2 45 5c 25 1e 60 c8 0a 31 63 bb e2 b3 0a da 5f 18 // d6 9f f5 e2 10 4c 43 bb 8b c7 04 1a 7a 1a d1 7a 8b 25 90 4b d3 0d // 49 1b d9 4b c2 75 17 9c ac 1b 47 b5 49 f9 42 bf 70 71 9b 6f 9d 4e // bb 63 7e 56 d0 dc 1f 6a 26 6a 46 c6 13 ac 06 b3 ff 16 81 59 9d 66 // 67 f4 dc 7b 45 da c6 b8 26 e4 24 e4 7b 3a 07 04 0c 65 f1 85 56 13 // d9 4a 63 de e6 03 0e ee b6 a3 0d be f0 0d 91 f2 eb 7d 0e 8d b1 1d // 4c ed a5 1a 79 61 dc e0 0d e1 45 85 23 4c 13 46 ef 8e 2c 88 98 4c // 60 23 19 0b 06 b6 04 20 15 f7 29 34 a4 76 c1 b8 e0 2f 69 52 07 60 // 5e b4 8d fc e6 ba de a7 49 07 42 06 0f f9 c8 72 a7 d8 18 52 10 af // c1 12 40 85 7b 03 11 f3 b4 88 84 8a ba bb a9 d4 a0 66 02 34 73 d8 // 3d 2a 18 9e 0f 22 77 e1 86 14 66 30 5f ce 25 f2 5b 2f ba 5f ac d5 // dc 57 b5 96 16 f7 64 c3 ac b9 56 2b 1c 11 80 72 12 d5 57 af 99 8e // 0b ca a1 08 5d ee 62 35 39 85 8c c1 06 45 9a 96 ff 5f 51 3d 05 f8 // bd 21 30 0f 6b 37 55 ba f9 a3 22 31 18 63 b4 c9 c0 8e 2f fc 55 3d // 63 b0 80 31 ba 58 df ea 76 43 7b 34 85 03 5e 94 32 b4 63 1f 93 f9 // bd df 48 73 83 23 6c 9a ed d8 d2 4c 32 7c 51 c8 b7 66 39 99 b8 45 // 90 e6 6e a1 4f 2b 2a 1c 50 d3 1a 8b 49 ec d4 fd 57 93 08 fb ee 89 // d0 a7 c7 27 18 a0 8a c9 d8 37 d0 96 d1 4e ba 2b bd 89 6b c6 fc 55 // b9 aa ab 82 38 ee 51 1d 84 d9 2f b6 2e 7b 19 7d da ed 50 c0 1c 38 // 1e 76 69 e9 6c 72 ae b7 d0 25 bd 8e ad ee 18 9f e7 d5 62 03 ac b8 // 89 ec f6 5e f9 6b 92 8c 9e 0e 9a 57 7b ea 11 7a 16 47 db 7b 34 2f // be ad 43 60 0e 87 d9 d1 a3 5c 44 a8 e7 99 c0 73 75 ce 36 7c c9 6e // 93 15 30 50 d6 d8 e3 34 ef ad f4 67 61 1b 90 17 0e 03 af 0e 65 54 // dd c2 33 3e 44 ba e5 b8 31 b4 60 98 60 c2 62 ab fd fa da cb 98 0f // 63 f9 92 35 aa b7 b9 d0 90 d9 8c 16 24 77 58 b2 75 40 0d f4 28 09 // 3e 65 83 1b 29 2b 41 5d 1a a2 0b de e1 89 85 f0 fd 9c 28 f6 f8 64 // 83 13 01 58 bd e1 d5 3d 4f 51 69 56 5e 88 b5 dc ce b7 7b ba c3 b8 // a7 db bd cd b0 2a 61 96 b0 47 93 44 55 99 36 84 a1 65 8a 18 a8 57 // 9b b1 90 c2 98 9c 55 9a f9 9a c1 ce ba 26 cb 20 fe 61 1f 5d 46 d4 // b4 d8 18 d1 ad d9 76 7a ae 60 f3 9a 35 62 bc 64 14 9a ac e8 32 7e // 6a 02 e0 07 83 ae 86 6d c6 55 1a 48 d0 f3 51 d0 74 55 b5 4e 20 54 // e6 60 43 ed 9a 57 74 1b 4e 9f cf 07 4f d3 66 8b 32 16 ff 84 46 d3 // d2 3d 83 63 0f 6a 08 b9 1d 7a 71 4c 72 d2 b5 f5 6b 85 12 a8 45 32 // 8e 1f 39 06 55 6d 6e 20 ac cd 3b f5 7e 5a 74 7f ec 1c bd 21 88 f4 // 7b 05 f9 99 1a 49 c2 b8 fc bf 9e c8 9c 37 fc fd 3f f5 63 f9 87 76 // 12 b9 4b b2 7a 71 c7 45 84 47 14 3a 9e a2 6f 72 b5 18 6f 3f 40 a9 // ca a4 b1 0d f3 a3 3d 3f e8 7b 4b a3 e5 6b ca f9 55 0b dc 9e 09 d8 // 00 dd 3c 30 fc b7 c9 c8 6f 40 9a f7 f3 67 56 5a fc 29 c5 82 bf 67 // 9e ec 21 5d 6a 4d e8 54 94 3d 72 ad 2d 99 39 8b d4 66 48 cd 1a 0a // 42 0c 07 ea c8 fc 2c d6 8e fe 8b 56 5c bb f4 03 9e 0e 36 f6 7a 8f // 1e c3 45 a7 aa 25 af a8 b7 ed ef 95 bb 55 bd 85 aa 64 d1 17 88 b3 // c9 ee 51 16 c4 d4 27 06 62 e3 d5 6d 0e 11 8a f6 ac 69 b8 d2 84 ac // a6 37 98 9a 9e 0b 7c 64 32 ce 21 74 00 40 8e ce e0 4a 78 87 e2 be // cc 24 1c a6 d1 07 16 d8 bb 1f fa fc 33 2a 3e e3 bd 9d cb fa 23 a0 // a7 81 16 7b 02 d4 82 9d 66 db 39 71 ec df 12 cf e1 36 1b fc 15 4b // 0a 86 8c 3c d4 cc d3 03 bb f9 e6 35 5b 0e 17 19 a2 e5 bb 8c 13 03 // 33 09 00 00 00 d7 9e 63 e2 cb c6 15 d1 38 c0 2c a1 68 32 4d 7f 6d // 5c b9 8c ed e3 7c 98 6f 4b} (length 0x1000) size: len = 0x1000 (2 // bytes) // } // } // } // len: len = 0x1006 (8 bytes) // ] NONFAILING(*(uint32_t*)0x200000000780 = 8); NONFAILING(memcpy( (void*)0x200000000784, "\x7d\xca\x77\x9d\xfb\x6b\x1a\xfe\x5a\xfd\xd8\x1a\xf7\xfc\x43\x80\xf7\x31" "\x93\x4c\x82\xbc\x3b\xff\x08\xf6\x66\xd1\x52\x3e\xb9\x3b\xb0\xcd\x69\x2b" "\x00\x30\x5d\x65\xbd\x61\x1e\x46\xc9\xd8\xcb\xee\x60\xb8\x71\x56\x9b\xb8" "\x11\x19\x92\xff\x0c\xf3\xd4\x47\x4c\xaa\x9d\x38\x98\xde\x9b\x2d\xdf\xbe" "\xee\xb5\x19\x4c\x6f\x9c\x0c\x78\xa8\x39\xac\x59\x49\x50\x9b\x15\x46\x65" "\xfe\x9e\x94\xde\xc8\x16\x97\xf9\x2a\x06\x5c\xc9\xab\x0b\x59\x33\x72\x6a" "\xd8\x6c\x5c\xc4\xed\xf2\x1a\x14\xdf\xf1\xf7\xbc\xa3\xcc\x9d\xa4\x64\x6b" "\xe0\xbb\x8e\x9d\x6d\x02\x2f\x28\xf8\xcf\x21\x6d\x23\xff\x0d\xa8\xa1\x61" "\xed\x5b\x4f\x44\xcb\xbc\x3b\xf5\xfa\x2b\xcd\x60\x94\xda\x99\x68\x1c\xf8" "\x5f\x73\xda\x26\xba\x87\x73\xf1\x79\x04\xec\x82\x1f\xf6\x1c\xc0\x55\xd6" "\x3e\x37\x1a\x71\x2a\xab\x04\x1e\x34\xe8\x20\xe2\xa8\x69\xab\xdb\xfd\xb3" "\x7d\x96\x74\x78\x3e\xcb\x6c\x55\x67\x1f\xc5\x30\x25\xf2\x29\x20\xd1\x7c" "\x9d\xef\x7a\x62\x57\x75\x6f\x6c\xbb\x93\x1c\x48\xbd\x41\x38\xc0\x72\xa3" "\x6d\x7d\x4e\xc9\x13\x52\x5a\xf7\xaa\x3b\x8b\x34\x9b\x8b\xf7\xa1\x86\xfe" "\xed\x32\xae\x60\x1b\xb9\x3b\xb6\x60\x48\xf0\xcb\x57\xcd\x79\x21\x00\x92" "\x05\x44\xd7\x65\x80\xfb\x7d\x74\xff\x6d\x88\x01\x96\x8d\x19\x8f\xe8\xb7" "\xdf\x30\x1c\xf0\xa2\x51\x8e\xf7\x16\x2f\xf9\xcd\x6f\x5a\x15\x93\xaf\x7a" "\xd0\x41\x2f\x56\x12\xbf\xe9\x42\x3c\xbe\x99\xbb\x7b\xa0\x23\x63\xa8\x14" "\x3b\x74\xa1\x68\x27\x03\xb1\xe2\x35\xcf\x62\x39\x5c\x2f\xea\x24\x93\x4f" "\xb8\x6b\xec\x8e\x43\x86\x5f\x20\x3a\xc2\xca\x5e\x7c\x02\xef\xcf\x6b\x98" "\xa4\xf7\x05\xd8\xdb\xff\x19\x4d\xe7\x90\x0e\x31\x99\xe6\x0c\xe4\x8b\x97" "\xae\x92\x68\x06\xe1\x7d\xbd\x3e\xf7\x77\xcd\x6d\xd9\xea\x2e\x54\xfe\xca" "\x22\xbc\xba\xae\x59\x9c\xf1\x0a\xc3\xd9\xe6\x05\x43\xca\xf2\x67\x92\x7d" "\xfd\x13\x4b\x70\x10\xbc\x4a\xfd\x4f\xb7\xb0\x2d\x1c\xf4\x4b\x38\xfe\x79" "\x99\x4b\x69\x1c\x39\x26\x2d\xf4\x31\xe8\xf7\xc5\x1e\xd1\xeb\xe1\x46\xa2" "\x4e\xb8\x58\xab\x82\x4d\x1d\x51\x0a\x58\x9c\x5b\x52\x9d\x33\xb8\x79\xcf" "\xec\x15\x96\x8d\xb2\x24\x99\xf7\xe0\x95\x2a\x8f\x6b\x7e\x00\xab\x1b\xd5" "\xf0\x2d\xf8\x05\x4b\xec\x76\x9c\x98\x6e\x55\x8f\xf0\x65\xad\xc8\x50\xbd" "\x75\x77\xfa\xca\x7e\x48\x28\x97\x98\xe2\x25\x8b\xf3\x05\x24\xba\xb5\x09" "\x56\x35\x76\x12\x66\xc8\x25\x68\x28\x6e\x10\x66\x4b\x2e\x9c\x54\x70\x6c" "\x71\xaa\x98\xbb\x2c\x3d\xa6\x6f\x64\x6a\x1d\x95\x47\x27\xf1\x2f\x4b\x8d" "\x64\x95\x9a\xe3\x09\xbd\xeb\xb9\xc4\xb3\x0c\xca\xec\x46\x2c\x1c\x55\x04" "\x73\xfd\xc6\xd6\xbc\x74\xbe\x5e\xe4\xef\xb3\xab\x3e\x58\xed\xfd\xb4\x9f" "\x49\x19\xe8\x07\xf7\x5f\xb5\xee\x92\x63\xbc\xc1\x95\xe0\x03\xd3\xcc\xe5" "\x90\xad\x4e\x13\x68\xc4\xa9\x3b\x83\xa3\xa1\x32\xf4\x5e\xaa\xfe\xbf\x2b" "\xcf\x74\x8f\x0a\xc9\x58\x17\x95\x3b\xc9\x1b\x51\xbc\x0f\x61\xf6\x4c\xca" "\x46\xa9\xde\x78\x6b\x33\xf4\x41\x35\x2f\x95\x93\x2f\xde\x87\x6c\xe9\x3a" "\x48\xd3\x11\x6e\x67\x57\xe6\xf1\x7b\x8d\x37\xa2\x98\xd5\xbb\x5d\x16\x61" "\x04\x9f\xf6\xa5\x4d\xf8\xc9\x59\x0d\xe5\x13\x95\x1c\xaf\xcc\xb1\xd3\x13" "\x4e\x96\x73\xc4\x52\xc6\xe5\xe4\x32\x87\x28\xa3\x52\xcf\x31\x7a\x96\xd9" "\xd4\x60\xb7\x2d\xa9\x4f\x67\x25\x1a\xbb\xf5\x6e\xc3\x7d\x16\xe1\x3a\xa1" "\xba\xa9\xf8\xe4\xe5\xb7\xfa\xd5\x24\xa7\x9f\x81\xf6\x17\xea\xba\xc3\xcb" "\x67\x56\xcb\xea\x58\xc5\x66\xe0\xc7\x10\x04\xb4\x66\xb5\x03\xca\x8c\x67" "\x4f\xc3\xaf\xef\x7b\xe7\x4d\x9e\x3e\x44\x57\xed\xb8\x64\xc3\x0d\x76\x4e" "\x65\xb9\x27\x8a\x1d\x97\xf4\x0e\x31\xd1\x43\x25\x21\x8d\xfd\xc0\xa6\xda" "\x1f\xdd\xc2\xd8\xca\x5e\xeb\x51\x2f\xd0\x90\x36\xe6\xba\x85\xc1\x89\x49" "\xa4\xba\xf9\x20\x28\xb7\x2c\xc7\xff\x24\x79\x37\x56\x7a\x48\x3b\x0f\x3f" "\x6f\xb0\xfc\x1d\x39\x51\x0b\x58\xff\xb5\x00\x6a\xee\xa0\xde\xec\xb8\x08" "\xb7\xf0\x56\xaa\x61\xd9\xd2\x4f\x2d\x2f\x10\x93\xf6\xc2\x05\x6d\x46\x84" "\xce\x49\x5a\x8f\x1b\xd7\x14\xff\x51\xc2\xca\x6b\x5a\x80\x63\x10\x4f\x4c" "\x50\x4d\x22\xe5\xa3\x88\xd8\x39\xb2\x2c\x28\xeb\x43\xec\x92\xec\x65\x74" "\xb5\x36\x0c\x83\x67\x77\x33\xe7\xd3\x18\xa4\xdd\x43\xd0\x08\xd0\x47\xaf" "\x6f\x9a\x1d\x7d\xa2\x74\xa8\xc3\x86\xd0\x15\x0e\xdc\xf0\x0e\x84\x63\xfe" "\xe3\x76\x82\x3e\x62\xc1\x03\xc9\xfa\xb9\x29\x78\x7d\xb7\x8d\x21\x87\xa8" "\xb0\xec\x61\x35\x26\x81\xf6\xeb\xac\xf2\xc9\xbd\x1f\xd6\x36\xba\xd5\x12" "\xf8\x54\x18\xcc\xd7\x84\x9a\x83\x3a\x96\x7a\x18\x85\x18\x2b\x7d\x2b\x6f" "\x7d\x2b\xab\x7d\x83\xdf\xe9\x28\x82\xed\x3d\xb6\x25\x9d\x95\x41\x87\xfa" "\x77\x0d\xc9\xb7\x0d\x7b\x18\x75\xba\xb1\x18\xc6\x89\x9e\x00\xd0\xd1\x3c" "\xf1\xb9\x5c\x81\xab\xa6\xb4\x99\xb8\x39\x80\x84\xe7\xa5\xa5\x11\x0f\x45" "\x5b\x94\x9f\x6f\x12\xc4\xe5\x70\x35\x28\xc6\xab\xa1\x2f\x3b\xb8\x1b\xaf" "\xe5\x40\xd2\x00\x72\xec\x67\x35\xdd\xeb\xfc\x4b\xa6\x80\x63\xde\xc0\xd0" "\xad\x00\xe6\x3c\x29\x4f\xaf\x19\x1c\xd9\x8f\x4f\xe1\xef\xae\x51\x45\xc6" "\x83\x38\xd6\x08\x93\x22\xa8\x2c\x57\x30\x12\xb4\xbf\x56\x9f\x65\xb2\x44" "\xb5\xde\x70\xdf\x5e\x66\x10\xad\x07\x6f\xa3\x9d\x9b\x81\x3e\x8f\x7d\x32" "\xaa\xec\xf4\x33\xb4\x77\x25\x62\xfe\x06\x2e\x9d\x50\x2f\x00\xf4\x64\x6c" "\xce\x3a\x05\x15\x01\x2e\xb0\x8f\xcf\x04\x55\x08\x31\x9b\xe8\x0a\xc3\x4e" "\x60\x24\xd3\x99\x26\xbf\x2e\xa5\xcf\x20\xe4\x88\xb8\xee\xf7\x2c\xd8\xff" "\x30\xfc\x9d\x02\xfe\xd9\x3f\x38\x54\xab\x97\x53\xb6\xa5\xbc\x2b\x03\x76" "\x49\x0c\x39\x66\x19\x23\x71\x57\x20\xad\xc8\xba\xe4\xf8\xec\x0d\xc2\x56" "\x79\x9f\x3d\xec\xb5\x7c\x86\xe3\x90\x58\xe1\xf9\xbc\x10\x67\xfd\x4e\xa2" "\xed\xca\x53\x2d\x83\xad\x5f\x06\x63\x22\xf0\x23\xd1\xc2\xeb\x96\x86\x92" "\xd5\x11\x61\xf9\xb9\xe3\x20\x1b\xb4\xa5\x85\x99\x4e\x41\x56\x1b\x42\xe2" "\x39\x51\x54\x85\xf2\xdc\x4c\x2a\x2b\xe4\x26\x8d\xc5\x66\x5c\xfd\x63\x53" "\x96\xb7\x21\x23\x41\x84\x25\xfe\x75\xe5\x14\x4f\x13\x54\xe5\x9e\xd2\x4f" "\x61\x77\x6b\x75\x4f\x95\xde\xd6\x41\xfc\x51\x6f\xca\x81\x55\x99\x13\x20" "\x6f\x15\x84\x09\xe7\x72\x81\x68\x03\x51\xf0\xa0\xb7\x64\xa1\x71\x6a\xbc" "\xa4\x26\xb0\x74\x10\xeb\xf1\x90\x04\xb2\xe4\xa9\x41\xdf\x13\x91\xdf\x29" "\x39\x92\x65\xc2\x7d\x2e\xf5\x4c\x86\x6c\x3a\xcd\x7f\x77\x6e\xe6\xe1\xbd" "\xfc\xa7\x53\xe6\xb0\xb3\x05\x80\xf4\x0d\x6d\xae\x49\xc3\x7a\x5d\x59\x08" "\xed\x68\x84\xda\xbd\x84\x69\x9b\x32\xaa\x24\x88\x4f\xd3\x58\x4a\x4f\x29" "\xab\x90\x33\xce\x5f\x7f\x4c\x58\xa8\xf8\xcb\xde\x43\xc5\xb8\x2e\xb9\x22" "\x5c\xce\xa7\x5f\xda\xd4\x04\x14\x60\x0d\x92\x88\x29\x9b\x78\x0e\x99\x59" "\x06\xaa\x4e\x5d\x2b\xad\x96\xf4\x9b\x45\xa5\x9a\x30\x66\x9d\x10\x35\xd8" "\x02\x17\x75\x9b\xcf\x04\xd1\x73\xa4\xd4\x68\x6f\xfa\x19\x08\x06\xde\x90" "\x95\x9a\x90\x2c\xcb\x66\xd7\xf9\x68\x19\xcf\xf6\xcd\x96\x2f\xc8\x93\xce" "\x74\x81\x89\xc1\xe2\xf8\x0b\xc7\x7e\x67\xd3\xaa\xd1\x60\xbe\xee\x40\x8d" "\x0b\x2e\x56\x5c\xe2\x77\x07\x96\xd3\x2e\xa0\x18\xa3\x68\x10\xd0\x7f\xb8" "\xdd\x45\xac\x34\x0a\x7d\xfd\x70\x94\xd9\x4b\xb3\x8c\xd6\x79\x26\x9c\x83" "\x7e\x5a\x3e\x43\xa9\xea\xe1\x60\x5a\x5c\xb9\x4a\xf8\x0d\xa3\x2b\x20\xbd" "\x23\x6d\xd3\x9b\x0d\xe5\x8d\xd4\xad\x09\x54\x6d\x6c\xcf\x9b\x75\xfe\xd8" "\x78\xfd\x49\xf2\x02\xc1\xc0\x0d\x0f\x17\xaa\x8b\x4c\x68\xae\x81\x1b\xaf" "\xed\x82\x31\x5e\xd7\xc9\x3a\x9a\x89\xf1\x60\xd6\xee\xd5\x63\x9d\x60\xbf" "\x37\x93\xc3\xf1\xcc\xe5\x46\x64\xd3\x9b\x5d\x96\xb1\x95\x62\x1e\xe7\x80" "\xab\xc6\x2d\x31\xcf\x19\x92\x51\xe3\x41\x38\x0f\xbd\x52\xee\x1c\xc3\xed" "\x49\xc1\x3d\xcb\x53\x81\x25\x63\x04\xcd\x79\xf2\x7a\xd2\x88\x35\x10\x81" "\x99\xfe\x42\xc8\x6a\xc3\x1d\x40\x6f\xfb\xaa\xee\xbf\x4e\x17\x1a\xcd\x4c" "\x50\x61\x4f\xb3\xfe\xb9\x14\x99\x2a\xa4\x79\x12\x52\x47\x66\x9a\x7b\xd6" "\x75\xa9\x06\x0d\x1a\xf1\xfb\xc7\x2f\xd4\x83\x18\x78\x4f\x87\x24\x99\x52" "\x88\x5a\x3a\x01\x1d\xa3\x38\x1f\x33\xd2\x68\x08\x41\x36\xaa\xff\x2f\x09" "\x35\x8e\x20\x64\x9e\xe5\x34\xfd\x02\xc0\x03\x2b\x68\x30\x1b\xa0\x30\x55" "\x88\xc1\x74\x44\xa2\x6e\x49\x9b\xe7\x03\xf4\x56\x66\x08\xa7\x6f\x62\xbc" "\xc7\x80\xc6\x5f\xda\xed\xaf\x98\x1c\xc4\xc1\xd7\xa5\xea\x25\xdd\xcf\x29" "\xf4\xf1\x10\xfd\xf3\x74\xef\xef\x76\xea\x7d\x56\x30\xc5\x52\xca\xc2\x2f" "\xa3\x23\x66\x0f\xb2\x20\x3c\x66\xfa\x48\x5e\xa9\xfe\xa6\x15\x4b\x3b\x26" "\xd8\x80\xc4\x86\x90\xc3\xbe\xdf\xa8\x78\x6b\x34\x9c\x29\x7e\xcd\xc8\x54" "\x59\x1f\xf3\x2d\xa2\xce\x8c\x51\x02\x16\x28\x51\xf9\xe4\xdd\xa0\xed\xa1" "\x5d\x68\xd9\x19\x67\x57\xec\x9d\x30\x97\x98\xed\x44\xf6\x8d\x0f\xf9\xa4" "\x22\x86\xbd\xac\x79\xd8\x40\xdf\x39\x2c\x03\xa6\xeb\xbe\x0d\x1d\x0a\xb1" "\xb4\xc6\x56\xec\xc2\x7f\xa1\x99\x9a\xe7\xeb\xf7\x61\xa8\x25\x41\x5b\xd6" "\x8e\x45\x55\x4d\x12\x2e\x6c\x0b\xe6\xc7\xd5\x6f\x89\x1e\x19\x2b\x46\x99" "\x20\x01\x11\x9d\xb0\x27\x71\xab\xa2\x31\xd2\x4e\x24\xe3\x80\x24\x10\x94" "\x48\xc3\x98\xd6\xcd\x89\x81\x7d\x31\x82\x80\x0c\x61\x76\xba\xa5\x2e\x16" "\x4d\x81\x56\x6a\xb7\x73\xbc\x63\xb4\x75\x25\x89\xdc\x71\x80\xfc\x2a\x44" "\xa9\x03\xed\xbb\x04\x5f\x89\x6d\x76\x90\x6a\x82\xfb\x14\xb4\x74\x05\x09" "\x7f\x7b\x62\xde\x86\xeb\x43\xe2\xab\xed\x2b\xbb\xe2\x5f\xfa\x0f\x8f\xf6" "\x74\x34\x6a\xe8\xcf\x07\xcc\xcc\x0a\xc2\xaa\x80\x5c\xfa\x01\xb5\x65\xd3" "\x1c\xf9\xb1\x63\xc5\x6b\xfa\x0b\x53\x4d\xa9\x52\x9c\xc4\xef\x1b\x85\xf4" "\xe2\xa0\x9d\x98\xc5\x78\x6d\xee\x8e\xf7\xf5\x54\x7b\x13\xf1\xc0\xf2\x1e" "\x30\x9a\x28\x0c\x3c\x36\x06\x7f\xb7\x6b\x2f\x8d\x17\xd2\x2b\x87\x68\xf7" "\x44\x46\xed\x57\xe7\x9b\x31\x61\x23\x7c\xcd\xe8\x06\x77\x63\xf2\x85\x60" "\x44\xd0\xea\x2d\x4e\x94\x45\x46\x37\x9c\x22\x82\xcf\x05\x97\xa6\x19\xe8" "\x1e\xeb\x11\xf2\x41\x25\xcc\xf3\x2e\x65\xc4\xcc\x1a\x17\x47\x83\x39\x37" "\xfa\xdb\x05\x7d\xe2\x76\xf7\x71\xe5\xe4\x0a\x5a\xe9\x27\x14\xbe\x59\x1b" "\x03\x98\x86\x62\xd0\xab\x59\x2f\x4e\x3c\x0f\x99\xbf\x63\xf5\xaa\x9a\x28" "\x03\x1c\xe3\x9d\x5c\x00\xd9\x5e\x96\x1a\x8c\x01\x76\xc3\xf2\xba\x7c\xf1" "\xf5\x81\x34\xaa\xf3\x72\x73\x9f\xfc\xd4\x49\x03\xf0\x09\xe2\xe8\xd5\x4d" "\x09\x57\xf9\x1c\x5e\xf5\x6d\x7f\x1f\xe3\x9c\x18\x03\x2c\xd2\x8f\xa7\x89" "\xbe\xc0\x67\x31\xc2\x8f\x79\x74\xc6\xaa\x7f\x78\x62\x6e\x4a\x1a\x3d\xd4" "\x7e\x4f\xa8\xae\xd0\x67\xad\x7f\x31\x12\xa3\x86\x12\x03\x81\x3e\xdc\x04" "\x38\x23\x4a\xee\x77\x0c\xcc\x46\x39\x5a\xfd\x78\x39\x7b\x1d\x31\x13\xf9" "\xc8\xa4\x90\x9f\xd8\xe3\xfb\x21\x4f\x32\x66\x85\x98\x1f\x2a\x62\x07\x1b" "\xa7\x61\x9a\x4c\xce\x35\x7c\x3e\xbb\x81\x2f\xed\x9f\x31\xad\xd7\xc5\x0d" "\xbe\xbe\x14\x15\x72\x06\xa0\x06\xaf\x17\xed\xbd\x01\x2b\xe2\x9b\x78\x90" "\xa6\x26\x1b\x32\x5a\x2c\x38\xa4\x66\x21\x20\xe7\xc1\xb7\x4f\x8c\x16\xce" "\xf6\xb1\x93\x2c\x49\xe1\xad\x4e\xa4\xd9\xd0\x86\x39\x95\x68\xcc\xd6\x3d" "\xdf\x35\xf9\x61\x95\xac\x04\xf4\x7e\x6b\x23\x06\xc6\x16\x73\xdf\x03\x8b" "\x1b\x08\xd7\x94\xd6\x8f\x48\x72\xeb\x1e\xbd\xf1\x94\x68\xf0\x80\x26\xfa" "\xa3\x75\x9d\xf5\x23\x63\x26\xe0\x1d\x0d\xbd\x21\x0a\xe3\xdb\xad\xad\xa4" "\x82\x18\xfa\xab\x10\xf2\x96\x6c\xd4\xd8\xfd\x17\x91\x68\xb9\xb3\x91\x97" "\x79\x27\x7a\x05\x32\x0c\xef\x56\xe4\xb7\xff\x83\xbb\xea\x6a\x4f\xdc\x59" "\x11\x68\x8e\x25\x18\xcc\x98\x37\x68\x01\xaf\xf6\x79\x6c\x89\xae\xb6\x5c" "\xc0\x15\x2c\x43\x83\xfc\xc2\x4a\xb4\x7a\x9c\x2a\x94\x51\xde\x5a\x18\x95" "\x0f\x48\x23\x59\xa8\x52\x28\x24\x37\x9f\xb6\x21\x81\x0e\xbd\xb8\xbc\x5d" "\x48\xa9\xdf\x64\x16\x7e\x1e\x59\x85\xc6\xab\x78\xab\xc3\x88\x24\xa1\x32" "\x65\x4e\xb0\xda\x54\x1c\x3c\x9b\xef\x4d\x6a\x4a\xee\x46\x3b\xd2\x52\xeb" "\xbb\x94\x77\xf9\x26\x10\xab\x3a\x5a\xb6\xc6\x7d\x48\xb4\x07\xef\x89\xe2" "\xd6\xc3\x7f\x5b\xd6\xbf\xd5\xab\xa7\xfc\x3a\xe5\xc6\xd9\xf0\x8c\xec\xb1" "\x36\x4f\x7a\x35\x4f\x7e\x98\x6e\x1a\x3a\x7b\xb4\x21\x6d\x39\x64\x09\x69" "\x86\xbc\x72\x51\x14\x46\xee\x3c\x8c\x33\xb4\xf6\x17\x95\x1c\x2b\xa0\x1f" "\x93\xe2\x9a\x00\x74\x3d\xad\xa6\xdb\xae\x04\x0a\xac\xed\x7f\xeb\xf9\x2e" "\x38\xd0\x48\x33\x83\xa2\xb3\x31\x70\xf3\x0f\x04\x5f\x06\xa6\x64\xae\x39" "\x57\x70\x79\xa9\x00\xcd\xe8\x51\xa3\x3a\x33\xdd\x3c\xee\x8b\xbd\x75\x2c" "\xb7\x2c\x7a\x5b\xe1\xcc\x83\x3b\x35\x52\x68\x86\x04\x02\x67\xf7\x3a\xc3" "\x49\xdf\x05\xa6\x94\xc7\x94\x17\x69\xf9\x5f\x5a\x39\x41\xe8\x7c\x96\x08" "\x48\xd7\xde\xb0\xc3\x9d\x88\x02\x12\x87\xfc\xfd\x9f\x1d\x6f\xcd\xdc\xac" "\x74\xa9\x4d\x40\xce\x53\xf2\x32\xe3\xe0\xbb\xa2\x39\xaa\xd1\x7e\xea\x6b" "\x25\xae\xcd\xa6\xf9\x37\x9e\x6d\x23\xd6\x09\x0d\x95\x9f\xc2\x1b\xb3\xaf" "\x05\x72\xc4\x5e\x85\x33\xf3\x67\xb6\x1d\xcf\xd2\xc8\xb9\x3e\x65\xac\x19" "\xb8\x96\xbb\xdf\xc3\x6c\x66\x8d\x42\x10\x14\x02\xb8\xa0\xfa\xe0\x6e\x7b" "\x96\x14\xd1\x62\x23\xfa\xde\x45\x26\x1f\x84\xc4\x9a\x74\xa2\xe7\x62\x9a" "\xc7\xbf\x6b\xda\x77\x14\x12\x2a\x3d\x7e\xca\x01\x3f\x85\x3e\xb0\xe5\xc9" "\x7f\x03\x57\x9c\x6e\xfe\xd4\x39\x2e\x20\xc5\xe4\xd1\xb9\x35\x6e\x87\xc0" "\xf3\x9a\x31\x68\x61\x1d\xbc\x61\x82\x19\xad\xf7\x3e\xb3\xd7\x6c\x5b\xb0" "\x70\xd6\xaf\xc0\x17\x70\xc9\x4e\xc2\x0b\x6e\x9f\x2c\x7d\x9a\xa7\x34\xf5" "\x0f\x9c\x40\xe2\x15\x00\x86\x0c\x5c\xd8\x08\xe3\xc9\xab\x6b\x46\x39\x4d" "\x20\x75\x6c\xf3\x52\x78\x20\x22\xd4\x60\x09\x36\x01\xcd\xc2\x74\x1b\x19" "\x6a\x4f\x3f\x06\x88\x67\x66\x02\xf8\xcb\xec\x1b\xca\xd9\x04\x58\x21\xe5" "\xea\xad\xd1\x1e\x4e\x9b\x43\xa2\x84\xd3\xc7\x4c\x20\x5e\x38\x97\x2f\xb1" "\xd9\xe8\x12\xed\xb8\xd6\x2c\xce\x5d\xfc\xe3\x40\x37\x3f\x8f\x33\xa3\x7d" "\x28\x9b\xfc\xc6\x42\x02\xb7\x8a\xb3\xfc\xe2\x15\x13\x17\x06\x77\xb2\x45" "\x5c\x25\x1e\x60\xc8\x0a\x31\x63\xbb\xe2\xb3\x0a\xda\x5f\x18\xd6\x9f\xf5" "\xe2\x10\x4c\x43\xbb\x8b\xc7\x04\x1a\x7a\x1a\xd1\x7a\x8b\x25\x90\x4b\xd3" "\x0d\x49\x1b\xd9\x4b\xc2\x75\x17\x9c\xac\x1b\x47\xb5\x49\xf9\x42\xbf\x70" "\x71\x9b\x6f\x9d\x4e\xbb\x63\x7e\x56\xd0\xdc\x1f\x6a\x26\x6a\x46\xc6\x13" "\xac\x06\xb3\xff\x16\x81\x59\x9d\x66\x67\xf4\xdc\x7b\x45\xda\xc6\xb8\x26" "\xe4\x24\xe4\x7b\x3a\x07\x04\x0c\x65\xf1\x85\x56\x13\xd9\x4a\x63\xde\xe6" "\x03\x0e\xee\xb6\xa3\x0d\xbe\xf0\x0d\x91\xf2\xeb\x7d\x0e\x8d\xb1\x1d\x4c" "\xed\xa5\x1a\x79\x61\xdc\xe0\x0d\xe1\x45\x85\x23\x4c\x13\x46\xef\x8e\x2c" "\x88\x98\x4c\x60\x23\x19\x0b\x06\xb6\x04\x20\x15\xf7\x29\x34\xa4\x76\xc1" "\xb8\xe0\x2f\x69\x52\x07\x60\x5e\xb4\x8d\xfc\xe6\xba\xde\xa7\x49\x07\x42" "\x06\x0f\xf9\xc8\x72\xa7\xd8\x18\x52\x10\xaf\xc1\x12\x40\x85\x7b\x03\x11" "\xf3\xb4\x88\x84\x8a\xba\xbb\xa9\xd4\xa0\x66\x02\x34\x73\xd8\x3d\x2a\x18" "\x9e\x0f\x22\x77\xe1\x86\x14\x66\x30\x5f\xce\x25\xf2\x5b\x2f\xba\x5f\xac" "\xd5\xdc\x57\xb5\x96\x16\xf7\x64\xc3\xac\xb9\x56\x2b\x1c\x11\x80\x72\x12" "\xd5\x57\xaf\x99\x8e\x0b\xca\xa1\x08\x5d\xee\x62\x35\x39\x85\x8c\xc1\x06" "\x45\x9a\x96\xff\x5f\x51\x3d\x05\xf8\xbd\x21\x30\x0f\x6b\x37\x55\xba\xf9" "\xa3\x22\x31\x18\x63\xb4\xc9\xc0\x8e\x2f\xfc\x55\x3d\x63\xb0\x80\x31\xba" "\x58\xdf\xea\x76\x43\x7b\x34\x85\x03\x5e\x94\x32\xb4\x63\x1f\x93\xf9\xbd" "\xdf\x48\x73\x83\x23\x6c\x9a\xed\xd8\xd2\x4c\x32\x7c\x51\xc8\xb7\x66\x39" "\x99\xb8\x45\x90\xe6\x6e\xa1\x4f\x2b\x2a\x1c\x50\xd3\x1a\x8b\x49\xec\xd4" "\xfd\x57\x93\x08\xfb\xee\x89\xd0\xa7\xc7\x27\x18\xa0\x8a\xc9\xd8\x37\xd0" "\x96\xd1\x4e\xba\x2b\xbd\x89\x6b\xc6\xfc\x55\xb9\xaa\xab\x82\x38\xee\x51" "\x1d\x84\xd9\x2f\xb6\x2e\x7b\x19\x7d\xda\xed\x50\xc0\x1c\x38\x1e\x76\x69" "\xe9\x6c\x72\xae\xb7\xd0\x25\xbd\x8e\xad\xee\x18\x9f\xe7\xd5\x62\x03\xac" "\xb8\x89\xec\xf6\x5e\xf9\x6b\x92\x8c\x9e\x0e\x9a\x57\x7b\xea\x11\x7a\x16" "\x47\xdb\x7b\x34\x2f\xbe\xad\x43\x60\x0e\x87\xd9\xd1\xa3\x5c\x44\xa8\xe7" "\x99\xc0\x73\x75\xce\x36\x7c\xc9\x6e\x93\x15\x30\x50\xd6\xd8\xe3\x34\xef" "\xad\xf4\x67\x61\x1b\x90\x17\x0e\x03\xaf\x0e\x65\x54\xdd\xc2\x33\x3e\x44" "\xba\xe5\xb8\x31\xb4\x60\x98\x60\xc2\x62\xab\xfd\xfa\xda\xcb\x98\x0f\x63" "\xf9\x92\x35\xaa\xb7\xb9\xd0\x90\xd9\x8c\x16\x24\x77\x58\xb2\x75\x40\x0d" "\xf4\x28\x09\x3e\x65\x83\x1b\x29\x2b\x41\x5d\x1a\xa2\x0b\xde\xe1\x89\x85" "\xf0\xfd\x9c\x28\xf6\xf8\x64\x83\x13\x01\x58\xbd\xe1\xd5\x3d\x4f\x51\x69" "\x56\x5e\x88\xb5\xdc\xce\xb7\x7b\xba\xc3\xb8\xa7\xdb\xbd\xcd\xb0\x2a\x61" "\x96\xb0\x47\x93\x44\x55\x99\x36\x84\xa1\x65\x8a\x18\xa8\x57\x9b\xb1\x90" "\xc2\x98\x9c\x55\x9a\xf9\x9a\xc1\xce\xba\x26\xcb\x20\xfe\x61\x1f\x5d\x46" "\xd4\xb4\xd8\x18\xd1\xad\xd9\x76\x7a\xae\x60\xf3\x9a\x35\x62\xbc\x64\x14" "\x9a\xac\xe8\x32\x7e\x6a\x02\xe0\x07\x83\xae\x86\x6d\xc6\x55\x1a\x48\xd0" "\xf3\x51\xd0\x74\x55\xb5\x4e\x20\x54\xe6\x60\x43\xed\x9a\x57\x74\x1b\x4e" "\x9f\xcf\x07\x4f\xd3\x66\x8b\x32\x16\xff\x84\x46\xd3\xd2\x3d\x83\x63\x0f" "\x6a\x08\xb9\x1d\x7a\x71\x4c\x72\xd2\xb5\xf5\x6b\x85\x12\xa8\x45\x32\x8e" "\x1f\x39\x06\x55\x6d\x6e\x20\xac\xcd\x3b\xf5\x7e\x5a\x74\x7f\xec\x1c\xbd" "\x21\x88\xf4\x7b\x05\xf9\x99\x1a\x49\xc2\xb8\xfc\xbf\x9e\xc8\x9c\x37\xfc" "\xfd\x3f\xf5\x63\xf9\x87\x76\x12\xb9\x4b\xb2\x7a\x71\xc7\x45\x84\x47\x14" "\x3a\x9e\xa2\x6f\x72\xb5\x18\x6f\x3f\x40\xa9\xca\xa4\xb1\x0d\xf3\xa3\x3d" "\x3f\xe8\x7b\x4b\xa3\xe5\x6b\xca\xf9\x55\x0b\xdc\x9e\x09\xd8\x00\xdd\x3c" "\x30\xfc\xb7\xc9\xc8\x6f\x40\x9a\xf7\xf3\x67\x56\x5a\xfc\x29\xc5\x82\xbf" "\x67\x9e\xec\x21\x5d\x6a\x4d\xe8\x54\x94\x3d\x72\xad\x2d\x99\x39\x8b\xd4" "\x66\x48\xcd\x1a\x0a\x42\x0c\x07\xea\xc8\xfc\x2c\xd6\x8e\xfe\x8b\x56\x5c" "\xbb\xf4\x03\x9e\x0e\x36\xf6\x7a\x8f\x1e\xc3\x45\xa7\xaa\x25\xaf\xa8\xb7" "\xed\xef\x95\xbb\x55\xbd\x85\xaa\x64\xd1\x17\x88\xb3\xc9\xee\x51\x16\xc4" "\xd4\x27\x06\x62\xe3\xd5\x6d\x0e\x11\x8a\xf6\xac\x69\xb8\xd2\x84\xac\xa6" "\x37\x98\x9a\x9e\x0b\x7c\x64\x32\xce\x21\x74\x00\x40\x8e\xce\xe0\x4a\x78" "\x87\xe2\xbe\xcc\x24\x1c\xa6\xd1\x07\x16\xd8\xbb\x1f\xfa\xfc\x33\x2a\x3e" "\xe3\xbd\x9d\xcb\xfa\x23\xa0\xa7\x81\x16\x7b\x02\xd4\x82\x9d\x66\xdb\x39" "\x71\xec\xdf\x12\xcf\xe1\x36\x1b\xfc\x15\x4b\x0a\x86\x8c\x3c\xd4\xcc\xd3" "\x03\xbb\xf9\xe6\x35\x5b\x0e\x17\x19\xa2\xe5\xbb\x8c\x13\x03\x33\x09\x00" "\x00\x00\xd7\x9e\x63\xe2\xcb\xc6\x15\xd1\x38\xc0\x2c\xa1\x68\x32\x4d\x7f" "\x6d\x5c\xb9\x8c\xed\xe3\x7c\x98\x6f\x4b", 4096)); NONFAILING(*(uint16_t*)0x200000001784 = 0x1000); syscall(__NR_write, /*fd=*/r[0], /*data=*/0x200000000780ul, /*len=*/0x1006ul); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {63 70 75 2e 73 74 61 74 00} (length 0x9) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000080, "cpu.stat\000", 9)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000080ul, /*flags=*/0x275a, /*mode=*/0); return 0; }