// https://syzkaller.appspot.com/bug?id=bc5db15be2ab04e98ebf08c4ba4a3a95ba1769c8 // 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 #include #include #include #include #include #ifndef __NR_fsopen #define __NR_fsopen 430 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% 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; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 00} (length 0xff) // } // flags: mount_flags = 0x4000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {af a9 5f 9c ab 97 20 40 eb 9f c4 6c e5 66 bc 44 // 86 ba 9a 69 89 c0 bc bc 79 53 94 ff 2d 89 96 81 db d0 ed 51 85 53 // fd d7 37 cf 7c ab 81 a4 8d b6 f3 7c eb 75 1a 42 15 75 5d fa 88 1b // 23 65 3a 6a de e0 22 80 71 3c 97 c4 c2 33 7a cc 38 d8 db a2 77 7d // 97 f0 f3 a7 d4 e2 af 5e 3e 3d 1b a6 b3 b7 29 b1 08 2f 1d 55 cd 2d // 18 3b 78 46 d0 af 75 0e ad 5f 28 77 c4 fd 37 0b b6 2e f8 82 b9 e0 // dd 6a ed 80 29 5d 4b 2b a6 a0 82 89 bf cf b5 5e 32 0c b2 ca f5 a6 // f9 12 28 a8 73 08 7a 9e 00 e2 f5 ad 60 2a 07 c1 8d e2 58 a0 4d 36 // d2 e3 b0 f0 b8 70 e5 91 83 d6 3f b1 15 b8 71 bc 6a 89 20 7f 58 8d // 94 9b 52 ff ac 44 12 8b a0 19 11 3a 77 f2 fa c9 87 60 34 80 36 30 // 31 eb 80 05 cd 60 c1 58 37 35 4e 5e f4 ae 09 86 36 32 1e 48 b4 19 // f8 ba 3e db 23 18 af 88 fb f1 8a b5 1a 52 3a 30 38 63 46 8c 45 71 // 47 43 cd b0 d6 de ca ed ff 7a 9b 47 ff 12 31 40 86 32 fd ff bf cf // 40 3c b2 7b b7 38 5e be 81 05 8d 44 94 0d a7 da 7a ff e0 20 e4 11 // 51 6c 82 9e e6 98 85 c3 a1 03 67 f0 f7 b3 cc bd 05 e1 ff 9c a5 70 // ba 15 a1 66 be 4a fa 64 df 7d 8b dd d1 9c bf 2f 0f 21 17 b1 35 69 // fe 5a c1 2c 82 ca aa 31 02 20 9f 48 eb 20 40 bc 5e 20 0e ca 17 6b // f2 19 e7 a7 45 b5 d2 5c a0 c8 99 bc 8b 56 95 b1 5d 6c c8 3c 89 66 // f7 7d 35 c9 0c 81 9d 46 5e ad 79 bb 58 46 90 d6 8e a0 83 e6 d7 a1 // b6 d2 c3 93 c2 1a 1d 60 1f 98 b6 d4 5f 59 16 0e 61 0d 9c b3 f8 4d // 15 20 61 ab 13 6f 8c a7 ce 57 58 7a 69 f1 57 6b 05 39 ca 96 94 da // 65 de 32 38 61 c2 62 39 5d 71 06 c0 8f 5c 1f da 6b 3d f6 76 f0 9d // 73 11 79 1e 1b d5 92 72 29 fa f9 b0 47 db 8a fa b5 69 a9 ca 31 98 // 88 e4 b4 69 00 54 c0 e0 ca f8 86 f7 77 3e d7 45 3b b8 a1 3e 85 75 // 24 ef 57 d5 4b 40 57 51 f2 60 90 ab 90 66 25 b4 3e fb de 3f 9e 46 // a9 d1 1c 93 cf 01 21 f4 10 bb 0f 09 08 3c 7f 71 18 d7 c7 f0 57 b5 // 7f 80 0a 8d 36 b4 f2 14 d6 94 bc de 03 30 b2 7a de a2 bc 02 09 5f // 9e b1 94 1c 0f 3b 5c d0 fe 68 2f 3e e7 84 cf 04 cc 45 a2 3a 86 31 // 38 6a c7 2f 62 03 51 fa d5 e4 c1 7e 70 09 85 45 9a 8c e1 5c 05 64 // 74 d4 bc 8c aa a5 4c f2 3b e0 6a 6d fb 42 8c 0a 2c 1d 73 1a 60 18 // 0c 88 2e 48 e2 e2 7f 9e db 54 78 be e5 30 e6 d8 b1 3d 8d 9c 3c ca // 83 27 9a 50 d3 fd b3 0f 7a 91 74 3a 11 59 0a 10 08 f4 7b 65 33 9e // 97 32 b4 15 c5 c6 64 00 7c 33 76 2f d8 2c ab 04 ee 9f 07 ce 89 17 // 50 80 e3 ca 37 01 a1 4b 08 5d 60 eb 19 3e 2c 4f ba 87 cf 51 eb 36 // fd a2 64 2b 0d ab d5 23 aa 26 dc 6e c4 15 e8 bb 1a 9d 03 73 4f 47 // be 7f a8 15 93 b1 8c bf 7b e0 85 01 9f d3 37 71 d0 82 69 6b 89 fa // 14 17 f7 50 70 13 fb ef fe 45 6e b0 62 df db aa 51 9e a5 a2 36 30 // 80 37 ee b5 ee d8 09 26 a6 dd 51 52 c4 00 ec a2 fa de 1c d0 61 40 // 72 cd cf 0c 85 d1 77 8e e7 9d c8 bf a6 2e 6f 30 f0 fa ac 6c 67 ff // 22 3d 2f f8 f4 f7 34 41 c2 e5 3e da 8d 57 7e 2a 81 d4 47 fa 2c e7 // ff 6a 4c cc 57 d3 7b 0d 63 35 6a 86 ff a2 3f 03 75 8d 1d 1f 3c f2 // 0e 12 89 2f 99 88 37 7f 63 54 f4 a0 9e fc 11 cf 90 21 79 ef 30 9d // 46 f4 fa 24 d0 40 d7 65 fa 0c 25 d4 b9 9c f8 20 05 9a 9f 72 22 c4 // ad 71 b5 82 d9 4d cb 4b ec 9b d8 d0 ba d2 58 75 3c fc 5c 1f 6b 14 // 7a aa 59 f3 14 bb 22 91 bf a5 fd cc 80 b8 e0 4c a8 c2 e8 48 8c 79 // f4 44 c1 79 f5 9d 7f e6 84 19 bc 6c 31 2e 7f d7 14 15 df fd 31 78 // ec a6 0b 13 ce 5f 28 79 d7 80 88 3c cd c3 7e 98 b6 6c 40 f9 ce e4 // ae 9e 8f 79 f6 19 82 b1 54 5b 33 a0 63 a9 d2 ed 6a 8e 50 11 a9 6d // 2b 90 eb 3a 74 c1 d7 8f 34 df ad 8c 2a d6 f1 2d 27 60 07 d1 e9 c0 // 51 e1 6a e1 fb c5 7d a2 6e 76 ad df 52 61 ea 82 44 c2 b3 e3 c5 ed // fb e5 53 41 b9 a6 ca 17 a9 1c 97 01 a4 0d b6 2b f7 e8 f1 88 9f 71 // 27 f5 28 68 38 83 b2 a2 b8 c4 7b b4 6e 19 e7 8c 17 0d 25 96 2b 7f // b8 0e d5 11 3a 6c ae 6a e2 dd aa ea 13 01 a4 97 a1 33 36 8c 7b 10 // 5e 4e 0c 7e ca 9c 90 55 ca d6 03 e1 e4 18 08 42 0d 9a 09 e7 b5 74 // 90 ce ad 94 52 2b 6a 0f 3f 03 f6 04 83 6f f1 6c 82 09 47 82 a4 b7 // 05 28 5f ec 1e 6e 77 ef 0a 4f ab 3c b4 11 b8 92 7b 4e 9e 29 cb 8f // b6 19 f3 ad 05 e2 65 06 a0 5b 07 5e 57 88 90 de 1e 6a 4b 49 be bc // 98 4a b9 a3 05 75 53 b8 96 67 5f 21 92 01 25 ae 2f 66 fc 3b 0b 0d // 83 f8 95 f9 45 c5 d5 e2 b5 7a 42 47 de 51 86 c3 ca aa 7e 3c 4c 47 // 55 f3 d2 c7 c6 4a 0a d6 d8 29 04 c3 18 8e 4c 37 c7 1a 22 97 a1 e0 // dc 48 1d 43 ba fc 16 97 0d 33 5f 75 52 c5 41 bb 59 6b e1 4e d7 33 // 34 51 18 41 9e 34 20 a4 47 20 33 55 17 f8 67 e2 cd 7c 22 82 02 fc // 87 c6 f1 09 d8 9b 9f df 8a fe 59 a3 88 78 26 72 2d 3c ce 23 c1 1f // ee 3b 2d 97 bc 29 f9 70 f4 91 61 b1 63 4d 9b a9 f3 28 d7 76 a3 6c // 5e 55 3c 79 ec 00 41 7d 1e 5d b1 0c 42 bb a3 9d 1f d0 b5 b3 11 b9 // df f6 ea 65 33 23 2f 75 ee 7a 1e 6e be 3c 69 5f 61 4f a7 7a 6f cc // b6 d0 01 b3 c9 78 17 a6 6e 3c 3a 15 94 74 68 99 08 34 fb 2a 45 45 // 54 30 46 10 60 c6 ac 25 8b 4d 22 8b d3 1e d9 c3 bc 61 22 26 4a 17 // 47 22 19 7b f1 dd 2d 40 1c d3 39 30 a0 14 f4 ee 35 3a e3 3e de bb // dd 85 7f bc 66 5c 18 4f dd 12 3a ea 41 4b 69 4d dd 66 a8 37 87 8c // 0d 4b 82 e8 03 f4 5c 11 a7 22 6b b8 be f2 37 8b 65 8e c8 0e 93 ca // ec 5f 94 84 7c d7 b1 88 44 b2 12 3e dc 40 f5 63 c9 ed e5 26 54 d7 // 33 49 03 47 d2 02 e4 49 a2 c4 91 a9 bc ae 41 d7 11 02 d0 df 5b d6 // de fd 27 8b 9a 60 25 eb 48 13 4f 4a b9 8b db 2c b7 15 80 5b cf ee // 79 f0 1e 9a 3f a0 1b b9 69 c7 c0 bf ed 86 39 2e 59 81 18 dc 54 dd // d4 59 13 90 e6 a0 11 2c ae 3f 4d d7 05 e8 ba e5 aa 68 52 39 40 98 // 2c 48 35 1e ff c8 a4 cb cd 66 26 26 39 3e e2 ab 5e 1a 23 2f ae b1 // 32 51 7d 71 32 a0 35 55 7c 92 da af 53 2f 09 83 b6 a8 21 e9 86 67 // 59 01 61 06 5d 5d a6 66 b5 a7 59 a0 25 f0 6e 3f 0e a7 c0 ed b8 4c // 38 e4 4d 76 4d e2 b6 5c 53 7a c7 71 90 18 d5 81 37 c6 b9 d0 f5 b6 // fb 83 ae cf 63 c7 be eb 4b 7e af 94 8b 4f 2c 3a bf e6 70 c9 85 6a // eb f7 cf 1a 52 ec 80 eb 42 43 fb b9 70 eb 94 d1 9b d6 e4 f1 a8 6f // 55 e7 6c 34 31 f6 2b c6 e4 2f 3d a4 f9 80 4e 5f 51 60 d6 99 a3 0a // 96 55 cd 27 9f 09 1c bb fd c6 91 e3 a8 c8 42 e3 c7 19 a0 80 a0 0e // 18 8b 89 5f 13 33 f1 a5 36 4a 94 78 45 7c 9b fc c1 21 76 75 04 73 // 42 7e 93 c2 03 6a 4d 9e ed a7 39 e4 62 52 16 a0 f9 a3 04 f6 8d 8a // 3d da 39 33 98 1d 59 bb e5 8e d9 25 2d 6e 06 1e 74 95 67 07 1e 99 // 99 f8 2c 6a e2 94 94 ed 81 30 12 ca 96 c5 af 3d f1 71 10 64 13 1b // f7 f6 f1 b4 70 c2 e9 2f 6f 68 3b 64 6f 12 1b 19 5a fc 2d 93 f4 9a // 04 0d 97 0c 52 33 1a bd 0c 6c 9b 47 ca 81 5e 15 01 76 12 8a 11 7c // 2d 55 d4 7f 6e b9 67 26 5e 54 2d 79 8f de 2d 63 26 3e 21 47 5c b3 // a4 27 25 22 25 4c 99 d3 fd 72 d1 53 10 19 81 d0 f1 72 f5 5b 96 ab // 75 0f 5b f1 e3 ac 37 f3 d6 3f 7a 08 ee ae 76 86 8e 79 82 5d 6d 14 // 87 b1 36 c0 89 42 be a9 50 7e a1 de 09 7a ca 4b a9 7d 23 d9 29 e7 // ba 92 72 3f e7 08 bd 81 9e 1e 5f 83 da a0 33 66 db 78 a4 a6 3e 01 // b4 49 8a 97 a6 2a ca e9 1a f7 1b 79 4d 2b 56 3f 46 d1 e5 6a a7 65 // 2a 65 0a 12 31 e8 a3 b9 89 09 68 b6 a0 30 07 2a d5 d6 5f 89 66 7a // b6 7f 3b 9f dd 53 fa 83 30 a8 db ac 11 e1 7d 87 88 2e f2 a2 32 3f // b9 be d8 81 30 12 41 10 73 40 ce 96 44 40 40 c5 74 a3 80 10 b0 93 // fd ce 2c 07 5f 54 66 b2 1d 16 d0 dd f3 26 46 a7 2c 5d 70 08 2d 60 // b3 95 63 46 49 43 ae 16 63 c9 f8 d5 fe 12 86 7a d9 2c 17 7c 3b 80 // 14 eb f8 b6 d3 0c 91 1c 25 9e 6e bd f8 9b 47 69 07 c6 f7 77 74 82 // 97 df 71 d0 64 8c 7a 2f 16 6c f6 ef 39 d8 81 27 e6 4c da 67 a8 e8 // 60 46 3f 7a 1c f5 a0 6f 43 8a c8 37 4e d3 8b e7 aa 02 5a 8b 38 bb // 82 d4 09 31 0a 21 a4 cc c9 74 d8 ff bc b0 12 5e 19 10 7d 5c b3 4d // c9 99 b5 3c 2a b4 af ea 86 b9 51 6c 15 06 d4 98 59 a4 ae ab 61 c0 // 23 ec 34 2f e5 7d db 8a ed 17 f0 18 a6 9c b0 16 22 c3 0f ce c3 e9 // 47 f3 53 94 c5 dc 8b 8b 78 02 2c 41 f4 f9 a4 91 5b aa 0f f0 fb 84 // f2 10 0f 3c 88 e0 ed 56 34 8d 2c c8 fd 7c 66 53 4e 15 59 95 f1 5f // 17 77 f4 5b 40 4a 81 36 95 09 6c bb 8b 32 3a 66 b8 61 9e 06 72 f6 // 10 bb 2c 82 af 41 02 84 9f 8f 58 7b 8b c6 67 0f 37 13 49 eb 51 42 // 07 d1 a8 1c 6c c3 f3 78 ad 9d 4f cd 15 78 df f0 12 31 49 c1 82 2a // 71 db 1f 71 da 0c 05 ef 82 29 0a 68 ba 8b c2 41 d9 67 34 45 73 eb // ba c0 5f 3b 7e 2d 1d 35 24 19 e2 85 41 10 e6 cb 4f bd bc c8 79 de // 29 20 8e 35 35 fe 95 e8 17 fe e6 90 6a fe 84 a6 9a f8 01 8a dc bb // 08 94 f1 7d 11 8a a5 9a 59 70 aa 53 95 13 eb 91 24 b4 4d b1 66 be // 3c c6 4b 19 15 76 a4 93 b8 af 67 fd cb 0e 2f 3b d8 1c a8 f2 bc c9 // 1c ae a6 e4 91 dc 72 b5 c3 db 24 c7 b8 57 09 83 6a f5 73 b8 92 74 // 5a 02 12 e8 82 db 0e 88 ff 44 33 91 e2 8a a4 01 ac 13 64 8a ec a4 // 0f 81 6a 33 dd 91 9e b4 5b 3c 4f e9 3f 3b ec e6 7c 5b ae 64 34 cb // 39 1f 99 4a 59 86 77 8a fe 74 6e 7d 51 0f 91 23 16 be cf ea 72 4e // fb 08 31 57 8f 24 e0 9a dc 3a 50 1d 42 fb dd f3 76 7c 12 29 3c 2a // 51 9a ea 93 01 d1 6d 4e 6f b4 61 6a 84 63 8b 8c 1c 45 ba 23 65 a6 // bd 83 89 84 3e a0 2a 98 14 ec 3b 4f 82 96 28 fd 8a de 85 f3 86 9e // 82 48 a7 b2 62 50 ec 58 00 d0 64 86 ec 90 8c 40 8f 5f 7d 05 ec ea // 33 9e ee ea 48 b1 cd fc 19 ac 63 92 7b 37 ec f5 b7 54 2c 23 95 b5 // 51 b5 61 94 fe fc 8d ed 81 aa 30 3f c9 32 cd c1 ef 77 53 4d 43 88 // 14 54 84 8e 1f 47 31 09 18 79 9c 1f de c5 1f 09 e1 a3 b4 59 69 f9 // dd e4 67 22 c6 d4 2c 3f ea 53 43 87 9a 2a 62 9c 4a 8b bc f9 1a f1 // ad 9e f8 d1 b7 ef 5c c4 90 14 25 1a 66 29 bb e3 86 28 68 9e f6 cf // c4 00 72 a4 cd f4 e0 79 c0 35 69 ba d1 e2 21 4d 02 1b 39 d4 00 26 // 15 6d 38 fb e6 ef 71 96 a7 69 0d a2 ee 5f 65 a8 e6 66 5e f4 b5 09 // b0 c5 e6 39 0b c1 c2 4e db b6 7c 4d 97 22 20 2c c6 28 29 1d 68 d7 // c8 e3 8f 2b c4 a3 83 cb f2 a9 b3 93 17 b2 10 14 c9 c2 b8 2c a7 2f // 13 ce 0b 1c 19 c2 40 5f ed 61 69 ad 7d 49 c5 c0 e2 34 91 ed f6 fc // 65 b7 cd 10 3f 5f b4 c1 50 cd 73 85 09 30 b0 3a d4 9c cd 28 a5 b6 // 23 54 c6 88 5b ec 47 d4 b4 dc dd 98 11 79 c7 e0 b4 41 1a e5 bc 81 // 9a f9 fb 1a 92 b7 6c a5 4b d2 a5 60 e1 59 6c f9 7f c8 ee 65 17 1b // c7 45 71 42 1b 93 33 cd c8 9b a0 b3 d7 05 cd 35 0a ee 6d 24 b8 76 // d0 1d 8f 04 f0 32 3d 55 ba 5e 16 06 b8 90 23 50 7b f2 86 a1 0f 61 // ee 2a 71 9b 2e 76 9a 42 60 11 29 db 0e 80 94 8b 7b 69 81 61 bc be // 43 44 22 8c 9c a2 c4 69 af 69 66 71 af e0 0f eb fa c5 12 ba 02 7e // 28 a2 73 f0 26 ec 45 91 c8 c5 8a 4f 5f d5 88 d2 f7 d2 bf 0e 55 2a // 53 cc a0 98 2f 25 66 25 da 62 1e 9f b9 23 b6 bc b0 bc e0 b1 36 a6 // 0f cd a6 b1 74 8d 2f 8e 25 59 b7 a2 03 27 6f 69 33 6d 93 ef 02 5a // fe 44 f3 7f 80 33 a0 d3 cc 3b 9c 22 a0 1e a5 95 b4 74 85 c1 1c 17 // f7 44 a6 ac 4c 5d 2e 53 42 77 58 f7 c0 28 44 aa 92 cb f2 08 62 d9 // 85 15 aa 22 70 7e d3 73 58 14 1b 02 db 78 7e 4e 0b a9 54 eb 0f 07 // a5 1e b8 25 ab 5f 4c bb 75 f3 3f 39 d6 57 f5 79 2c 43 00 be 32 ee // b4 18 fd f6 3c f8 d8 32 fd ac 23 38 44 e4 52 57 38 4d a4 12 af 50 // 0e ce 64 04 2c 79 f2 33 61 81 68 d7 e9 d8 16 bc 51 07 3b cb 4c ec // f2 09 84 8c 84 95 22 43 55 56 11 15 a3 72 7b e4 07 1c af 02 5f b9 // 61 87 d6 67 83 13 e2 9f c0 6b 30 5e 85 62 14 88 2d a8 c3 f7 d7 28 // 2d f7 1e f6 a1 6e 57 74 13 6f 68 b8 41 ee 57 26 fe ad 65 f3 5f 31 // 8a 40 2a c3 f8 df 7c f2 f6 7b ef b7 79 3b 41 c9 20 e7 0d bb 58 78 // 4f 25 f1 d5 97 df 17 36 ce 07 25 0a 91 0c 09 cd 48 a1 37 4a df a4 // 77 fa 43 4b e6 42 4e 81 32 cb c7 c0 a2 22 2b 28 60 dc 48 14 67 93 // 3b 95 83 9a 96 4f d2 88 82 66 e2 ea 4e 44 33 13 77 9a 30 7d 9c 61 // 54 0f 50 85 57 a7 ca 0c 32 31 18 a6 d2 62 ca 66 4f 29 66 c9 8e 67 // 92 51 4d 80 2a 58 b0 48 3f e4 09 60 2c 20 43 b9 ac 63 d5 de 51 b7 // 2f fb 9b a2 cc 74 17 d5 30 ce 3b 20 fd 74 42 dc e7 39 97 c2 05 c9 // 00 a8 0c 44 f6 11 d3 fc b0 6c 45 a5 26 4f c6 e4 4f 16 6f 64 98 32 // 45 bb 05 b6 96 6a d2 92 85 a0 bb 5a 01 92 31 bf 43 a0 e0 1c 98 39 // a6 8a 41 5a 38 ec 06 21 88 bf 32 2a 43 a8 ea e9 cb b0 43 58 ea 58 // 4f 59 7c 18 95 77 e3 13 fa 7b 6c 93 e8 1e 0c de b9 53 23 9d 03 d0 // 35 ba e9 0f 01 30 f0 57 f1 1c 5c 35 11 68 b3 c8 b6 2e 03 9b 85 0a // 8a f8 da d6 b3 33 28 69 1f f7 65 e2 3a c9 fd 0b f7 e7 ae 2c 0c 33 // 9a 57 cf d8 78 30 0c d3 6b d5 c7 01 37 85 09 89 d1 fd 7d c0 4d f1 // 1e 33 a8 56 22 cb d6 5b 0d f8 5b 00 09 2a 87 71 0d cf 6d 8b 2a 52 // 8b 92 9a 0f bd 58 ff 62 59 4e 50 86 19 be f1 46 79 a9 53 28 7c 17 // 0a bd 62 d7 70 b9 4f 94 33 14 1d a5 b0 aa 73 b0 b7 61 56 7e cc ac // c4 e8 06 08 4d 1d 86 3f 24 72 03 84 27 39 26 56 f9 b4 71 39 ee 52 // 79 fb 5c af 8b 44 47 84 24 c2 ea 9d fd ca b9 0b 55 b0 02 dc f4 ca // b0 df ff 87 58 3c 58 b9 3e 86 6a 29 5b ed 55 79 a8 fd c9 73 f9 69 // c6 1e dc 10 3f b4 0f 2a fd 38 c4 67 8f 1b 7f 7d b5 f5 1e 8f cd 59 // a6 4d c2 1f 18 5f 6a a3 e3 fb 75 51 62 dd 0a be 47 34 1e 7f e6 b8 // 9b 29 22 a2 07 38 d1 17 9b 50 17 ae 06 4a 90 e1 0a 36 73 45 c6 e6 // ca 2f 16 fe 37 76 f4 3c 1e d9 cc 99 5f 10 fe 55 5b 1d 96 4f 68 72 // ea 1b a0 a0 07 1a 58 d7 11 c6 c3 26 c2 a5 3c ad f6 a4 8d 87 26 8f // 1f 0e 21 9b 59 29 10 13 4f 49 5a 2f 91 d9 b7 e3 3b ef e8 a9 a0 f7 // f1 3a e7 57 5f 92 49 7b 9a e1 2a 80 7e 4f c3 f5 51 ae 66 b2 74 1c // 99 ef 29 4f bd c5 b2 29 ff f1 85 fa 40 47 99 29 25 51 2d cc 79 0f // 39 e0 fd f2 e4 94 f1 9c fe 18 79 bb 4f bf de 41 69 cb f3 35 dc 7f // b2 99 bb 49 6e 60 4b 14 4d fb 33 e6 ad c4 17 ca 8a 0a b4 51 05 59 // 04 ed 16 9c d6 9d 62 4e 2e c2 0f c4 43 c7 da cb 1e bb 12 bd 26 80 // 30 9c f6 a3 f5 35 ef 6b 64 e0 5c 9c e9 ac 4c a8 3f 95 2d 79 48 8e // 1e 6d 20 7a 5f 93 da 48 93 2d} (length 0x1000) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // } // } // chdir: int8 = 0x41 (1 bytes) // size: len = 0x5eda (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5eda) // } // ] // returns fd_dir memcpy((void*)0x200000000380, "jfs\000", 4); memcpy((void*)0x200000000800, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 255); *(uint16_t*)0x20000000bcc0 = 0; sprintf((char*)0x20000000bcc2, "%020llu", (long long)-1); sprintf((char*)0x20000000bcd6, "0x%016llx", (long long)-1); *(uint16_t*)0x20000000bce8 = -1; memcpy( (void*)0x20000000bcea, "\xaf\xa9\x5f\x9c\xab\x97\x20\x40\xeb\x9f\xc4\x6c\xe5\x66\xbc\x44\x86\xba" "\x9a\x69\x89\xc0\xbc\xbc\x79\x53\x94\xff\x2d\x89\x96\x81\xdb\xd0\xed\x51" "\x85\x53\xfd\xd7\x37\xcf\x7c\xab\x81\xa4\x8d\xb6\xf3\x7c\xeb\x75\x1a\x42" "\x15\x75\x5d\xfa\x88\x1b\x23\x65\x3a\x6a\xde\xe0\x22\x80\x71\x3c\x97\xc4" "\xc2\x33\x7a\xcc\x38\xd8\xdb\xa2\x77\x7d\x97\xf0\xf3\xa7\xd4\xe2\xaf\x5e" "\x3e\x3d\x1b\xa6\xb3\xb7\x29\xb1\x08\x2f\x1d\x55\xcd\x2d\x18\x3b\x78\x46" "\xd0\xaf\x75\x0e\xad\x5f\x28\x77\xc4\xfd\x37\x0b\xb6\x2e\xf8\x82\xb9\xe0" "\xdd\x6a\xed\x80\x29\x5d\x4b\x2b\xa6\xa0\x82\x89\xbf\xcf\xb5\x5e\x32\x0c" "\xb2\xca\xf5\xa6\xf9\x12\x28\xa8\x73\x08\x7a\x9e\x00\xe2\xf5\xad\x60\x2a" "\x07\xc1\x8d\xe2\x58\xa0\x4d\x36\xd2\xe3\xb0\xf0\xb8\x70\xe5\x91\x83\xd6" "\x3f\xb1\x15\xb8\x71\xbc\x6a\x89\x20\x7f\x58\x8d\x94\x9b\x52\xff\xac\x44" "\x12\x8b\xa0\x19\x11\x3a\x77\xf2\xfa\xc9\x87\x60\x34\x80\x36\x30\x31\xeb" "\x80\x05\xcd\x60\xc1\x58\x37\x35\x4e\x5e\xf4\xae\x09\x86\x36\x32\x1e\x48" "\xb4\x19\xf8\xba\x3e\xdb\x23\x18\xaf\x88\xfb\xf1\x8a\xb5\x1a\x52\x3a\x30" "\x38\x63\x46\x8c\x45\x71\x47\x43\xcd\xb0\xd6\xde\xca\xed\xff\x7a\x9b\x47" "\xff\x12\x31\x40\x86\x32\xfd\xff\xbf\xcf\x40\x3c\xb2\x7b\xb7\x38\x5e\xbe" "\x81\x05\x8d\x44\x94\x0d\xa7\xda\x7a\xff\xe0\x20\xe4\x11\x51\x6c\x82\x9e" "\xe6\x98\x85\xc3\xa1\x03\x67\xf0\xf7\xb3\xcc\xbd\x05\xe1\xff\x9c\xa5\x70" "\xba\x15\xa1\x66\xbe\x4a\xfa\x64\xdf\x7d\x8b\xdd\xd1\x9c\xbf\x2f\x0f\x21" "\x17\xb1\x35\x69\xfe\x5a\xc1\x2c\x82\xca\xaa\x31\x02\x20\x9f\x48\xeb\x20" "\x40\xbc\x5e\x20\x0e\xca\x17\x6b\xf2\x19\xe7\xa7\x45\xb5\xd2\x5c\xa0\xc8" "\x99\xbc\x8b\x56\x95\xb1\x5d\x6c\xc8\x3c\x89\x66\xf7\x7d\x35\xc9\x0c\x81" "\x9d\x46\x5e\xad\x79\xbb\x58\x46\x90\xd6\x8e\xa0\x83\xe6\xd7\xa1\xb6\xd2" "\xc3\x93\xc2\x1a\x1d\x60\x1f\x98\xb6\xd4\x5f\x59\x16\x0e\x61\x0d\x9c\xb3" "\xf8\x4d\x15\x20\x61\xab\x13\x6f\x8c\xa7\xce\x57\x58\x7a\x69\xf1\x57\x6b" "\x05\x39\xca\x96\x94\xda\x65\xde\x32\x38\x61\xc2\x62\x39\x5d\x71\x06\xc0" "\x8f\x5c\x1f\xda\x6b\x3d\xf6\x76\xf0\x9d\x73\x11\x79\x1e\x1b\xd5\x92\x72" "\x29\xfa\xf9\xb0\x47\xdb\x8a\xfa\xb5\x69\xa9\xca\x31\x98\x88\xe4\xb4\x69" "\x00\x54\xc0\xe0\xca\xf8\x86\xf7\x77\x3e\xd7\x45\x3b\xb8\xa1\x3e\x85\x75" "\x24\xef\x57\xd5\x4b\x40\x57\x51\xf2\x60\x90\xab\x90\x66\x25\xb4\x3e\xfb" "\xde\x3f\x9e\x46\xa9\xd1\x1c\x93\xcf\x01\x21\xf4\x10\xbb\x0f\x09\x08\x3c" "\x7f\x71\x18\xd7\xc7\xf0\x57\xb5\x7f\x80\x0a\x8d\x36\xb4\xf2\x14\xd6\x94" "\xbc\xde\x03\x30\xb2\x7a\xde\xa2\xbc\x02\x09\x5f\x9e\xb1\x94\x1c\x0f\x3b" "\x5c\xd0\xfe\x68\x2f\x3e\xe7\x84\xcf\x04\xcc\x45\xa2\x3a\x86\x31\x38\x6a" "\xc7\x2f\x62\x03\x51\xfa\xd5\xe4\xc1\x7e\x70\x09\x85\x45\x9a\x8c\xe1\x5c" "\x05\x64\x74\xd4\xbc\x8c\xaa\xa5\x4c\xf2\x3b\xe0\x6a\x6d\xfb\x42\x8c\x0a" "\x2c\x1d\x73\x1a\x60\x18\x0c\x88\x2e\x48\xe2\xe2\x7f\x9e\xdb\x54\x78\xbe" "\xe5\x30\xe6\xd8\xb1\x3d\x8d\x9c\x3c\xca\x83\x27\x9a\x50\xd3\xfd\xb3\x0f" "\x7a\x91\x74\x3a\x11\x59\x0a\x10\x08\xf4\x7b\x65\x33\x9e\x97\x32\xb4\x15" "\xc5\xc6\x64\x00\x7c\x33\x76\x2f\xd8\x2c\xab\x04\xee\x9f\x07\xce\x89\x17" "\x50\x80\xe3\xca\x37\x01\xa1\x4b\x08\x5d\x60\xeb\x19\x3e\x2c\x4f\xba\x87" "\xcf\x51\xeb\x36\xfd\xa2\x64\x2b\x0d\xab\xd5\x23\xaa\x26\xdc\x6e\xc4\x15" "\xe8\xbb\x1a\x9d\x03\x73\x4f\x47\xbe\x7f\xa8\x15\x93\xb1\x8c\xbf\x7b\xe0" "\x85\x01\x9f\xd3\x37\x71\xd0\x82\x69\x6b\x89\xfa\x14\x17\xf7\x50\x70\x13" "\xfb\xef\xfe\x45\x6e\xb0\x62\xdf\xdb\xaa\x51\x9e\xa5\xa2\x36\x30\x80\x37" "\xee\xb5\xee\xd8\x09\x26\xa6\xdd\x51\x52\xc4\x00\xec\xa2\xfa\xde\x1c\xd0" "\x61\x40\x72\xcd\xcf\x0c\x85\xd1\x77\x8e\xe7\x9d\xc8\xbf\xa6\x2e\x6f\x30" "\xf0\xfa\xac\x6c\x67\xff\x22\x3d\x2f\xf8\xf4\xf7\x34\x41\xc2\xe5\x3e\xda" "\x8d\x57\x7e\x2a\x81\xd4\x47\xfa\x2c\xe7\xff\x6a\x4c\xcc\x57\xd3\x7b\x0d" "\x63\x35\x6a\x86\xff\xa2\x3f\x03\x75\x8d\x1d\x1f\x3c\xf2\x0e\x12\x89\x2f" "\x99\x88\x37\x7f\x63\x54\xf4\xa0\x9e\xfc\x11\xcf\x90\x21\x79\xef\x30\x9d" "\x46\xf4\xfa\x24\xd0\x40\xd7\x65\xfa\x0c\x25\xd4\xb9\x9c\xf8\x20\x05\x9a" "\x9f\x72\x22\xc4\xad\x71\xb5\x82\xd9\x4d\xcb\x4b\xec\x9b\xd8\xd0\xba\xd2" "\x58\x75\x3c\xfc\x5c\x1f\x6b\x14\x7a\xaa\x59\xf3\x14\xbb\x22\x91\xbf\xa5" "\xfd\xcc\x80\xb8\xe0\x4c\xa8\xc2\xe8\x48\x8c\x79\xf4\x44\xc1\x79\xf5\x9d" "\x7f\xe6\x84\x19\xbc\x6c\x31\x2e\x7f\xd7\x14\x15\xdf\xfd\x31\x78\xec\xa6" "\x0b\x13\xce\x5f\x28\x79\xd7\x80\x88\x3c\xcd\xc3\x7e\x98\xb6\x6c\x40\xf9" "\xce\xe4\xae\x9e\x8f\x79\xf6\x19\x82\xb1\x54\x5b\x33\xa0\x63\xa9\xd2\xed" "\x6a\x8e\x50\x11\xa9\x6d\x2b\x90\xeb\x3a\x74\xc1\xd7\x8f\x34\xdf\xad\x8c" "\x2a\xd6\xf1\x2d\x27\x60\x07\xd1\xe9\xc0\x51\xe1\x6a\xe1\xfb\xc5\x7d\xa2" "\x6e\x76\xad\xdf\x52\x61\xea\x82\x44\xc2\xb3\xe3\xc5\xed\xfb\xe5\x53\x41" "\xb9\xa6\xca\x17\xa9\x1c\x97\x01\xa4\x0d\xb6\x2b\xf7\xe8\xf1\x88\x9f\x71" "\x27\xf5\x28\x68\x38\x83\xb2\xa2\xb8\xc4\x7b\xb4\x6e\x19\xe7\x8c\x17\x0d" "\x25\x96\x2b\x7f\xb8\x0e\xd5\x11\x3a\x6c\xae\x6a\xe2\xdd\xaa\xea\x13\x01" "\xa4\x97\xa1\x33\x36\x8c\x7b\x10\x5e\x4e\x0c\x7e\xca\x9c\x90\x55\xca\xd6" "\x03\xe1\xe4\x18\x08\x42\x0d\x9a\x09\xe7\xb5\x74\x90\xce\xad\x94\x52\x2b" "\x6a\x0f\x3f\x03\xf6\x04\x83\x6f\xf1\x6c\x82\x09\x47\x82\xa4\xb7\x05\x28" "\x5f\xec\x1e\x6e\x77\xef\x0a\x4f\xab\x3c\xb4\x11\xb8\x92\x7b\x4e\x9e\x29" "\xcb\x8f\xb6\x19\xf3\xad\x05\xe2\x65\x06\xa0\x5b\x07\x5e\x57\x88\x90\xde" "\x1e\x6a\x4b\x49\xbe\xbc\x98\x4a\xb9\xa3\x05\x75\x53\xb8\x96\x67\x5f\x21" "\x92\x01\x25\xae\x2f\x66\xfc\x3b\x0b\x0d\x83\xf8\x95\xf9\x45\xc5\xd5\xe2" "\xb5\x7a\x42\x47\xde\x51\x86\xc3\xca\xaa\x7e\x3c\x4c\x47\x55\xf3\xd2\xc7" "\xc6\x4a\x0a\xd6\xd8\x29\x04\xc3\x18\x8e\x4c\x37\xc7\x1a\x22\x97\xa1\xe0" "\xdc\x48\x1d\x43\xba\xfc\x16\x97\x0d\x33\x5f\x75\x52\xc5\x41\xbb\x59\x6b" "\xe1\x4e\xd7\x33\x34\x51\x18\x41\x9e\x34\x20\xa4\x47\x20\x33\x55\x17\xf8" "\x67\xe2\xcd\x7c\x22\x82\x02\xfc\x87\xc6\xf1\x09\xd8\x9b\x9f\xdf\x8a\xfe" "\x59\xa3\x88\x78\x26\x72\x2d\x3c\xce\x23\xc1\x1f\xee\x3b\x2d\x97\xbc\x29" "\xf9\x70\xf4\x91\x61\xb1\x63\x4d\x9b\xa9\xf3\x28\xd7\x76\xa3\x6c\x5e\x55" "\x3c\x79\xec\x00\x41\x7d\x1e\x5d\xb1\x0c\x42\xbb\xa3\x9d\x1f\xd0\xb5\xb3" "\x11\xb9\xdf\xf6\xea\x65\x33\x23\x2f\x75\xee\x7a\x1e\x6e\xbe\x3c\x69\x5f" "\x61\x4f\xa7\x7a\x6f\xcc\xb6\xd0\x01\xb3\xc9\x78\x17\xa6\x6e\x3c\x3a\x15" "\x94\x74\x68\x99\x08\x34\xfb\x2a\x45\x45\x54\x30\x46\x10\x60\xc6\xac\x25" "\x8b\x4d\x22\x8b\xd3\x1e\xd9\xc3\xbc\x61\x22\x26\x4a\x17\x47\x22\x19\x7b" "\xf1\xdd\x2d\x40\x1c\xd3\x39\x30\xa0\x14\xf4\xee\x35\x3a\xe3\x3e\xde\xbb" "\xdd\x85\x7f\xbc\x66\x5c\x18\x4f\xdd\x12\x3a\xea\x41\x4b\x69\x4d\xdd\x66" "\xa8\x37\x87\x8c\x0d\x4b\x82\xe8\x03\xf4\x5c\x11\xa7\x22\x6b\xb8\xbe\xf2" "\x37\x8b\x65\x8e\xc8\x0e\x93\xca\xec\x5f\x94\x84\x7c\xd7\xb1\x88\x44\xb2" "\x12\x3e\xdc\x40\xf5\x63\xc9\xed\xe5\x26\x54\xd7\x33\x49\x03\x47\xd2\x02" "\xe4\x49\xa2\xc4\x91\xa9\xbc\xae\x41\xd7\x11\x02\xd0\xdf\x5b\xd6\xde\xfd" "\x27\x8b\x9a\x60\x25\xeb\x48\x13\x4f\x4a\xb9\x8b\xdb\x2c\xb7\x15\x80\x5b" "\xcf\xee\x79\xf0\x1e\x9a\x3f\xa0\x1b\xb9\x69\xc7\xc0\xbf\xed\x86\x39\x2e" "\x59\x81\x18\xdc\x54\xdd\xd4\x59\x13\x90\xe6\xa0\x11\x2c\xae\x3f\x4d\xd7" "\x05\xe8\xba\xe5\xaa\x68\x52\x39\x40\x98\x2c\x48\x35\x1e\xff\xc8\xa4\xcb" "\xcd\x66\x26\x26\x39\x3e\xe2\xab\x5e\x1a\x23\x2f\xae\xb1\x32\x51\x7d\x71" "\x32\xa0\x35\x55\x7c\x92\xda\xaf\x53\x2f\x09\x83\xb6\xa8\x21\xe9\x86\x67" "\x59\x01\x61\x06\x5d\x5d\xa6\x66\xb5\xa7\x59\xa0\x25\xf0\x6e\x3f\x0e\xa7" "\xc0\xed\xb8\x4c\x38\xe4\x4d\x76\x4d\xe2\xb6\x5c\x53\x7a\xc7\x71\x90\x18" "\xd5\x81\x37\xc6\xb9\xd0\xf5\xb6\xfb\x83\xae\xcf\x63\xc7\xbe\xeb\x4b\x7e" "\xaf\x94\x8b\x4f\x2c\x3a\xbf\xe6\x70\xc9\x85\x6a\xeb\xf7\xcf\x1a\x52\xec" "\x80\xeb\x42\x43\xfb\xb9\x70\xeb\x94\xd1\x9b\xd6\xe4\xf1\xa8\x6f\x55\xe7" "\x6c\x34\x31\xf6\x2b\xc6\xe4\x2f\x3d\xa4\xf9\x80\x4e\x5f\x51\x60\xd6\x99" "\xa3\x0a\x96\x55\xcd\x27\x9f\x09\x1c\xbb\xfd\xc6\x91\xe3\xa8\xc8\x42\xe3" "\xc7\x19\xa0\x80\xa0\x0e\x18\x8b\x89\x5f\x13\x33\xf1\xa5\x36\x4a\x94\x78" "\x45\x7c\x9b\xfc\xc1\x21\x76\x75\x04\x73\x42\x7e\x93\xc2\x03\x6a\x4d\x9e" "\xed\xa7\x39\xe4\x62\x52\x16\xa0\xf9\xa3\x04\xf6\x8d\x8a\x3d\xda\x39\x33" "\x98\x1d\x59\xbb\xe5\x8e\xd9\x25\x2d\x6e\x06\x1e\x74\x95\x67\x07\x1e\x99" "\x99\xf8\x2c\x6a\xe2\x94\x94\xed\x81\x30\x12\xca\x96\xc5\xaf\x3d\xf1\x71" "\x10\x64\x13\x1b\xf7\xf6\xf1\xb4\x70\xc2\xe9\x2f\x6f\x68\x3b\x64\x6f\x12" "\x1b\x19\x5a\xfc\x2d\x93\xf4\x9a\x04\x0d\x97\x0c\x52\x33\x1a\xbd\x0c\x6c" "\x9b\x47\xca\x81\x5e\x15\x01\x76\x12\x8a\x11\x7c\x2d\x55\xd4\x7f\x6e\xb9" "\x67\x26\x5e\x54\x2d\x79\x8f\xde\x2d\x63\x26\x3e\x21\x47\x5c\xb3\xa4\x27" "\x25\x22\x25\x4c\x99\xd3\xfd\x72\xd1\x53\x10\x19\x81\xd0\xf1\x72\xf5\x5b" "\x96\xab\x75\x0f\x5b\xf1\xe3\xac\x37\xf3\xd6\x3f\x7a\x08\xee\xae\x76\x86" "\x8e\x79\x82\x5d\x6d\x14\x87\xb1\x36\xc0\x89\x42\xbe\xa9\x50\x7e\xa1\xde" "\x09\x7a\xca\x4b\xa9\x7d\x23\xd9\x29\xe7\xba\x92\x72\x3f\xe7\x08\xbd\x81" "\x9e\x1e\x5f\x83\xda\xa0\x33\x66\xdb\x78\xa4\xa6\x3e\x01\xb4\x49\x8a\x97" "\xa6\x2a\xca\xe9\x1a\xf7\x1b\x79\x4d\x2b\x56\x3f\x46\xd1\xe5\x6a\xa7\x65" "\x2a\x65\x0a\x12\x31\xe8\xa3\xb9\x89\x09\x68\xb6\xa0\x30\x07\x2a\xd5\xd6" "\x5f\x89\x66\x7a\xb6\x7f\x3b\x9f\xdd\x53\xfa\x83\x30\xa8\xdb\xac\x11\xe1" "\x7d\x87\x88\x2e\xf2\xa2\x32\x3f\xb9\xbe\xd8\x81\x30\x12\x41\x10\x73\x40" "\xce\x96\x44\x40\x40\xc5\x74\xa3\x80\x10\xb0\x93\xfd\xce\x2c\x07\x5f\x54" "\x66\xb2\x1d\x16\xd0\xdd\xf3\x26\x46\xa7\x2c\x5d\x70\x08\x2d\x60\xb3\x95" "\x63\x46\x49\x43\xae\x16\x63\xc9\xf8\xd5\xfe\x12\x86\x7a\xd9\x2c\x17\x7c" "\x3b\x80\x14\xeb\xf8\xb6\xd3\x0c\x91\x1c\x25\x9e\x6e\xbd\xf8\x9b\x47\x69" "\x07\xc6\xf7\x77\x74\x82\x97\xdf\x71\xd0\x64\x8c\x7a\x2f\x16\x6c\xf6\xef" "\x39\xd8\x81\x27\xe6\x4c\xda\x67\xa8\xe8\x60\x46\x3f\x7a\x1c\xf5\xa0\x6f" "\x43\x8a\xc8\x37\x4e\xd3\x8b\xe7\xaa\x02\x5a\x8b\x38\xbb\x82\xd4\x09\x31" "\x0a\x21\xa4\xcc\xc9\x74\xd8\xff\xbc\xb0\x12\x5e\x19\x10\x7d\x5c\xb3\x4d" "\xc9\x99\xb5\x3c\x2a\xb4\xaf\xea\x86\xb9\x51\x6c\x15\x06\xd4\x98\x59\xa4" "\xae\xab\x61\xc0\x23\xec\x34\x2f\xe5\x7d\xdb\x8a\xed\x17\xf0\x18\xa6\x9c" "\xb0\x16\x22\xc3\x0f\xce\xc3\xe9\x47\xf3\x53\x94\xc5\xdc\x8b\x8b\x78\x02" "\x2c\x41\xf4\xf9\xa4\x91\x5b\xaa\x0f\xf0\xfb\x84\xf2\x10\x0f\x3c\x88\xe0" "\xed\x56\x34\x8d\x2c\xc8\xfd\x7c\x66\x53\x4e\x15\x59\x95\xf1\x5f\x17\x77" "\xf4\x5b\x40\x4a\x81\x36\x95\x09\x6c\xbb\x8b\x32\x3a\x66\xb8\x61\x9e\x06" "\x72\xf6\x10\xbb\x2c\x82\xaf\x41\x02\x84\x9f\x8f\x58\x7b\x8b\xc6\x67\x0f" "\x37\x13\x49\xeb\x51\x42\x07\xd1\xa8\x1c\x6c\xc3\xf3\x78\xad\x9d\x4f\xcd" "\x15\x78\xdf\xf0\x12\x31\x49\xc1\x82\x2a\x71\xdb\x1f\x71\xda\x0c\x05\xef" "\x82\x29\x0a\x68\xba\x8b\xc2\x41\xd9\x67\x34\x45\x73\xeb\xba\xc0\x5f\x3b" "\x7e\x2d\x1d\x35\x24\x19\xe2\x85\x41\x10\xe6\xcb\x4f\xbd\xbc\xc8\x79\xde" "\x29\x20\x8e\x35\x35\xfe\x95\xe8\x17\xfe\xe6\x90\x6a\xfe\x84\xa6\x9a\xf8" "\x01\x8a\xdc\xbb\x08\x94\xf1\x7d\x11\x8a\xa5\x9a\x59\x70\xaa\x53\x95\x13" "\xeb\x91\x24\xb4\x4d\xb1\x66\xbe\x3c\xc6\x4b\x19\x15\x76\xa4\x93\xb8\xaf" "\x67\xfd\xcb\x0e\x2f\x3b\xd8\x1c\xa8\xf2\xbc\xc9\x1c\xae\xa6\xe4\x91\xdc" "\x72\xb5\xc3\xdb\x24\xc7\xb8\x57\x09\x83\x6a\xf5\x73\xb8\x92\x74\x5a\x02" "\x12\xe8\x82\xdb\x0e\x88\xff\x44\x33\x91\xe2\x8a\xa4\x01\xac\x13\x64\x8a" "\xec\xa4\x0f\x81\x6a\x33\xdd\x91\x9e\xb4\x5b\x3c\x4f\xe9\x3f\x3b\xec\xe6" "\x7c\x5b\xae\x64\x34\xcb\x39\x1f\x99\x4a\x59\x86\x77\x8a\xfe\x74\x6e\x7d" "\x51\x0f\x91\x23\x16\xbe\xcf\xea\x72\x4e\xfb\x08\x31\x57\x8f\x24\xe0\x9a" "\xdc\x3a\x50\x1d\x42\xfb\xdd\xf3\x76\x7c\x12\x29\x3c\x2a\x51\x9a\xea\x93" "\x01\xd1\x6d\x4e\x6f\xb4\x61\x6a\x84\x63\x8b\x8c\x1c\x45\xba\x23\x65\xa6" "\xbd\x83\x89\x84\x3e\xa0\x2a\x98\x14\xec\x3b\x4f\x82\x96\x28\xfd\x8a\xde" "\x85\xf3\x86\x9e\x82\x48\xa7\xb2\x62\x50\xec\x58\x00\xd0\x64\x86\xec\x90" "\x8c\x40\x8f\x5f\x7d\x05\xec\xea\x33\x9e\xee\xea\x48\xb1\xcd\xfc\x19\xac" "\x63\x92\x7b\x37\xec\xf5\xb7\x54\x2c\x23\x95\xb5\x51\xb5\x61\x94\xfe\xfc" "\x8d\xed\x81\xaa\x30\x3f\xc9\x32\xcd\xc1\xef\x77\x53\x4d\x43\x88\x14\x54" "\x84\x8e\x1f\x47\x31\x09\x18\x79\x9c\x1f\xde\xc5\x1f\x09\xe1\xa3\xb4\x59" "\x69\xf9\xdd\xe4\x67\x22\xc6\xd4\x2c\x3f\xea\x53\x43\x87\x9a\x2a\x62\x9c" "\x4a\x8b\xbc\xf9\x1a\xf1\xad\x9e\xf8\xd1\xb7\xef\x5c\xc4\x90\x14\x25\x1a" "\x66\x29\xbb\xe3\x86\x28\x68\x9e\xf6\xcf\xc4\x00\x72\xa4\xcd\xf4\xe0\x79" "\xc0\x35\x69\xba\xd1\xe2\x21\x4d\x02\x1b\x39\xd4\x00\x26\x15\x6d\x38\xfb" "\xe6\xef\x71\x96\xa7\x69\x0d\xa2\xee\x5f\x65\xa8\xe6\x66\x5e\xf4\xb5\x09" "\xb0\xc5\xe6\x39\x0b\xc1\xc2\x4e\xdb\xb6\x7c\x4d\x97\x22\x20\x2c\xc6\x28" "\x29\x1d\x68\xd7\xc8\xe3\x8f\x2b\xc4\xa3\x83\xcb\xf2\xa9\xb3\x93\x17\xb2" "\x10\x14\xc9\xc2\xb8\x2c\xa7\x2f\x13\xce\x0b\x1c\x19\xc2\x40\x5f\xed\x61" "\x69\xad\x7d\x49\xc5\xc0\xe2\x34\x91\xed\xf6\xfc\x65\xb7\xcd\x10\x3f\x5f" "\xb4\xc1\x50\xcd\x73\x85\x09\x30\xb0\x3a\xd4\x9c\xcd\x28\xa5\xb6\x23\x54" "\xc6\x88\x5b\xec\x47\xd4\xb4\xdc\xdd\x98\x11\x79\xc7\xe0\xb4\x41\x1a\xe5" "\xbc\x81\x9a\xf9\xfb\x1a\x92\xb7\x6c\xa5\x4b\xd2\xa5\x60\xe1\x59\x6c\xf9" "\x7f\xc8\xee\x65\x17\x1b\xc7\x45\x71\x42\x1b\x93\x33\xcd\xc8\x9b\xa0\xb3" "\xd7\x05\xcd\x35\x0a\xee\x6d\x24\xb8\x76\xd0\x1d\x8f\x04\xf0\x32\x3d\x55" "\xba\x5e\x16\x06\xb8\x90\x23\x50\x7b\xf2\x86\xa1\x0f\x61\xee\x2a\x71\x9b" "\x2e\x76\x9a\x42\x60\x11\x29\xdb\x0e\x80\x94\x8b\x7b\x69\x81\x61\xbc\xbe" "\x43\x44\x22\x8c\x9c\xa2\xc4\x69\xaf\x69\x66\x71\xaf\xe0\x0f\xeb\xfa\xc5" "\x12\xba\x02\x7e\x28\xa2\x73\xf0\x26\xec\x45\x91\xc8\xc5\x8a\x4f\x5f\xd5" "\x88\xd2\xf7\xd2\xbf\x0e\x55\x2a\x53\xcc\xa0\x98\x2f\x25\x66\x25\xda\x62" "\x1e\x9f\xb9\x23\xb6\xbc\xb0\xbc\xe0\xb1\x36\xa6\x0f\xcd\xa6\xb1\x74\x8d" "\x2f\x8e\x25\x59\xb7\xa2\x03\x27\x6f\x69\x33\x6d\x93\xef\x02\x5a\xfe\x44" "\xf3\x7f\x80\x33\xa0\xd3\xcc\x3b\x9c\x22\xa0\x1e\xa5\x95\xb4\x74\x85\xc1" "\x1c\x17\xf7\x44\xa6\xac\x4c\x5d\x2e\x53\x42\x77\x58\xf7\xc0\x28\x44\xaa" "\x92\xcb\xf2\x08\x62\xd9\x85\x15\xaa\x22\x70\x7e\xd3\x73\x58\x14\x1b\x02" "\xdb\x78\x7e\x4e\x0b\xa9\x54\xeb\x0f\x07\xa5\x1e\xb8\x25\xab\x5f\x4c\xbb" "\x75\xf3\x3f\x39\xd6\x57\xf5\x79\x2c\x43\x00\xbe\x32\xee\xb4\x18\xfd\xf6" "\x3c\xf8\xd8\x32\xfd\xac\x23\x38\x44\xe4\x52\x57\x38\x4d\xa4\x12\xaf\x50" "\x0e\xce\x64\x04\x2c\x79\xf2\x33\x61\x81\x68\xd7\xe9\xd8\x16\xbc\x51\x07" "\x3b\xcb\x4c\xec\xf2\x09\x84\x8c\x84\x95\x22\x43\x55\x56\x11\x15\xa3\x72" "\x7b\xe4\x07\x1c\xaf\x02\x5f\xb9\x61\x87\xd6\x67\x83\x13\xe2\x9f\xc0\x6b" "\x30\x5e\x85\x62\x14\x88\x2d\xa8\xc3\xf7\xd7\x28\x2d\xf7\x1e\xf6\xa1\x6e" "\x57\x74\x13\x6f\x68\xb8\x41\xee\x57\x26\xfe\xad\x65\xf3\x5f\x31\x8a\x40" "\x2a\xc3\xf8\xdf\x7c\xf2\xf6\x7b\xef\xb7\x79\x3b\x41\xc9\x20\xe7\x0d\xbb" "\x58\x78\x4f\x25\xf1\xd5\x97\xdf\x17\x36\xce\x07\x25\x0a\x91\x0c\x09\xcd" "\x48\xa1\x37\x4a\xdf\xa4\x77\xfa\x43\x4b\xe6\x42\x4e\x81\x32\xcb\xc7\xc0" "\xa2\x22\x2b\x28\x60\xdc\x48\x14\x67\x93\x3b\x95\x83\x9a\x96\x4f\xd2\x88" "\x82\x66\xe2\xea\x4e\x44\x33\x13\x77\x9a\x30\x7d\x9c\x61\x54\x0f\x50\x85" "\x57\xa7\xca\x0c\x32\x31\x18\xa6\xd2\x62\xca\x66\x4f\x29\x66\xc9\x8e\x67" "\x92\x51\x4d\x80\x2a\x58\xb0\x48\x3f\xe4\x09\x60\x2c\x20\x43\xb9\xac\x63" "\xd5\xde\x51\xb7\x2f\xfb\x9b\xa2\xcc\x74\x17\xd5\x30\xce\x3b\x20\xfd\x74" "\x42\xdc\xe7\x39\x97\xc2\x05\xc9\x00\xa8\x0c\x44\xf6\x11\xd3\xfc\xb0\x6c" "\x45\xa5\x26\x4f\xc6\xe4\x4f\x16\x6f\x64\x98\x32\x45\xbb\x05\xb6\x96\x6a" "\xd2\x92\x85\xa0\xbb\x5a\x01\x92\x31\xbf\x43\xa0\xe0\x1c\x98\x39\xa6\x8a" "\x41\x5a\x38\xec\x06\x21\x88\xbf\x32\x2a\x43\xa8\xea\xe9\xcb\xb0\x43\x58" "\xea\x58\x4f\x59\x7c\x18\x95\x77\xe3\x13\xfa\x7b\x6c\x93\xe8\x1e\x0c\xde" "\xb9\x53\x23\x9d\x03\xd0\x35\xba\xe9\x0f\x01\x30\xf0\x57\xf1\x1c\x5c\x35" "\x11\x68\xb3\xc8\xb6\x2e\x03\x9b\x85\x0a\x8a\xf8\xda\xd6\xb3\x33\x28\x69" "\x1f\xf7\x65\xe2\x3a\xc9\xfd\x0b\xf7\xe7\xae\x2c\x0c\x33\x9a\x57\xcf\xd8" "\x78\x30\x0c\xd3\x6b\xd5\xc7\x01\x37\x85\x09\x89\xd1\xfd\x7d\xc0\x4d\xf1" "\x1e\x33\xa8\x56\x22\xcb\xd6\x5b\x0d\xf8\x5b\x00\x09\x2a\x87\x71\x0d\xcf" "\x6d\x8b\x2a\x52\x8b\x92\x9a\x0f\xbd\x58\xff\x62\x59\x4e\x50\x86\x19\xbe" "\xf1\x46\x79\xa9\x53\x28\x7c\x17\x0a\xbd\x62\xd7\x70\xb9\x4f\x94\x33\x14" "\x1d\xa5\xb0\xaa\x73\xb0\xb7\x61\x56\x7e\xcc\xac\xc4\xe8\x06\x08\x4d\x1d" "\x86\x3f\x24\x72\x03\x84\x27\x39\x26\x56\xf9\xb4\x71\x39\xee\x52\x79\xfb" "\x5c\xaf\x8b\x44\x47\x84\x24\xc2\xea\x9d\xfd\xca\xb9\x0b\x55\xb0\x02\xdc" "\xf4\xca\xb0\xdf\xff\x87\x58\x3c\x58\xb9\x3e\x86\x6a\x29\x5b\xed\x55\x79" "\xa8\xfd\xc9\x73\xf9\x69\xc6\x1e\xdc\x10\x3f\xb4\x0f\x2a\xfd\x38\xc4\x67" "\x8f\x1b\x7f\x7d\xb5\xf5\x1e\x8f\xcd\x59\xa6\x4d\xc2\x1f\x18\x5f\x6a\xa3" "\xe3\xfb\x75\x51\x62\xdd\x0a\xbe\x47\x34\x1e\x7f\xe6\xb8\x9b\x29\x22\xa2" "\x07\x38\xd1\x17\x9b\x50\x17\xae\x06\x4a\x90\xe1\x0a\x36\x73\x45\xc6\xe6" "\xca\x2f\x16\xfe\x37\x76\xf4\x3c\x1e\xd9\xcc\x99\x5f\x10\xfe\x55\x5b\x1d" "\x96\x4f\x68\x72\xea\x1b\xa0\xa0\x07\x1a\x58\xd7\x11\xc6\xc3\x26\xc2\xa5" "\x3c\xad\xf6\xa4\x8d\x87\x26\x8f\x1f\x0e\x21\x9b\x59\x29\x10\x13\x4f\x49" "\x5a\x2f\x91\xd9\xb7\xe3\x3b\xef\xe8\xa9\xa0\xf7\xf1\x3a\xe7\x57\x5f\x92" "\x49\x7b\x9a\xe1\x2a\x80\x7e\x4f\xc3\xf5\x51\xae\x66\xb2\x74\x1c\x99\xef" "\x29\x4f\xbd\xc5\xb2\x29\xff\xf1\x85\xfa\x40\x47\x99\x29\x25\x51\x2d\xcc" "\x79\x0f\x39\xe0\xfd\xf2\xe4\x94\xf1\x9c\xfe\x18\x79\xbb\x4f\xbf\xde\x41" "\x69\xcb\xf3\x35\xdc\x7f\xb2\x99\xbb\x49\x6e\x60\x4b\x14\x4d\xfb\x33\xe6" "\xad\xc4\x17\xca\x8a\x0a\xb4\x51\x05\x59\x04\xed\x16\x9c\xd6\x9d\x62\x4e" "\x2e\xc2\x0f\xc4\x43\xc7\xda\xcb\x1e\xbb\x12\xbd\x26\x80\x30\x9c\xf6\xa3" "\xf5\x35\xef\x6b\x64\xe0\x5c\x9c\xe9\xac\x4c\xa8\x3f\x95\x2d\x79\x48\x8e" "\x1e\x6d\x20\x7a\x5f\x93\xda\x48\x93\x2d", 4096); sprintf((char*)0x20000000ccea, "%023llo", (long long)-1); *(uint64_t*)0x20000000cd01 = -1; *(uint64_t*)0x20000000cd09 = -1; sprintf((char*)0x20000000cd11, "%023llo", (long long)-1); memcpy( (void*)0x20000005eb40, "\x78\x9c\xec\xdd\x4b\x8f\x14\xd7\xd9\x07\xf0\xa7\x2f\xd3\x73\xe1\x35\x8c" "\x2c\xbd\x96\x85\xb2\x18\x63\xe7\x42\x30\x30\x5c\x0c\xb9\xdb\xde\x24\x52" "\x56\x91\x22\x36\x59\x81\xc6\x63\x0b\x05\x27\x11\x90\x28\xb6\x50\x18\x6b" "\x16\xf9\x06\x51\xb2\x48\x94\xec\xb3\xca\x27\xc8\x1e\x3e\x84\x17\x59\x06" "\x09\x92\x8d\x57\xa9\xa8\x66\xce\x81\x9a\x4a\x0f\x3d\x03\x4c\x57\x33\xe7" "\xf7\x93\x9a\xaa\xa7\x4e\x55\xf7\x29\xfe\x7d\x9d\xae\xea\x13\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xfc\xf0\xfb\x3f\x3e\xd7\x8b" "\x88\xab\xbf\x4a\x0b\x96\x23\xfe\x2f\x06\x11\xfd\x88\xc5\xba\x5e\x89\x88" "\xc5\x95\xe5\xbc\xfe\x30\x22\x5e\x8f\xad\xe6\x78\xad\x5e\x7d\x3e\xa2\xde" "\x7e\xeb\x9f\x63\x11\x17\x23\xe2\xfe\xd1\x88\x87\x8f\xee\xac\xd5\x8b\xcf" "\xef\xb1\x1f\xff\x3e\xf2\xff\xc7\xfe\xf9\xd7\x1f\x9c\xfe\xfd\xdf\x7e\x77" "\xef\xe4\x1f\x4f\xbd\xdd\x6e\xff\xd3\xfa\x3f\xee\xfd\xe4\x6e\xba\x2d\x00" "\x00\x00\x60\x5f\xaa\xaa\xaa\x7a\xe9\x63\xfe\xf1\xf4\xf9\xbe\xdf\x75\xa7" "\x00\x80\xa9\xc8\xaf\xff\x55\x92\x97\xab\xd5\x6a\xb5\x5a\xad\x3e\x7c\x75" "\x53\x35\xde\xdd\x66\x11\x11\x1b\xcd\x6d\xea\xf7\x0c\x77\xc7\x5d\x19\x00" "\x30\xbb\x36\xe2\x8b\xae\xbb\x40\x87\xe4\x5f\xb4\x61\x44\x1c\xe9\xba\x13" "\xc0\x4c\x73\xdc\xfd\xe1\xf4\xf0\xd1\x9d\xb5\x5e\xca\xb7\xd7\x7c\x3d\x58" "\xd9\x6e\xcf\xc7\x82\xec\xc8\x7f\xa3\xf7\xf8\xfc\x8e\xdd\xa6\x93\xb4\x8f" "\x31\x99\xd6\xfd\x6b\x33\x06\xf1\xea\x2e\xfd\x59\x9c\x52\x1f\x66\x49\xce" "\xbf\xdf\xce\xff\xea\x76\xfb\x28\xad\x77\xd0\xf9\x4f\xcb\x6e\xf9\x8f\xb6" "\x4f\x7d\x2a\x4e\xce\x7f\xd0\xce\xbf\xe5\xf0\xe4\xdf\x1f\x9b\x7f\xa9\x72" "\xfe\xc3\x7d\xe5\x3f\x90\x3f\x00\x00\x00\x00\x00\xcc\xb0\xfc\xf7\xff\xe5" "\xa9\x7d\xff\xdb\xdb\x71\xbd\xd9\xfc\x8b\xd9\x9d\x89\x9e\xf6\xfd\xef\xca" "\x94\xfa\x00\x00\x00\x00\x00\x00\x00\x00\x2f\xda\xf3\x8e\xff\xf7\x98\xf1" "\xff\x00\x00\x00\x60\x66\xd5\x9f\xd5\x6b\x7f\x3e\xfa\x64\xd9\x6e\x9f\xb1" "\xeb\xe5\x57\x7a\x11\xaf\xb4\xd6\x07\x0a\x93\x4e\x96\x59\xea\xba\x1f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x92\xe1\xf6\x31\xbc\x57\x7a\x11" "\x73\x11\xf1\xca\xd2\x52\x55\x55\xf5\xa5\xa9\x5d\xef\xd7\xf3\x6e\xff\xb2" "\x2b\x7d\xff\xa1\x64\x5d\x3f\xc9\x03\x00\xc0\xb6\xfb\x47\x5b\xe7\xf2\xf7" "\x22\x16\x22\xe2\x4a\xfa\xad\xbf\xb9\xa5\xa5\xa5\xaa\x5a\x58\x5c\xaa\x96" "\xaa\xc5\xf9\xfc\x7e\x76\x34\xbf\x50\x2d\x36\x3e\xd7\xe6\x69\xbd\x6c\x7e" "\xb4\x87\x37\xc4\xc3\x51\x55\x5f\xd9\x42\x63\xbb\xa6\x49\x9f\x97\x27\xb5" "\xb7\xaf\xaf\xbe\xad\x51\x35\xd8\x43\xc7\xa6\xa3\xc3\xc0\x01\x20\x22\xb6" "\x5f\x8d\x1e\x7a\x45\x3a\x64\xaa\xea\x58\x74\xfd\x2e\x87\x97\x83\xc7\xff" "\xe1\xe3\xf1\xcf\x5e\x74\x7d\x3f\x05\x00\x00\x00\x0e\x5e\x55\x55\x55\x2f" "\xfd\x9c\xf7\xf1\xf4\x9d\x7f\xbf\xeb\x4e\x01\x00\x53\x91\x5f\xff\xdb\xdf" "\x0b\xa8\xd5\x6a\xb5\x5a\xad\x3e\x7c\x75\x53\x35\xde\xdd\x66\x11\x11\x1b" "\xcd\x6d\xea\xf7\x0c\x77\xc7\x5d\x19\x00\x30\xbb\x36\xe2\x8b\xae\xbb\x40" "\x87\xe4\x5f\xb4\x61\x44\xbc\xde\x75\x27\x80\x99\xd6\xeb\xba\x03\x1c\x88" "\x87\x8f\xee\xac\xf5\x52\xbe\xbd\xe6\xeb\x41\x1a\xdf\x3d\x1f\x0b\xb2\x23" "\xff\x8d\xde\xd6\x76\x79\xfb\x71\xd3\x49\xda\xc7\x98\x4c\xeb\xfe\xb5\x19" "\x83\x78\x75\x97\xfe\xbc\x36\xa5\x3e\xcc\x92\x9c\x7f\xbf\x9d\xff\xd5\xed" "\xf6\x51\x5a\xef\xa0\xf3\x9f\x96\xdd\xf2\xaf\xf7\x73\xb9\x83\xfe\x74\x2d" "\xe7\x3f\x68\xe7\xdf\x72\x78\xf2\xef\x8f\xcd\xbf\x54\x39\xff\xe1\xbe\xf2" "\x1f\xc8\x1f\x00\x00\x00\x00\x00\x66\x58\xfe\xfb\xff\xb2\xef\x7f\xf3\x2e" "\x03\x00\x00\x00\x00\x00\x00\xc0\x4b\xe7\xe1\xa3\x3b\x6b\xf9\xbc\xd7\xfc" "\xfd\xff\x97\xc6\xac\xe7\xfc\xcf\xc3\x29\xe7\xdf\x93\x7f\x91\x72\xfe\xfd" "\x56\xfe\x5f\x6b\xad\x37\x68\xcc\x3f\x78\xff\x49\xfe\xff\x7a\x74\x67\xed" "\x47\x7f\xf8\xfc\x78\x9e\xee\x35\xff\xf9\x3c\xd3\x4b\xf7\xac\x5e\xba\x47" "\xf4\xd2\x2d\xf5\x86\x69\xfa\xcc\xbb\x36\x3f\x6e\xe1\xe6\xdc\x60\x54\xdf" "\xd2\x5c\xaf\x3f\x18\xa6\x63\x7e\xaa\xb9\x0f\xe3\x7a\xdc\x88\xf5\x58\xdd" "\xb1\x6e\x3f\xfd\x7f\x3c\x69\x3f\xb7\xa3\xbd\xee\xe9\x5c\xba\x2b\x6f\xb7" "\x9f\xdf\xd1\x3e\xdc\x6e\x6f\x6c\x7f\x61\x47\xfb\x5c\xfa\xdd\x81\x6a\x31" "\xb7\x9f\x89\xb5\xf8\x79\xdc\x88\x0f\xb6\xda\xeb\xb6\xf9\x09\xfb\xbf\x30" "\xa1\xbd\x9a\xd0\x9e\xf3\x1f\x78\xfc\x17\x29\xe7\x3f\x6c\x5c\xea\xfc\x97" "\x52\x7b\xaf\x35\xad\x3d\xf8\xac\xff\x3f\x8f\xfb\xe6\x74\xdc\xed\xbc\xf7" "\xdb\x7b\xf7\x57\x0f\x7e\x77\x26\xda\x8c\xc1\xe3\x7d\x6b\xaa\xf7\xef\x44" "\x07\xfd\xd9\xfa\x3f\x39\x32\x8a\x5f\xde\x5a\xbf\x79\xe6\xd7\xd7\x6e\xdf" "\xbe\x79\x2e\xd2\x64\xc7\xd2\xf3\x91\x26\x2f\x58\xce\x7f\x2e\x5d\x1e\x3f" "\xff\xbf\xb9\xdd\x9e\x9f\xf7\x9b\x8f\xd7\x07\x9f\x8d\xf6\x9d\xff\xac\xd8" "\x8c\xe1\xae\xf9\xbf\xd9\x98\xaf\xf7\xf7\xe4\x94\xfb\xd6\x85\x9c\xff\x28" "\x5d\x72\xfe\x1f\xa4\xf6\xf1\x8f\xff\x97\x39\xff\xdd\x1f\xff\xa7\x3a\xe8" "\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x4d\x55\x55\x5b" "\xa7\x88\xbe\x17\x11\x97\xd2\xf9\x3f\x5d\x9d\x9b\x09\x00\x4c\x57\x7e\xfd" "\xaf\x92\xbc\x5c\xad\x56\xab\xd5\x6a\xf5\xe1\xab\x9b\xaa\xf1\xde\x6d\x16" "\x11\xf1\xf7\xe6\x36\xf5\x7b\x86\xdf\x8c\xbb\x32\x00\x60\x96\xfd\x27\x22" "\x3e\xef\xba\x13\x74\x46\xfe\x05\xcb\xbf\xf7\x57\x4f\xdf\xea\xba\x33\xc0" "\x54\xdd\xfa\xe4\xd3\x9f\x5e\xbb\x71\x63\xfd\xe6\xad\xae\x7b\x02\x00\x00" "\x00\x00\x00\x00\x00\x3c\xab\x3c\xfe\xe7\x4a\x63\xfc\xe7\xb7\x22\x62\xb9" "\xb5\xde\x8e\xf1\x5f\xdf\x8f\x95\xe7\x1d\xff\x73\x98\x67\x1e\x0f\x30\xfa" "\xec\x03\x7d\xef\xc7\x66\x7f\x34\xe8\x37\x86\x1b\x7f\x23\x9e\x3e\xfe\xf7" "\x89\x78\xfa\xf8\xdf\xc3\x09\xb7\x37\x37\xa1\x7d\x34\xa1\x7d\xec\x20\xe6" "\x0d\x0b\x13\xda\xc7\x9e\xe8\xd1\x90\xf3\x7f\xa3\x31\xde\x79\x9d\xff\xf1" "\xd6\xf0\xeb\x25\x8c\xff\xda\x1e\xf3\xbe\x04\x39\xff\x13\x8d\xfb\x73\x9d" "\xff\x57\x5b\xeb\x35\xf3\xaf\xfe\xf2\x8c\xf9\xcf\xc0\x0f\x8b\x6c\x46\x7f" "\x47\xfe\x67\x6f\x7f\xfc\x8b\xb3\xb7\x3e\xf9\xf4\xf4\xf5\x8f\xaf\x7d\xb4" "\xfe\xd1\xfa\xcf\x2e\xae\xae\x5e\xba\x70\xf9\x9d\xd5\xcb\xab\x67\x3f\xbc" "\x7e\x63\x3d\xfd\xdb\x61\x8f\x0f\x56\xce\x3f\x8f\x7d\xed\x38\xd0\xb2\xe4" "\xfc\x73\xe6\xf2\x2f\x4b\xce\xff\xcb\xa9\x96\x7f\x59\x72\xfe\x5f\x49\xb5" "\xfc\xcb\x92\xf3\xcf\xef\xf7\xe4\x5f\x96\x9c\x7f\xfe\xec\x23\xff\xb2\xe4" "\xfc\x4f\xa6\x5a\xfe\x65\xc9\xf9\x7f\x3d\xd5\xf2\x2f\x4b\xce\xff\x54\xaa" "\xe5\x5f\x96\x9c\xff\xdb\xa9\x96\x7f\x59\x72\xfe\xa7\x53\x2d\xff\xb2\xe4" "\xfc\xcf\xa4\x5a\xfe\x65\xc9\xf9\x9f\x4d\xb5\xfc\xcb\x92\xf3\xcf\xdf\x70" "\xc9\xbf\x2c\x39\xff\x7c\x64\x83\xfc\xcb\x92\xf3\x3f\x9f\x6a\xf9\x97\x25" "\xe7\x7f\x21\xd5\xf2\x2f\x4b\xce\xff\x62\xaa\xe5\x5f\x96\x9c\xff\x3b\xa9" "\x96\x7f\x59\x72\xfe\x97\x52\x2d\xff\xb2\xe4\xfc\x2f\xa7\x5a\xfe\x65\xc9" "\xf9\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\x9b\xa9\x96\x7f\x59\x72\xfe\xdf\x4a" "\xb5\xfc\xcb\x92\xf3\xff\x76\xaa\xe5\x5f\x96\x9c\xff\x77\x52\x2d\xff\xb2" "\xe4\xfc\xbf\x9b\x6a\xf9\x97\x25\xe7\xff\xbd\x54\xcb\xbf\x2c\x39\xff\x77" "\x53\x2d\xff\xb2\x3c\xf9\xfd\x7f\x33\x66\xcc\x98\xc9\x33\x5d\x3f\x33\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6d\xd3\x38\x9c\xb8\xeb\x7d\x04" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff" "\xb2\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x85\x1d\x38\x10\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xdd\x6b\x8c\x5c\x67\x79\x07\xf0" "\xb3\xeb\x5d\x67\xed\x70\xd9\x42\x08\x6e\x08\xb0\x49\x4c\x08\xc9\x92\x5d" "\x3b\xbe\xc4\xb4\x06\x73\x2b\x69\x42\x5a\x0a\x84\xb6\xf4\x12\x52\x7b\x1d" "\x0c\xbe\xd5\x6b\x73\x6b\xa4\x18\x85\x96\x48\x8d\xda\x48\xe5\x03\x7c\x28" "\xb7\x22\x95\x2f\x15\x11\xa0\x8a\xaa\x14\xb9\x52\x2b\x90\x40\x22\x9f\x68" "\xa5\xb6\x21\x55\xa0\x8a\x28\xb4\x86\xf6\x03\x54\x84\xad\xe6\xcc\xfb\xbc" "\x3b\x33\xde\xeb\x99\x8d\x3d\x73\xce\xef\x27\xc5\x8f\x3d\x7b\x66\xe6\x9d" "\x33\xef\xcc\xee\x7f\x9d\xff\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3a\x5d\xf3\xda" "\xb9\x0f\x8f\x14\x45\xd1\xfa\xaf\xfc\x65\xb2\x28\x9e\xd1\xfa\xfd\x96\xa9" "\xc9\xd6\x1f\xb7\xbf\xe2\x52\xaf\x10\x00\x00\x00\xe8\xd7\x53\xe5\xaf\xe7" "\x9f\x9d\x2f\x38\xb0\x86\x2b\x75\x1c\xf3\xd5\x17\x7d\xf3\x8b\x0b\x0b\x0b" "\x0b\xc5\x63\xdf\x7d\xd9\xf3\x3f\xb2\xb0\x90\x3f\x30\x55\x14\x93\x97\x15" "\x45\xf9\xb1\xf0\xe4\x9d\x7f\xbb\xbd\xf3\x98\xe4\x81\x62\x62\x64\xb4\xe3" "\xcf\xa3\xab\xdc\xfd\xa6\x55\x3e\x3e\xb6\xca\xc7\xc7\x57\xf9\xf8\xe6\x55" "\x3e\x7e\xd9\x2a\x1f\x9f\x58\xe5\xe3\x17\x9c\x80\x0b\x6c\x69\x7f\x3f\xa6" "\xbc\xb1\xed\xe5\x6f\x27\xdb\xa7\xb4\xb8\xa2\x18\x2f\x3f\xb6\x7d\x89\x6b" "\x3d\x30\x72\xd9\xe8\x68\x7c\x2f\xa7\x34\x52\x5e\x67\x61\xfc\x70\x71\xa4" "\x38\x5a\xcc\x15\xb3\x5d\xc7\xb7\x8f\x1d\x29\x8f\xff\xf2\x35\xad\xfb\xba" "\xad\x88\xfb\x1a\xed\xb8\xaf\xab\x5b\x3b\xe4\x87\xf7\x1d\x8c\x35\x8c\xa4" "\x73\xbc\xbd\xeb\xbe\x16\x6f\x33\xfc\xe0\xd5\xc5\xd4\x8f\x7e\x78\xdf\xc1" "\x37\x7d\xec\xf1\xab\x96\x9a\xab\x9e\x86\xae\xdb\x6b\xaf\xf3\x86\x6b\x5b" "\xeb\xfc\x50\xba\xa4\xbd\xd6\x91\xe2\xb2\x7c\x4e\x62\x9d\xa3\x1d\xeb\xbc" "\x7a\x89\xe7\x64\x53\xd7\x3a\x47\xca\xeb\xb5\x7e\xdf\xbb\xce\xf3\x6b\x5c" "\xe7\xa6\xc5\x65\x5e\x54\xbd\xcf\xf9\x44\x31\x5a\xfe\xfe\xd1\xf2\x3c\x8d" "\x75\x7e\x5b\x2f\x9f\xa7\xab\xd3\x65\x3f\xbe\xae\x28\x8a\xb3\x8b\xcb\xee" "\x3d\xe6\x82\xfb\x2a\x46\x8b\xad\x5d\x97\x8c\x2e\x3e\x3f\x13\xed\x1d\xd9" "\xba\x8d\xd6\x56\x7a\x4e\x31\xb6\xae\x7d\x7a\xcd\x1a\xf6\x69\x6b\x1e\xda" "\xde\xbd\x4f\x7b\x5f\x13\xf1\xfc\x5f\x93\xae\x37\xb6\xcc\x1a\x3a\x9f\xa6" "\x1f\x7c\x70\xf3\x05\xcf\xfb\x7a\xf7\x69\x68\x3d\xea\xe5\x5e\x2b\xbd\x7b" "\x70\xa3\x5f\x2b\x83\xb2\x07\x63\x5f\x3c\x5a\x3e\xe8\x07\x97\xdc\x83\xdb" "\xd3\xe3\xbf\xef\xfa\xe5\xf7\xe0\x92\x7b\x67\x89\x3d\x98\x1f\x77\xc7\x1e" "\xbc\x76\xb5\x3d\x38\xba\x79\x53\xb9\xe6\xfc\x24\x8c\x94\xd7\x59\xdc\x83" "\x3b\xba\x8e\xdf\x54\xde\xd3\x48\x39\x9f\xbc\x7e\xe5\x3d\x38\x73\xfa\xd8" "\xc9\x99\xf9\xf7\x7f\xe0\xe5\x47\x8e\xdd\x73\xef\xdc\xbd\x73\xc7\x77\xcd" "\xce\xee\xb9\x65\xef\xee\xd9\xbd\xb3\x33\x87\x8f\x1c\x9d\x4b\xbf\x56\x3c" "\xdb\x83\x6f\x6b\x31\x9a\x5f\x03\xd7\xa6\x73\x17\xaf\x81\x97\xf6\x1c\xdb" "\xb9\x55\x17\x3e\xb5\x71\xaf\xc3\x89\x15\x5e\x87\x93\x3d\xc7\x6e\xf4\xeb" "\x70\xac\xf7\xc1\x8d\x5c\x9c\x17\xe4\x85\x7b\xba\xfd\xda\x78\x6b\xeb\xa4" "\x4f\x3c\x34\x5a\x2c\xf3\x1a\x2b\x9f\x9f\x1b\xfb\x7f\x1d\xe6\xc7\xdd\xf1" "\x3a\x1c\xeb\x78\x1d\x2e\xf9\x39\x65\x89\xd7\xe1\xd8\x1a\x5e\x87\xad\x63" "\x4e\xde\xb8\xb6\xaf\x59\xc6\x3a\xfe\x5b\x6a\x0d\x4f\xd7\xe7\x82\xc9\x8e" "\x3d\xd8\xfb\xf5\x48\xef\x1e\xdc\xe8\xaf\x47\x06\x65\x0f\x4e\xa4\x7d\xf1" "\xaf\x37\x2e\xff\xb9\xe0\xea\xb4\xde\x07\xa7\xd7\xfb\xf5\xc8\xa6\x0b\xf6" "\x60\x7e\xb8\xe9\xbd\xa7\x75\x49\xfe\x7a\x7f\xe2\xd6\x72\x2c\xb5\x2f\xaf" "\x6a\x7d\xe0\xf2\xcd\xc5\x99\xf9\xb9\x53\x37\xbf\xef\x9e\xd3\xa7\x4f\xed" "\x28\xd2\xb8\x28\x9e\xdb\xb1\x57\x7a\xf7\xeb\xd6\x8e\xc7\x54\x5c\xb0\x5f" "\x47\xd7\xbd\x5f\x0f\x7c\xf8\xeb\xdf\xb8\x6a\x89\xcb\x27\xd3\xb9\x9a\x78" "\x79\xeb\x97\x89\x65\x9f\xab\xd6\x31\xbb\x6e\x5e\xf9\xb9\x2a\x3f\xbb\x2d" "\x7d\x3e\xbb\x2e\xdd\x59\xa4\xb1\xc1\x2e\xf6\xf9\x5c\xea\xb3\x79\xeb\x7c" "\xe6\x2c\xb9\xc2\xf9\x6c\x1d\xf3\xa1\x99\xfe\xbf\x16\xcf\xb9\xb4\xe3\xfd" "\x77\x7c\x99\xf7\xdf\xc8\xfd\x3f\x2b\xef\x67\x7b\xbe\xa9\x07\x36\x8d\x8f" "\xb5\x5f\xbf\x9b\xf2\xd9\x19\xef\x7a\x3f\xee\x7e\xaa\xc6\xca\xf7\xae\x91" "\xf2\xbe\xcf\xcf\xac\xed\xfd\x78\x3c\xfd\x77\xb1\xdf\x8f\xaf\x58\xe1\xfd" "\x78\x5b\xcf\xb1\x1b\xfd\x7e\x3c\xde\xfb\xe0\xe2\xfd\x78\x64\xb5\xef\x76" "\xf4\xa7\xf7\xf9\x9c\x48\xfb\xe4\xe8\xec\xca\xef\xc7\xad\x63\xb6\xed\x5c" "\xef\x9e\x1c\x5b\xf1\xfd\xf8\xba\x34\x47\xd2\xf9\x7f\x59\x4a\x0a\x39\x17" "\x75\xec\x9d\xe5\xf6\x6d\xbe\xaf\xb1\xb1\xf1\xf4\xb8\xc6\xe2\x1e\xba\xf7" "\xe9\x2d\x5d\xc7\x8f\xa7\x6c\xd6\xba\xaf\xcf\xee\xac\xb6\x4f\x6f\xb8\xae" "\x7d\x5b\x9b\xf2\xa3\x5b\x74\xb1\xf6\xe9\x54\xcf\xb1\x1b\xbd\x4f\xf3\xfb" "\xd5\x72\xfb\x74\x64\xb5\xef\xbe\x55\xd3\xfb\x7c\x4e\xa4\x7d\x71\xc5\x2d" "\x2b\xef\xd3\xd6\x31\xe7\x76\xf5\xff\xde\xb9\x25\x7e\xdb\xf1\xde\xb9\x79" "\xb5\x3d\x38\xbe\x69\x73\x6b\xcd\xe3\x79\x13\xb6\xdf\xef\x17\xb6\xc4\x1e" "\xbc\xb9\x38\x58\x9c\x28\x8e\x16\x87\xca\x8f\x6e\x2e\xf7\xd3\x48\x79\x5f" "\xd3\xbb\xd7\xb6\x07\x37\xa7\xff\x2e\xf6\x7b\xe5\xb6\x15\xf6\xe0\x0d\x3d" "\xc7\x6e\xf4\x1e\xcc\x9f\xc7\x96\xdb\x7b\x23\x63\x17\x3e\xf8\x0d\xd0\xfb" "\x7c\x4e\xa4\x7d\xf1\xd1\xdd\x2b\xef\xc1\xd6\x31\xaf\xdb\xbb\xb1\x5f\xbb" "\xde\x90\x2e\xc9\xc7\x74\x7c\xed\xda\xfb\xfd\xb5\xe5\xbe\xe7\x75\x55\xcf" "\x69\x7a\x3a\xbf\xe7\xd5\x5a\xe7\x3f\xec\x5d\xf9\x7b\xb3\xad\x63\x8e\xde" "\xba\xde\x9c\xb9\xf2\x79\xba\x29\x5d\x72\xf9\x12\xe7\xa9\xf7\xf5\xbb\xdc" "\x6b\xea\x50\x71\x71\xce\xd3\xb6\xb4\xce\xef\xdf\xba\xfc\x79\x6a\xad\xa7" "\x75\xcc\x47\xf6\xad\x71\x3f\x1d\x28\x8a\xe2\x0b\x77\x1c\x28\xbf\xdf\x9b" "\xfe\x7e\xe5\xf3\x67\xbe\xf5\xc5\xae\xbf\x77\x39\xd0\xfe\xd8\x97\xf6\x2d" "\xde\xd6\x05\x5f\x75\x2c\xf5\xf7\x3e\x5f\xb8\xe3\xc0\xb9\x7f\xbe\xfd\x27" "\xeb\x79\x8c\x00\x0c\xb6\x9f\x95\xbf\x6e\xdf\xda\xfe\x5c\xd7\xf1\x37\x53" "\x6b\xf9\xfb\x7f\x00\x00\x00\x60\x28\x44\xee\x1f\x4d\x33\x93\xff\x01\x00" "\x00\xa0\x36\x22\xf7\xc7\xff\x15\x9e\xc9\xff\x00\x00\x00\x50\x1b\x91\xfb" "\xc7\xd2\xcc\x1a\x92\xff\x1f\xfc\xb7\xe7\xbd\xfb\xa7\xf7\x17\xb9\x99\xbf" "\x90\xc4\xc7\xe3\x34\x9c\x7c\xa2\x7d\x5c\x74\x5c\x3f\x99\xfe\x3c\xb5\xb0" "\xa8\x75\xf9\x6b\x3e\xf3\x8f\x5f\x7f\xfb\xfd\x6b\xbb\xef\xd1\xa2\x28\x7e" "\x7a\xfb\xbf\x2c\x79\xfc\x83\x4f\xc4\xba\xda\x1e\x4e\xeb\x9c\xfa\x76\xf7" "\xe5\x17\xd8\xf6\xed\x35\xdd\xff\x3b\xee\x5a\x3c\xae\xb3\x03\x38\x99\x6e" "\x3f\x1e\x4f\xef\x36\xf8\xf2\x7f\x3f\x51\x5e\x6f\x6a\x5f\x7b\x9e\xbb\xfd" "\x5c\x39\xdf\x7c\xf6\xc1\x07\x5a\x1f\x3f\xbf\xaf\xfd\xe7\xe8\x4e\x3e\xf9" "\x3f\xed\xe3\xfe\x3c\x95\x79\x0f\x1c\xfe\xfb\xae\xeb\xdf\xf0\x58\xfb\xfe" "\xb6\x3f\xb6\xf2\xe3\x8a\xeb\x7d\xee\x8d\x5b\xee\x78\xc1\xdb\x16\xef\x2f" "\xae\x37\x72\xed\xb3\xca\x87\xf1\xd1\x57\xb6\x6f\x37\x7e\xee\xcd\xc3\xaf" "\x6d\x1f\x7f\x3e\x1d\xb7\xdc\xfa\xff\xee\x8f\x3f\xfb\xb9\xd6\xf1\xef\x7b" "\xc9\xd2\xeb\xbf\x7f\x74\xe9\xf5\x3f\x99\x6e\xf7\x3b\x69\xfe\xe4\xa9\xf6" "\xe5\x9d\xe7\xb4\xf5\xe7\xb8\xde\x1f\xa6\xf5\xc7\xfd\xc5\xf5\x6e\xfe\xf4" "\x57\x96\x5c\xff\x23\x6f\x68\x1f\xff\x48\x7a\x5e\x3e\x99\x66\xef\xfa\x5f" "\xfd\xa7\x2f\x7c\xaa\xf3\x7c\xc5\xfa\xe3\x7e\x0e\x3c\xde\xbe\x5e\xdc\xff" "\xec\x5f\xff\x47\x79\xbd\xb8\xbd\xb8\xfd\xde\xf5\x4f\xbc\xea\x89\xae\xf3" "\xd1\x7b\xfb\xe7\x3e\xdf\xbe\x9d\xfd\xef\xf9\xdf\x4d\x9d\xc7\xc7\xe5\x71" "\x3f\x79\xdf\x3d\xde\xfd\x3c\xb7\x6e\xa7\x73\xbf\x85\xcf\xfe\xd1\xb9\xae" "\xf3\x5c\xfc\x7b\xfb\x7a\x7f\xd3\xb3\xfe\xb8\xbd\x93\x8f\x2f\xbd\xfe\x9b" "\x7a\xd6\x79\x72\xc7\xd6\xf2\xfa\xcb\x55\xc6\x3f\x3e\xf7\x9d\x25\x1f\x6f" "\xac\xe7\xc0\x5f\x3d\xda\xf5\x78\x1e\xf9\x5e\x3a\x7f\xaf\xb9\xb3\xbc\xdd" "\x89\x1f\xa7\xfd\x98\x3e\xfe\x7f\x0f\xb7\x6f\xaf\xf7\xa7\x25\x3c\xfa\xbd" "\xee\xf7\x93\x38\xfe\x93\x93\xed\xd7\x65\xdc\xde\x4c\xcf\xfa\x1f\xee\x59" "\xff\xd9\x17\xb7\xce\xdd\xea\xeb\xbf\xed\x47\xed\xf5\x3f\xf2\xaa\xaf\x76" "\x3f\x1f\xff\xd9\x5e\xc7\x81\x1f\xb4\xe7\x6a\xeb\xbf\xf7\x13\xdf\xec\xba" "\xfe\xa7\xbe\xd5\x7e\x3e\x4e\xbd\x77\xfa\xf8\x89\xf9\x33\x47\xa2\x43\x3d" "\x99\x7e\xf6\xcf\xc9\xef\xb6\x6f\xef\xb2\x89\x2d\x5b\x2f\x7f\xc6\x33\x9f" "\xf5\xec\xf4\x5e\xd9\xfb\xe7\xbb\x4f\x9c\x7e\xe7\xdc\xa9\xa9\xd9\xa9\xd9" "\xa2\x98\x1a\xc2\x1f\x89\xf7\x74\xaf\xff\xd3\x69\xfe\x57\x7b\x9c\xdd\xe8" "\xdb\xbf\xaf\x28\x8a\xf7\x76\x7c\x5e\xbb\xf1\xf5\xed\xfd\x57\xbc\xe8\xfc" "\x9f\xbc\xf8\xb6\xcf\xbc\x33\x8e\xfb\xa7\xd7\xb5\x2f\x7f\xe8\x8e\xf6\xe7" "\xad\x97\xa6\xe3\x1e\x4e\x97\x9f\x4d\xcf\x77\xdc\xce\xc7\x3f\xd6\xfe\x7c" "\xd8\xef\xfa\xe3\x7e\x96\x9b\x79\xbd\x6b\x74\xe6\x6b\x1f\xde\xb3\xa6\x03" "\xd3\xe3\xff\xe8\x35\x57\x96\xaf\xb2\x91\x73\xed\x8b\x7b\xdf\xaf\xaa\x8a" "\xd7\xf9\xe3\xcf\xeb\x7e\xdd\x3f\xf6\xd6\xf6\xfc\x52\x3a\xaf\x0b\xe9\x27" "\x33\x5f\x7b\xe5\xd7\xca\xe3\x7a\xef\x3f\x7e\x36\xc2\x43\x6f\x69\xbf\xbe" "\xe3\x2b\xb9\xb8\x7e\xbf\xeb\xff\xcb\xf4\x7c\xdf\xf9\x9d\xf6\xed\xc7\xed" "\xe6\xf5\xa6\xaf\x63\xbe\xb2\xad\xfb\xfd\x31\x9e\x9f\x2f\xdd\xdf\xf3\x93" "\x06\x26\xdb\x3f\xc5\xe3\x6c\x7a\xff\x28\xce\xb6\x3f\x1e\x47\xc5\xd7\x54" "\x0f\x9d\xbf\x72\x3d\xcb\x5c\xd6\xfc\xfb\xe7\x67\x8e\x1e\x39\x7e\xe6\x7d" "\x33\xa7\xe7\xe6\x4f\xcf\xcc\xbf\xff\x03\x77\x1f\x3b\x71\xe6\xf8\xe9\xbb" "\xcb\x9f\xcd\x79\xf7\xbb\x56\xbb\xfe\xe2\xeb\x7b\x6b\xf9\xfa\x3e\x34\xb7" "\x67\x57\x51\xbe\xda\x4f\xb4\xc7\xd3\xec\x52\xaf\xff\xe4\x5d\x07\x0f\xed" "\x9d\xbd\xfe\xd0\xdc\xe1\x7b\xce\x1c\x3e\x7d\xd7\xc9\xb9\x53\xf7\x1e\x9c" "\x9f\x3f\x38\x77\x68\xfe\xfa\x7b\x0e\x1f\x9e\x7b\xef\x6a\xd7\x3f\x72\x68" "\xff\x8e\x9d\xfb\x6e\xd9\xbb\x73\xfa\xde\x23\x87\xf6\xdf\xba\x6f\xdf\x2d" "\xfb\xa6\x8f\x1c\x3f\xd1\x5a\x46\x7b\x51\xab\xd8\x33\xfb\xee\xe9\xe3\xa7" "\xee\x2e\xaf\x32\xbf\x7f\xd7\xbe\x1d\xbb\x77\xef\x9a\x9d\x3e\x76\xe2\xd0" "\xdc\xfe\xbd\xb3\xb3\xd3\x67\x56\xbb\x7e\xf9\xb9\x69\xba\x75\xed\xf7\x4c" "\x9f\x9a\x3b\x7a\xcf\xe9\x23\xc7\xe6\xa6\xe7\x8f\x7c\x60\x6e\xff\x8e\x7d" "\x7b\xf6\xec\x5c\xf5\xa7\xfb\x1d\x3b\x79\x78\x7e\x6a\xe6\xd4\x99\xe3\x33" "\x67\xe6\xe7\x4e\xcd\xb4\x1f\xcb\xd4\xe9\xf2\xe2\xd6\xe7\xbe\xd5\xae\x0f" "\x2d\xf3\x9f\xd8\xb2\xe4\xe7\xa9\x91\xf4\xd5\xfb\x8e\x9b\xf6\xe4\x9f\xcf" "\xda\xf2\x99\x0f\x2e\x7b\x53\xed\x43\x7a\x7e\x80\xe8\xf7\xd3\xcf\xa2\xf9" "\xc6\x5f\xfc\xd9\xee\xb5\xfc\x39\x72\xff\x78\x9a\x59\x43\xf2\x3f\x00\x00" "\x00\x34\x41\xe4\xfe\xcd\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe\xcb" "\xd2\xcc\xe4\x7f\x00\x00\x00\xa8\x8d\xc8\xfd\x13\x69\x66\x0d\xc9\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x0a\xfd\x7f\xfd\xff\x2a" "\xf4\xff\xf5\xff\x87\x61\xfd\xfa\xff\xfa\xff\xf4\x6f\xd0\xfa\xff\x91\xfb" "\xb7\x14\x45\x23\xf3\x3f\x00\x00\x00\x34\x41\xe4\xfe\xad\x69\x66\xf2\x3f" "\x00\x00\x00\xd4\x46\xe4\xfe\xcb\xd3\xcc\xe4\x7f\x00\x00\x00\xa8\x8d\xc8" "\xfd\xcf\x48\x33\x6b\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x0f\xfa\xff" "\xfa\xff\x55\xe8\xff\xeb\xff\x57\xa1\xff\xaf\xff\x3f\x0c\xeb\xd7\xff\xd7" "\xff\xa7\x7f\x83\xd6\xff\x8f\xdc\xff\xcc\x34\xb3\x86\xe4\x7f\x00\x00\x00" "\x68\x82\xc8\xfd\xcf\x4a\x33\x93\xff\x01\x00\x00\xa0\x36\x22\xf7\x3f\x3b" "\xcd\x4c\xfe\x07\x00\x00\x80\xda\x88\xdc\x3f\x99\x66\xd6\x90\xfc\xaf\xff" "\xaf\xff\xaf\xff\x5f\xb1\xff\xbf\x59\xff\x5f\xff\x5f\xff\xbf\xd0\xff\xd7" "\xff\xaf\x48\xff\x5f\xff\x7f\x18\xd6\xaf\xff\xaf\xff\x4f\xff\x06\xad\xff" "\x1f\xb9\xff\xe7\xd2\xcc\x1a\x92\xff\x01\x00\x00\xa0\x09\x22\xf7\x3f\x27" "\xcd\x4c\xfe\x07\x00\x00\x80\xda\x88\xdc\xff\xdc\x34\x33\xf9\x1f\x00\x00" "\x00\x6a\x23\x72\xff\x15\x69\x66\x0d\xc9\xff\xfa\xff\xfa\xff\x83\xd3\xff" "\x5f\xac\xc5\x0e\x45\xff\xdf\xbf\xff\xaf\xff\xaf\xff\x5f\xd2\xff\xd7\xff" "\xaf\x42\xff\x5f\xff\x7f\x18\xd6\xaf\xff\xaf\xff\x4f\xff\x06\xad\xff\x1f" "\xb9\xff\x79\x69\x66\x0d\xc9\xff\x00\x00\x00\xd0\x04\x91\xfb\xaf\x4c\x33" "\x93\xff\x01\x00\x00\xa0\x36\x22\xf7\x3f\x3f\xcd\x4c\xfe\x07\x00\x00\x80" "\xda\x88\xdc\xbf\x2d\xcd\xac\x21\xf9\x5f\xff\x5f\xff\x7f\x70\xfa\xff\x43" "\xf6\xef\xff\xeb\xff\xeb\xff\xeb\xff\x97\xf4\xff\xf5\xff\xab\xd0\xff\xd7" "\xff\x1f\x86\xf5\xeb\xff\xeb\xff\xd3\xbf\x41\xeb\xff\x47\xee\xff\xf9\x34" "\xb3\x86\xe4\x7f\x00\x00\x00\x68\x82\xc8\xfd\x57\xa5\x99\xc9\xff\x00\x00" "\x00\x50\x1b\x91\xfb\x5f\x90\x66\x26\xff\x03\x00\x00\x40\x6d\x44\xee\xbf" "\x3a\xcd\xac\x21\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb\xff" "\x57\xa1\xff\xaf\xff\x5f\x85\xfe\xbf\xfe\xff\x30\xac\x5f\xff\x5f\xff\x9f" "\xfe\x0d\x5a\xff\x3f\x72\xff\x0b\xd3\xcc\x1a\x92\xff\x01\x00\x00\xa0\x09" "\x22\xf7\xbf\x28\xcd\x4c\xfe\x07\x00\x00\x80\xda\x88\xdc\xff\xe2\x34\x33" "\xf9\x1f\x00\x00\x00\x6a\x23\x72\xff\x54\x9a\x59\x43\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x7f\xd0\xff\xd7\xff\xaf\x42\xff\x5f\xff\xbf\x0a\xfd\x7f" "\xfd\xff\x61\x58\xbf\xfe\xbf\xfe\x3f\xfd\x1b\xb4\xfe\x7f\xe4\xfe\x6b\xd2" "\xcc\x1a\x92\xff\x01\x00\x00\xa0\x09\x22\xf7\x5f\x9b\x66\x26\xff\x03\x00" "\x00\x40\x6d\x44\xee\xbf\x2e\xcd\x4c\xfe\x07\x00\x00\x80\xda\x88\xdc\xbf" "\x3d\xcd\xac\x21\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xe8\xff\xeb\xff" "\x57\xa1\xff\xaf\xff\x5f\x85\xfe\xbf\xfe\xff\x30\xac\x5f\xff\x5f\xff\x9f" "\xfe\x0d\x5a\xff\x3f\x72\xff\x4b\xd2\xcc\x1a\x92\xff\x01\x00\x00\xa0\x09" "\x22\xf7\x5f\x9f\x66\x26\xff\x03\x00\x00\x40\x6d\x44\xee\x7f\x69\x9a\x99" "\xfc\x0f\x00\x00\x00\xb5\x11\xb9\xff\x86\x34\xb3\x86\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\xa0\xff\xaf\xff\x5f\x85\xfe\xbf\xfe\x7f\x15\xfa\xff" "\xfa\xff\xc3\xb0\x7e\xfd\x7f\xfd\x7f\xfa\x37\x68\xfd\xff\xc8\xfd\x2f\x4b" "\x33\x6b\x48\xfe\x07\x00\x00\x80\x26\x88\xdc\x7f\x63\x9a\x99\xfc\x0f\x00" "\x00\x00\xb5\x11\xb9\xff\xa6\x34\x33\xf9\x1f\x00\x00\x00\x6a\x23\x72\xff" "\x74\x9a\x59\x43\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xd0\xff\xd7\xff" "\xaf\x42\xff\x5f\xff\xbf\x0a\xfd\x7f\xfd\xff\x61\x58\xbf\xfe\xbf\xfe\x3f" "\xfd\x1b\xb4\xfe\x7f\xe4\xfe\x97\xa7\x99\x35\x24\xff\x03\x00\x00\x40\x13" "\x44\xee\xbf\x39\xcd\x4c\xfe\x07\x00\x00\x80\xda\x88\xdc\x3f\x93\x66\x26" "\xff\x03\x00\x00\x40\x6d\x44\xee\x9f\x4d\x33\x6b\x48\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\x0f\xfa\xff\xfa\xff\x55\xe8\xff\xeb\xff\x57\xa1\xff\xaf" "\xff\x3f\x0c\xeb\xd7\xff\xd7\xff\xa7\x7f\x83\xd6\xff\x8f\xdc\xbf\x23\xcd" "\xac\x21\xf9\x1f\x00\x00\x00\x9a\x20\x72\xff\xce\x34\x33\xf9\x1f\x00\x00" "\x00\x6a\x23\x72\xff\x2d\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe\x5d" "\x69\x66\x0d\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf" "\x0a\xfd\x7f\xfd\xff\x2a\xf4\xff\xf5\xff\x87\x61\xfd\xfa\xff\xfa\xff\xf4" "\x6f\xd0\xfa\xff\x91\xfb\x77\xa7\x99\x35\x24\xff\x03\x00\x00\x40\x13\x44" "\xee\xdf\x93\x66\x26\xff\x03\x00\x00\x40\x6d\x44\xee\xdf\x9b\x66\x26\xff" "\x03\x00\x00\x40\x6d\x44\xee\xbf\x35\xcd\xac\x21\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x3f\xe8\xff\xeb\xff\x57\xa1\xff\xaf\xff\x5f\x85\xfe\xbf\xfe" "\xff\x30\xac\xff\xa2\xf4\xff\x1f\x58\xfe\xc7\x00\xe8\xff\x53\x07\x83\xd6" "\xff\x8f\xdc\xbf\x2f\xcd\xac\x21\xf9\x1f\x00\x00\x00\x9a\x20\x72\xff\x2b" "\xd2\xcc\xe4\x7f\x00\x00\x00\xa8\x8d\xc8\xfd\xbf\x90\x66\x26\xff\x03\x00" "\x00\x40\x6d\x44\xee\xff\xc5\x34\xb3\x86\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\xff\xa0\xff\xaf\xff\x5f\x85\xfe\xbf\xfe\x7f\x15\xfa\xff\xfa\xff\xc3" "\xb0\x7e\xff\xfe\xbf\xfe\x3f\xfd\x1b\xb4\xfe\x7f\xe4\xfe\xfd\x69\x66\x0d" "\xc9\xff\x00\x00\x00\xd0\x04\x91\xfb\x5f\x99\x66\x26\xff\x03\x00\x00\x40" "\x6d\x44\xee\x7f\x55\x9a\x99\xfc\x0f\x00\x00\x00\xb5\x11\xb9\xff\x40\x9a" "\x59\x43\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xd0\xff\x1f\x92\xfe\xff" "\x1f\xac\xe1\x98\x8b\x48\xff\x5f\xff\xbf\x0a\xfd\x7f\xfd\xff\x61\x58\xbf" "\xfe\xbf\xfe\x3f\xfd\x1b\xb4\xfe\x7f\xe4\xfe\x57\xa7\x99\x35\x24\xff\x03" "\x00\x00\x40\x13\x44\xee\x7f\x4d\x9a\x99\xfc\x0f\x00\x00\x00\xb5\x11\xb9" "\xff\xb5\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe\xd7\xa5\x99\x35\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x07\xfd\xff\x21\xe9\xff\x0f\x18\xfd" "\x7f\xfd\xff\x2a\xf4\xff\xf5\xff\x87\x61\xfd\xfa\xff\xfa\xff\xf4\x6f\xd0" "\xfa\xff\x91\xfb\x5f\x9f\x66\xd6\x90\xfc\x0f\x00\x00\x00\x4d\x10\xb9\xff" "\x97\xd2\xcc\xe4\x7f\x00\x00\x00\xa8\x8d\xc8\xfd\x6f\x48\x33\x93\xff\x01" "\x00\x00\xa0\x36\x22\xf7\xdf\x96\x66\xd6\x90\xfc\xaf\xff\xaf\xff\xff\x74" "\xf5\xff\x37\xa7\xdb\xd0\xff\xef\xd8\x77\xfa\xff\x25\xfd\x7f\xfd\xff\xf5" "\xd0\xff\xd7\xff\x2f\xd6\xd3\xff\x1f\x49\xaf\x60\xfd\xff\xd2\xa5\xee\xcf" "\x0f\xfb\xfa\xf5\xff\xf5\xff\xe9\xdf\xa0\xf5\xff\x23\xf7\xff\x72\x9a\x59" "\x43\xf2\x3f\x00\x00\x00\x34\x41\xe4\xfe\xdb\xd3\xcc\xe4\x7f\x00\x00\x00" "\xa8\x8d\xc8\xfd\x77\xa4\x99\xc9\xff\x00\x00\x00\x50\x1b\x91\xfb\xdf\x98" "\x66\xd6\x90\xfc\x3f\xf0\xfd\xff\x74\x87\xfa\xff\xcb\xf6\xff\x9f\xd9\x9a" "\x83\xd8\xff\x0f\xfa\xff\x1d\xfb\x4e\xff\xbf\xa4\xff\xaf\xff\xbf\x1e\xfa" "\xff\xfa\xff\x85\x7f\xff\xbf\xb2\x4b\xdd\x9f\x1f\xf6\xf5\xeb\xff\xeb\xff" "\xd3\xbf\x41\xeb\xff\x47\xee\xbf\x33\xcd\xac\x21\xf9\x1f\x00\x00\x00\x9a" "\x20\x72\xff\xaf\xa4\x99\x75\xe6\xff\xe5\xfe\xb2\x0c\x00\x00\x00\x18\x0a" "\x91\xfb\x7f\x35\xcd\xcc\xdf\xff\x03\x00\x00\x40\x6d\x44\xee\x7f\x53\x9a" "\x59\x43\xf2\xff\xc0\xf7\xff\x13\xfd\xff\xe1\xfb\xf7\xff\x83\xfe\x7f\xc7" "\xbe\xd3\xff\x2f\xe9\xff\xeb\xff\xaf\x87\xfe\xbf\xfe\x7f\xa1\xff\x5f\xd9" "\xa5\xee\xcf\x0f\xfb\xfa\xf5\xff\xf5\xff\xe9\xdf\xa0\xf5\xff\x23\xf7\xff" "\x5a\x9a\x59\x43\xf2\x3f\x00\x00\x00\x34\x41\xe4\xfe\x37\xa7\x99\xc9\xff" "\x00\x00\x00\x50\x1b\x91\xfb\xdf\x92\x66\x26\xff\x03\x00\x00\x40\x6d\x44" "\xee\x7f\x6b\x9a\x59\x43\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xd0\xff" "\xd7\xff\xaf\x42\xff\x5f\xff\xbf\x0a\xfd\x7f\xfd\xff\x61\x58\xbf\xfe\xbf" "\xfe\x3f\xfd\x1b\xb4\xfe\x7f\xe4\xfe\xbb\xd2\xcc\x1a\x92\xff\x01\x00\x00" "\xa0\x09\x22\xf7\xbf\x2d\xcd\x4c\xfe\x07\x00\x00\x80\xda\x88\xdc\xff\xeb" "\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe\xdf\x48\x33\x6b\x48\xfe\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\x0f\xfa\xff\xfa\xff\x55\xe8\xff\xeb\xff\x57" "\xa1\xff\xaf\xff\x3f\x0c\xeb\xd7\xff\xd7\xff\xa7\x7f\x83\xd6\xff\x8f\xdc" "\xff\x9b\x69\x66\x0d\xc9\xff\x00\x00\x00\xd0\x04\x91\xfb\xdf\x9e\x66\x26" "\xff\x03\x00\x00\x40\x6d\x44\xee\xff\xad\x34\x33\xf9\x1f\x00\x00\x00\x6a" "\x23\x72\xff\x6f\xa7\x99\x35\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x07" "\xfd\xff\xe1\xe8\xff\x8f\xae\x7e\xc8\x45\xa5\xff\xaf\xff\x5f\x85\xfe\xbf" "\xfe\xff\x30\xac\x5f\xff\x5f\xff\x9f\xfe\x0d\x5a\xff\x3f\x72\xff\xef\xa4" "\x99\x35\x24\xff\x03\x00\x00\x40\x13\x44\xee\xff\xdd\x34\x33\xf9\x1f\x00" "\x00\x00\x6a\x23\x72\xff\xdd\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe" "\x77\xa4\x99\x35\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x07\xfd\xff\xe1" "\xe8\xff\x0f\x1a\xfd\x7f\xfd\xff\x2a\xf4\xff\xf5\xff\x87\x61\xfd\xfa\xff" "\xfa\xff\xf4\x6f\xd0\xfa\xff\x91\xfb\xef\x49\x33\x6b\x48\xfe\x07\x00\x00" "\x80\x26\x88\xdc\xff\x7b\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe\x83" "\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe\x43\x69\x66\x0d\xc9\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x41\xff\x5f\xff\xbf\x0a\xfd\x7f\xfd\xff\x2a" "\xf4\xff\xf5\xff\xc3\x4a\x4f\xc8\xa5\x5e\xff\x46\xf5\xff\x37\x15\xfa\xff" "\x34\xd7\xa0\xf5\xff\x23\xf7\xcf\xa5\x99\x35\x24\xff\x03\x00\x00\x40\x13" "\x44\xee\x3f\x9c\x66\x26\xff\x03\x00\x00\x40\x6d\x44\xee\xbf\x37\xcd\x4c" "\xfe\x07\x00\x00\x80\xda\x88\xdc\xff\xce\x34\xb3\x86\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\xa0\xff\xaf\xff\x5f\x85\xfe\xbf\xfe\x7f\x15\xfa\xff" "\xfa\xff\xc3\xb0\x7e\xff\xfe\xbf\xfe\x3f\xfd\x1b\xb4\xfe\x7f\xe4\xfe\x23" "\x69\x66\x0d\xc9\xff\x00\x00\x00\xd0\x04\x91\xfb\xdf\x95\x66\x26\xff\x03" "\x00\x00\x40\x6d\x44\xee\x7f\x77\x9a\x99\xfc\x0f\x00\x00\x00\xb5\x11\xb9" "\xff\x68\x9a\x59\x43\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xd0\xff\xd7" "\xff\xaf\x42\xff\x5f\xff\xbf\x0a\xfd\x7f\xfd\xff\x61\x58\xbf\xfe\xbf\xfe" "\x3f\xfd\x1b\xb4\xfe\x7f\xe4\xfe\x63\x69\x66\x0d\xc9\xff\x00\x00\x00\xd0" "\x04\x91\xfb\x8f\xa7\x99\xc9\xff\x00\x00\x00\x50\x1b\x91\xfb\x4f\xa4\x99" "\xc9\xff\x00\x00\x00\x50\x1b\x91\xfb\x4f\xa6\x99\x35\x24\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\x07\xfd\x7f\xfd\xff\x2a\xf4\xff\xf5\xff\xab\xd0\xff" "\xd7\xff\x1f\x86\xf5\xeb\xff\xeb\xff\xd3\xbf\x41\xeb\xff\x47\xee\xff\xfd" "\x34\xb3\x86\xe4\x7f\x00\x00\x00\x68\x82\xc8\xfd\xa7\xd2\xcc\xe4\x7f\x00" "\x00\x00\xa8\x8d\xc8\xfd\xf3\x69\x66\xf2\x3f\x00\x00\x00\xd4\x46\xe4\xfe" "\xd3\x69\x66\x0d\xc9\xff\xfa\xff\xfa\xff\xff\xcf\xde\x5d\xfd\x7a\x7a\x55" "\x71\x1c\xfe\x85\x00\x99\x84\xc0\x7f\x8b\x4b\x71\x77\x77\x77\xa7\xb8\xbb" "\xbb\xbb\xbb\x4b\x71\xb8\x20\xf4\xac\xb5\xc8\xd0\x41\xba\xf7\x99\x73\xf6" "\xbb\xd7\xf3\x5c\x74\x25\xd3\x4c\xb3\xd3\x9c\x34\xfd\x66\xf2\xc9\xab\xff" "\xd7\xff\x27\xfd\xbf\xfe\x7f\x84\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x3f\xc2" "\xfb\xf5\xff\xfa\x7f\xe6\xad\xd6\xff\xe7\xee\xbf\x73\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\xef\x12\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd" "\x77\x8d\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\xbb\xc5\x2d\x4d\xf6\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\x27\xfd\xbf\xfe\x7f\x84\xfe\x5f\xff\x3f\x42" "\xff\xaf\xff\x5f\xfb\xfd\xb7\xbf\xf9\xaf\xfa\x7f\xfd\x3f\xf3\x56\xeb\xff" "\x73\xf7\xdf\x3d\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xf7\x88\x5b" "\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x7b\xc6\x2d\xf6\x3f\x00\x00\x00\x6c" "\x23\x77\xff\xbd\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93\xfe" "\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff\x1f\xe1\xfd\xfa\x7f\xfd" "\x3f\xf3\x56\xeb\xff\x73\xf7\xdf\x3b\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\xf7\x89\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x1b\xe2\x16\xfb" "\x1f\x00\x00\x00\xb6\x91\xbb\xff\xbe\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\x49\xff\xaf\xff\x1f\xa1\xff\xd7\xff\x8f\xd0\xff\xeb\xff\x8f" "\xf0\x7e\xfd\xbf\xfe\x9f\x79\xab\xf5\xff\xb9\xfb\xef\x17\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\xfb\xc7\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77" "\xff\x03\xe2\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\x81\x71\x4b\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x49\xff\xaf\xff\x1f\xa1\xff\xd7\xff\x8f" "\xd0\xff\xeb\xff\x8f\xf0\x7e\xfd\xbf\xfe\x9f\x79\xab\xf5\xff\xb9\xfb\x1f" "\x14\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x07\xc7\x2d\xf6\x3f\x00" "\x00\x00\x6c\x23\x77\xff\x43\xe2\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff" "\xa1\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x49\xff\xaf\xff\x1f" "\xa1\xff\xd7\xff\x8f\xd0\xff\xeb\xff\x8f\xf0\x7e\xfd\xbf\xfe\x9f\x79\xab" "\xf5\xff\xb9\xfb\x1f\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x87" "\xc7\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x23\xe2\x16\xfb\x1f\x00\x00" "\x00\xb6\x91\xbb\xff\x91\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\x49\xff\xaf\xff\x1f\xa1\xff\xd7\xff\x8f\xd0\xff\xeb\xff\x8f\xf0\x7e\xfd" "\xbf\xfe\x9f\x79\xab\xf5\xff\xb9\xfb\x1f\x15\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\x47\xc7\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x63\xe2" "\x96\x7f\xdf\xff\x57\x2e\xf2\x55\x00\x00\x00\xc0\x79\xca\xdd\xff\xd8\xb8" "\xa5\xc9\x9f\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x47\xe8" "\xff\xf5\xff\x23\xf4\xff\xfa\xff\x23\xbc\x5f\xff\xaf\xff\x67\xde\x6a\xfd" "\x7f\xee\xfe\xc7\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xf1\x71" "\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\x84\xb8\xc5\xfe\x07\x00\x00\x80" "\x6d\xe4\xee\x7f\x62\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2" "\xff\xeb\xff\x47\xe8\xff\xf5\xff\x23\xf4\xff\xfa\xff\x23\xbc\x5f\xff\xaf" "\xff\x67\xde\x6a\xfd\x7f\xee\xfe\x27\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\xc9\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\x94\xb8\xc5" "\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x6a\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x47\xe8\xff\xf5\xff\x23\xf4\xff\xfa\xff" "\x23\xbc\x5f\xff\xaf\xff\x67\xde\x6a\xfd\x7f\xee\xfe\xa7\xc5\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\xe9\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8" "\xdd\xff\x8c\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x66\xdc\xd2\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff\x47\xe8\xff\xf5\xff" "\x23\xf4\xff\xfa\xff\x23\xbc\x5f\xff\xaf\xff\x67\xde\x6a\xfd\x7f\xee\xfe" "\x67\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xd9\x71\x8b\xfd\x0f" "\x00\x00\x00\xdb\xc8\xdd\xff\x9c\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee" "\x7f\x6e\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xd2\xff\xeb\xff" "\x47\x6c\xd8\xff\x9f\xfd\x08\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xcf\xb4\xd5\xfa\xff\xdc\xfd\xcf\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20" "\x77\xff\xf3\xe3\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\x05\x71\x8b\xfd" "\x0f\x00\x00\x00\xdb\xc8\xdd\xff\xc2\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\xa4\xff\xd7\xff\x8f\xd8\xb0\xff\xf7\xfd\xff\xd3\x79\xf7\xff" "\x57\x6e\xf1\x2b\xfa\x7f\xfd\xff\x11\xde\xaf\xff\xd7\xff\x33\x6f\xb5\xfe" "\x3f\x77\xff\x8b\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xe2\xb8" "\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x49\xdc\x62\xff\x03\x00\x00\xc0" "\x36\x72\xf7\xbf\x34\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9" "\xff\xf5\xff\x23\xf4\xff\x9b\xf6\xff\xb7\x39\xf9\xfe\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\x33\x6d\xb5\xfe\x3f\x77\xff\xcb\xe2\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x45" "\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\xbf\x32\x6e\x69\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x23\xf4\xff\x9b\xf6\xff\xe7\xfa" "\xfd\xff\x5b\xd2\xff\xeb\xff\x8f\xf0\x7e\xfd\xbf\xfe\x9f\x79\xab\xf5\xff" "\xb9\xfb\x5f\x15\xb7\x34\xd9\xff\x00\x00\x00\x70\x58\xb7\x62\xbb\xe7\xee" "\x7f\x75\xdc\x91\x7f\x06\x00\x00\x00\xb0\xb6\xdc\xfd\xaf\x89\x5b\xec\x7f" "\x00\x00\x00\xd8\x46\xee\xfe\xd7\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xbf\x46" "\xff\x7f\xe3\xe9\x5a\xef\xd7\xff\xeb\xff\x4f\xfa\xff\xe5\xe9\xff\xf5\xff" "\x23\xf4\xff\xd7\xbd\xff\xbf\xc3\x69\x81\x7e\x7e\xd6\x65\xbf\xff\x3a\xf5" "\xff\xf9\x63\xaa\xff\xa7\x85\xd5\xfa\xff\xdc\xfd\xaf\x8b\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\x8d\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd" "\xff\xfa\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x43\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\x6b\xf4\xff\x3d\xbf\xff\x7f\x45\xff\x7f\xd5\xbf\x4f\xfd" "\xbf\xfe\xff\x5a\xf4\xff\xfa\xff\x93\xfe\x7f\xd8\x65\xf7\xf3\x47\x7f\xbf" "\xef\xff\xeb\xff\x99\xb7\x5a\xff\x9f\xbb\xff\x8d\x71\x4b\x93\xfd\x0f\x00" "\x00\x00\x1d\xe4\xee\x7f\x53\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\xbf" "\x39\x6e\xb1\xff\x01\x00\x00\x60\x1b\xb9\xfb\xdf\x12\xb7\x34\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\xdf\xf7\xff\x93\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1" "\xff\xd7\xff\x1f\xe1\xfd\xfa\x7f\xfd\x3f\xf3\x56\xeb\xff\x73\xf7\xbf\x35" "\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x6f\x8b\x5b\xec\x7f\x00\x00" "\x00\xd8\x46\xee\xfe\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x3b" "\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93\xfe\x5f\xff\x3f\x42" "\xff\xaf\xff\x1f\xa1\xff\xd7\xff\x1f\xe1\xfd\xfa\x7f\xfd\x3f\xf3\x56\xeb" "\xff\x73\xf7\xbf\x33\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xef\x8a" "\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x77\xc7\x2d\xf6\x3f\x00\x00\x00" "\x6c\x23\x77\xff\x7b\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x93" "\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff\x1f\xe1\xfd\xfa\x7f" "\xfd\x3f\xf3\x56\xeb\xff\x73\xf7\xbf\x37\x6e\x69\xb2\xff\x01\x00\x00\xa0" "\x83\xdc\xfd\xef\x8b\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\xf7\xc7\x2d" "\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x07\xe2\x96\x26\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x93\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xa1\xff\xd7\xff" "\x1f\xe1\xfd\xfa\x7f\xfd\x3f\xf3\x56\xeb\xff\x73\xf7\x7f\x30\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x1f\x8a\x5b\xec\x7f\x00\x00\x00\xd8\x46" "\xee\xfe\x0f\xc7\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x47\xe2\x96\x26" "\xfb\x5f\xff\xbf\x78\xff\x7f\xc3\xd5\xbf\x4f\xff\xaf\xff\xd7\xff\x5f\x40" "\xff\x7f\x53\xfc\x47\x4d\xff\xff\x7f\xd1\xff\xeb\xff\x47\xe8\xff\xf5\xff" "\x47\x78\xbf\xfe\x5f\xff\xcf\xbc\xd5\xfa\xff\xdc\xfd\x1f\x8d\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\xc7\xe2\x16\xfb\x1f\x00\x00\x00\xb6\x91" "\xbb\xff\xe3\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\x89\xb8\xa5\xc9" "\xfe\xd7\xff\x2f\xde\xff\x9f\xae\xfe\x7d\xfa\x7f\xfd\xbf\xfe\xdf\xf7\xff" "\x57\xa3\xff\xd7\xff\x8f\xd0\xff\xeb\xff\x8f\xf0\x7e\xfd\xbf\xfe\x9f\x79" "\xab\xf5\xff\xb9\xfb\x3f\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\x4f\xc5\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\xa7\xe3\x16\xfb\x1f\x00" "\x00\x00\xb6\x91\xbb\xff\x33\x37\xdf\xdb\xfe\xeb\x6f\x34\xd9\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x9f\xf4\xff\xfa\xff\x11\xfa\x7f\xfd\xff\x08\xfd\xbf" "\xfe\xff\x08\xef\xd7\xff\xeb\xff\x99\xb7\x5a\xff\x7f\xb6\xfb\xaf\x9c\x3e" "\x1b\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xcf\xc5\x2d\xf6\x3f\x00" "\x00\x00\x6c\x23\x77\xff\xe7\xe3\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff" "\x0b\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x49\xff\xaf\xff\x1f" "\xa1\xff\xd7\xff\x8f\xd0\xff\xeb\xff\x8f\xf0\x7e\xfd\xbf\xfe\x9f\x79\xab" "\xf5\xff\xb9\xfb\xbf\x18\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x2f" "\xc5\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x97\xe3\x16\xfb\x1f\x00\x00" "\x00\xb6\x91\xbb\xff\x2b\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xef\xd5\xff\x9f" "\xa5\x78\xfa\xff\x33\x17\xdd\xff\xdf\xf1\xa4\xff\x3f\xe9\xff\xcf\x9d\xfe" "\x5f\xff\x7f\xd2\xff\x0f\xbb\xec\x7e\xfe\xe8\xef\xd7\xff\xeb\xff\x99\xb7" "\x5a\xff\x9f\xbb\xff\xab\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff" "\x5a\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\x7f\x3d\x6e\xb1\xff\x01\x00" "\x00\x60\x1b\xb9\xfb\xbf\x11\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x5e\xfd\xff" "\x19\xfd\xff\x19\xdf\xff\x3f\xa3\xff\xbf\xbe\xf4\xff\xfa\xff\x11\xfa\x7f" "\xfd\xff\x11\xde\xaf\xff\xd7\xff\x33\x6f\xb5\xfe\x3f\x77\xff\x37\xe3\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xad\xb8\xc5\xfe\x07\x00\x00\x80" "\x6d\xe4\xee\xff\x76\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\x7f\x27\x6e" "\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x23\xf4\xff" "\xfa\xff\x11\xfa\x7f\xfd\xff\x7f\x72\xa7\x85\xde\xaf\xff\xd7\xff\x33\x6f" "\xb5\xfe\x3f\x77\xff\x77\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xbd\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\xff\x7e\xdc\x62\xff\x03\x00" "\x00\xc0\x36\x72\xf7\xff\x20\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x3f\xe9\xff\xf5\xff\x23\xf4\xff\xfa\xff\x11\xfa\x7f\xfd\xff\x11\xde\xaf" "\xff\xd7\xff\x33\x6f\xb5\xfe\x3f\x77\xff\x0f\xe3\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\xa3\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\xff\x71" "\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\xff\x24\x6e\x69\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x23\xf4\xff\xfa\xff\x11\xfa\x7f" "\xfd\xff\x11\xde\xaf\xff\xd7\xff\x33\x6f\xb5\xfe\x3f\x77\xff\x4f\xe3\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb3\xb8\xc5\xfe\x07\x00\x00\x80" "\x6d\xe4\xee\xff\x79\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\xff\x22\x6e" "\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x3f\xe9\xff\xf5\xff\x23\xf4\xff" "\xfa\xff\x11\xfa\x7f\xfd\xff\x11\xde\xaf\xff\xd7\xff\x33\xef\xbf\xf5\xff" "\xf1\xff\xfc\x17\xda\xff\xe7\xee\xff\x65\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\x7f\x15\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\xbf\x8e\x5b" "\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\xdf\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x27\xfd\xbf\xfe\x7f\x84\xfe\x5f\xff\x3f\x42\xff\xaf\xff" "\x3f\xc2\xfb\xf5\xff\xfa\x7f\xe6\xad\xf6\xfd\xff\xdc\xfd\xbf\x8d\x5b\x9a" "\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xef\xe2\x16\xfb\x1f\x00\x00\x00\xb6" "\x91\xbb\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\xff\x7d\xdc\xd2" "\x64\xff\xff\xaf\xfe\xff\x76\x71\x2f\xb1\xff\xcf\x27\xe8\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x7f\x41\xfa\x7f\xfd\xff\x08\xfd\xbf\xfe\xff\x08\xef\xd7" "\xff\xeb\xff\x99\xb7\x5a\xff\x9f\xbb\xff\x0f\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\xff\x63\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\xff\x29" "\x6e\xb1\xff\x01\x00\x00\x60\x1b\xb9\xfb\xff\x1c\xb7\x34\xd9\xff\xbe\xff" "\xaf\xff\xd7\xff\xeb\xff\x93\xfe\x5f\xff\x3f\x42\xff\xaf\xff\x1f\xd1\xbe" "\xff\xff\xe7\x2f\xeb\xff\x97\x7f\xbf\xfe\x5f\xff\xcf\xbc\xd5\xfa\xff\xdc" "\xfd\x7f\x89\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x5f\xe3\x16\xfb" "\x1f\x00\x00\x00\xb6\x91\xbb\xff\x6f\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8" "\xdd\xff\xf7\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xa4\xff\xd7" "\xff\x8f\xd0\xff\xeb\xff\x47\xb4\xef\xff\x7d\xff\xff\x10\xef\xd7\xff\xeb" "\xff\x99\xb7\x5a\xff\x9f\xbb\xff\x1f\x01\x00\x00\xff\xff\xcf\x00\x6c" "\x86", 24282); syz_mount_image(/*fs=*/0x200000000380, /*dir=*/0x200000000800, /*flags=MS_REC*/ 0x4000, /*opts=*/0x20000000bcc0, /*chdir=*/0x41, /*size=*/0x5eda, /*img=*/0x20000005eb40); // fsopen arguments: [ // type: nil // flags: fsopen_flags = 0x1 (8 bytes) // ] // returns fd_fscontext syscall(__NR_fsopen, /*type=*/0ul, /*flags=FSOPEN_CLOEXEC*/ 1ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*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=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }