// https://syzkaller.appspot.com/bug?id=4308b6a0f9164417bfb13c0c054bf9992a32eb5d // 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_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_write #define __NR_write 64 #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); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$ocfs2 arguments: [ // fs: ptr[in, buffer] { // buffer: {6f 63 66 73 32 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x8c0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {61 63 6c 2c 68 65 61 72 74 62 65 61 74 3d 6e 6f // 6e 65 2c 64 69 72 5f 72 65 73 76 5f 6c 65 76 65 6c 3d 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 33 2c 72 65 73 76 5f // 6c 65 76 65 6c 3d 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 // 30 30 30 36 2c 63 6f 68 65 72 65 6e 63 79 3d 66 75 6c 6c 2c 6c 6f // 63 61 6c 66 6c 6f 63 6b 73 2c 63 6f 68 65 72 65 6e 63 79 3d 66 75 // 6c 6c 2c 6e 6f 61 63 6c 2c 00 4c 98 06 5b 85 e5 b1 37 d6 3b 22 11 // c6 2c 40 20 45 08 3d a9 bd dc 3b 0d 88 d4 4e cd 24 ba 52 88 d4 28 // 19 72 84 f3 32 85 8b 83 34 9a f2 c7 64 6f 1e 07 e9 11 20 d7 f2 3c // e2 03 89 bb c0 31 d8 1d 65 4f 1c a0 8f 61 c9 2d 90 e6 ea 47 88 43 // c1 ad 94 2c 7c 25 7f 9f f5 34 8d d0 38 e9 47 77 59 91 ad 90 f8 86 // 1d ad a2 1d 5f a2 de 70 42 b5 e2 cb bc d1 ad a2 b5 68 e3 75 81 2e // b0 bc 44 8e 68 ed a4 c7 0c f1 d5 ad f5 66 14 2e d4 59 24 fe 72 a1 // eb 1a 91 4f af 75 4b 9d 94 bf 0f dc 1f 98 c7 08 bd 89 94 0b 5e f9 // 6e 32 82 40 c3 95 59 b3 5b c8 3c 15 c1 51 04 f3 b3 fe 19 45 f0 27 // 8c 34 e2 39 9d ad cd 97 76 ac 65 9a fc bb 23 95 69 14 0a b4 08 ad // 87 f1 5b 35 39 41} (length 0x160) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x442d (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x442d) // } // ] // returns fd_dir memcpy((void*)0x20004440, "ocfs2\000", 6); memcpy((void*)0x20000040, "./file1\000", 8); memcpy( (void*)0x20000600, "\x61\x63\x6c\x2c\x68\x65\x61\x72\x74\x62\x65\x61\x74\x3d\x6e\x6f\x6e\x65" "\x2c\x64\x69\x72\x5f\x72\x65\x73\x76\x5f\x6c\x65\x76\x65\x6c\x3d\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33" "\x2c\x72\x65\x73\x76\x5f\x6c\x65\x76\x65\x6c\x3d\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x36\x2c\x63\x6f\x68" "\x65\x72\x65\x6e\x63\x79\x3d\x66\x75\x6c\x6c\x2c\x6c\x6f\x63\x61\x6c\x66" "\x6c\x6f\x63\x6b\x73\x2c\x63\x6f\x68\x65\x72\x65\x6e\x63\x79\x3d\x66\x75" "\x6c\x6c\x2c\x6e\x6f\x61\x63\x6c\x2c\x00\x4c\x98\x06\x5b\x85\xe5\xb1\x37" "\xd6\x3b\x22\x11\xc6\x2c\x40\x20\x45\x08\x3d\xa9\xbd\xdc\x3b\x0d\x88\xd4" "\x4e\xcd\x24\xba\x52\x88\xd4\x28\x19\x72\x84\xf3\x32\x85\x8b\x83\x34\x9a" "\xf2\xc7\x64\x6f\x1e\x07\xe9\x11\x20\xd7\xf2\x3c\xe2\x03\x89\xbb\xc0\x31" "\xd8\x1d\x65\x4f\x1c\xa0\x8f\x61\xc9\x2d\x90\xe6\xea\x47\x88\x43\xc1\xad" "\x94\x2c\x7c\x25\x7f\x9f\xf5\x34\x8d\xd0\x38\xe9\x47\x77\x59\x91\xad\x90" "\xf8\x86\x1d\xad\xa2\x1d\x5f\xa2\xde\x70\x42\xb5\xe2\xcb\xbc\xd1\xad\xa2" "\xb5\x68\xe3\x75\x81\x2e\xb0\xbc\x44\x8e\x68\xed\xa4\xc7\x0c\xf1\xd5\xad" "\xf5\x66\x14\x2e\xd4\x59\x24\xfe\x72\xa1\xeb\x1a\x91\x4f\xaf\x75\x4b\x9d" "\x94\xbf\x0f\xdc\x1f\x98\xc7\x08\xbd\x89\x94\x0b\x5e\xf9\x6e\x32\x82\x40" "\xc3\x95\x59\xb3\x5b\xc8\x3c\x15\xc1\x51\x04\xf3\xb3\xfe\x19\x45\xf0\x27" "\x8c\x34\xe2\x39\x9d\xad\xcd\x97\x76\xac\x65\x9a\xfc\xbb\x23\x95\x69\x14" "\x0a\xb4\x08\xad\x87\xf1\x5b\x35\x39\x41", 352); memcpy( (void*)0x20004480, "\x78\x9c\xec\xdd\xcf\x6b\x54\xd7\x1e\x00\xf0\x73\x6f\xf2\x9e\x89\x4f\x7d" "\xf1\xc7\xc2\x07\x0f\xde\xc0\x13\xde\xa3\x2d\x21\x71\xd5\x36\x42\x35\x46" "\x63\xa2\xa9\xc5\x56\x29\xdd\x8c\x93\x64\xd4\xb4\x93\x8c\x24\x93\xd2\x85" "\x8b\x74\x27\x74\x55\xe8\x42\xba\x90\x16\xba\xcb\x4a\xb2\xe8\xd6\xfe\x09" "\xdd\x74\x69\xd7\x42\xbb\xe8\xa6\x50\x90\xa6\xcc\xcc\x9d\x38\xf7\x66\x86" "\x4c\x25\xd7\x54\xf9\x7c\xc0\x9c\xdc\xf3\x3b\xf3\x9d\x7b\xe6\xcc\xe2\x7a" "\xe2\x44\xed\xd6\xc2\x4a\x61\x61\xa5\x50\x5a\x2a\x54\xe7\x6e\xac\x9c\x2c" "\x7c\x5c\xad\xac\x2e\x96\x43\xfc\x9c\xec\xf5\xf8\xf4\x26\x8f\x38\x89\xfd" "\xde\xb9\x7c\xf6\xfc\xbb\xd7\x4e\x86\xf0\xdd\xfc\x0f\x8f\x37\x37\x37\x37" "\x43\x5d\x7f\xe8\x68\xb4\xed\xf7\x5f\x7f\xb9\x33\xd7\x9e\xb6\xc4\x99\x36" "\xf5\x7e\x3b\xf7\xb6\x5b\x3e\x08\x21\x1c\xdb\x36\xaf\xba\xbe\x10\xc2\xfb" "\xdf\x86\x10\x85\x10\xce\x24\x79\xe3\x49\x3a\x18\x42\x38\x14\x9a\x65\xd7" "\xee\x7c\x76\xbd\xb0\x4b\xb3\x79\xf0\xa8\x7c\xaa\xf8\x64\xe6\xee\xc6\xd8" "\x89\xe9\xf5\xfb\x1b\xdd\xff\xf6\x28\x84\x2f\x2b\xff\x7a\xed\xe6\xe2\x4f" "\xff\xed\x1b\xfb\xf1\x95\x5d\x1a\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\x17\xdc\xe4\x95\xcb\x57\xdf\x19\x19\x0d\x0f\xa3\xd0" "\xbf\x1e\x6d\x7f\x5e\x77\x32\x49\xbb\x3d\x1f\xbb\xb9\x6b\xfe\x93\xff\x1f" "\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x51" "\x4f\x9f\xff\x2f\x44\x47\x3a\x3c\xff\x3f\x91\xa4\xa7\xbb\xb4\xdf\x7c\x2b" "\xff\x39\x92\x9f\xa9\xb7\x2f\x4f\x9c\x1b\x19\x4d\xce\x7f\x8f\xb6\x95\xbf" "\x9e\x64\xfd\x7c\xa6\x2f\x1c\xee\x70\xee\x7b\xf6\xfc\xf7\x33\x99\xf6\x9d" "\xcf\x7f\xdf\x3e\xce\xb3\x6a\xcd\xaf\x35\xee\x50\x88\xe2\xe1\xd4\x75\x1c" "\x0f\x0f\x87\xf0\x75\x72\xf0\xfb\xf1\x68\x7f\x5c\xa9\xae\xd4\x5e\xbd\x51" "\x5d\x5d\x9a\xdf\xb5\x69\xbc\xb0\xd2\xf1\x6f\x9e\xde\x9f\x8a\x4e\x72\xa0" "\x7f\xaf\xf1\x1f\xcf\xf4\x9f\xff\xf9\xff\x47\xb7\xbd\x9b\xea\xd7\xd7\x77" "\xef\x2d\xf6\x52\x4b\xc7\xbf\xaf\x6b\xbd\x6f\x3e\x8d\x7a\x8a\xff\xd9\x74" "\xb3\x7b\x39\x4d\xbb\xcd\xd1\xfc\x87\x78\x89\xa5\xe3\xdf\xdf\xc8\x1b\x6c" "\xaf\xb0\xaf\x99\xd4\xe3\xff\x79\xff\xce\xf1\x9f\xc8\xf4\x9f\xd7\xfd\x7f" "\x28\x84\x50\x88\xea\x73\x2d\xa4\x56\x80\xfa\x1e\xa6\x9e\xdf\x6d\xbf\x42" "\x5a\x3a\xfe\x7f\x6b\xe4\xa5\x96\xce\xe4\x85\xec\x76\xff\xff\x96\x89\xff" "\xb9\x4c\xff\x7b\xb5\xfe\xaf\x65\x3f\x88\xe8\x28\x1d\xff\xbf\x37\xf2\x06" "\x52\x35\x9a\x1b\x80\x46\xfc\xe3\x9d\xef\xff\xf3\x99\xfe\xf7\x22\xfe\xf5" "\xf9\xaf\xf9\xfc\xef\x49\x3a\xfe\xc9\x62\xdf\x9f\xaa\xd2\x78\x25\x7b\x5d" "\xff\x27\x33\xfd\xe7\x15\xff\xab\x71\x32\xcf\x43\x51\xea\x1d\xb0\x1e\x35" "\xf3\xbb\xfd\x7f\x75\xa4\xa5\xe3\x3f\xb0\xad\xfc\xe9\xf7\xbf\xb8\xa7\xfd" "\xdf\x85\x4c\xfb\xe7\xf5\xfd\xaf\x35\x6e\xeb\xfb\x5f\x6b\xf9\xff\x7f\xd4" "\xfc\xfe\x47\x67\xe9\xf8\x0f\x76\xad\xd7\xeb\xfd\x3f\x95\x69\x97\xf7\xfa" "\x7f\xba\xb1\xff\xe3\x59\xa5\xe3\xbf\xbf\x91\x97\xde\x3b\x0f\x35\x7e\xf6" "\x1a\xff\xe9\x4c\xff\x79\xc5\xbf\xb1\x2b\x19\x68\xc5\xff\xe9\x7a\xf2\xfb" "\xbe\x66\xfe\x57\xf6\x7f\x3d\x49\xc7\xff\x1f\xcd\xcc\xb8\xbd\xc6\x5a\xe3" "\x67\x63\xff\x17\xed\xbc\xff\xbf\x98\xe9\x7f\x2f\xf6\x7f\xf5\xf9\xaf\xc5" "\xf9\x8e\xfa\xb2\x48\xc7\xff\x40\xd7\x7a\xf5\xf8\x7f\xdf\xc3\xe7\xff\xa5" "\x4c\xbb\xfc\xe3\x1f\xc2\x88\xbd\xfe\x33\x4b\xc7\xff\x60\xd7\x7a\x8d\xfb" "\x7f\x60\xe7\xf8\xcf\x64\xda\xe5\x1d\xff\xff\xe5\xd9\x39\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xc0\x0b\x60\x3c\x49\x87\x42\x14\x0f\xa7\xae\xe3\x78" "\x78\x38\x84\xb3\xc9\xf5\xf1\xb0\x3f\x9a\x2d\xcd\x17\x67\x2b\xd5\xb9\x8f" "\x56\x42\x98\x48\xf2\x0b\xe1\x48\x74\xb3\x52\x9d\x2d\x55\x8a\x0b\x4b\xd5" "\xf9\x72\xb1\x54\xa9\x54\xe7\x42\x38\x97\x94\x1f\x0b\x03\xd1\x4a\xa5\x5a" "\x2b\x2e\x96\x6e\x9f\xdf\xea\x6b\x30\xba\x55\x2e\x2d\xd7\x66\xcb\xa5\x5a" "\x08\x61\x32\xc9\xff\x77\x38\xd8\xea\x6b\x76\xa1\xb6\x58\xba\x1d\x42\xb8" "\xb0\x55\xf6\xcf\xb8\xba\x7c\xfb\x56\x69\xa9\x38\xbf\xb0\xfc\xe6\xc8\xc8" "\xc8\x48\x98\xda\x9a\xc3\xe1\xa8\xfc\x49\xad\xbc\x54\x6b\x8e\xde\x2c\x0d" "\x61\x7a\xab\xed\x50\xd4\x36\xb9\x46\xf1\xc5\xad\xb9\x1c\x88\x3e\xac\xae" "\x2e\x2f\x95\x2a\x8d\xfc\x4b\x6d\x6d\x2a\xd5\xb9\x52\xa5\xad\xcd\x4c\x52" "\xf6\x45\x38\x1c\xd5\x96\x57\x97\xe6\x4a\xb5\x72\xb1\x52\xbd\xd9\x1a\x6f" "\x2f\x9d\x4e\xd2\x89\xa9\x2b\xef\x5d\xb9\x34\xba\xad\xfc\x7a\xd4\x4c\xc7" "\x9f\xef\xb4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xf8\x93\x1e\x8e\xbd\x71\x2f\x84\xd0\xdf\xbc\x8a\x43\x08\x85\x28\xf9" "\x25\x4a\xfe\xa5\x3c\x78\x54\x3e\x55\x7c\x32\x73\x77\x63\xec\xc4\xf4\xfa" "\xfd\x8d\xc7\x9d\xea\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x1f\xec\xc0\x81\x00\x00\x00\x00\x00" "\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\x97\xfe\x51" "\x22\x06\xa2\x38\x00\xbf\x19\x05\x2d\x3d\x86\x55\x48\x3a\xdb\x88\x22\x5a" "\x18\x11\x3c\x81\x1e\xc3\xc3\xe8\x51\xbc\x84\x77\xb0\xb0\xb0\xb5\x58\x16" "\x76\x27\xb0\xe4\x0f\x84\xc0\x76\xdf\xd7\x3c\x98\x1f\x6f\xde\xc0\x3c\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xb9\xbb\xe7\xee\xe5\xa9" "\x6e\x22\x52\x9c\x6f\xce\x22\xbe\xde\xbe\x7f\x0e\xf3\x87\x52\x3f\xae\xa7" "\xfb\x4f\x56\xcc\x3c\x5d\xd1\xc3\x71\xdc\x3f\x76\x37\xb7\x75\x53\xfe\x3d" "\x8d\xf2\xab\x72\xf4\xdb\xe6\x5d\xfa\xff\xf7\xfe\x1a\x13\xb5\xf7\x39\xd8" "\x93\xe1\x3e\xed\x8d\xe7\x0c\xcd\xed\xdb\xdc\xfb\xfa\xb9\x17\x91\x72\x15" "\x11\x6d\xc9\x2f\x53\xce\x55\xb5\xec\x2e\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x60\xcb\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x58\x00\x00\x00\x00\x40" "\x98\xbf\x75\x14\x7d\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfc\x0a\x00\x00\xff\xff\x8c\x37\x1c\xcf", 17453); syz_mount_image(/*fs=*/0x20004440, /*dir=*/0x20000040, /*flags=MS_NODIRATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x8c0, /*opts=*/0x20000600, /*chdir=*/1, /*size=*/0x442d, /*img=*/0x20004480); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: open_flags = 0x40942 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x20000200, "./bus\000", 6); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000200ul, /*flags=O_NONBLOCK|O_NOCTTY|O_NOATIME|O_CREAT|O_RDWR*/ 0x40942, /*mode=*/0); if (res != -1) r[0] = res; // write$UHID_INPUT arguments: [ // fd: fd_uhid (resource) // data: ptr[in, uhid_req[UHID_INPUT, uhid_input_req]] { // uhid_req[UHID_INPUT, uhid_input_req] { // type: const = 0x8 (4 bytes) // data: uhid_input_req { // data: buffer: {52 eb a0 5c 3f 13 16 93 10 ba 5d 49 a7 d1 8e 1e 0f // 11 dd a1 72 a1 9d e8 1e 79 92 a6 a6 27 a1 5e ed dd 25 b8 5d 60 e2 // 26 04 1a 99 a8 a9 9e 56 20 35 ef 20 b7 c3 af 7e fb 98 e7 4e e3 26 // 12 86 e3 7a 5f 6d ae 29 f9 16 fb d4 cd dd 27 7f 54 e4 29 76 36 33 // 3d f3 b3 11 7e 4d 7c 62 81 a1 c3 85 42 67 7c ad 25 af 44 4d 03 9e // 09 4e c2 0c 42 c6 8f ef af 26 e5 0f b1 cf f5 25 df 44 e9 72 44 2d // ae 7f 6b de 16 f8 b4 24 e9 52 f0 4f a0 15 81 ac 3b cb d0 49 4e cc // 20 54 2e 18 4c 82 71 cd e9 3d 75 33 3a ac ab 19 fd 9e 4c 14 63 d8 // d0 33 a3 9b 01 7e 0c 16 04 d3 80 2c 81 51 9a d6 a5 16 09 c5 00 ce // cd 4c e7 1e 06 3e 49 30 97 e7 29 e7 58 73 ac a9 53 d0 20 d1 d7 5e // cb 6a 1b a7 43 7e fc 42 4f 80 58 9d 2b 0b b7 07 e8 d6 2d 78 ed 6b // af 55 5c 13 af 11 e3 c9 49 14 ba 1d 39 89 a6 a3 94 9c 2e 8c 7b 7f // 33 20 47 51 07 e7 5d e9 60 bf 4a be ca 6e 73 ab e6 bc c5 b1 4a 81 // e6 3b 77 23 ff 49 1d 76 d7 98 e6 a9 3b ae ee 0b 6d 0c 88 ce 8f 2a // 52 91 74 b6 ec 89 34 55 0b 88 04 60 6b b2 b4 36 32 b6 f4 92 9c df // 8f 8d 10 4b ab cc 09 07 59 93 e0 81 5a b6 8b ef 78 55 dd 3c 5a 9c // b3 2f 02 6e 04 b0 03 65 ee 2a 29 95 a1 ef 72 bb c3 76 48 44 5f d0 // 57 e4 7c d1 e7 91 68 ec 0d 13 02 d2 7c fb 10 7a 51 37 ff 1e b2 c9 // 32 9c 1d db e0 d4 bc 8d 0b 57 c0 9c 77 18 b9 df 05 ef 7c a3 48 bf // 9b 32 5c d3 30 c6 fb d4 3a d0 8b c1 43 21 99 3e 87 43 cb b8 34 9f // f2 ec 9b 67 29 7d f0 e9 ba 24 94 b4 6c bd 40 f9 e3 fc c5 6b d2 90 // f4 d8 37 d7 1e ff aa 49 16 d4 ec cf 42 e7 36 23 59 19 c6 8c 71 74 // 93 30 96 5b 0e be 2f a7 da e2 79 39 3b 50 9d a2 51 e1 7a 72 b5 42 // fc 68 50 d8 59 85 b7 51 1d 0b 38 44 f8 00 50 ed b4 4f f7 1c 7b 36 // b8 2f f8 c9 2c 6d 34 2d e8 68 41 83 0c 44 07 8c 23 06 19 d5 a4 d0 // 6b 09 02 4e 6c 34 02 45 f0 f1 03 fe d9 15 b2 04 69 25 3e 09 ee 83 // bf ff c7 56 60 ab e0 d7 76 42 3f 54 3c d1 e9 31 39 cb d3 f2 1b 6f // f2 d0 8d 9f 44 ef 36 f5 0d aa ea 3f ce 42 42 c5 00 ab e6 cb 22 b6 // f5 9e 06 0c 65 97 9a a3 43 85 bd 20 7d 16 8e a5 d7 8f c8 12 b4 1a // 82 19 62 eb 18 a6 32 3d f6 0f 42 dd b4 0e 96 83 85 b6 bd a1 29 9d // 31 ff 9b 08 fb af 9d ae 62 19 eb 01 02 f2 5a 9f 08 6a c5 6e c5 70 // 2e b5 b3 d2 cc a3 22 9d a3 c4 a8 93 06 6d b9 ae e5 b9 1e 07 24 c5 // c2 5c c4 ca aa 47 65 5a 4f 36 3a 9f 06 33 cc b2 f6 fd ea 23 a4 1c // e4 26 09 94 cc ba 91 b2 d4 de 4b 7b 05 cc 7f 15 28 2d cd a1 f3 2b // 3a 27 73 f9 2f 47 39 ad 3f 63 7a e5 28 2e 13 5d c0 26 65 eb 06 24 // 8e 13 d5 8c 8d 26 8c b2 e0 49 7c b3 b0 29 b9 5b ed 1f 89 44 5b fc // d3 d1 19 35 a0 91 f2 20 4c c2 f5 f9 98 f9 b9 1b 4c ef a6 8b b3 a3 // 2c 30 73 7c 79 c6 7e f8 a1 8c da da ad 38 9e 1e ec 33 6f 00 40 28 // 96 0a a2 94 31 f5 11 d6 5a ed 78 b5 c1 10 01 3c eb 25 53 23 1e 85 // e6 a3 4f 73 54 79 95 b0 0c 20 5c 08 1f 77 0f 7d 46 15 91 47 29 2f // 01 8d 84 cb 19 59 77 09 72 bb 4f 51 8d 4c d2 11 c6 43 cf da 97 55 // ae 75 4e 12 3e b6 1e 21 26 0b e7 f2 15 6b 38 a7 f3 e2 99 76 33 c0 // 97 9b e3 f1 68 71 d7 5c 53 25 92 37 e8 8a 3c ad fa 0e e6 f4 09 5b // 86 3b 21 63 21 50 5e 3e c6 0c f1 0d 6f 80 d2 24 0b a7 75 ac f8 f4 // 98 e3 44 87 a9 90 c3 e7 3b 0b a1 23 9b 02 2b e1 2b 37 c8 a2 8b 13 // 47 cf 84 72 f8 fa 9e f5 53 e4 44 bb 5e fe 57 ae 8d b5 b2 07 09 11 // 24 40 b1 9f 45 86 80 f9 1b b6 ca bb b9 ca 7a 96 80 6f 29 75 b9 63 // ff 9e 1f 04 48 fe 29 8e 68 59 cb 0a 2c 80 12 27 1a 0a c6 6c 9c 6b // 4d 4e 0f 5a dd ca 3d 3e f8 99 3c ec c5 95 6a 29 f7 6b c1 9f 43 ae // ce a6 ea 8e d6 dd af 0d bc f2 bd e4 f0 0d f7 15 54 b0 4b 0a 81 87 // 1b 18 57 28 84 0d a2 91 0a 10 7d 57 d7 2d 5e 61 ae b4 72 30 06 df // 1b 3a 81 e3 26 a4 11 d2 d5 dd bf ca a9 0d a9 8e 79 38 8e 91 36 07 // df 51 00 53 59 98 d3 4d 35 1b 62 29 9c 85 62 79 58 df ef 52 96 7e // 3d d5 0f 9f 59 81 de 00 7a ec 7e 3c 96 fd b6 e6 77 87 b7 c7 ca 8b // ad 78 fb 2f b3 82 a7 6c 8b 6a 8d fe 61 5a 42 65 fb 97 15 c8 2c f6 // 35 27 ed c9 50 29 b9 0a 06 6c 06 43 19 17 ef 64 4b 2b a3 8b b1 b3 // 06 90 45 89 be 04 51 cf 84 60 f5 f8 a2 2c aa 26 d3 54 b2 d3 60 91 // 11 6d be e0 45 5f 25 11 ca 04 71 ad 10 29 fa 39 fe 4f 93 e1 6a c1 // 18 42 b0 90 a8 0d a7 12 7b ea af 77 10 74 3b 34 cb e8 5a ed 59 5c // 8e 23 29 87 dd e3 24 9f 1c 1d a6 44 c9 0b 5a ed 58 13 a0 31 64 7b // b6 4c c7 21 3e 93 1e 92 68 38 72 b4 76 c1 f0 47 d2 c4 54 cd 9e 9a // 73 b5 a5 fd 38 41 b5 6b db 9c 47 de ba 10 04 22 07 eb 3a f6 92 30 // 70 71 fa 7c df 5e 68 42 ae 80 04 5d 4d 12 20 78 1d 98 37 09 0a b8 // 76 da 14 5f dd 2c 8b f4 fe a5 7e dc df f9 76 2a 08 75 6f b2 eb f6 // cf 9e 87 11 32 48 ac 82 f6 86 dd b4 f6 85 c9 47 c9 af e2 e1 21 3e // 12 3d 53 05 18 8d 70 83 b1 ad d6 4f c8 ef 8b 81 95 ac e2 8f 13 f1 // ea 2e 9b 39 97 b8 04 b5 b1 01 9c 1a b5 9a 25 f6 df df e4 23 af 6d // 7b 9f 6d 1a 0f 25 46 73 0c c6 6e 17 f8 52 b6 3d d6 20 c6 7d 4c 8c // d2 3e b6 d8 78 76 9d 77 f6 d5 6a dc de 6c 79 a0 e2 c2 16 13 19 c8 // 37 91 18 e8 bf eb 7a 53 74 aa e4 f2 a0 dc fa 09 02 32 76 49 09 63 // 4f 8c 71 e7 d9 d0 8f 64 cf fe 36 b9 eb 2e 48 c8 75 9d 3b 0d b6 d6 // 80 2d 42 3a 68 2c 11 64 04 03 d0 21 7c 75 c6 68 26 c5 ae 69 2c 05 // 16 fc 11 f3 15 cc 12 8f b3 7f ef 52 35 85 63 a2 05 61 32 10 a9 ca // a5 34 03 31 c3 ab 7c 2c 50 26 bd ae 0e 5c 82 67 0b 21 23 c8 d7 d5 // c6 cf de c0 b6 b5 8c 13 a0 9a e6 b4 df df fd 88 46 f7 7e 2d eb b5 // 6b ec 82 49 18 49 31 25 c3 3d 46 b1 ca 2b 7a 9b 4f db 6f bc 1a d8 // 93 b2 16 ce 0a d9 dc e3 61 91 3e ca c0 01 ee 96 11 cd 64 8d c2 b2 // 78 86 2c ba bc d9 f6 75 ee 5e 47 d5 8d 33 a6 c7 ab 36 ba 78 e1 d3 // 00 09 d9 6c d9 40 f1 c2 a5 5d 5e a2 18 b2 f3 85 98 d7 a6 ad ec 8a // 77 e5 c1 88 ed 8e b2 28 a6 0a 30 a4 21 ef 76 46 c6 65 5f 42 64 2d // 6e 18 66 72 a6 29 f7 a4 6c c1 91 4c 57 b5 4c ac 17 50 56 49 dd 59 // 58 f7 dd 79 c0 cc f9 91 50 ee 59 e2 73 6d 63 76 83 27 2c 8c 5e 2c // 47 88 08 63 8d b9 ae 04 fb 64 55 9d de 0e f7 7d 2d 1f 27 f0 c3 f2 // 9a 4f 0c 8f b4 2a 72 01 02 24 b9 f4 ee 6e bd 57 ee c2 07 21 f1 01 // d5 bc 60 c8 f1 58 8f ff 59 c8 cf 71 84 26 3a d1 70 f8 de 15 63 ff // 8a d4 50 15 8a 2d 4a a8 19 39 16 6d f2 db ee 2d bc f8 33 65 c0 8a // 47 31 de 1b 95 5f fd a3 bd 20 bc 38 1c 44 d9 b5 9a 7d 7d 0a 53 fc // fd a3 cc 0f 02 d9 1b 43 c8 0c 1d e6 c5 cf 96 f8 46 01 d0 65 43 32 // 63 ec 4f c5 9d 5f 04 ed 9d e7 80 b5 68 7e 8f 81 e0 99 d2 f4 36 9b // 9d 36 75 cb dd 69 af c9 9e b3 7d be ea 2c 4a f1 f1 ce bd af 17 3c // b3 aa 25 f8 48 db f0 fe 6b 37 12 e3 25 50 1a 05 21 83 89 ea 96 17 // 57 72 62 78 d1 1c d8 f5 ff e7 97 ac 7e bc 2d 39 3a d8 52 dc 27 18 // 76 54 fb bd eb 29 89 2e dc 50 f9 88 b1 b8 66 4b aa 84 4f 01 d0 08 // 62 22 fc e0 3f e2 cb 73 05 3a 87 f0 6a ab fb 94 cb e7 a7 5d 97 24 // 6e 00 90 38 c2 52 83 3d 0b 2b ab b7 d0 08 59 1c 1f 0a 89 9b 11 ea // d5 65 94 25 71 de 2e 99 12 61 cd 58 1c 87 69 28 da 7a 9b 56 6b e4 // 44 27 34 cc 2e 81 c1 d4 c4 ec cf 7a 91 29 ea a8 e7 19 b3 4a c5 f8 // d1 1e c3 10 d4 d9 1e 65 31 01 1e 5a 79 da ba bb 90 f2 09 a5 d2 c1 // da 25 e6 a8 26 7c 2e 36 27 82 3e 95 f2 15 8c 3f de 26 4d ce 9c 20 // 48 a9 d7 17 f2 43 73 7a c1 ab 0d f8 14 19 d6 2d 36 dd d8 30 76 78 // 4e 85 4b 7b 86 33 07 49 93 96 fc f9 8f 43 94 07 1e 60 93 fd e1 b9 // a4 4c 30 ee f6 54 5b 41 bc c1 fe 4c a0 a4 38 8e 89 55 68 09 d1 8b // c7 31 a5 d1 ad ba 37 5e 33 32 d8 11 ae b4 c7 72 48 83 81 44 09 e8 // 8e 61 b6 eb af 04 85 e5 f3 c7 2f 7c 51 64 cf ef c3 0a c0 73 8f e0 // 4d 6c 04 fa da 41 73 38 e6 da e1 bd 70 63 af b5 e8 99 2a f0 fd 9f // 17 ad 20 37 b8 f6 c8 7b 3f 1c 9a de b3 40 eb a4 e0 df 7b 78 b3 10 // 09 59 36 e4 9a 9a e3 30 fc 15 ae 7d c2 39 37 44 c6 f9 ba 5d df 77 // 12 89 c0 40 f9 00 e2 d8 50 35 a8 f9 53 e0 f6 95 0c b9 8a c4 fd 88 // 48 fa 75 31 30 e7 03 83 34 9b 71 12 26 87 78 9f 4e 84 b8 c9 0c e1 // 17 44 8a 5b 86 17 c1 48 20 fd aa 22 3c 1b 61 27 c8 be ba cc 5e 74 // 3f 10 59 6e 01 00 22 00 e1 02 16 aa 9a c1 cc 3a c5 db ad b1 96 f4 // 3a 45 33 cc 95 0a 25 8b e2 50 cb c9 18 c8 00 d3 42 b3 04 9c f7 6e // e1 a5 9f bb 04 12 01 e6 71 2d 9b ae 7a 11 08 58 5f 1e c4 47 a2 a8 // 7c aa 74 11 3c 81 2a 9e b1 d8 b1 f0 79 3e 86 3a 5d 52 20 fb f0 5e // c5 f5 c6 a6 9a 41 bf 6c 08 44 3c f9 ce aa 5e 03 6d 36 0c f4 55 76 // c0 e5 58 0e 52 17 3d 4f e9 5e c6 fa 1e 13 f0 d5 ab 90 27 33 6a ee // 4b 50 a4 2c 88 4f f5 70 7a 20 60 3a 96 78 78 e9 03 c4 43 91 87 0e // 16 2c 74 d3 c6 75 e2 ef 6e d4 5c 38 74 6b a0 ee 74 87 f8 8b dd 1e // 77 fe 87 05 2f 95 7e d4 93 93 44 cd fb f2 0d 45 a8 cd 32 87 72 c2 // 20 ce f1 45 b5 e7 97 1a 50 65 66 e7 59 6f 54 de 95 3b 5e 32 27 30 // 31 f0 1d bd 72 f0 10 a8 0d 98 fb 45 39 92 09 00 64 74 7d 3c 85 2c // c2 00 90 b9 30 b3 5e d7 c9 bf a2 22 7f f5 18 52 81 e2 4f 2e 60 48 // 47 0d de 99 c7 13 e8 7d 7e c9 ab 6b 59 d7 66 b7 25 53 e0 44 44 ac // 22 99 93 e1 62 16 da 70 6f d5 9b 9f b1 d9 32 5a 58 11 d1 8d 9e dd // b4 d0 4e d4 dc ee 44 de 88 95 f0 64 b4 d5 31 c5 f7 45 07 ba 14 ac // 12 26 b2 d8 f8 7f 02 32 9b 85 50 46 d2 16 a7 11 46 d7 55 df 27 a0 // c0 c5 cf 4f 67 ac 3b ce 84 13 c3 63 c7 e2 eb 97 83 fb 88 af 73 8f // 56 6b fb 82 4f e2 21 8c 54 99 15 cf 87 a1 9d 88 cb 70 92 ce 43 b1 // a9 ed cf 3a d4 bc 3a 89 4f df 4e 86 e5 2c 9c 25 5f 71 75 bb 7c 53 // 39 77 36 a4 68 7c 20 11 64 7f 36 45 5e 8d a6 88 c1 1c 8f 93 96 a7 // 9d 78 ff 22 3c bf fd 25 a2 f8 43 90 ee bd f7 34 c0 42 97 c9 b3 ef // b9 3c c2 f9 32 01 76 36 cc e1 42 81 25 02 53 9c 14 2a a7 da 20 3f // 4a 36 9b 05 9e 0e e8 10 c9 5b e1 1b 5d 89 9d 30 df c5 8e c4 c1 78 // af a4 de 17 b4 69 e0 66 0b 3d 79 43 c9 39 0d 95 bb 63 5a 85 52 7c // 0b c6 cf 44 1c 87 72 26 41 01 6b be 11 da 9d a9 be 78 c9 8e 43 a9 // 0d 0e b0 79 33 d7 da 51 65 ac 5e 90 6a ab 11 4f a1 9f bc 9f 23 e6 // 74 a4 6c 7e 98 4a 2c ec 61 6d 99 5a b6 f4 33 cf 39 0f ad b1 ad d4 // d3 db e8 33 61 69 e1 dd 6b cd f3 11 4c 38 8f 5c a1 9d 86 73 47 b3 // 18 bd bc e0 99 21 1a ec 7c 6e 76 66 44 a2 f2 6f 9b 19 1e e9 ef aa // 33 b6 61 9c c3 88 83 b6 43 5a 07 f3 f1 31 88 c0 47 58 ab 17 b5 f8 // cf 38 37 45 82 9b 26 a3 cf 6e 34 71 e3 50 67 af 9a 8b 60 78 25 96 // 04 4e 16 d8 af fb f6 d9 a5 59 73 26 03 2e 72 e7 b7 fe c1 f6 b1 67 // d1 e2 81 8f c6 ed 97 04 de aa 6c 54 99 fd a4 56 34 f5 10 80 e0 d8 // 1c bd 2e de 55 87 9f 5e 7f e1 6f 2d e8 7e 52 1b 62 55 31 37 f1 a0 // 23 b3 d6 ab a2 1f c3 24 03 8e c7 22 14 b5 3b 5c e4 90 d0 c4 0a cc // 5d fa 68 54 31 2f b2 36 00 a8 2f bb 36 2c 68 68 6b 3b d2 f7 18 5d // cc 51 63 b7 56 67 ca fa 49 3d 4d 42 07 3d 55 64 6c f7 e8 02 d8 61 // 3f 04 91 18 e8 1e 6c d8 e4 6c 41 d7 a9 64 c8 f7 0e d7 9c 6e 38 78 // 44 0c 95 db 32 c6 9f 87 5a f2 e1 f2 aa 5a 4a bc a5 92 21 f8 31 7f // b4 d5 f1 b9 05 c5 03 2f b7 23 09 48 7c a9 76 bf 77 32 e1 dc 8f cb // 01 3a c7 fa 75 ec 2a 6c 06 f8 02 01 8d bb bb ad ce df 84 50 d6 b3 // 77 8e 0f 4c f3 51 44 47 bb 04 43 ff 79 78 58 d1 8b 20 49 4c d1 7a // c6 78 25 fb 2e dc dc ac 3d d7 f2 4c f2 94 c2 d9 7b c8 ed 37 a4 7e // d6 b7 f6 6d a2 08 8a 6c 6e 59 2e 3d 78 70 c0 c6 28 0d 06 ae f5 87 // 42 36 4b 7f e0 ac 8d 35 62 5a 92 f5 1f 1c 58 93 87 2d 8c 8e e0 ee // 96 b9 25 bb 97 ad 08 ab 48 af 8b 72 8f ff 74 6e 99 54 9d aa b6 37 // 5d a0 a1 47 82 cd 5d 51 11 98 6f 53 fe dc 96 f9 c8 6c 0b e7 34 78 // 34 72 a1 42 1d 77 4c cb e8 ec 8e fe fc cf a8 b1 59 3d 67 2d e1 d9 // 25 ab f9 5a f9 c9 2b d8 a0 64 1b 16 a6 10 a3 8d f4 7b 3f c3 78 d4 // 1e 98 e5 92 fa 3c 9e ed 8c e6 de b1 58 33 55 07 dd 82 7b 29 e7 73 // bf a9 12 6c 60 3a 9f 18 3e d3 d1 57 54 e2 6a 7d 9e 0f 5b c2 59 b6 // 97 c3 ff 6f cb 2e 8d ed e3 0e 5b 43 36 10 8b d3 74 d3 aa 7c 6f bd // ab e1 7d 88 0c 7e 85 4e 44 cb c8 0a a4 82 fb db e6 3a d0 dc 52 f3 // 67 1a 3e 39 8b 95 a0 77 53 34 2d 32 32 67 f5 b1 c6 53 4f 6f ec db // e5 f2 2b 41 15 7c 1c 0b 89 74 2a d3 d0 01 b8 c4 e0 9f 40 d3 29 5d // 62 b5 ea c8 01 7d 93 45 1c 5d 2b 3d 21 ba c6 46 4c 07 7b 48 2a f4 // de 37 2c 6c af f8 1e 90 a1 60 20 3a 29 13 62 ef d1 26 e2 15 ab 62 // 77 60 86 78 5e 14 4f 27 46 42 d0 db b3 67 e6 40 f1 ca 4b b2 15 5f // 6e a9 e0 7c a4 04 59 51 c3 be 19 c7 dd 86 1c 73 29 c0 94 65 2c a3 // 35 09 20 cc 9b 7d cf eb 76 f5 68 53 aa ef 5a ce 5b ae da 25 02 da // 79 15 06 f3 3a 0c 84 15 ce 35 2b da 32 16 87 5a b6 f5 eb bb 75 26 // f1 13 ba dc f9 91 df da 29 4f d0 d7 32 1d ef 75 98 2e 06 a2 d6 5c // c1 1c 2a f1 37 b6 86 cb 03 90 6e 1d 38 be 35 07 6d 6f 03 83 8d 55 // 8a 9a 38 d5 3c c4 2a c4 f1 6a bb 17 cc 98 80 f0 a5 39 75 26 3e 7f // 4d d9 16 7b 11 00 e1 db b5 94 e4 56 ea 4c 83 17 66 2d ea 34 e2 88 // ee 3d b2 90 9e 98 d4 61 cb 04 89 76 b2 cf a2 35 53 86 fb cc b9 8d // 59 d6 a4 70 ae 9a 2b 91 6d 07 ea 5c c1 c9 52 0d c5 8f 39 2e 03 87 // 25 c2 0d 5c 49 b6 93 a1 8f 43 91 7a 94 02 b7 5a 40 91 49 56 aa 28 // b3 c8 47 da c2 36 f5 f9 d4 63 88 02 20 27 86 2d dd 94 b1 64 81 e4 // 18 a5 ee 4b 9e 3b e6 37 83 c0 ad 58 f3 25 8d 74 23 75 1f ad 88 f1 // 3e d8 8c e3 5f 0d 8c 91 28 5c e0 84 fb 7b bc 50 be 65 c6 a4 33 4c // e0 4a b1 a1 30 55 2b 55 b0 3c b8 15 53 dd b3 1a 6b 56 a1 f6 88 0c // 49 ed c3 7a cb 33 b8 89 08 05 a3 e6 e1 d0 c6 aa d0 66 e3 34 85 7a // c5 13 cd 46 f5 60 29 0e 7a 8e bd 71 13 57 32 81 22 ab 1d 2d 28 43 // b6 5f c9 96 0b 9c 9c 9f c8 cc 04 5e 69 6c 29 28 0e 21 08 ba e9 20 // ab c3 06 69 3f ab 35 e7 92 f2 c8 1a ae 61 6f 24 1f eb 34 e6 f0 6c // fc 9c 07 4c 4a 19 b3 32 fb} (length 0x1000) size: len = 0x1000 (2 // bytes) // } // } // } // len: len = 0x1006 (8 bytes) // ] *(uint32_t*)0x200007c0 = 8; memcpy( (void*)0x200007c4, "\x52\xeb\xa0\x5c\x3f\x13\x16\x93\x10\xba\x5d\x49\xa7\xd1\x8e\x1e\x0f\x11" "\xdd\xa1\x72\xa1\x9d\xe8\x1e\x79\x92\xa6\xa6\x27\xa1\x5e\xed\xdd\x25\xb8" "\x5d\x60\xe2\x26\x04\x1a\x99\xa8\xa9\x9e\x56\x20\x35\xef\x20\xb7\xc3\xaf" "\x7e\xfb\x98\xe7\x4e\xe3\x26\x12\x86\xe3\x7a\x5f\x6d\xae\x29\xf9\x16\xfb" "\xd4\xcd\xdd\x27\x7f\x54\xe4\x29\x76\x36\x33\x3d\xf3\xb3\x11\x7e\x4d\x7c" "\x62\x81\xa1\xc3\x85\x42\x67\x7c\xad\x25\xaf\x44\x4d\x03\x9e\x09\x4e\xc2" "\x0c\x42\xc6\x8f\xef\xaf\x26\xe5\x0f\xb1\xcf\xf5\x25\xdf\x44\xe9\x72\x44" "\x2d\xae\x7f\x6b\xde\x16\xf8\xb4\x24\xe9\x52\xf0\x4f\xa0\x15\x81\xac\x3b" "\xcb\xd0\x49\x4e\xcc\x20\x54\x2e\x18\x4c\x82\x71\xcd\xe9\x3d\x75\x33\x3a" "\xac\xab\x19\xfd\x9e\x4c\x14\x63\xd8\xd0\x33\xa3\x9b\x01\x7e\x0c\x16\x04" "\xd3\x80\x2c\x81\x51\x9a\xd6\xa5\x16\x09\xc5\x00\xce\xcd\x4c\xe7\x1e\x06" "\x3e\x49\x30\x97\xe7\x29\xe7\x58\x73\xac\xa9\x53\xd0\x20\xd1\xd7\x5e\xcb" "\x6a\x1b\xa7\x43\x7e\xfc\x42\x4f\x80\x58\x9d\x2b\x0b\xb7\x07\xe8\xd6\x2d" "\x78\xed\x6b\xaf\x55\x5c\x13\xaf\x11\xe3\xc9\x49\x14\xba\x1d\x39\x89\xa6" "\xa3\x94\x9c\x2e\x8c\x7b\x7f\x33\x20\x47\x51\x07\xe7\x5d\xe9\x60\xbf\x4a" "\xbe\xca\x6e\x73\xab\xe6\xbc\xc5\xb1\x4a\x81\xe6\x3b\x77\x23\xff\x49\x1d" "\x76\xd7\x98\xe6\xa9\x3b\xae\xee\x0b\x6d\x0c\x88\xce\x8f\x2a\x52\x91\x74" "\xb6\xec\x89\x34\x55\x0b\x88\x04\x60\x6b\xb2\xb4\x36\x32\xb6\xf4\x92\x9c" "\xdf\x8f\x8d\x10\x4b\xab\xcc\x09\x07\x59\x93\xe0\x81\x5a\xb6\x8b\xef\x78" "\x55\xdd\x3c\x5a\x9c\xb3\x2f\x02\x6e\x04\xb0\x03\x65\xee\x2a\x29\x95\xa1" "\xef\x72\xbb\xc3\x76\x48\x44\x5f\xd0\x57\xe4\x7c\xd1\xe7\x91\x68\xec\x0d" "\x13\x02\xd2\x7c\xfb\x10\x7a\x51\x37\xff\x1e\xb2\xc9\x32\x9c\x1d\xdb\xe0" "\xd4\xbc\x8d\x0b\x57\xc0\x9c\x77\x18\xb9\xdf\x05\xef\x7c\xa3\x48\xbf\x9b" "\x32\x5c\xd3\x30\xc6\xfb\xd4\x3a\xd0\x8b\xc1\x43\x21\x99\x3e\x87\x43\xcb" "\xb8\x34\x9f\xf2\xec\x9b\x67\x29\x7d\xf0\xe9\xba\x24\x94\xb4\x6c\xbd\x40" "\xf9\xe3\xfc\xc5\x6b\xd2\x90\xf4\xd8\x37\xd7\x1e\xff\xaa\x49\x16\xd4\xec" "\xcf\x42\xe7\x36\x23\x59\x19\xc6\x8c\x71\x74\x93\x30\x96\x5b\x0e\xbe\x2f" "\xa7\xda\xe2\x79\x39\x3b\x50\x9d\xa2\x51\xe1\x7a\x72\xb5\x42\xfc\x68\x50" "\xd8\x59\x85\xb7\x51\x1d\x0b\x38\x44\xf8\x00\x50\xed\xb4\x4f\xf7\x1c\x7b" "\x36\xb8\x2f\xf8\xc9\x2c\x6d\x34\x2d\xe8\x68\x41\x83\x0c\x44\x07\x8c\x23" "\x06\x19\xd5\xa4\xd0\x6b\x09\x02\x4e\x6c\x34\x02\x45\xf0\xf1\x03\xfe\xd9" "\x15\xb2\x04\x69\x25\x3e\x09\xee\x83\xbf\xff\xc7\x56\x60\xab\xe0\xd7\x76" "\x42\x3f\x54\x3c\xd1\xe9\x31\x39\xcb\xd3\xf2\x1b\x6f\xf2\xd0\x8d\x9f\x44" "\xef\x36\xf5\x0d\xaa\xea\x3f\xce\x42\x42\xc5\x00\xab\xe6\xcb\x22\xb6\xf5" "\x9e\x06\x0c\x65\x97\x9a\xa3\x43\x85\xbd\x20\x7d\x16\x8e\xa5\xd7\x8f\xc8" "\x12\xb4\x1a\x82\x19\x62\xeb\x18\xa6\x32\x3d\xf6\x0f\x42\xdd\xb4\x0e\x96" "\x83\x85\xb6\xbd\xa1\x29\x9d\x31\xff\x9b\x08\xfb\xaf\x9d\xae\x62\x19\xeb" "\x01\x02\xf2\x5a\x9f\x08\x6a\xc5\x6e\xc5\x70\x2e\xb5\xb3\xd2\xcc\xa3\x22" "\x9d\xa3\xc4\xa8\x93\x06\x6d\xb9\xae\xe5\xb9\x1e\x07\x24\xc5\xc2\x5c\xc4" "\xca\xaa\x47\x65\x5a\x4f\x36\x3a\x9f\x06\x33\xcc\xb2\xf6\xfd\xea\x23\xa4" "\x1c\xe4\x26\x09\x94\xcc\xba\x91\xb2\xd4\xde\x4b\x7b\x05\xcc\x7f\x15\x28" "\x2d\xcd\xa1\xf3\x2b\x3a\x27\x73\xf9\x2f\x47\x39\xad\x3f\x63\x7a\xe5\x28" "\x2e\x13\x5d\xc0\x26\x65\xeb\x06\x24\x8e\x13\xd5\x8c\x8d\x26\x8c\xb2\xe0" "\x49\x7c\xb3\xb0\x29\xb9\x5b\xed\x1f\x89\x44\x5b\xfc\xd3\xd1\x19\x35\xa0" "\x91\xf2\x20\x4c\xc2\xf5\xf9\x98\xf9\xb9\x1b\x4c\xef\xa6\x8b\xb3\xa3\x2c" "\x30\x73\x7c\x79\xc6\x7e\xf8\xa1\x8c\xda\xda\xad\x38\x9e\x1e\xec\x33\x6f" "\x00\x40\x28\x96\x0a\xa2\x94\x31\xf5\x11\xd6\x5a\xed\x78\xb5\xc1\x10\x01" "\x3c\xeb\x25\x53\x23\x1e\x85\xe6\xa3\x4f\x73\x54\x79\x95\xb0\x0c\x20\x5c" "\x08\x1f\x77\x0f\x7d\x46\x15\x91\x47\x29\x2f\x01\x8d\x84\xcb\x19\x59\x77" "\x09\x72\xbb\x4f\x51\x8d\x4c\xd2\x11\xc6\x43\xcf\xda\x97\x55\xae\x75\x4e" "\x12\x3e\xb6\x1e\x21\x26\x0b\xe7\xf2\x15\x6b\x38\xa7\xf3\xe2\x99\x76\x33" "\xc0\x97\x9b\xe3\xf1\x68\x71\xd7\x5c\x53\x25\x92\x37\xe8\x8a\x3c\xad\xfa" "\x0e\xe6\xf4\x09\x5b\x86\x3b\x21\x63\x21\x50\x5e\x3e\xc6\x0c\xf1\x0d\x6f" "\x80\xd2\x24\x0b\xa7\x75\xac\xf8\xf4\x98\xe3\x44\x87\xa9\x90\xc3\xe7\x3b" "\x0b\xa1\x23\x9b\x02\x2b\xe1\x2b\x37\xc8\xa2\x8b\x13\x47\xcf\x84\x72\xf8" "\xfa\x9e\xf5\x53\xe4\x44\xbb\x5e\xfe\x57\xae\x8d\xb5\xb2\x07\x09\x11\x24" "\x40\xb1\x9f\x45\x86\x80\xf9\x1b\xb6\xca\xbb\xb9\xca\x7a\x96\x80\x6f\x29" "\x75\xb9\x63\xff\x9e\x1f\x04\x48\xfe\x29\x8e\x68\x59\xcb\x0a\x2c\x80\x12" "\x27\x1a\x0a\xc6\x6c\x9c\x6b\x4d\x4e\x0f\x5a\xdd\xca\x3d\x3e\xf8\x99\x3c" "\xec\xc5\x95\x6a\x29\xf7\x6b\xc1\x9f\x43\xae\xce\xa6\xea\x8e\xd6\xdd\xaf" "\x0d\xbc\xf2\xbd\xe4\xf0\x0d\xf7\x15\x54\xb0\x4b\x0a\x81\x87\x1b\x18\x57" "\x28\x84\x0d\xa2\x91\x0a\x10\x7d\x57\xd7\x2d\x5e\x61\xae\xb4\x72\x30\x06" "\xdf\x1b\x3a\x81\xe3\x26\xa4\x11\xd2\xd5\xdd\xbf\xca\xa9\x0d\xa9\x8e\x79" "\x38\x8e\x91\x36\x07\xdf\x51\x00\x53\x59\x98\xd3\x4d\x35\x1b\x62\x29\x9c" "\x85\x62\x79\x58\xdf\xef\x52\x96\x7e\x3d\xd5\x0f\x9f\x59\x81\xde\x00\x7a" "\xec\x7e\x3c\x96\xfd\xb6\xe6\x77\x87\xb7\xc7\xca\x8b\xad\x78\xfb\x2f\xb3" "\x82\xa7\x6c\x8b\x6a\x8d\xfe\x61\x5a\x42\x65\xfb\x97\x15\xc8\x2c\xf6\x35" "\x27\xed\xc9\x50\x29\xb9\x0a\x06\x6c\x06\x43\x19\x17\xef\x64\x4b\x2b\xa3" "\x8b\xb1\xb3\x06\x90\x45\x89\xbe\x04\x51\xcf\x84\x60\xf5\xf8\xa2\x2c\xaa" "\x26\xd3\x54\xb2\xd3\x60\x91\x11\x6d\xbe\xe0\x45\x5f\x25\x11\xca\x04\x71" "\xad\x10\x29\xfa\x39\xfe\x4f\x93\xe1\x6a\xc1\x18\x42\xb0\x90\xa8\x0d\xa7" "\x12\x7b\xea\xaf\x77\x10\x74\x3b\x34\xcb\xe8\x5a\xed\x59\x5c\x8e\x23\x29" "\x87\xdd\xe3\x24\x9f\x1c\x1d\xa6\x44\xc9\x0b\x5a\xed\x58\x13\xa0\x31\x64" "\x7b\xb6\x4c\xc7\x21\x3e\x93\x1e\x92\x68\x38\x72\xb4\x76\xc1\xf0\x47\xd2" "\xc4\x54\xcd\x9e\x9a\x73\xb5\xa5\xfd\x38\x41\xb5\x6b\xdb\x9c\x47\xde\xba" "\x10\x04\x22\x07\xeb\x3a\xf6\x92\x30\x70\x71\xfa\x7c\xdf\x5e\x68\x42\xae" "\x80\x04\x5d\x4d\x12\x20\x78\x1d\x98\x37\x09\x0a\xb8\x76\xda\x14\x5f\xdd" "\x2c\x8b\xf4\xfe\xa5\x7e\xdc\xdf\xf9\x76\x2a\x08\x75\x6f\xb2\xeb\xf6\xcf" "\x9e\x87\x11\x32\x48\xac\x82\xf6\x86\xdd\xb4\xf6\x85\xc9\x47\xc9\xaf\xe2" "\xe1\x21\x3e\x12\x3d\x53\x05\x18\x8d\x70\x83\xb1\xad\xd6\x4f\xc8\xef\x8b" "\x81\x95\xac\xe2\x8f\x13\xf1\xea\x2e\x9b\x39\x97\xb8\x04\xb5\xb1\x01\x9c" "\x1a\xb5\x9a\x25\xf6\xdf\xdf\xe4\x23\xaf\x6d\x7b\x9f\x6d\x1a\x0f\x25\x46" "\x73\x0c\xc6\x6e\x17\xf8\x52\xb6\x3d\xd6\x20\xc6\x7d\x4c\x8c\xd2\x3e\xb6" "\xd8\x78\x76\x9d\x77\xf6\xd5\x6a\xdc\xde\x6c\x79\xa0\xe2\xc2\x16\x13\x19" "\xc8\x37\x91\x18\xe8\xbf\xeb\x7a\x53\x74\xaa\xe4\xf2\xa0\xdc\xfa\x09\x02" "\x32\x76\x49\x09\x63\x4f\x8c\x71\xe7\xd9\xd0\x8f\x64\xcf\xfe\x36\xb9\xeb" "\x2e\x48\xc8\x75\x9d\x3b\x0d\xb6\xd6\x80\x2d\x42\x3a\x68\x2c\x11\x64\x04" "\x03\xd0\x21\x7c\x75\xc6\x68\x26\xc5\xae\x69\x2c\x05\x16\xfc\x11\xf3\x15" "\xcc\x12\x8f\xb3\x7f\xef\x52\x35\x85\x63\xa2\x05\x61\x32\x10\xa9\xca\xa5" "\x34\x03\x31\xc3\xab\x7c\x2c\x50\x26\xbd\xae\x0e\x5c\x82\x67\x0b\x21\x23" "\xc8\xd7\xd5\xc6\xcf\xde\xc0\xb6\xb5\x8c\x13\xa0\x9a\xe6\xb4\xdf\xdf\xfd" "\x88\x46\xf7\x7e\x2d\xeb\xb5\x6b\xec\x82\x49\x18\x49\x31\x25\xc3\x3d\x46" "\xb1\xca\x2b\x7a\x9b\x4f\xdb\x6f\xbc\x1a\xd8\x93\xb2\x16\xce\x0a\xd9\xdc" "\xe3\x61\x91\x3e\xca\xc0\x01\xee\x96\x11\xcd\x64\x8d\xc2\xb2\x78\x86\x2c" "\xba\xbc\xd9\xf6\x75\xee\x5e\x47\xd5\x8d\x33\xa6\xc7\xab\x36\xba\x78\xe1" "\xd3\x00\x09\xd9\x6c\xd9\x40\xf1\xc2\xa5\x5d\x5e\xa2\x18\xb2\xf3\x85\x98" "\xd7\xa6\xad\xec\x8a\x77\xe5\xc1\x88\xed\x8e\xb2\x28\xa6\x0a\x30\xa4\x21" "\xef\x76\x46\xc6\x65\x5f\x42\x64\x2d\x6e\x18\x66\x72\xa6\x29\xf7\xa4\x6c" "\xc1\x91\x4c\x57\xb5\x4c\xac\x17\x50\x56\x49\xdd\x59\x58\xf7\xdd\x79\xc0" "\xcc\xf9\x91\x50\xee\x59\xe2\x73\x6d\x63\x76\x83\x27\x2c\x8c\x5e\x2c\x47" "\x88\x08\x63\x8d\xb9\xae\x04\xfb\x64\x55\x9d\xde\x0e\xf7\x7d\x2d\x1f\x27" "\xf0\xc3\xf2\x9a\x4f\x0c\x8f\xb4\x2a\x72\x01\x02\x24\xb9\xf4\xee\x6e\xbd" "\x57\xee\xc2\x07\x21\xf1\x01\xd5\xbc\x60\xc8\xf1\x58\x8f\xff\x59\xc8\xcf" "\x71\x84\x26\x3a\xd1\x70\xf8\xde\x15\x63\xff\x8a\xd4\x50\x15\x8a\x2d\x4a" "\xa8\x19\x39\x16\x6d\xf2\xdb\xee\x2d\xbc\xf8\x33\x65\xc0\x8a\x47\x31\xde" "\x1b\x95\x5f\xfd\xa3\xbd\x20\xbc\x38\x1c\x44\xd9\xb5\x9a\x7d\x7d\x0a\x53" "\xfc\xfd\xa3\xcc\x0f\x02\xd9\x1b\x43\xc8\x0c\x1d\xe6\xc5\xcf\x96\xf8\x46" "\x01\xd0\x65\x43\x32\x63\xec\x4f\xc5\x9d\x5f\x04\xed\x9d\xe7\x80\xb5\x68" "\x7e\x8f\x81\xe0\x99\xd2\xf4\x36\x9b\x9d\x36\x75\xcb\xdd\x69\xaf\xc9\x9e" "\xb3\x7d\xbe\xea\x2c\x4a\xf1\xf1\xce\xbd\xaf\x17\x3c\xb3\xaa\x25\xf8\x48" "\xdb\xf0\xfe\x6b\x37\x12\xe3\x25\x50\x1a\x05\x21\x83\x89\xea\x96\x17\x57" "\x72\x62\x78\xd1\x1c\xd8\xf5\xff\xe7\x97\xac\x7e\xbc\x2d\x39\x3a\xd8\x52" "\xdc\x27\x18\x76\x54\xfb\xbd\xeb\x29\x89\x2e\xdc\x50\xf9\x88\xb1\xb8\x66" "\x4b\xaa\x84\x4f\x01\xd0\x08\x62\x22\xfc\xe0\x3f\xe2\xcb\x73\x05\x3a\x87" "\xf0\x6a\xab\xfb\x94\xcb\xe7\xa7\x5d\x97\x24\x6e\x00\x90\x38\xc2\x52\x83" "\x3d\x0b\x2b\xab\xb7\xd0\x08\x59\x1c\x1f\x0a\x89\x9b\x11\xea\xd5\x65\x94" "\x25\x71\xde\x2e\x99\x12\x61\xcd\x58\x1c\x87\x69\x28\xda\x7a\x9b\x56\x6b" "\xe4\x44\x27\x34\xcc\x2e\x81\xc1\xd4\xc4\xec\xcf\x7a\x91\x29\xea\xa8\xe7" "\x19\xb3\x4a\xc5\xf8\xd1\x1e\xc3\x10\xd4\xd9\x1e\x65\x31\x01\x1e\x5a\x79" "\xda\xba\xbb\x90\xf2\x09\xa5\xd2\xc1\xda\x25\xe6\xa8\x26\x7c\x2e\x36\x27" "\x82\x3e\x95\xf2\x15\x8c\x3f\xde\x26\x4d\xce\x9c\x20\x48\xa9\xd7\x17\xf2" "\x43\x73\x7a\xc1\xab\x0d\xf8\x14\x19\xd6\x2d\x36\xdd\xd8\x30\x76\x78\x4e" "\x85\x4b\x7b\x86\x33\x07\x49\x93\x96\xfc\xf9\x8f\x43\x94\x07\x1e\x60\x93" "\xfd\xe1\xb9\xa4\x4c\x30\xee\xf6\x54\x5b\x41\xbc\xc1\xfe\x4c\xa0\xa4\x38" "\x8e\x89\x55\x68\x09\xd1\x8b\xc7\x31\xa5\xd1\xad\xba\x37\x5e\x33\x32\xd8" "\x11\xae\xb4\xc7\x72\x48\x83\x81\x44\x09\xe8\x8e\x61\xb6\xeb\xaf\x04\x85" "\xe5\xf3\xc7\x2f\x7c\x51\x64\xcf\xef\xc3\x0a\xc0\x73\x8f\xe0\x4d\x6c\x04" "\xfa\xda\x41\x73\x38\xe6\xda\xe1\xbd\x70\x63\xaf\xb5\xe8\x99\x2a\xf0\xfd" "\x9f\x17\xad\x20\x37\xb8\xf6\xc8\x7b\x3f\x1c\x9a\xde\xb3\x40\xeb\xa4\xe0" "\xdf\x7b\x78\xb3\x10\x09\x59\x36\xe4\x9a\x9a\xe3\x30\xfc\x15\xae\x7d\xc2" "\x39\x37\x44\xc6\xf9\xba\x5d\xdf\x77\x12\x89\xc0\x40\xf9\x00\xe2\xd8\x50" "\x35\xa8\xf9\x53\xe0\xf6\x95\x0c\xb9\x8a\xc4\xfd\x88\x48\xfa\x75\x31\x30" "\xe7\x03\x83\x34\x9b\x71\x12\x26\x87\x78\x9f\x4e\x84\xb8\xc9\x0c\xe1\x17" "\x44\x8a\x5b\x86\x17\xc1\x48\x20\xfd\xaa\x22\x3c\x1b\x61\x27\xc8\xbe\xba" "\xcc\x5e\x74\x3f\x10\x59\x6e\x01\x00\x22\x00\xe1\x02\x16\xaa\x9a\xc1\xcc" "\x3a\xc5\xdb\xad\xb1\x96\xf4\x3a\x45\x33\xcc\x95\x0a\x25\x8b\xe2\x50\xcb" "\xc9\x18\xc8\x00\xd3\x42\xb3\x04\x9c\xf7\x6e\xe1\xa5\x9f\xbb\x04\x12\x01" "\xe6\x71\x2d\x9b\xae\x7a\x11\x08\x58\x5f\x1e\xc4\x47\xa2\xa8\x7c\xaa\x74" "\x11\x3c\x81\x2a\x9e\xb1\xd8\xb1\xf0\x79\x3e\x86\x3a\x5d\x52\x20\xfb\xf0" "\x5e\xc5\xf5\xc6\xa6\x9a\x41\xbf\x6c\x08\x44\x3c\xf9\xce\xaa\x5e\x03\x6d" "\x36\x0c\xf4\x55\x76\xc0\xe5\x58\x0e\x52\x17\x3d\x4f\xe9\x5e\xc6\xfa\x1e" "\x13\xf0\xd5\xab\x90\x27\x33\x6a\xee\x4b\x50\xa4\x2c\x88\x4f\xf5\x70\x7a" "\x20\x60\x3a\x96\x78\x78\xe9\x03\xc4\x43\x91\x87\x0e\x16\x2c\x74\xd3\xc6" "\x75\xe2\xef\x6e\xd4\x5c\x38\x74\x6b\xa0\xee\x74\x87\xf8\x8b\xdd\x1e\x77" "\xfe\x87\x05\x2f\x95\x7e\xd4\x93\x93\x44\xcd\xfb\xf2\x0d\x45\xa8\xcd\x32" "\x87\x72\xc2\x20\xce\xf1\x45\xb5\xe7\x97\x1a\x50\x65\x66\xe7\x59\x6f\x54" "\xde\x95\x3b\x5e\x32\x27\x30\x31\xf0\x1d\xbd\x72\xf0\x10\xa8\x0d\x98\xfb" "\x45\x39\x92\x09\x00\x64\x74\x7d\x3c\x85\x2c\xc2\x00\x90\xb9\x30\xb3\x5e" "\xd7\xc9\xbf\xa2\x22\x7f\xf5\x18\x52\x81\xe2\x4f\x2e\x60\x48\x47\x0d\xde" "\x99\xc7\x13\xe8\x7d\x7e\xc9\xab\x6b\x59\xd7\x66\xb7\x25\x53\xe0\x44\x44" "\xac\x22\x99\x93\xe1\x62\x16\xda\x70\x6f\xd5\x9b\x9f\xb1\xd9\x32\x5a\x58" "\x11\xd1\x8d\x9e\xdd\xb4\xd0\x4e\xd4\xdc\xee\x44\xde\x88\x95\xf0\x64\xb4" "\xd5\x31\xc5\xf7\x45\x07\xba\x14\xac\x12\x26\xb2\xd8\xf8\x7f\x02\x32\x9b" "\x85\x50\x46\xd2\x16\xa7\x11\x46\xd7\x55\xdf\x27\xa0\xc0\xc5\xcf\x4f\x67" "\xac\x3b\xce\x84\x13\xc3\x63\xc7\xe2\xeb\x97\x83\xfb\x88\xaf\x73\x8f\x56" "\x6b\xfb\x82\x4f\xe2\x21\x8c\x54\x99\x15\xcf\x87\xa1\x9d\x88\xcb\x70\x92" "\xce\x43\xb1\xa9\xed\xcf\x3a\xd4\xbc\x3a\x89\x4f\xdf\x4e\x86\xe5\x2c\x9c" "\x25\x5f\x71\x75\xbb\x7c\x53\x39\x77\x36\xa4\x68\x7c\x20\x11\x64\x7f\x36" "\x45\x5e\x8d\xa6\x88\xc1\x1c\x8f\x93\x96\xa7\x9d\x78\xff\x22\x3c\xbf\xfd" "\x25\xa2\xf8\x43\x90\xee\xbd\xf7\x34\xc0\x42\x97\xc9\xb3\xef\xb9\x3c\xc2" "\xf9\x32\x01\x76\x36\xcc\xe1\x42\x81\x25\x02\x53\x9c\x14\x2a\xa7\xda\x20" "\x3f\x4a\x36\x9b\x05\x9e\x0e\xe8\x10\xc9\x5b\xe1\x1b\x5d\x89\x9d\x30\xdf" "\xc5\x8e\xc4\xc1\x78\xaf\xa4\xde\x17\xb4\x69\xe0\x66\x0b\x3d\x79\x43\xc9" "\x39\x0d\x95\xbb\x63\x5a\x85\x52\x7c\x0b\xc6\xcf\x44\x1c\x87\x72\x26\x41" "\x01\x6b\xbe\x11\xda\x9d\xa9\xbe\x78\xc9\x8e\x43\xa9\x0d\x0e\xb0\x79\x33" "\xd7\xda\x51\x65\xac\x5e\x90\x6a\xab\x11\x4f\xa1\x9f\xbc\x9f\x23\xe6\x74" "\xa4\x6c\x7e\x98\x4a\x2c\xec\x61\x6d\x99\x5a\xb6\xf4\x33\xcf\x39\x0f\xad" "\xb1\xad\xd4\xd3\xdb\xe8\x33\x61\x69\xe1\xdd\x6b\xcd\xf3\x11\x4c\x38\x8f" "\x5c\xa1\x9d\x86\x73\x47\xb3\x18\xbd\xbc\xe0\x99\x21\x1a\xec\x7c\x6e\x76" "\x66\x44\xa2\xf2\x6f\x9b\x19\x1e\xe9\xef\xaa\x33\xb6\x61\x9c\xc3\x88\x83" "\xb6\x43\x5a\x07\xf3\xf1\x31\x88\xc0\x47\x58\xab\x17\xb5\xf8\xcf\x38\x37" "\x45\x82\x9b\x26\xa3\xcf\x6e\x34\x71\xe3\x50\x67\xaf\x9a\x8b\x60\x78\x25" "\x96\x04\x4e\x16\xd8\xaf\xfb\xf6\xd9\xa5\x59\x73\x26\x03\x2e\x72\xe7\xb7" "\xfe\xc1\xf6\xb1\x67\xd1\xe2\x81\x8f\xc6\xed\x97\x04\xde\xaa\x6c\x54\x99" "\xfd\xa4\x56\x34\xf5\x10\x80\xe0\xd8\x1c\xbd\x2e\xde\x55\x87\x9f\x5e\x7f" "\xe1\x6f\x2d\xe8\x7e\x52\x1b\x62\x55\x31\x37\xf1\xa0\x23\xb3\xd6\xab\xa2" "\x1f\xc3\x24\x03\x8e\xc7\x22\x14\xb5\x3b\x5c\xe4\x90\xd0\xc4\x0a\xcc\x5d" "\xfa\x68\x54\x31\x2f\xb2\x36\x00\xa8\x2f\xbb\x36\x2c\x68\x68\x6b\x3b\xd2" "\xf7\x18\x5d\xcc\x51\x63\xb7\x56\x67\xca\xfa\x49\x3d\x4d\x42\x07\x3d\x55" "\x64\x6c\xf7\xe8\x02\xd8\x61\x3f\x04\x91\x18\xe8\x1e\x6c\xd8\xe4\x6c\x41" "\xd7\xa9\x64\xc8\xf7\x0e\xd7\x9c\x6e\x38\x78\x44\x0c\x95\xdb\x32\xc6\x9f" "\x87\x5a\xf2\xe1\xf2\xaa\x5a\x4a\xbc\xa5\x92\x21\xf8\x31\x7f\xb4\xd5\xf1" "\xb9\x05\xc5\x03\x2f\xb7\x23\x09\x48\x7c\xa9\x76\xbf\x77\x32\xe1\xdc\x8f" "\xcb\x01\x3a\xc7\xfa\x75\xec\x2a\x6c\x06\xf8\x02\x01\x8d\xbb\xbb\xad\xce" "\xdf\x84\x50\xd6\xb3\x77\x8e\x0f\x4c\xf3\x51\x44\x47\xbb\x04\x43\xff\x79" "\x78\x58\xd1\x8b\x20\x49\x4c\xd1\x7a\xc6\x78\x25\xfb\x2e\xdc\xdc\xac\x3d" "\xd7\xf2\x4c\xf2\x94\xc2\xd9\x7b\xc8\xed\x37\xa4\x7e\xd6\xb7\xf6\x6d\xa2" "\x08\x8a\x6c\x6e\x59\x2e\x3d\x78\x70\xc0\xc6\x28\x0d\x06\xae\xf5\x87\x42" "\x36\x4b\x7f\xe0\xac\x8d\x35\x62\x5a\x92\xf5\x1f\x1c\x58\x93\x87\x2d\x8c" "\x8e\xe0\xee\x96\xb9\x25\xbb\x97\xad\x08\xab\x48\xaf\x8b\x72\x8f\xff\x74" "\x6e\x99\x54\x9d\xaa\xb6\x37\x5d\xa0\xa1\x47\x82\xcd\x5d\x51\x11\x98\x6f" "\x53\xfe\xdc\x96\xf9\xc8\x6c\x0b\xe7\x34\x78\x34\x72\xa1\x42\x1d\x77\x4c" "\xcb\xe8\xec\x8e\xfe\xfc\xcf\xa8\xb1\x59\x3d\x67\x2d\xe1\xd9\x25\xab\xf9" "\x5a\xf9\xc9\x2b\xd8\xa0\x64\x1b\x16\xa6\x10\xa3\x8d\xf4\x7b\x3f\xc3\x78" "\xd4\x1e\x98\xe5\x92\xfa\x3c\x9e\xed\x8c\xe6\xde\xb1\x58\x33\x55\x07\xdd" "\x82\x7b\x29\xe7\x73\xbf\xa9\x12\x6c\x60\x3a\x9f\x18\x3e\xd3\xd1\x57\x54" "\xe2\x6a\x7d\x9e\x0f\x5b\xc2\x59\xb6\x97\xc3\xff\x6f\xcb\x2e\x8d\xed\xe3" "\x0e\x5b\x43\x36\x10\x8b\xd3\x74\xd3\xaa\x7c\x6f\xbd\xab\xe1\x7d\x88\x0c" "\x7e\x85\x4e\x44\xcb\xc8\x0a\xa4\x82\xfb\xdb\xe6\x3a\xd0\xdc\x52\xf3\x67" "\x1a\x3e\x39\x8b\x95\xa0\x77\x53\x34\x2d\x32\x32\x67\xf5\xb1\xc6\x53\x4f" "\x6f\xec\xdb\xe5\xf2\x2b\x41\x15\x7c\x1c\x0b\x89\x74\x2a\xd3\xd0\x01\xb8" "\xc4\xe0\x9f\x40\xd3\x29\x5d\x62\xb5\xea\xc8\x01\x7d\x93\x45\x1c\x5d\x2b" "\x3d\x21\xba\xc6\x46\x4c\x07\x7b\x48\x2a\xf4\xde\x37\x2c\x6c\xaf\xf8\x1e" "\x90\xa1\x60\x20\x3a\x29\x13\x62\xef\xd1\x26\xe2\x15\xab\x62\x77\x60\x86" "\x78\x5e\x14\x4f\x27\x46\x42\xd0\xdb\xb3\x67\xe6\x40\xf1\xca\x4b\xb2\x15" "\x5f\x6e\xa9\xe0\x7c\xa4\x04\x59\x51\xc3\xbe\x19\xc7\xdd\x86\x1c\x73\x29" "\xc0\x94\x65\x2c\xa3\x35\x09\x20\xcc\x9b\x7d\xcf\xeb\x76\xf5\x68\x53\xaa" "\xef\x5a\xce\x5b\xae\xda\x25\x02\xda\x79\x15\x06\xf3\x3a\x0c\x84\x15\xce" "\x35\x2b\xda\x32\x16\x87\x5a\xb6\xf5\xeb\xbb\x75\x26\xf1\x13\xba\xdc\xf9" "\x91\xdf\xda\x29\x4f\xd0\xd7\x32\x1d\xef\x75\x98\x2e\x06\xa2\xd6\x5c\xc1" "\x1c\x2a\xf1\x37\xb6\x86\xcb\x03\x90\x6e\x1d\x38\xbe\x35\x07\x6d\x6f\x03" "\x83\x8d\x55\x8a\x9a\x38\xd5\x3c\xc4\x2a\xc4\xf1\x6a\xbb\x17\xcc\x98\x80" "\xf0\xa5\x39\x75\x26\x3e\x7f\x4d\xd9\x16\x7b\x11\x00\xe1\xdb\xb5\x94\xe4" "\x56\xea\x4c\x83\x17\x66\x2d\xea\x34\xe2\x88\xee\x3d\xb2\x90\x9e\x98\xd4" "\x61\xcb\x04\x89\x76\xb2\xcf\xa2\x35\x53\x86\xfb\xcc\xb9\x8d\x59\xd6\xa4" "\x70\xae\x9a\x2b\x91\x6d\x07\xea\x5c\xc1\xc9\x52\x0d\xc5\x8f\x39\x2e\x03" "\x87\x25\xc2\x0d\x5c\x49\xb6\x93\xa1\x8f\x43\x91\x7a\x94\x02\xb7\x5a\x40" "\x91\x49\x56\xaa\x28\xb3\xc8\x47\xda\xc2\x36\xf5\xf9\xd4\x63\x88\x02\x20" "\x27\x86\x2d\xdd\x94\xb1\x64\x81\xe4\x18\xa5\xee\x4b\x9e\x3b\xe6\x37\x83" "\xc0\xad\x58\xf3\x25\x8d\x74\x23\x75\x1f\xad\x88\xf1\x3e\xd8\x8c\xe3\x5f" "\x0d\x8c\x91\x28\x5c\xe0\x84\xfb\x7b\xbc\x50\xbe\x65\xc6\xa4\x33\x4c\xe0" "\x4a\xb1\xa1\x30\x55\x2b\x55\xb0\x3c\xb8\x15\x53\xdd\xb3\x1a\x6b\x56\xa1" "\xf6\x88\x0c\x49\xed\xc3\x7a\xcb\x33\xb8\x89\x08\x05\xa3\xe6\xe1\xd0\xc6" "\xaa\xd0\x66\xe3\x34\x85\x7a\xc5\x13\xcd\x46\xf5\x60\x29\x0e\x7a\x8e\xbd" "\x71\x13\x57\x32\x81\x22\xab\x1d\x2d\x28\x43\xb6\x5f\xc9\x96\x0b\x9c\x9c" "\x9f\xc8\xcc\x04\x5e\x69\x6c\x29\x28\x0e\x21\x08\xba\xe9\x20\xab\xc3\x06" "\x69\x3f\xab\x35\xe7\x92\xf2\xc8\x1a\xae\x61\x6f\x24\x1f\xeb\x34\xe6\xf0" "\x6c\xfc\x9c\x07\x4c\x4a\x19\xb3\x32\xfb", 4096); *(uint16_t*)0x200017c4 = 0x1000; syscall(__NR_write, /*fd=*/r[0], /*data=*/0x200007c0ul, /*len=*/0x1006ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }