// https://syzkaller.appspot.com/bug?id=1eb07e5f11bcdd76b31b278ddd6423002b5dfb8f // 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 #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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")) { } } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 4; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } 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[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x4040 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {71 75 6f 74 61 2c 64 69 73 63 61 72 64 2c 64 // 69 73 63 61 72 64 2c 69 6f 63 68 61 72 73 65 74 3d 6b 6f 69 38 // 2d 72 75 2c 64 69 73 63 61 72 64 2c 00 f4 19 3e b3 ba 2a 0d 5f // f2 cd 73 74 28 8f f8 9e c5 13 a5 3e 00 73 45 de cb 72 09 00 f8 // 31 2d a2 46 3e b0 ed f5 2f ad 1a 00 eb d4 1c 14 b3 ce 75 d0 cf // fe fd 37 96 24 b1 6f 72 60 c8 35 71 3b 26 33 52 e0 3b 5c b8 fa // 0c 04 2b d1 22 5e d4 de d2 b6 2e 12 fe a4 d7 e6 1b 73 8e 40 78 // 1e 58 d5 ff f1 12 36 4a c1 40 f4 19 e5 da fe cd 28 3b 3f ab 6b // 14 2d db c8 93 b3 5a 81 fe 92 65 59 1e f3 5f a2 92 8e 09 5f ee // 4c 10 b2 2e 42 12 37 8d e5 9b ca 03 07 cc 64 4b 96 20 b6 3f 00 // 00 00 7b bb d4 22 d8 78 56 b7 13 48 b8 f4 53 98 b9 66 0b 6b 3e // 8e e8 a8 c3 2f 32 34 cb 46 e2 cd 82 7e c2 5c 1c a4 d0 46 bc 00 // 4f 8d f7 b1 ee 69 0a 5e 50 51 07 00 d8 0c 7f a6 5f a7 24 d0 e1 // b4 36 9f 1b 64 fe 24 9a 03 12 01 00 00 00 4a c9 83 de 92 5f 52 // d7 35 b0 3f ea 94 1b 1e 94 8a d8 d1 9c fd a5 b7 99 32 5f d6 9d // 14 fc f6 cd de 77 00 a6 31 50 eb 36 99 e5 31 4e 08 27 75 0e 24 // 41 50 ec 19 f3 f3 f1 d8 be 54 2c 08 4b 5e 40 bf aa 8a d2 06 d2 // a3 3b 0d db d7 f8 e0 7d c7 d1 71 74 a4 54 9f fa f5 97 69 49 cb // 69 65 8c 42 ec 7c d9 fe 8a d8 28 52 ce fb 04 64 6e db 3a 41 eb // 51 4e b6 a7 72 b3 ee 9f 21 e2 58 22 b5 4e c3 3e 59 2d 5c 04 09 // 46 72 11 01 d5 3a ff 21 f9 03 51 c9 5a a0 f7 3f 18 53 d6 af cb // f9 44 8b 22 0e 98 84 66 06 6f a5 c0 9e 61 98 fc 45 20 d1 99 b9 // 3b de de e8 7c 40 43 81 5a a0 56 68 a0 6f 8d a9 66 80 cc c1 a1 // 39 ad e9 0f 5c 79 af 46 20 8f 97 62 f5 4e 7c 29 08 8d 9d e6 9b // d2 d5 1c 6b 9c 42 20 9d dc 38 80 05 13 03 b8 55 85 34 07 d9 59 // a5 77 7d ce 25 20 1c 5e a1 fa a0 84 c3 6e 3e 34 99 15 eb ec 53 // 43 5e b2 91 0c 59 39 4e e8 4b a3 ba f9 c4 40 ae 58 33 c2 3f 46 // b0 ea ac 54 3c e0 c8 0b a0 60 32 13 e5 3e a5 97 55 07 0b 18 bc // 10 b9 22 4a a0 82 d9 67 00 e6 3d 51 c5 bf fa 4f 71 2c 2d 7f af // b9 cf 50 6c 06 e1 dd ad 4f c1 90 38 40 77 86 fe db 9a fd fb 11 // a5 f1 82 67 6d d8 4c 91 9f 71 d5 ee e2 f3 b7 40 b6 8e e7 f6 51 // 8e b9 d8 ba a2 6f 1c 38 71 f8 63 b1 34 ee 94 2e b3 af 92 d1 9e // 70 d8 26 88 39 cd 7b 46 37 f0 62 72 99 f9 9b 18 73 ca 16 5e 41 // 0f 8b d4 21 e1 a4 85 9f d9 bd 6b b3 4d 25 c0 7e 1a 52 b9 66 8a // 53 0b 10 b8 58 5d 79 71 24 a6 97 5a 71 ae db e5 57 a1 7b 06 bb // fe 54 7a a5 53 c3 d0 8b 89 21 a4 b0 d9 38 c0 36 87 bd 48 a9 a3 // 87 b4 c0 66 c0 56 f4 57 fb a5 73 87 75 b9 00 a1 e8 2a 89 aa e1 // 49 4b 05 c4 bb 0f c8 ed 1a 93 68 8b f8 50 a4 f7 b0 94 2e da 1f // 16 ec f0 43 ef a6 b8 c1 f9 e0 fb a3 1f 4a 58 ed 00 31 18 0f b1 // b8 a0 0e 4a 86 82 6b 03 00 00 00 2d d1 27 2a 3d 16 09 be d5 45 // b8 6c a7 a6 bf 56 9e d3 5d 00 00 ca 23 b0 de 74 2f 60 08 fd f2 // 09 28 37 0d 88 f8 c0 4b c3 b9 7b 9a 9e 00 62 e8 fc 5f d2 33 7d // 85 a6 6b d2 07 30 f3 15 3d b2 45 9f b3 4c 13 4c 06 c1 93 64 e9 // 64 5e 83 04 0d d1 6e e0 8f 18 f0 ba 69 ac 9c a3 e2 5e 15 44 2b // 07 00 00 00 d3 0d 38 a6 46 13 b5 35 fa 80 8a 9b 3b ae 00 bc 37 // 12 71 d4 5d b2 00 a5 cb f4 33 e2 f6 dd 03 b7 c7 fc c0 40 78 1e // 51 51 c9 ba db 78 7e 7e 1e 2f 39 d6 09 98 91 9a a8 db d1 56 f3 // 1a 5b 7f a5 f9 e5 ec 01 e8 c7 99 ed c3 22 70 3c 7f c4 a8 1a b9 // bc 02 dd 96 71 4e e9 d7 e7 5d 28 d0 40 ff 35 66 40 4f d6 db 54 // 7a 4b 55 31 97 c1 f3 16 d2 0e a5 4f 94 59 cd 81 35 1a 51 0d 10 // 1e 90 ea be 6d c6 c6 ac 3f fa 18 9c 07 3a 5f b3 fc 38 2d f6 20 // bf 5a f9 e6 38 81 9c 77 a0 51 e6 87 58 66 a8 49 f6 f5 78 c0 68 // c0 e4 c7 cf bc 15 03 39 97 ef a8 53 c9 62 97 b3 20 1d d3 0e a4 // 0d c9 4d 01 0a 0c 33 da 9f 63 a1 0b 8f 81 3d c7 89 b8 0b e3 bb // 3f 00 ee 58 b3 0d 5c 03 a6 dd bf 41 8a c1 b3 d4 a1 38 39 e4 b2 // 73 c4 f9 14 be d1 3f 88 06 29 54 95 d4 16 09 47 87 98 39 6a ee // c0 6e 8d 34 2e fd 8a c6 b4 22 f6 c2 3a 01 1b 14 00 00 00 00 00 // 00 00 bc 2a 02 09 4e 19 a1 ee 8b b3 c3 c0 c0 88 ae 8e fa f6 8c // 85 00 1f af 7c f5 42 6f b7 c5 c3 67 ed 93 eb 25 c4 8a 29 35 49 // d1 5b 91 b5 9f 1b 57 4b 3f 61 71 f8 e5 6a 40 2e c5 6b df 51 d9 // 03 12 b3 ca 53 98 f4 05 00 00 00 75 04 be 21 45 6e c9 53 bf 06 // f1 2f ff 20 c3 1e 7c 8b 55 fe e5 c4 9a a9 39 83 0b 09 99 5f f1 // 49 25 81 18 f9 aa e2 92 06 f9 73 12 88 b5 6b 10 de 51 52 56 65 // fd b4 e2 89 b1 c1 77 df 97 af 30 85 f8 20 45 fb d0 12 f1 dd e9 // 4f fe cd 90 b7 b6 3d 81 97 d9 c2 4a 6f e5 91 5a c7 d7 24 08 47 // f6 d0 bf 90 99 ee 11 7c 83 e3 63 f2 ad 36 a4 a9 f4 fa a5 73 4a // fe 97 70 c3 8c 56 5c ae 87 a4 08 d0 ac bb 2d b7 db 91 74 ac ab // 60 a3 44 81 4e e6 43 fa 82 ba 41 70 6d 23 60 26 9e d2 76 e1 3d // d8 3a bb c2 58 f0 7b 0d 58 ab 0b 65 29 0b 18 b7 f9 f8 71 bc b4 // 3f ec 5a 2e 37 89 ec d0 c1 06 9d 2d a8 0b 93 c8 6d ff 89 33 e7 // 0c 21 08 34 60 03 dd f6 b6 03 79 ee e6 3b 66 e7 34 1c dd 8f 87 // ed 9f 11 89 4c 9a e0 40 97 63 21 d8 74 05 b4 92 f4 19 eb fa 77 // eb 36 7c a6 e3 60 b8 08 45 11 02 f5 48 93 d7 d1 69 5c 24 bc c1 // 84 b1 e7 d1 99 40 a2 b6 93 1a de 86 38 dd 2b 85 a8 6d c5 11 db // b9 7f 50 35 d0 7c a0 24 07 6e 85 81 db 33 2b 1c 5f 13 5f e6 b2 // e9 d2 c1 8c 9d 5d 5a 52 4d 3d 5b 26 57 e4 b2 8f 1a 09 69 6b d5 // b0 76 a1 47 1c 8b 2a b2 ca 3b a5 78 43 af 1d 03 59 0f 4e 89 85 // e1 c4 63 c7 81 bb 03 ad 7e c8 16 ea 70 bb e0 64 11 aa e0 01 e0 // ca 72 ee 7e 82 8a d1 4b b7 a0 92 d8 83 ad 00 05 54 bf 7f 00 00 // 00 00 00 00 75 cc 01 f8 a2 e1 80 21 92 f0 9e 77 bc 48 8b 3b d3 // f0 8a 9c e8 8b a2 e2 bc c2 3c f5 d7 37 2b 33 9c e1 f5 00 3d b0 // ad 70 fa 6e 93 aa 90 8a 2c ed 81 f5 51 4e 23 e2 f9 4f f0 3c 1c // 02 f5 a9 19 5f 47 35 56 3e fd 0a 1f c7 da fc fb 3d ae 04 3f e0 // c1 72 ec 3a 12 74 7d 7a bf 43 82 bf 74 53 c1 3d f9 94 64 10 17 // a0 f4 61 ad d9 56 ef 8f 83 4b 76 2a f3 04 08 af 6a 61 f3 17 fd // 3c 7b 08 16 23 6a 76 86 01 b7 c6 60 6b a5 2f f1 26 eb 13 d3 3c // 91 5c 5d a9 9d 11 8d b4 88 da 3f 3d 77 83 a6 08 28 2a 93 fc be // 09 10 f0 38 9c 3e f9 1d e7 c8 4e 23 da a6 55 4c 42 b2 b3 e9 f7 // 0a 9f 79 0f 29 01 1a 0b 51 01 b2 3b fe ba 6e 52 87 7e d8 a1 88 // 95 8e 39 37 5d d2 03 d4 34 be f4 dc 82 cc 8a 21 fc 40 c6 e6 e6 // a2 47 5f 70 bf 15 03 be b9 55 50 36 e6 06 a9 d3 23 9d 1d f6 f2 // e9 ef 16 de e5 90 b1 5a c0 28 c6 d8 73 bb 29 65 37 4b 73 3d 8e // 11 ba 76 3a b1 57 ed 91 dd 87 1b 09 8c 05 43 dc bb a4 cf 67 db // 8c 83 c8 43 69 dc 67 73 5f a4 fa a0 fd cf 34 b1 c6 a8 62 cc ae // 9f e4 fa 28 74 65 04 64 3b 57 f0 26 23 a2 ef 34 ea 90 f2 e7 f7 // dd 77 1f 8f 75 21 7c 79 9d 97 8a 35 33 fc fa b6 c6 f5 39 1b 62 // 6d 61 b4 00 f0 81 72 fc 67 5e 2a 06 2d 06 c3 1b 85 45 28 04 f7 // b1 25 c2 91 f6 0a 02 a5 d6 22 71 e9 6f e7 0d 64 ba e3 6e 28 b4 // 2e 19 72 59 16 9e be e8 f6 43 55 54 4f ba d8 b8 3c 1c 8f ad 02 // cd 1a 2e 56 a6 f6 e8 2e c7 71 9a 48 a1 be a8 03 54 6b 8a f7 a8 // 9f af 7c ef 94 d8 ad a4 5f c0 a9 8a 79 ba 90 c9 52 62 f0 11 07 // 25 c6 bf 7c 81 23 75 34 dc d6 a8 a1 13 bd 8a c4 8b 7d b5 52 6a // b7 62 ce c1 03 67 47 42 47 6c d6 b9 2b 8c 7a bc fb 1f 8e 08 f0 // a0 5c 1b 20 91 87 04 9f 32 06 bd 54 5e 8c 20 f8 db 6d 8a 7c dd // 0c 9e cb b9 01 1b 61 1a 01 3c d5 81 52 1d fc b0 28 d5 9d 5c 69 // d2 86 fb 93 e4 c4 98 b3 aa ff 7e 0c dc f1 f4 1f ec 65 eb db e4 // c2 bf 45 31 40 25 1c dd 94 c3 2b 87 c4 63 4d 65 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 81 6e 6c 33 f9 2d ca 3e 03 c4 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00} (length 0x8f6) // } // } // } // chdir: int8 = 0x3 (1 bytes) // size: len = 0x5e9d (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5e9d) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000005d40, "./file0\000", 8); memcpy( (void*)0x200000001e40, "\x71\x75\x6f\x74\x61\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x64\x69\x73" "\x63\x61\x72\x64\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6b\x6f" "\x69\x38\x2d\x72\x75\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x00\xf4\x19" "\x3e\xb3\xba\x2a\x0d\x5f\xf2\xcd\x73\x74\x28\x8f\xf8\x9e\xc5\x13\xa5" "\x3e\x00\x73\x45\xde\xcb\x72\x09\x00\xf8\x31\x2d\xa2\x46\x3e\xb0\xed" "\xf5\x2f\xad\x1a\x00\xeb\xd4\x1c\x14\xb3\xce\x75\xd0\xcf\xfe\xfd\x37" "\x96\x24\xb1\x6f\x72\x60\xc8\x35\x71\x3b\x26\x33\x52\xe0\x3b\x5c\xb8" "\xfa\x0c\x04\x2b\xd1\x22\x5e\xd4\xde\xd2\xb6\x2e\x12\xfe\xa4\xd7\xe6" "\x1b\x73\x8e\x40\x78\x1e\x58\xd5\xff\xf1\x12\x36\x4a\xc1\x40\xf4\x19" "\xe5\xda\xfe\xcd\x28\x3b\x3f\xab\x6b\x14\x2d\xdb\xc8\x93\xb3\x5a\x81" "\xfe\x92\x65\x59\x1e\xf3\x5f\xa2\x92\x8e\x09\x5f\xee\x4c\x10\xb2\x2e" "\x42\x12\x37\x8d\xe5\x9b\xca\x03\x07\xcc\x64\x4b\x96\x20\xb6\x3f\x00" "\x00\x00\x7b\xbb\xd4\x22\xd8\x78\x56\xb7\x13\x48\xb8\xf4\x53\x98\xb9" "\x66\x0b\x6b\x3e\x8e\xe8\xa8\xc3\x2f\x32\x34\xcb\x46\xe2\xcd\x82\x7e" "\xc2\x5c\x1c\xa4\xd0\x46\xbc\x00\x4f\x8d\xf7\xb1\xee\x69\x0a\x5e\x50" "\x51\x07\x00\xd8\x0c\x7f\xa6\x5f\xa7\x24\xd0\xe1\xb4\x36\x9f\x1b\x64" "\xfe\x24\x9a\x03\x12\x01\x00\x00\x00\x4a\xc9\x83\xde\x92\x5f\x52\xd7" "\x35\xb0\x3f\xea\x94\x1b\x1e\x94\x8a\xd8\xd1\x9c\xfd\xa5\xb7\x99\x32" "\x5f\xd6\x9d\x14\xfc\xf6\xcd\xde\x77\x00\xa6\x31\x50\xeb\x36\x99\xe5" "\x31\x4e\x08\x27\x75\x0e\x24\x41\x50\xec\x19\xf3\xf3\xf1\xd8\xbe\x54" "\x2c\x08\x4b\x5e\x40\xbf\xaa\x8a\xd2\x06\xd2\xa3\x3b\x0d\xdb\xd7\xf8" "\xe0\x7d\xc7\xd1\x71\x74\xa4\x54\x9f\xfa\xf5\x97\x69\x49\xcb\x69\x65" "\x8c\x42\xec\x7c\xd9\xfe\x8a\xd8\x28\x52\xce\xfb\x04\x64\x6e\xdb\x3a" "\x41\xeb\x51\x4e\xb6\xa7\x72\xb3\xee\x9f\x21\xe2\x58\x22\xb5\x4e\xc3" "\x3e\x59\x2d\x5c\x04\x09\x46\x72\x11\x01\xd5\x3a\xff\x21\xf9\x03\x51" "\xc9\x5a\xa0\xf7\x3f\x18\x53\xd6\xaf\xcb\xf9\x44\x8b\x22\x0e\x98\x84" "\x66\x06\x6f\xa5\xc0\x9e\x61\x98\xfc\x45\x20\xd1\x99\xb9\x3b\xde\xde" "\xe8\x7c\x40\x43\x81\x5a\xa0\x56\x68\xa0\x6f\x8d\xa9\x66\x80\xcc\xc1" "\xa1\x39\xad\xe9\x0f\x5c\x79\xaf\x46\x20\x8f\x97\x62\xf5\x4e\x7c\x29" "\x08\x8d\x9d\xe6\x9b\xd2\xd5\x1c\x6b\x9c\x42\x20\x9d\xdc\x38\x80\x05" "\x13\x03\xb8\x55\x85\x34\x07\xd9\x59\xa5\x77\x7d\xce\x25\x20\x1c\x5e" "\xa1\xfa\xa0\x84\xc3\x6e\x3e\x34\x99\x15\xeb\xec\x53\x43\x5e\xb2\x91" "\x0c\x59\x39\x4e\xe8\x4b\xa3\xba\xf9\xc4\x40\xae\x58\x33\xc2\x3f\x46" "\xb0\xea\xac\x54\x3c\xe0\xc8\x0b\xa0\x60\x32\x13\xe5\x3e\xa5\x97\x55" "\x07\x0b\x18\xbc\x10\xb9\x22\x4a\xa0\x82\xd9\x67\x00\xe6\x3d\x51\xc5" "\xbf\xfa\x4f\x71\x2c\x2d\x7f\xaf\xb9\xcf\x50\x6c\x06\xe1\xdd\xad\x4f" "\xc1\x90\x38\x40\x77\x86\xfe\xdb\x9a\xfd\xfb\x11\xa5\xf1\x82\x67\x6d" "\xd8\x4c\x91\x9f\x71\xd5\xee\xe2\xf3\xb7\x40\xb6\x8e\xe7\xf6\x51\x8e" "\xb9\xd8\xba\xa2\x6f\x1c\x38\x71\xf8\x63\xb1\x34\xee\x94\x2e\xb3\xaf" "\x92\xd1\x9e\x70\xd8\x26\x88\x39\xcd\x7b\x46\x37\xf0\x62\x72\x99\xf9" "\x9b\x18\x73\xca\x16\x5e\x41\x0f\x8b\xd4\x21\xe1\xa4\x85\x9f\xd9\xbd" "\x6b\xb3\x4d\x25\xc0\x7e\x1a\x52\xb9\x66\x8a\x53\x0b\x10\xb8\x58\x5d" "\x79\x71\x24\xa6\x97\x5a\x71\xae\xdb\xe5\x57\xa1\x7b\x06\xbb\xfe\x54" "\x7a\xa5\x53\xc3\xd0\x8b\x89\x21\xa4\xb0\xd9\x38\xc0\x36\x87\xbd\x48" "\xa9\xa3\x87\xb4\xc0\x66\xc0\x56\xf4\x57\xfb\xa5\x73\x87\x75\xb9\x00" "\xa1\xe8\x2a\x89\xaa\xe1\x49\x4b\x05\xc4\xbb\x0f\xc8\xed\x1a\x93\x68" "\x8b\xf8\x50\xa4\xf7\xb0\x94\x2e\xda\x1f\x16\xec\xf0\x43\xef\xa6\xb8" "\xc1\xf9\xe0\xfb\xa3\x1f\x4a\x58\xed\x00\x31\x18\x0f\xb1\xb8\xa0\x0e" "\x4a\x86\x82\x6b\x03\x00\x00\x00\x2d\xd1\x27\x2a\x3d\x16\x09\xbe\xd5" "\x45\xb8\x6c\xa7\xa6\xbf\x56\x9e\xd3\x5d\x00\x00\xca\x23\xb0\xde\x74" "\x2f\x60\x08\xfd\xf2\x09\x28\x37\x0d\x88\xf8\xc0\x4b\xc3\xb9\x7b\x9a" "\x9e\x00\x62\xe8\xfc\x5f\xd2\x33\x7d\x85\xa6\x6b\xd2\x07\x30\xf3\x15" "\x3d\xb2\x45\x9f\xb3\x4c\x13\x4c\x06\xc1\x93\x64\xe9\x64\x5e\x83\x04" "\x0d\xd1\x6e\xe0\x8f\x18\xf0\xba\x69\xac\x9c\xa3\xe2\x5e\x15\x44\x2b" "\x07\x00\x00\x00\xd3\x0d\x38\xa6\x46\x13\xb5\x35\xfa\x80\x8a\x9b\x3b" "\xae\x00\xbc\x37\x12\x71\xd4\x5d\xb2\x00\xa5\xcb\xf4\x33\xe2\xf6\xdd" "\x03\xb7\xc7\xfc\xc0\x40\x78\x1e\x51\x51\xc9\xba\xdb\x78\x7e\x7e\x1e" "\x2f\x39\xd6\x09\x98\x91\x9a\xa8\xdb\xd1\x56\xf3\x1a\x5b\x7f\xa5\xf9" "\xe5\xec\x01\xe8\xc7\x99\xed\xc3\x22\x70\x3c\x7f\xc4\xa8\x1a\xb9\xbc" "\x02\xdd\x96\x71\x4e\xe9\xd7\xe7\x5d\x28\xd0\x40\xff\x35\x66\x40\x4f" "\xd6\xdb\x54\x7a\x4b\x55\x31\x97\xc1\xf3\x16\xd2\x0e\xa5\x4f\x94\x59" "\xcd\x81\x35\x1a\x51\x0d\x10\x1e\x90\xea\xbe\x6d\xc6\xc6\xac\x3f\xfa" "\x18\x9c\x07\x3a\x5f\xb3\xfc\x38\x2d\xf6\x20\xbf\x5a\xf9\xe6\x38\x81" "\x9c\x77\xa0\x51\xe6\x87\x58\x66\xa8\x49\xf6\xf5\x78\xc0\x68\xc0\xe4" "\xc7\xcf\xbc\x15\x03\x39\x97\xef\xa8\x53\xc9\x62\x97\xb3\x20\x1d\xd3" "\x0e\xa4\x0d\xc9\x4d\x01\x0a\x0c\x33\xda\x9f\x63\xa1\x0b\x8f\x81\x3d" "\xc7\x89\xb8\x0b\xe3\xbb\x3f\x00\xee\x58\xb3\x0d\x5c\x03\xa6\xdd\xbf" "\x41\x8a\xc1\xb3\xd4\xa1\x38\x39\xe4\xb2\x73\xc4\xf9\x14\xbe\xd1\x3f" "\x88\x06\x29\x54\x95\xd4\x16\x09\x47\x87\x98\x39\x6a\xee\xc0\x6e\x8d" "\x34\x2e\xfd\x8a\xc6\xb4\x22\xf6\xc2\x3a\x01\x1b\x14\x00\x00\x00\x00" "\x00\x00\x00\xbc\x2a\x02\x09\x4e\x19\xa1\xee\x8b\xb3\xc3\xc0\xc0\x88" "\xae\x8e\xfa\xf6\x8c\x85\x00\x1f\xaf\x7c\xf5\x42\x6f\xb7\xc5\xc3\x67" "\xed\x93\xeb\x25\xc4\x8a\x29\x35\x49\xd1\x5b\x91\xb5\x9f\x1b\x57\x4b" "\x3f\x61\x71\xf8\xe5\x6a\x40\x2e\xc5\x6b\xdf\x51\xd9\x03\x12\xb3\xca" "\x53\x98\xf4\x05\x00\x00\x00\x75\x04\xbe\x21\x45\x6e\xc9\x53\xbf\x06" "\xf1\x2f\xff\x20\xc3\x1e\x7c\x8b\x55\xfe\xe5\xc4\x9a\xa9\x39\x83\x0b" "\x09\x99\x5f\xf1\x49\x25\x81\x18\xf9\xaa\xe2\x92\x06\xf9\x73\x12\x88" "\xb5\x6b\x10\xde\x51\x52\x56\x65\xfd\xb4\xe2\x89\xb1\xc1\x77\xdf\x97" "\xaf\x30\x85\xf8\x20\x45\xfb\xd0\x12\xf1\xdd\xe9\x4f\xfe\xcd\x90\xb7" "\xb6\x3d\x81\x97\xd9\xc2\x4a\x6f\xe5\x91\x5a\xc7\xd7\x24\x08\x47\xf6" "\xd0\xbf\x90\x99\xee\x11\x7c\x83\xe3\x63\xf2\xad\x36\xa4\xa9\xf4\xfa" "\xa5\x73\x4a\xfe\x97\x70\xc3\x8c\x56\x5c\xae\x87\xa4\x08\xd0\xac\xbb" "\x2d\xb7\xdb\x91\x74\xac\xab\x60\xa3\x44\x81\x4e\xe6\x43\xfa\x82\xba" "\x41\x70\x6d\x23\x60\x26\x9e\xd2\x76\xe1\x3d\xd8\x3a\xbb\xc2\x58\xf0" "\x7b\x0d\x58\xab\x0b\x65\x29\x0b\x18\xb7\xf9\xf8\x71\xbc\xb4\x3f\xec" "\x5a\x2e\x37\x89\xec\xd0\xc1\x06\x9d\x2d\xa8\x0b\x93\xc8\x6d\xff\x89" "\x33\xe7\x0c\x21\x08\x34\x60\x03\xdd\xf6\xb6\x03\x79\xee\xe6\x3b\x66" "\xe7\x34\x1c\xdd\x8f\x87\xed\x9f\x11\x89\x4c\x9a\xe0\x40\x97\x63\x21" "\xd8\x74\x05\xb4\x92\xf4\x19\xeb\xfa\x77\xeb\x36\x7c\xa6\xe3\x60\xb8" "\x08\x45\x11\x02\xf5\x48\x93\xd7\xd1\x69\x5c\x24\xbc\xc1\x84\xb1\xe7" "\xd1\x99\x40\xa2\xb6\x93\x1a\xde\x86\x38\xdd\x2b\x85\xa8\x6d\xc5\x11" "\xdb\xb9\x7f\x50\x35\xd0\x7c\xa0\x24\x07\x6e\x85\x81\xdb\x33\x2b\x1c" "\x5f\x13\x5f\xe6\xb2\xe9\xd2\xc1\x8c\x9d\x5d\x5a\x52\x4d\x3d\x5b\x26" "\x57\xe4\xb2\x8f\x1a\x09\x69\x6b\xd5\xb0\x76\xa1\x47\x1c\x8b\x2a\xb2" "\xca\x3b\xa5\x78\x43\xaf\x1d\x03\x59\x0f\x4e\x89\x85\xe1\xc4\x63\xc7" "\x81\xbb\x03\xad\x7e\xc8\x16\xea\x70\xbb\xe0\x64\x11\xaa\xe0\x01\xe0" "\xca\x72\xee\x7e\x82\x8a\xd1\x4b\xb7\xa0\x92\xd8\x83\xad\x00\x05\x54" "\xbf\x7f\x00\x00\x00\x00\x00\x00\x75\xcc\x01\xf8\xa2\xe1\x80\x21\x92" "\xf0\x9e\x77\xbc\x48\x8b\x3b\xd3\xf0\x8a\x9c\xe8\x8b\xa2\xe2\xbc\xc2" "\x3c\xf5\xd7\x37\x2b\x33\x9c\xe1\xf5\x00\x3d\xb0\xad\x70\xfa\x6e\x93" "\xaa\x90\x8a\x2c\xed\x81\xf5\x51\x4e\x23\xe2\xf9\x4f\xf0\x3c\x1c\x02" "\xf5\xa9\x19\x5f\x47\x35\x56\x3e\xfd\x0a\x1f\xc7\xda\xfc\xfb\x3d\xae" "\x04\x3f\xe0\xc1\x72\xec\x3a\x12\x74\x7d\x7a\xbf\x43\x82\xbf\x74\x53" "\xc1\x3d\xf9\x94\x64\x10\x17\xa0\xf4\x61\xad\xd9\x56\xef\x8f\x83\x4b" "\x76\x2a\xf3\x04\x08\xaf\x6a\x61\xf3\x17\xfd\x3c\x7b\x08\x16\x23\x6a" "\x76\x86\x01\xb7\xc6\x60\x6b\xa5\x2f\xf1\x26\xeb\x13\xd3\x3c\x91\x5c" "\x5d\xa9\x9d\x11\x8d\xb4\x88\xda\x3f\x3d\x77\x83\xa6\x08\x28\x2a\x93" "\xfc\xbe\x09\x10\xf0\x38\x9c\x3e\xf9\x1d\xe7\xc8\x4e\x23\xda\xa6\x55" "\x4c\x42\xb2\xb3\xe9\xf7\x0a\x9f\x79\x0f\x29\x01\x1a\x0b\x51\x01\xb2" "\x3b\xfe\xba\x6e\x52\x87\x7e\xd8\xa1\x88\x95\x8e\x39\x37\x5d\xd2\x03" "\xd4\x34\xbe\xf4\xdc\x82\xcc\x8a\x21\xfc\x40\xc6\xe6\xe6\xa2\x47\x5f" "\x70\xbf\x15\x03\xbe\xb9\x55\x50\x36\xe6\x06\xa9\xd3\x23\x9d\x1d\xf6" "\xf2\xe9\xef\x16\xde\xe5\x90\xb1\x5a\xc0\x28\xc6\xd8\x73\xbb\x29\x65" "\x37\x4b\x73\x3d\x8e\x11\xba\x76\x3a\xb1\x57\xed\x91\xdd\x87\x1b\x09" "\x8c\x05\x43\xdc\xbb\xa4\xcf\x67\xdb\x8c\x83\xc8\x43\x69\xdc\x67\x73" "\x5f\xa4\xfa\xa0\xfd\xcf\x34\xb1\xc6\xa8\x62\xcc\xae\x9f\xe4\xfa\x28" "\x74\x65\x04\x64\x3b\x57\xf0\x26\x23\xa2\xef\x34\xea\x90\xf2\xe7\xf7" "\xdd\x77\x1f\x8f\x75\x21\x7c\x79\x9d\x97\x8a\x35\x33\xfc\xfa\xb6\xc6" "\xf5\x39\x1b\x62\x6d\x61\xb4\x00\xf0\x81\x72\xfc\x67\x5e\x2a\x06\x2d" "\x06\xc3\x1b\x85\x45\x28\x04\xf7\xb1\x25\xc2\x91\xf6\x0a\x02\xa5\xd6" "\x22\x71\xe9\x6f\xe7\x0d\x64\xba\xe3\x6e\x28\xb4\x2e\x19\x72\x59\x16" "\x9e\xbe\xe8\xf6\x43\x55\x54\x4f\xba\xd8\xb8\x3c\x1c\x8f\xad\x02\xcd" "\x1a\x2e\x56\xa6\xf6\xe8\x2e\xc7\x71\x9a\x48\xa1\xbe\xa8\x03\x54\x6b" "\x8a\xf7\xa8\x9f\xaf\x7c\xef\x94\xd8\xad\xa4\x5f\xc0\xa9\x8a\x79\xba" "\x90\xc9\x52\x62\xf0\x11\x07\x25\xc6\xbf\x7c\x81\x23\x75\x34\xdc\xd6" "\xa8\xa1\x13\xbd\x8a\xc4\x8b\x7d\xb5\x52\x6a\xb7\x62\xce\xc1\x03\x67" "\x47\x42\x47\x6c\xd6\xb9\x2b\x8c\x7a\xbc\xfb\x1f\x8e\x08\xf0\xa0\x5c" "\x1b\x20\x91\x87\x04\x9f\x32\x06\xbd\x54\x5e\x8c\x20\xf8\xdb\x6d\x8a" "\x7c\xdd\x0c\x9e\xcb\xb9\x01\x1b\x61\x1a\x01\x3c\xd5\x81\x52\x1d\xfc" "\xb0\x28\xd5\x9d\x5c\x69\xd2\x86\xfb\x93\xe4\xc4\x98\xb3\xaa\xff\x7e" "\x0c\xdc\xf1\xf4\x1f\xec\x65\xeb\xdb\xe4\xc2\xbf\x45\x31\x40\x25\x1c" "\xdd\x94\xc3\x2b\x87\xc4\x63\x4d\x65\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x81\x6e\x6c\x33\xf9\x2d\xca\x3e\x03" "\xc4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 2294); memcpy( (void*)0x20000000bc00, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\x2f\xd3\x73\x31\x71" "\xac\x08\x45\xc6\x62\x31\x71\x20\x24\x84\xf8\x6e\x43\xb8\xc5\x61\xc1" "\x02\x16\x20\xa1\xac\xb1\x35\x99\x44\x06\x07\x90\x6d\x10\x89\x2c\x3c" "\x91\x17\x88\x0d\xf0\x08\xb0\xf1\x86\x45\x5e\x81\x07\xc8\x33\xa0\x3c" "\x00\x96\x6c\xd8\x64\x41\x28\x54\x33\xe7\xd8\x35\x35\x3d\xee\x31\xf6" "\x74\x75\xcf\xf9\xfd\xa4\x71\xd5\x57\xa7\x6b\xfa\x94\xff\x53\x53\xdd" "\x53\x55\x7d\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x88\x1f\x7c\xff\x27\xa7\x7b\x11\x71\xe9\x37\x69\xc1\x91\x88\xcf" "\xc5\x20\xa2\x1f\xb1\x5c\xd7\xab\x51\xcf\x5c\xcc\x8f\x1f\x46\xc4\xd1" "\xd8\x6c\x8e\xe7\x23\x62\xb0\x18\x51\xaf\xbf\xf9\xcf\xb3\x11\xe7\x22" "\xe2\xe3\xc3\x11\xf7\xee\xdf\x5c\xab\x17\x9f\xd9\x63\x3f\xce\x9f\xba" "\x71\xed\xb3\x1f\x7e\xef\x1f\xbf\xff\xd3\xed\xa3\x3f\x7b\xfb\xa7\x77" "\xda\xed\x3f\xfe\xfc\xd9\x8f\xfe\x70\x2b\xe2\xc8\x8f\x5e\xff\xe8\xb3" "\x5b\x4f\x67\xdb\x01\x00\x00\xa0\x14\x55\x55\x55\xbd\xf4\x36\xff\x58" "\x7a\x7f\xdf\xef\xba\x53\x00\xc0\x54\xe4\xe3\x7f\x95\xe4\xe5\x6a\xb5" "\x5a\xad\x7e\xaa\xf5\x1f\xfb\xb3\xd5\x1f\x75\xa1\x75\x53\x35\xde\xad" "\x66\x11\x11\x1b\xcd\x75\xea\xd7\x0c\x4e\xc7\x03\xc0\x9c\xd9\x88\x4f" "\xbb\xee\x02\x1d\x92\x7f\xd1\x86\x11\x71\xa8\xeb\x4e\x00\x33\xad\xd7" "\x75\x07\xd8\x17\xf7\xee\xdf\x5c\xeb\xa5\x7c\x7b\xcd\xe3\xc1\xea\x56" "\x7b\xfe\x3b\xe5\xb6\xfc\x37\x7a\x0f\xee\xef\xd8\x6d\x3a\x49\xfb\x1a" "\x93\x69\xfd\x7c\xdd\x8e\x41\x3c\xb7\x4b\x7f\x96\xa7\xd4\x87\x59\x92" "\xf3\xef\xb7\xf3\xbf\xb4\xd5\x3e\x4a\x8f\xdb\xef\xfc\xa7\x65\xb7\xfc" "\x47\x5b\xb7\x3e\x15\x27\xe7\x3f\x68\xe7\xdf\xb2\x2d\xff\x3f\x47\xc4" "\xdc\xe6\xdf\x1f\x9b\x7f\xa9\x72\xfe\xc3\xc7\xc9\x7f\x63\x30\xc7\xfb" "\xbf\xfc\x01\x00\x00\x00\x00\x38\xf8\xf2\xdf\xff\x8f\x74\x7c\xfe\x77" "\xf1\xc9\x37\x65\x4f\x1e\x75\xfe\x77\x75\x4a\x7d\x00\x00\x00\x00\x00" "\x00\x00\x80\xa7\xed\x49\xc7\xff\x7b\xc0\xf8\x7f\x00\x00\x00\x30\xb3" "\xea\xf7\xea\xb5\xbf\x1c\x7e\xb8\x6c\xb7\xcf\x62\xab\x97\xbf\xd5\x8b" "\x78\xa6\xf5\x78\xa0\x30\xab\x8d\x0f\x07\x04\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xa6\x63\x18\xb1\x92\xae\xeb\x5f\x88\x88\x67\x56\x56" "\xaa\xaa\xaa\xbf\x9a\xda\xf5\xe3\x7a\xd2\xf5\xe7\x5d\xe9\xdb\x0f\x25" "\xeb\xfa\x97\x3c\x00\x00\x6c\xf9\xf8\x70\xeb\x5e\xfe\x5e\xc4\x52\x44" "\xbc\x95\x3e\xeb\x6f\x61\x65\x65\xa5\xaa\x96\x96\x57\xaa\x95\x6a\x79" "\x31\xbf\x9e\x1d\x2d\x2e\x55\xcb\x8d\xf7\xb5\x79\x5a\x2f\x5b\x1c\xed" "\xe1\x05\xf1\x70\x54\xd5\xdf\x6c\xa9\xb1\x5e\xd3\xa4\xf7\xcb\x93\xda" "\xdb\xdf\xaf\x7e\xae\x51\x35\xd8\x43\xc7\xa6\xa3\xc3\xc0\x01\x20\x22" "\xb6\x8e\x46\xf7\x1c\x91\x0e\x98\xaa\x7a\x36\xba\x7e\x95\xc3\x7c\xb0" "\xff\x1f\x3c\xf6\x7f\xf6\xa2\xeb\x9f\x53\x00\x00\x00\x60\xff\x55\x55" "\x55\xf5\xd2\xc7\x79\x1f\x4b\xe7\xfc\xfb\x5d\x77\x0a\x00\x98\x8a\x7c" "\xfc\x6f\x9f\x17\x50\xab\xd5\x6a\xb5\x5a\x7d\xf0\xea\xa6\x6a\xbc\x5b" "\xcd\x22\x22\x36\x9a\xeb\xd4\xaf\x19\x0c\xc7\x0f\x00\x73\x66\x23\x3e" "\xed\xba\x0b\x74\x48\xfe\x45\x1b\x46\xc4\xd1\xae\x3b\x01\xcc\xb4\x5e" "\xd7\x1d\x60\x5f\xdc\xbb\x7f\x73\xad\x97\xf2\xed\x35\x8f\x07\xab\x5b" "\xed\xf9\x5a\x90\x6d\xf9\x6f\xf4\x36\xd7\xcb\xeb\x8f\x9b\x4e\xd2\xbe" "\xc6\x64\x5a\x3f\x5f\xb7\x63\x10\xcf\xed\xd2\x9f\xe7\xa7\xd4\x87\x59" "\x92\xf3\xef\xb7\xf3\xbf\xb4\xd5\x9e\x87\xf8\xdf\xef\xfc\xa7\x65\xb7" "\xfc\xeb\xed\x3c\xd2\x41\x7f\xba\x96\xf3\x1f\xb4\xf3\x6f\x39\x38\xf9" "\xf7\xc7\xe6\x5f\xaa\x9c\xff\xf0\xb1\xf2\x1f\xc8\x1f\x00\x00\x00\x00" "\x00\x66\x58\xfe\xfb\xff\x11\xe7\x7f\xf3\x26\x03\x00\x00\x00\x00\x00" "\x00\xc0\xdc\xb9\x77\xff\xe6\x5a\xbe\xef\x35\x9f\xff\xff\xe2\x98\xc7" "\xf5\x9a\x73\xee\xff\x3c\x30\x72\xfe\xbd\x3d\xe7\xef\xfe\xdf\x83\x24" "\xe7\xdf\x6f\xe7\xdf\xba\x20\x67\xd0\x98\xbf\xfb\xe6\xc3\xfc\xff\x75" "\xff\xe6\xda\x9d\x1b\xff\xfc\x42\x9e\xce\x7c\xfe\x0b\x83\x51\xfd\xdc" "\x0b\xbd\xfe\x60\x98\xae\xf9\xa9\x16\xde\x89\x2b\x71\x35\xd6\xe3\xd4" "\x8e\xc7\x0f\xb7\xb5\x9f\xde\xd1\xbe\xb0\xad\xfd\xcc\x84\xf6\xb3\x3b" "\xda\x47\x75\xfb\x72\x6e\x3f\x11\x6b\xf1\xcb\xb8\x1a\x6f\x3f\x68\x5f" "\x9c\x70\x61\xd4\xd2\x84\xf6\x6a\x42\x7b\xce\x7f\x60\xff\x2f\x52\xce" "\x7f\xd8\xf8\xaa\xf3\x5f\x49\xed\xbd\xd6\xb4\x76\xf7\xc3\xfe\x8e\xfd" "\xbe\x39\x1d\xf7\x3c\x17\xff\xf6\x9f\x97\x76\xee\x5d\xd3\x77\x3b\x06" "\x0f\xb6\xad\xa9\xde\xbe\xe3\x1d\xf4\x67\xf3\xff\xe4\xd0\x28\x7e\x7d" "\x7d\xfd\xda\x89\xdf\x5e\xbe\x71\xe3\xda\xe9\x48\x93\x6d\x4b\xcf\x44" "\x9a\x3c\x65\x39\xff\x85\xf4\x95\xf3\x7f\xf9\xc5\xad\xf6\xfc\x7b\xbf" "\xb9\xbf\xde\xfd\x70\xf4\xd8\xf9\xcf\x8a\xdb\x31\xdc\x35\xff\x17\x1b" "\xf3\xf5\xf6\xbe\x32\xe5\xbe\x75\x21\xe7\x3f\x4a\x5f\x39\xff\x7c\x04" "\x1a\xbf\xff\xcf\x73\xfe\xbb\xef\xff\xaf\x76\xd0\x1f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x78\x94\xaa\xaa\x36\x6f\x11\xbd\x18" "\x11\x17\xd2\xfd\x3f\x5d\xdd\x9b\x09\x00\x4c\x57\x3e\xfe\x57\x49\x5e" "\xae\x56\xab\xd5\x6a\xf5\x41\xaa\x3f\x39\x34\x5b\xfd\xe9\xaa\x6e\xaa" "\xc6\x7b\xa3\x59\x44\xc4\xdf\x9b\xeb\xd4\xaf\x19\x7e\x37\xee\x9b\x01" "\x00\xb3\xec\xbf\x11\xf1\x49\xd7\x9d\xa0\x33\xf2\x2f\x58\xfe\xbc\xbf" "\x7a\xfa\xa5\xae\x3b\x03\x4c\xd5\xf5\xf7\x3f\xf8\xf9\xe5\xab\x57\xd7" "\xaf\x5d\xef\xba\x27\x00\x00\x00\x00\x00\x00\x00\xc0\xff\x2b\x8f\xff" "\xb9\xda\x18\xff\x79\xf3\x3a\xa0\xd6\xb8\xd1\xdb\xc6\x7f\x7d\x33\x56" "\xe7\x76\xfc\xcf\xfe\x68\xb0\x39\xd6\x79\xda\xa0\x17\xe2\xd1\xe3\x7f" "\x1f\x8f\x47\x8f\xff\x3d\x9c\xf0\x7c\x0b\x13\xda\x47\x13\xda\x17\x27" "\xb4\x2f\x4d\x68\x1f\x7b\xa3\x47\x43\xce\xff\x85\x94\x71\xce\xff\x58" "\xda\xb0\x92\xc6\x7f\x7d\xb9\x83\xfe\x74\x2d\xe7\x7f\x3c\x8d\xf5\x9c" "\xf3\xff\x4a\xeb\x71\xcd\xfc\xab\xbf\xce\x73\xfe\xfd\x6d\xf9\x9f\xbc" "\xf1\xde\xaf\x4e\x5e\x7f\xff\x83\xd7\xae\xbc\x77\xf9\xdd\xf5\x77\xd7" "\x7f\x71\xfa\xd4\x85\x73\x67\xcf\x9f\x3b\x7b\xfe\xfc\xc9\x77\xae\x5c" "\x5d\x3f\xb5\xf5\x6f\x87\x3d\xde\x5f\x39\xff\x3c\xf6\xb5\xeb\x40\xcb" "\x92\xf3\xcf\x99\xcb\xbf\x2c\x39\xff\x2f\xa7\x5a\xfe\x65\xc9\xf9\xbf" "\x94\x6a\xf9\x97\x25\xe7\x9f\x5f\xef\xc9\xbf\x2c\x39\xff\xfc\xde\x47" "\xfe\x65\xc9\xf9\xbf\x92\x6a\xf9\x97\x25\xe7\xff\xd5\x54\xcb\xbf\x2c" "\x39\xff\x57\x53\x2d\xff\xb2\xe4\xfc\xbf\x96\x6a\xf9\x97\x25\xe7\xff" "\x5a\xaa\xe5\x5f\x96\x9c\xff\x89\x54\xcb\xbf\x2c\x39\xff\x93\xa9\x96" "\x7f\x59\x72\xfe\xf9\x0c\x97\xfc\xcb\x92\xf3\xcf\x57\x36\xc8\xbf\x2c" "\x39\xff\x33\xa9\x96\x7f\x59\x72\xfe\x67\x53\x2d\xff\xb2\xe4\xfc\xcf" "\xa5\x5a\xfe\x65\xc9\xf9\x9f\x4f\xb5\xfc\xcb\x92\xf3\xbf\x90\x6a\xf9" "\x97\x25\xe7\xff\xf5\x54\xcb\xbf\x2c\x39\xff\x6f\xa4\x5a\xfe\x65\xc9" "\xf9\xbf\x9e\x6a\xf9\x97\x25\xe7\xff\xcd\x54\xcb\xbf\x2c\x39\xff\x6f" "\xa5\x5a\xfe\x65\xc9\xf9\x7f\x3b\xd5\xf2\x2f\x4b\xce\xff\x3b\xa9\x96" "\x7f\x59\x72\xfe\xdf\x4d\xb5\xfc\xcb\x92\xf3\x7f\x23\xd5\xf2\x2f\xcb" "\xc3\xcf\xff\x37\x63\xc6\xcc\x14\x66\xee\xfc\x3b\x62\x06\xba\x31\x69" "\xa6\xeb\xdf\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xdb\x34" "\x2e\x27\xee\x7a\x1b\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\x1f\x3b\x70\x20\x00" "\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\xd8\x81\x03\x01\x00\x00\x00\x00\x20\xff" "\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xc2\xde\xbd\xc5\xc8\x59\xde\xf7\x03\x7f\xf7\xe8\xb5\x21\xe0\x7f" "\x38\x13\x07\x6c\x73\x32\xb0\xb0\xbb\x3e\x81\x43\x0c\x26\x09\xf9\x53" "\xd2\x03\x25\x21\x6d\x5a\x52\xe3\xd8\x6b\xe3\xc4\xa7\x7a\xd7\x9c\x84" "\xca\xa6\xd0\x96\x28\x48\x45\x6a\x2f\xe8\x45\xd3\x24\x4a\xa3\x48\x6d" "\x05\xaa\xa2\x36\x95\x68\x84\xd4\x48\xed\x5d\x73\xd5\x88\x9b\xa8\x95" "\x72\xe1\x0b\xa8\x1c\x94\x54\x4a\x15\xd8\xea\x9d\x79\x9e\x67\x67\x66" "\x67\x67\xd6\x87\xb5\x67\xde\xe7\xf3\x41\xf6\xcf\x3b\xf3\xce\xcc\x33" "\xef\xbc\x33\xbb\xdf\x45\xdf\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xd1" "\x86\x8f\x4f\xff\xc9\x40\x51\x14\xe5\x9f\xda\x5f\x6b\x8b\xe2\xe2\xf2" "\xdf\xab\x8b\x5d\xe5\x97\x73\xdb\x2f\xf4\x0a\x01\x00\x00\x80\xb3\xf5" "\x5e\xed\xef\xbf\xbd\x34\x9d\xb0\x6b\x19\x17\x6a\xd8\xe6\x5f\xaf\xfb" "\xf7\xef\xce\xcf\xcf\xcf\x17\x5f\x78\xf7\xe4\xfb\x7f\x36\x3f\x9f\xce" "\x58\x5f\x14\x43\xab\x8a\xa2\x76\x5e\xf4\x6f\xbf\xf8\xf9\x7c\xe3\x36" "\xc1\x0b\xc5\xd8\xc0\x60\xc3\xd7\x83\x5d\x6e\x7e\xa8\xcb\xf9\xc3\x5d" "\xce\x1f\xe9\x72\xfe\x68\x97\xf3\x57\x75\x39\x7f\xac\xcb\xf9\x8b\x76" "\xc0\x22\xab\xeb\xbf\x8f\xa9\x5d\xd9\x8d\xb5\x7f\xae\xad\xef\xd2\xe2" "\xf2\x62\xa4\x76\xde\x8d\x6d\x2e\xf5\xc2\xc0\xaa\xc1\xc1\xf8\xbb\x9c" "\x9a\x81\xda\x65\xe6\x47\xf6\x17\x07\x8b\x43\xc5\x74\x31\xb9\xe8\x32" "\x03\xb5\xff\x8a\xe2\x8d\x0d\xe5\x6d\x3d\x58\xc4\xdb\x1a\x6c\xb8\xad" "\x75\x45\x51\x9c\xfa\xe9\x73\x7b\xe3\x1a\x06\xc2\x3e\xbe\xb1\x68\xba" "\xb1\x9a\xc6\xc7\xee\x9d\xfb\x8b\xf5\xef\xfe\xf4\xb9\xbd\xdf\x9e\x7d" "\xfb\x9a\x76\xb3\xeb\x6e\x58\xb4\xd2\xa2\xd8\xb4\xb1\x5c\xe7\x8b\x45" "\xb1\xf0\xeb\xaa\x62\xa0\x58\x95\xf6\x49\x5c\xe7\x60\xc3\x3a\xd7\xb5" "\x59\xe7\x50\xd3\x3a\x07\x6a\x97\x2b\xff\xdd\xba\xce\x53\xcb\x5c\x67" "\xbc\xdf\x63\x61\x9d\x3f\xec\xb0\xce\x75\xe1\xb4\xa7\x6f\x28\x8a\x62" "\xae\x58\x72\x9b\x56\x2f\x14\x83\xc5\x9a\x96\x5b\x4d\xfb\x7b\xac\x7e" "\x44\x94\xd7\x51\x3e\x94\x1f\x2c\x86\x4f\xeb\x38\xd9\xb0\x8c\xe3\xa4" "\xbc\xcc\x4f\x6e\x68\x3e\x4e\x5a\x8f\xc9\xb8\xff\x37\x84\x7d\x32\xbc" "\xc4\x1a\x1a\x1f\x8e\x77\xbe\x3c\xba\x68\xbf\x9f\xe9\x71\x52\xde\xeb" "\x5e\x38\x56\xcb\xeb\x7e\xb8\xbc\xd1\xb1\xb1\xc6\x5f\xad\x36\x1d\xab" "\xe5\x36\xcf\xdd\xb4\xf4\x31\xd0\xf6\xb1\x6b\x73\x0c\xa4\x63\xb9\xe1" "\x18\xd8\xd8\xed\x18\x18\x1c\x1d\xaa\x1d\x03\x83\x0b\x6b\xde\xd8\x74" "\x0c\x4c\x2d\xba\xcc\x60\x31\x50\xbb\xad\x93\x37\x75\x3e\x06\x26\x66" "\x0f\x1f\x9b\x98\x79\xe6\xd9\x3b\x0e\x1e\xde\x73\x60\xfa\xc0\xf4\x91" "\xa9\xc9\xed\x5b\xb7\x6c\xdb\xba\x65\xdb\xb6\x89\xfd\x07\x0f\x4d\x4f" "\xd6\xff\x3e\xbd\x5d\xda\x47\xd6\x14\x83\xe9\x18\xdc\x18\x5e\x6b\xe2" "\x31\x78\x4b\xcb\xb6\x8d\x87\xe4\xfc\x37\xce\xdd\xf3\x60\xac\x47\x9e" "\x07\xe5\x7d\xff\xcc\xcd\xe5\x82\x2e\x1e\x2c\x96\x38\xc6\xcb\x6d\x5e" "\xdc\x74\xf6\xcf\x83\xf4\x7d\xbf\xe1\x79\x30\xdc\xf0\x3c\x68\xfb\x9a" "\xda\xe6\x79\x30\xbc\x8c\xe7\x41\xb9\xcd\xa9\x4d\xcb\xfb\x9e\x39\xdc" "\xf0\xa7\xdd\x1a\x56\xea\xb5\x70\x6d\xc3\x31\x70\x21\xbf\x1f\x96\xb7" "\xf9\xd8\xad\x4b\xbf\x16\xae\x0b\xeb\x7a\xe9\xb6\xd3\xfd\x7e\x38\xb4" "\xe8\x18\x88\x77\x6b\x20\x3c\xf7\xca\x53\xd2\xcf\x7b\x63\x77\x87\xfd" "\xb2\xf8\xb8\xb8\xb6\x3c\xe3\xa2\xd1\xe2\xc4\xcc\xf4\xf1\x3b\x9f\xde" "\x33\x3b\x7b\x7c\xaa\x08\xe3\xbc\xb8\xac\xe1\xb1\x6a\x3d\x5e\xd6\x34" "\xdc\xa7\x62\xd1\xf1\x32\x78\xda\xc7\xcb\xae\xbf\xf9\xe5\xcd\xd7\xb6" "\x39\x7d\x6d\xd8\x57\x63\xb7\x77\x7e\xac\xca\x6d\xb6\x8e\x77\x7e\xac" "\x6a\xaf\xee\xed\xf7\x67\xd3\xa9\x9b\x8b\x30\xce\xb1\xf3\xbd\x3f\xdb" "\x7d\x37\x2b\xf7\x67\xca\x12\x1d\xf6\x67\xb9\xcd\x8b\x77\x9c\xfd\xcf" "\x82\x29\x97\x34\xbc\xfe\x8d\x74\x7b\xfd\x1b\x1a\x19\xae\xbf\xfe\x0d" "\xa5\xbd\x31\xd2\xf4\xfa\xb7\xf8\xa1\x19\xaa\xad\xac\x28\x4e\xdd\xb1" "\xbc\xd7\xbf\x91\xf0\xe7\x7c\xbf\xfe\x5d\xde\x23\xaf\x7f\xe5\xbe\x7a" "\xec\xce\xce\xc7\x40\xb9\xcd\x4b\x13\xa7\x7b\x0c\x0c\x77\x7c\xfd\xbb" "\x21\xcc\x81\xb0\x9e\x5b\x43\x62\x18\x6b\xc8\xfd\xef\xd7\xce\x9f\xab" "\x1f\xa6\x0d\x8f\x65\xd7\xe3\x66\x78\x78\x24\x1c\x37\xc3\xf1\x16\x9b" "\x8f\x9b\x2d\x8b\x2e\x53\x5e\x5b\x79\xdb\x9b\x26\xcf\xec\xb8\xd9\x74" "\x43\xf3\x63\xd5\xf4\x73\x4b\x05\x8f\x9b\x72\x5f\xfd\xf9\x64\xe7\xe3" "\xa6\xdc\xe6\xcd\xa9\xb3\x7f\xed\x58\x1d\xff\xd9\xf0\xda\x31\xda\xed" "\x18\x18\x19\x1a\x2d\xd7\x3b\x92\x0e\x82\xfa\xeb\xdd\xfc\xea\x78\x0c" "\xdc\x59\xec\x2d\x8e\x16\x87\x8a\x7d\xe9\x32\xe5\xa3\x5c\xde\xd6\xf8" "\xe6\xe5\x1d\x03\xa3\xe1\xcf\xf9\x7e\xed\xb8\xba\x47\x8e\x81\x72\x5f" "\xbd\xba\xb9\xf3\x31\x50\x6e\xf3\x83\x2d\xe7\xf6\x67\xa7\x4d\xe1\x94" "\xb4\x4d\xc3\xcf\x4e\xad\xbf\x5f\x58\x2a\xf3\x5f\x3b\xbc\x70\x7d\xad" "\xbb\xed\x5c\x67\xfe\x72\x9d\x9f\xd8\xda\xf9\x77\x43\xe5\x36\x6f\x6f" "\x3d\xdd\x9c\xd1\x79\x3f\xdd\x1e\x4e\xb9\xa8\xcd\x7e\x6a\x7d\xfe\x2c" "\x75\x4c\xef\x2b\xce\xcf\x7e\xba\x3a\xac\xf3\xd0\xb6\xce\xbf\x9b\x2a" "\xb7\xb9\x7c\xfb\x32\x8f\xa7\x5d\x45\x51\xbc\x35\xf5\x56\xed\xf7\x5d" "\xe1\xf7\xbb\x7f\x7f\xe2\x3f\xbe\xdb\xf4\x7b\xdf\x76\xbf\x53\x7e\x6b" "\xea\xad\x87\x26\x1e\xf9\xd1\xe9\xac\x1f\x00\x80\x33\xf7\x7e\xed\xef" "\xb9\xd1\xfa\xcf\x9a\x0d\xff\xc7\x7a\x39\xff\xff\x1f\x00\x00\x00\xe8" "\x0b\x31\xf7\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x0f\x85" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x0f\x87\x99\x64\x92\xff\x9f" "\xb8\x7b\xc7\x6b\xef\x3d\x5f\xa4\x77\x03\x9c\x0f\xe2\xf9\x71\x37\x3c" "\x7c\x6f\x7d\xbb\xd8\xf1\x9e\x0b\x5f\xaf\x9f\x5f\x50\x9e\xfe\xb1\x6f" "\x8d\xbc\xf6\x95\xe7\x97\x77\xdb\x83\x45\x51\xfc\xf2\xa1\x0f\xb5\xdd" "\xfe\x89\x7b\xe3\xba\xea\x8e\xc5\x75\x7e\xa4\xf9\xf4\x45\xae\xbe\x7e" "\x59\xb7\xff\xf8\xa3\x0b\xdb\x35\xbe\x7f\xc2\xa9\x1d\xf5\xeb\x8f\xf7" "\x67\xb9\x87\x41\xec\x2a\xbf\x31\xb1\xb9\x76\xbd\xeb\x9f\x99\xaa\xcd" "\x37\x1f\x2a\x6a\xf3\x91\xb9\x97\x5e\xa8\x5f\x7f\xfd\xeb\xb8\xfd\xc9" "\x2d\xf5\xed\xff\x32\xbc\x69\xc9\xae\xfd\x03\x4d\x97\xdf\x14\xd6\x73" "\x63\x98\xeb\xc3\x7b\xca\x3c\xbc\x6b\x61\x3f\x94\x33\x5e\xee\xb5\x75" "\xd7\xfd\xcb\x65\x9f\x5d\xb8\xbd\x78\xb9\x81\x8d\x97\xd4\xee\xe6\xab" "\x7f\x50\xbf\xde\xf8\x1e\x51\xaf\x5c\x56\xdf\x3e\xde\xef\xa5\xd6\xff" "\xcf\x5f\xfd\xce\x6b\xe5\xf6\x4f\xdf\xd4\x7e\xfd\xcf\x0f\xb6\x5f\xff" "\xc9\x70\xbd\x3f\x09\xf3\x17\x3b\xeb\xdb\x37\xee\xf3\xaf\x34\xac\xff" "\x8f\xc2\xfa\xe3\xed\xc5\xcb\xdd\xf9\xcd\xef\xb7\x5d\xff\xeb\x57\xd5" "\xb7\x7f\x3d\x1c\x17\x5f\x0f\xb3\x75\xfd\xf7\xff\xe9\x87\xdf\x6b\xf7" "\x78\xc5\xdb\xd9\x75\x4f\xfd\x72\xf1\xf6\x27\xff\x67\x6b\xed\x72\xf1" "\xfa\xe2\xf5\xb7\xae\x7f\xec\xf9\xa9\xa6\xfd\xd1\x7a\xfd\x6f\xbe\x5b" "\xbf\x9e\x9d\x4f\xfe\x6c\xa8\x71\xfb\x78\x7a\xbc\x9d\xe8\xf1\x7b\x9a" "\x8f\xef\x81\xf0\xf8\x36\xf5\xc8\x8b\xa2\xf8\xce\x1f\x17\x4d\xfb\xb9" "\xf8\x68\xfd\x72\xff\xd4\xb2\xfe\x78\x7d\xc7\xee\x69\xbf\xfe\xdb\x5b" "\xd6\x79\x6c\xe0\xfa\xda\xe5\x17\xee\xcf\xda\xa6\xfb\xf5\xb5\xbf\xde" "\xdc\xf6\xfe\xc6\xf5\xec\xfa\xbb\xb5\x4d\xf7\xe7\x95\x07\xc2\xfe\x7b" "\x77\xe2\x07\xe5\xf5\x9e\x7c\x24\x1c\x8f\xe1\xfc\xff\xfd\x61\xfd\xfa" "\x5a\xdf\xcb\xf4\xf5\x07\x9a\x5f\x6f\xe2\xf6\x5f\x5f\x5b\x7f\xde\xc6" "\xeb\x9b\x68\x59\xff\x2b\x2d\xeb\x9f\xbb\xbe\xdc\x77\xdd\xd7\xff\xe0" "\xbb\xf5\xf5\xbf\x7e\xdf\xaa\xa6\xf5\xef\xfa\x64\x38\x9e\x1e\xac\xcf" "\x6e\xeb\x3f\xf0\x57\x97\x36\x5d\xfe\x1b\xdf\xae\x3f\x1e\xc7\x9f\x1a" "\x3f\x72\x74\xe6\xc4\xc1\x7d\x0d\x7b\xb5\xf1\x79\xbc\x6a\x6c\xf5\x9a" "\x8b\x2e\xfe\xc0\x25\x97\x86\xd7\xd2\xd6\xaf\x77\x1f\x9d\x7d\x62\xfa" "\xf8\xfa\xc9\xf5\x93\x45\xb1\xbe\x0f\xdf\x32\x70\xa5\xd7\xff\xcd\x30" "\xff\xbb\x3e\xe6\xce\xfd\x2d\xd4\xfd\xe8\x67\xf5\xe3\xee\xe5\x4f\xd5" "\xbf\x6f\xdd\xf2\xf3\xfa\xd7\xaf\x84\xd3\x1f\x0f\x8f\x67\xfc\xfe\xf8" "\xb5\xbf\x18\x69\x3a\x5e\x5b\x1f\xf7\xb9\xfb\xea\xf3\x6c\xd7\x7f\x5b" "\x58\xc7\x72\x5d\xf5\xd5\xff\xba\x7e\x59\x1b\x9e\xfc\xfc\x1b\x27\xfe" "\xf1\x0f\xdf\x6e\xfd\xb9\x20\xde\x9f\x63\x57\x8c\xd5\xee\xdf\xab\x1b" "\xae\xac\x9d\x37\xf0\x66\xfd\xfc\xd6\xd7\xab\x6e\xfe\xf3\x8a\xe6\xe7" "\xf5\x8f\x87\x27\x6b\xf3\x7b\x61\xbf\xce\x87\x77\x66\xde\x78\x65\xfd" "\xf6\x5a\xaf\x3f\xbe\x37\xc9\xcb\x9f\xae\x3f\x7f\xe3\x4f\x72\xf1\xf2" "\x45\xcb\xfb\x89\xac\x1d\x6a\xbe\x1f\x67\xbb\xfe\x1f\x87\x9f\x63\xbe" "\x7f\x75\xf3\xeb\x5f\x3c\x3e\xbe\xf7\x7c\xcb\xbb\x39\xaf\x2d\x06\xca" "\x25\xcc\x85\xd7\x87\x62\xae\x7e\x7e\xdc\x2a\xee\xef\x97\x4f\x5d\xd9" "\xf6\xf6\xe2\xfb\xf0\x14\x73\xd7\x9c\xce\x32\x97\x34\xf3\xcc\xcc\xc4" "\xa1\x83\x47\x4e\x3c\x3d\x31\x3b\x3d\x33\x3b\x31\xf3\xcc\xb3\xbb\x0f" "\x1f\x3d\x71\x64\x76\x77\xed\xbd\x4b\x77\x7f\xb1\xdb\xe5\x17\x9e\xdf" "\x6b\x6a\xcf\xef\x7d\xd3\xdb\xb7\x16\xb5\x67\xfb\xd1\xfa\x58\x61\x17" "\x7a\xfd\xc7\x1e\xdd\xbb\xef\xae\xc9\x9b\xf7\x4d\xef\xdf\x73\x62\xff" "\xec\xa3\xc7\xa6\x8f\x1f\xd8\x3b\x33\xb3\x77\x7a\xdf\xcc\xcd\x7b\xf6" "\xef\x9f\x7e\xaa\xdb\xe5\x0f\xee\xdb\x39\xb5\x79\xc7\x96\xbb\x36\x8f" "\x1f\x38\xb8\x6f\xe7\xdd\x3b\x76\x6c\xd9\x31\x7e\xf0\xc8\xd1\x72\x19" "\xf5\x45\x75\xb1\x7d\xf2\x4b\xe3\x47\x8e\xef\xae\x5d\x64\x66\xe7\xd6" "\x1d\x53\xdb\xb6\x6d\x9d\x1c\x3f\x7c\x74\xdf\xf4\xce\xbb\x26\x27\xc7" "\x4f\x74\xbb\x7c\xed\x7b\xd3\x78\x79\xe9\x27\xc7\x8f\x4f\x1f\xda\x33" "\x7b\xf0\xf0\xf4\xf8\xcc\xc1\x67\xa7\x77\x4e\xed\xd8\xbe\x7d\x73\xd7" "\x77\x7f\x3c\x7c\x6c\xff\xcc\xfa\x89\xe3\x27\x8e\x4c\x9c\x98\x99\x3e" "\x3e\x51\xbf\x2f\xeb\x67\x6b\x27\x97\xdf\xfb\xba\x5d\x9e\x3c\xcc\x1c" "\x0d\xaf\x77\x2d\x06\xc2\x4f\xe7\x9f\xbb\x7d\x7b\x7a\x7f\xdc\xd2\xb7" "\xbe\xbc\xe4\x55\xd5\x37\x69\xfe\xf1\xb4\x78\x27\xbc\x17\x54\xfc\xfe" "\xd6\xed\xeb\x98\xfb\x47\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98" "\xfb\xc3\x1b\xff\x2f\x9c\x21\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x2a" "\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x2c\xcc\x24\x93\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x22\xfd\xff\xf8\x20\xe9\xff\xeb\xff" "\xeb\xff\xeb\xff\x77\xa0\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7" "\xbb\x5e\xeb\xff\xc7\xdc\xbf\xba\x28\xb2\xcc\xff\x00\x00\x00\x90\x83" "\x98\xfb\xd7\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x5f\x14\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x71\x98\x49\x1e\xf9\x7f\xa4" "\xf5\x9f\xfa\xff\xfa\xff\xfa\xff\x8d\xfd\xff\xb8\xad\xfe\x7f\xe1\xf3" "\xff\xf5\xff\xcf\x90\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff\xfd\xbc\xfe" "\x1e\xec\xff\xaf\x5e\xf9\xfe\xff\xc2\x31\xad\xff\xcf\x72\x2c\xab\xff" "\x3f\xba\x70\xfa\x4a\xf7\xff\x63\xee\xff\x40\x98\x49\x1e\xf9\x1f\x00" "\x00\x00\xb2\x10\x73\xff\x25\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\x97\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xaf\x0d\x33\xc9" "\x24\xff\xfb\xfc\x7f\xfd\x7f\xfd\x7f\x9f\xff\xaf\xff\xaf\xff\xbf\x92" "\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7\xf5\xf7\x60\xff\xdf\xe7" "\xff\xd3\x73\x7a\xed\xf3\xff\x63\xee\xff\x7f\x61\x26\x99\xe4\x7f\x00" "\x00\x00\xc8\x41\xcc\xfd\x1f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xbf\x2c\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xf2\x30\x93" "\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xff\xf4\xff\x4f" "\xaf\x99\xdc\x1b\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7\xf5\xeb" "\xff\xeb\xff\xd3\x5d\xaf\xf5\xff\x63\xee\xbf\x22\xcc\x24\x93\xfc\x0f" "\x00\x00\x00\x39\x88\xb9\xff\xca\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\xab\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xaf\x0e\x33" "\xc9\x24\xff\xf7\x7b\xff\x7f\xb8\xf5\x82\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xe1\xf4\x2a\xf6\xff\x7d\xfe\xff\x62\xfa\xff\xfa\xff\x85\xfe\xff" "\x19\xbb\xd0\xfd\xf9\x7e\x5f\xbf\xfe\xbf\xfe\x3f\xdd\xf5\x5a\xff\x3f" "\xe6\xfe\x6b\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xaf\x0d" "\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x50\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\xba\x30\x93\x4c\xf2\x7f\xbf\xf7\xff\x17\xd1" "\xff\xd7\xff\xd7\xff\xd7\xff\x0f\xa7\xeb\xff\xf7\x86\xfe\xea\xff\x0f" "\x2e\x79\x8e\xfe\x7f\x9d\xfe\x7f\x33\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\x3a\x5b\xa2\xff\x7f\xea\x42\xf5\xff\x63\xee\xff\x70\x98\x49\x26\xf9" "\x1f\x00\x00\x00\x72\x10\x73\xff\x75\x61\x26\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\xd7\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xaf\x0f" "\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf" "\xa4\xfe\xea\xff\x2f\x4d\xff\xbf\x4e\xff\xbf\x99\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x3f\x9d\xf5\xda\xe7\xff\xc7\xdc\xbf\x21\xcc\x24\x93\xfc\x0f" "\x00\x00\x00\x39\x88\xb9\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x0d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x37\x86\x99" "\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x92" "\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\xff\xe5\xf5\xff" "\x47\xbb\x5d\x11\x95\xd6\x6b\xfd\xff\x98\xfb\x6f\x0a\x33\xc9\x24\xff" "\x03\x00\x00\x40\x0e\x62\xee\xbf\x39\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\x96\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4d\x61" "\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x95" "\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\xdf\xe7\xff" "\xd3\x5d\xaf\xf5\xff\x63\xee\xbf\x35\xcc\x24\x93\xfc\x0f\x00\x00\x00" "\x39\x88\xb9\xff\xb6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xdb" "\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xc7\xc3\x4c\x32\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x2b\xa9\xaa\xfd\xff" "\xf4\x3a\xaa\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x92\x7a" "\xad\xff\x1f\x73\xff\x1d\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc" "\xfd\x77\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x4f\x84\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\x4f\x86\x99\x64\x92\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x52\x55\xfb\xff\x3e\xff\x5f" "\xff\xbf\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x5e\xeb\xff\xc7\xdc" "\x3f\x15\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x39\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x4b\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\xd6\x30\x93\x4c\xf2\xbf\xfe\xff\x19\xf6\xff\x57\x35" "\x7f\xa9\xff\xdf\x7e\xfd\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\x9d\xe8\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\x69\x36\xd8\xe6" "\xb4\x5e\xeb\xff\xc7\xdc\xbf\x2d\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39" "\x88\xb9\x7f\x7b\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x5d\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x77\x87\x99\x64\x92\xff\xf5" "\xff\x7d\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xbf\xf6\xff\x47\x8b\x7e\xa0" "\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\xee" "\x7a\xad\xff\x1f\x73\xff\x8e\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\x8f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x13\x66" "\x22\xff\x03\x00\x00\x40\x5f\x69\xf7\x39\x84\x51\xcc\xfd\x1f\x0d\x33" "\xc9\x24\xff\xeb\xff\x57\xbd\xff\x3f\xbf\x4a\xff\x5f\xff\x5f\xff\xbf" "\xf3\xfa\xfb\xb7\xff\xdf\x1f\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef" "\xe7\xf5\xeb\xff\xeb\xff\xd3\x5d\xaf\xf5\xff\x63\xee\xdf\x19\x66\x92" "\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x6f\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\xff\x7d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\xbb\xc2\x4c\x32\xc9\xff\xfa\xff\x55\xef\xff\xfb\xfc\x7f\xfd\xff\xfe" "\xe9\xff\x8f\xc4\xc7\x55\xff\x5f\xff\xff\x34\xe8\xff\xeb\xff\x17\xfa" "\xff\x67\xec\x4c\xfb\xf3\xe1\xc7\x16\xfd\xff\x1e\xea\xff\x97\xc7\x90" "\xfe\x3f\xbd\xa8\xd7\xfa\xff\x31\xf7\xdf\x1f\x66\x92\x49\xfe\x07\x00" "\x00\x80\x1c\xc4\xdc\xff\xb1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6" "\xfe\x8f\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x22\xcc\x24" "\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x2b\xfd\xff\x48\xff\x5f" "\xff\xff\x74\xe8\xff\xeb\xff\x17\xfa\xff\x67\xec\x42\xf7\xe7\xfb\x7d" "\xfd\xbd\xd4\xff\xf7\xf9\xff\xf4\xaa\x5e\xeb\xff\xc7\xdc\xff\x40\x98" "\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x27\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\xff\x7f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x83\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\x95\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f" "\xff\x5f\xff\x9f\xee\x7a\xad\xff\x1f\x73\xff\xaf\x84\x99\x64\x92\xff" "\x01\x00\x00\x20\x07\x31\xf7\x3f\x14\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\xff\xa9\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x5f\x0d" "\x33\xc9\x24\xff\xeb\xff\x9f\x9f\xfe\xff\x60\xba\x7e\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\x73\x49\xff\x5f\xff\xbf\xd0\xff\x3f\x63\x17" "\xba\x3f\xdf\xef\xeb\xd7\xff\xd7\xff\xa7\xbb\x5e\xeb\xff\xc7\xdc\xff" "\x6b\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xbf\x1e\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x1b\x61\x26\xf2\x3f\x00\x00\x00" "\x54\x46\xcc\xfd\x0f\x87\x99\x64\x92\xff\xf5\xff\x7d\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xff\x4a\xd2\xff\xd7\xff\xef\x44\xff\x5f\xff\xbf" "\x9f\xd7\xaf\xff\xaf\xff\x4f\x77\xbd\xd6\xff\x8f\xb9\xff\x37\xc3\x4c" "\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x1f\x09\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\xff\x74\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\x67\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\x2b\x49\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe" "\xbf\xfe\x3f\xdd\xf5\x5a\xff\x3f\xe6\xfe\x47\xc3\x4c\x32\xc9\xff\x00" "\x00\x00\x90\x83\x98\xfb\x3f\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4" "\xdc\xff\x5b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf\x1d\x66" "\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x49" "\xfa\xff\x8b\xfb\xff\xe5\x6b\xd8\x85\xec\xff\x8f\x2e\x67\x43\xfd\xff" "\x65\xd1\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xb3\x5e\xeb\xff\xc7\xdc\xff" "\xb9\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xdf\x09\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xdd\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\xc7\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\x2b\x49\xff\xdf\xe7\xff\x77\xa2\xff\xaf\xff\xdf" "\xcf\xeb\xd7\xff\xd7\xff\xa7\xbb\x25\xfa\xff\xa7\xfe\x21\xfc\xe3\x7c" "\xf7\xff\x63\xee\xff\x7c\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73" "\xff\xef\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0e\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x3c\xcc\x24\x93\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x92\xf4\xff\xf5\xff\x3b\xd1" "\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\xd3\x5d\xaf\x7d\xfe\x7f\xcc" "\xfd\x7b\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xbf\x10\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x37\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\x7f\x5f\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x7f\x25\xe9\xff\xeb\xff\x77\xa2\xff\xaf\xff\xdf" "\xcf\xeb\xd7\xff\xd7\xff\xa7\xbb\x5e\xeb\xff\xc7\xdc\x3f\x1d\x66\x92" "\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x3f\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x40\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\x13\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\xff\x95\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f" "\xff\x9f\xee\x7a\xad\xff\x1f\x73\xff\xc1\x30\x93\x4c\xf2\x3f\x00\x00" "\x00\xe4\x20\xe6\xfe\x2f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\x7f\x29\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x50\x98\x49\x26" "\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x25\xe9\xff" "\xeb\xff\x77\xa2\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\xbb\x5e" "\xeb\xff\xc7\xdc\x7f\x38\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9" "\xff\x48\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xd1\x30\x13\xf9" "\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x63\x61\x26\x99\xe4\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x95\xa4\xff\xbf\xb8\xff\x3f\x1a" "\xae\x53\xff\x5f\xff\x5f\xff\xbf\xbf\xd7\xaf\xff\xaf\xff\x4f\x77\xbd" "\xd6\xff\x8f\xb9\xff\xf7\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98" "\xfb\x8f\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xcf\x84\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\xcf\x86\x99\x64\x92\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x92\xfe\xbf\xcf\xff\xef\x44" "\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x77\xbd\xd6\xff\x8f\xb9" "\xff\x44\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x93\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x4f\x85\xf9\x7f\xec\xdd\x75\x8e" "\x20\xf7\x11\xc7\xd1\x71\xa2\x90\xa2\x28\x67\xc9\x09\x72\x84\x9c\x21" "\xb7\x08\x33\x39\xcc\xcc\xcc\xcc\xcc\xcc\x0e\x33\xb3\x13\x87\x51\x72" "\x14\x4f\x55\xad\x15\xef\x74\x2f\xb8\x3d\xdd\x55\xef\xfd\xe1\x32\xac" "\xe4\x9f\x3c\x96\xa5\xaf\xac\x8f\xba\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\xfb\xc4\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xdf\x4d\xff\x7f\xda" "\xf9\xe9\xff\xf5\xff\xfa\xff\xcb\xa2\xff\xbf\xcd\xfb\xff\x9b\xfe\x95" "\xd7\xff\x9f\xd2\xff\xeb\xff\xf5\xff\xfa\x7f\x96\xed\xad\xff\xcf\xdd" "\x7f\xdf\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xdf\x2f\x6e\xb1" "\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xf7\x8f\x5b\xec\x7f\x00\x00\x00\x68" "\x23\x77\xff\x03\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xef\xa6\xff" "\xf7\xfd\xff\xfc\xb9\xea\xff\xf5\xff\x97\x41\xff\xef\xfb\xff\x27\xfa" "\xff\x2b\x76\xde\xfd\xfc\xd1\xdf\xaf\xff\xd7\xff\xb3\x6e\x6f\xfd\x7f" "\xee\xfe\x07\xc6\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x41\x71" "\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x70\xdc\x62\xff\x03\x00\x00" "\x40\x1b\xb9\xfb\x1f\x12\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x6f\x49\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x1f\xf9\xfd" "\xfa\x7f\xfd\x3f\xeb\xf6\xd6\xff\xe7\xee\x7f\x68\xdc\x32\x64\xff\x03" "\x00\x00\xc0\x04\xb9\xfb\x1f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\x87\xc7\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x11\x71\xcb\x90" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x96\xf4\xff\xfa" "\xff\x25\xfa\x7f\xfd\xff\x91\xdf\xaf\xff\xd7\xff\xb3\x6e\x6f\xfd\x7f" "\xee\xfe\x47\xc6\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x51\x71" "\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x74\xdc\x62\xff\x03\x00\x00" "\x40\x1b\xb9\xfb\x1f\x13\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x6f\x49\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x1f\xf9\xfd" "\xfa\x7f\xfd\x3f\xeb\x36\xef\xff\xef\x75\xed\x4d\xf7\x52\xfb\xff\xdc" "\xfd\xd7\xc6\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\xb1\x71\x8b" "\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x5c\xdc\x62\xff\x03\x00\x00\x40" "\x1b\xb9\xfb\x1f\x1f\xb7\x0c\xd9\xff\xfa\x7f\xfd\xff\x85\xfe\xff\xc6" "\x6b\xf4\xff\xfa\x7f\xfd\xff\x85\x3f\xaf\xff\xbf\x75\xe8\xff\xf5\xff" "\x4b\xf4\xff\x7b\xed\xff\x2f\xed\x9f\x84\xfe\x5f\xff\xaf\xff\x67\xcd" "\xe6\xfd\xff\x4a\xef\xff\xff\x7f\x9c\xbb\xff\x09\x71\xcb\x90\xfd\x0f" "\x00\x00\x00\x13\xe4\xee\x7f\x62\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9" "\xfb\x9f\x14\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x27\xc7\x2d\x43" "\xf6\xff\x51\xfa\xff\xbb\xe4\xef\xe8\xff\x7d\xff\x5f\xff\xaf\xff\xd7" "\xff\x1f\x8a\xfe\x5f\xff\xbf\x44\xff\xbf\xd7\xfe\xdf\xf7\xff\xaf\xb6" "\xff\xbf\xe7\x25\xbc\x5f\xff\xcf\x04\x7b\xeb\xff\x73\xf7\x3f\x25\x6e" "\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x4f\x8d\x5b\xec\x7f\x00\x00" "\x00\x68\x23\x77\xff\xd3\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff" "\xf4\xb8\x65\xc8\xfe\x3f\x4a\xff\xef\xfb\xff\xfa\xff\x8b\xbd\x5f\xff" "\xaf\xff\x3f\xd1\xff\xef\x9e\xfe\x5f\xff\xbf\x44\xff\xaf\xff\x3f\xf2" "\xfb\x7d\xff\x5f\xff\xcf\xba\xbd\xf5\xff\xb9\xfb\x9f\x11\xb7\x0c\xd9" "\xff\x00\x00\x00\x30\x41\xee\xfe\x67\xc6\x2d\xf6\x3f\x00\x00\x00\xb4" "\x91\xbb\xff\x59\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x76\xdc" "\x32\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x55\xf5\xff\xb7\xd7\xff" "\xeb\xff\x97\xe9\xff\x97\xfb\xff\x6b\xae\xf2\xfd\xfa\xff\x53\xfa\xff" "\x2b\x73\xde\xfd\xfc\xd1\xdf\x7f\xf5\xfd\xff\xff\x7e\xab\xff\xa7\xb7" "\xbd\xf5\xff\xb9\xfb\x9f\x13\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee" "\xfe\xe7\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x79\x71\x8b\xfd" "\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x7e\xdc\x32\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xef\xff\xeb\xff\xb7\xa4\xff\x6f\xf7\xfd\xff\x6b\xf4" "\xff\x17\xe8\xff\xf5\xff\xbe\xff\xaf\xff\x67\xd9\xde\xfa\xff\xdc\xfd" "\x2f\x88\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x0b\xe3\x16\xfb" "\x1f\x00\x00\x00\xda\xc8\xdd\xff\xa2\xb8\xc5\xfe\x07\x00\x00\x80\x36" "\x72\xf7\xbf\x38\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xdf\x92\xfe\xbf\x5d\xff\xef\xfb\xff\x37\xa3\xff\xd7\xff\xeb" "\xff\xf5\xff\x2c\xdb\x5b\xff\x9f\xbb\xff\x25\x71\xcb\x90\xfd\x0f\x00" "\x00\x00\x13\xe4\xee\x7f\x69\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb" "\x5f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x97\xc7\x2d\x43\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x5b\xd2\xff\xeb\xff" "\x97\xe8\xff\x2f\xde\xff\xdf\xf9\x8c\xbf\x9f\xfe\x7f\x5f\xef\xd7\xff" "\xeb\xff\x59\xb7\xb7\xfe\x3f\x77\xff\x2b\xe2\x96\x21\xfb\x1f\x00\x00" "\x00\x26\xc8\xdd\xff\xca\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xbf" "\x2a\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\xaf\x8e\x5b\x86\xec\xff" "\xb3\xfa\xff\x1b\xee\x7a\xfa\xd7\xf5\xff\x97\x46\xff\x7f\xf1\xf7\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x44\xff\xef\xfb\xff\x47" "\x7e\xbf\xfe\x5f\xff\xcf\xba\xbd\xf5\xff\xb9\xfb\x5f\x13\xb7\x0c\xd9" "\xff\x00\x00\x00\x30\x41\xee\xfe\xd7\xc6\x2d\xf6\x3f\x00\x00\x00\xb4" "\x91\xbb\xff\x75\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x7d\xdc" "\x32\x64\xff\xfb\xfe\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xa4" "\xff\xd7\xff\x2f\xd1\xff\xeb\xff\x8f\xfc\x7e\xfd\xbf\xfe\x9f\x75\x7b" "\xeb\xff\x73\xf7\xbf\x21\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd" "\x6f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x9b\xe2\x16\xfb\x1f" "\x00\x00\x00\xda\xc8\xdd\xff\xe6\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xcf" "\xbd\xff\xbf\xdd\xd9\xfd\x7f\xfe\x04\xf4\xff\xfa\xff\x13\xfd\xbf\xfe" "\xff\x0c\xfa\x7f\xfd\xff\x89\xfe\xff\x8a\x9d\x77\x3f\x7f\xf4\xf7\xeb" "\xff\xf5\xff\xac\xdb\x5b\xff\x9f\xbb\xff\x2d\x71\xcb\x90\xfd\x0f\x00" "\x00\x00\x13\xe4\xee\x7f\x6b\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb" "\xdf\x16\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xb7\xc7\x2d\x43\xf6" "\xbf\xfe\x5f\xff\x7f\xee\xfd\xbf\xef\xff\x17\xfd\x7f\xfc\x5c\xf5\xff" "\xfa\xff\xcb\xa0\xff\xd7\xff\x9f\xe8\xff\xaf\xd8\x79\xf7\xf3\x47\x7f" "\xbf\xfe\x5f\xff\xcf\xba\xbd\xf5\xff\xb9\xfb\xdf\x11\xb7\x0c\xd9\xff" "\x00\x00\x00\x30\x41\xee\xfe\x77\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91" "\xbb\xff\x5d\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x77\xdc\x32" "\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x25\xfd\xbf" "\xfe\x7f\x89\xfe\x5f\xff\x7f\xe4\xf7\xeb\xff\xf5\xff\xac\xdb\x5b\xff" "\x9f\xbb\xff\x3d\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\x7f\x6f" "\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xdf\x17\xb7\xd8\xff\x00\x00" "\x00\xd0\x46\xee\xfe\xf7\xc7\x2d\x43\xf6\xbf\xfe\xff\xe8\xfd\xff\xbd" "\xaf\x8f\x17\xe8\xff\xf5\xff\xfa\x7f\xfd\xff\x2e\xe9\xff\xf5\xff\x4b" "\xf4\xff\xfa\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdd\xde\xfa\xff\xdc\xfd" "\x1f\x88\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x07\xe3\x16\xfb" "\x1f\x00\x00\x00\xda\xc8\xdd\xff\xa1\xb8\xc5\xfe\x07\x00\x00\x80\x36" "\x72\xf7\x7f\x38\x6e\x19\xb2\xff\x67\xf4\xff\x77\xb8\xc5\x2f\xeb\xd3" "\xff\xfb\xfe\xbf\xfe\x5f\xff\xaf\xff\xdf\x37\xfd\xbf\xfe\x7f\x89\xfe" "\x5f\xff\x7f\xe4\xf7\xeb\xff\xf5\xff\xac\xdb\x5b\xff\x9f\xbb\xff\x23" "\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x68\xdc\x62\xff\x03" "\x00\x00\x40\x1b\xb9\xfb\x3f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee" "\xfe\x8f\xc7\x2d\x43\xf6\xff\x8c\xfe\xff\x96\xf4\xff\xa7\x6e\xf5\xfe" "\xff\xc6\xbb\xeb\xff\xf5\xff\x45\xff\xaf\xff\x3f\xd1\xff\xeb\xff\x57" "\xe8\xff\xf5\xff\x47\x7e\xbf\xfe\x5f\xff\xcf\xba\xbd\xf5\xff\xb9\xfb" "\x3f\x11\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee\xfe\x4f\xc6\x2d\xf6" "\x3f\x00\x00\x00\xb4\x91\xbb\xff\x53\x71\x8b\xfd\x0f\x00\x00\x00\x6d" "\xe4\xee\xff\x74\xdc\x70\x8f\xbb\x9d\xdf\x93\x6e\x53\xfa\x7f\xfd\xbf" "\xef\xff\xeb\xff\xf5\xff\xfa\xff\x2d\xe9\xff\xf5\xff\x4b\xf4\xff\xfa" "\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdd\xde\xfa\xff\xdc\xfd\x9f\x89\x5b" "\xfc\xff\x7f\x00\x00\x00\x68\x23\x77\xff\x67\xe3\x16\xfb\x1f\x00\x00" "\x00\xda\xc8\xdd\xff\xb9\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x7f" "\x3e\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf" "\x92\xfe\x5f\xff\xbf\x44\xff\xaf\xff\x3f\xf2\xfb\xf5\xff\xfa\x7f\xd6" "\xed\xad\xff\xcf\xdd\xff\x85\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72" "\xf7\x7f\x31\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x5f\x8a\x5b\xec" "\x7f\x00\x00\x00\x68\x23\x77\xff\x97\xe3\x96\x21\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d\xe9\xff\xf5\xff\x4b\xf4\xff\xfa" "\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdd\xde\xfa\xff\xdc\xfd\x5f\x89\x5b" "\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x57\xe3\x16\xfb\x1f\x00\x00" "\x00\xda\xc8\xdd\x7f\x5d\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xbf" "\x16\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f" "\x49\xff\xaf\xff\x5f\xa2\xff\xbf\x59\xff\x9f\xff\x31\xd1\xff\x1f\xe6" "\xfd\xfa\x7f\xfd\x3f\xeb\xf6\xd6\xff\xe7\xee\xff\x7a\xdc\x32\x64\xff" "\x03\x00\x00\xc0\x04\xb9\xfb\xbf\x11\xb7\xd8\xff\x00\x00\x00\xd0\x46" "\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x5b\x71\xcb" "\x90\xfd\xdf\xb9\xff\x5f\xfa\x65\xfa\xff\x53\xfa\x7f\xfd\xff\x89\xfe" "\x5f\xff\xbf\x31\xfd\xbf\xfe\x7f\x89\xfe\xdf\xf7\xff\x8f\xfc\x7e\xfd" "\xbf\xfe\x9f\x75\x7b\xeb\xff\x73\xf7\x7f\x3b\x6e\x19\xb2\xff\x01\x00" "\x00\x60\x82\xdc\xfd\xdf\x89\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff" "\x77\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xbd\xb8\x65\xc8\xfe" "\xef\xdc\xff\x2f\xd1\xff\x9f\xd2\xff\xeb\xff\x4f\xf4\xff\xfa\xff\x8d" "\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdd" "\xde\xfa\xff\xdc\xfd\xdf\x8f\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77" "\xff\x0f\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xc3\xb8\xc5\xfe" "\x07\x00\x00\x80\x36\x72\xf7\xff\x28\x6e\x19\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x92\xfe\x5f\xff\xbf\x44\xff\xaf\xff" "\x3f\xf2\xfb\xf5\xff\xfa\x7f\xd6\xed\xad\xff\xcf\xdd\xff\xe3\xb8\x65" "\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xff\x24\x6e\xb1\xff\x01\x00\x00" "\xa0\x8d\xdc\xfd\x3f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xcf" "\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d" "\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdd" "\xde\xfa\xff\xdc\xfd\x3f\x8f\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77" "\xff\x2f\xe2\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xcb\xb8\xc5\xfe" "\x07\x00\x00\x80\x36\x72\xf7\xff\x2a\x6e\x19\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x92\xfe\x5f\xff\xbf\x44\xff\xaf\xff" "\x3f\xf2\xfb\xf5\xff\xfa\x7f\xd6\xed\xad\xff\xcf\xdd\xff\xeb\xb8\x65" "\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xff\x26\x6e\xb1\xff\x01\x00\x00" "\xa0\x8d\xdc\xfd\xbf\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xef" "\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d" "\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x23\xbf\x5f\xff\xaf\xff\x67\xdd" "\xde\xfa\xff\xdc\xfd\xd7\xc7\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb" "\xff\xf7\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x43\xdc\x62\xff" "\x03\x00\x00\x40\x1b\xb9\xfb\x6f\x88\x5b\x86\xec\xff\xce\xfd\xff\x75" "\x77\x3c\xfb\x97\xe9\xff\x4f\xb5\xed\xff\xef\xa4\xff\xd7\xff\xeb\xff" "\xf7\x42\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x1f\xf9\xfd\xfa\x7f\xfd\x3f" "\xeb\xf6\xd6\xff\xe7\xee\xff\x63\xdc\x32\x64\xff\x03\x00\x00\xc0\x04" "\xb9\xfb\xff\x14\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x3f\xc7\x2d" "\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x2f\x71\xcb\x90\xfd\xdf\xb9\xff" "\x5f\xa2\xff\x3f\xd5\xb6\xff\xf7\xfd\x7f\xfd\xbf\xfe\x7f\x37\xf4\xff" "\xfa\xff\x25\xfa\x7f\xfd\xff\x91\xdf\xaf\xff\xd7\xff\xb3\x6e\x6f\xfd" "\x7f\xee\xfe\xbf\xc6\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x6f" "\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x7b\xdc\x62\xff\x03\x00" "\x00\x40\x1b\xb9\xfb\xff\x11\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\x6f\x49\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x1f\xf9" "\xfd\xfa\x7f\xfd\x3f\xeb\xf6\xd6\xff\xe7\xee\xff\x67\xdc\x32\x64\xff" "\x03\x00\x00\xc0\x04\xb9\xfb\xff\x15\xb7\xd8\xff\x00\x00\x00\xd0\x46" "\xee\xfe\x7f\xc7\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x3f\x71\xcb" "\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x96\xf4\xff" "\xfa\xff\x25\xfa\x7f\xfd\xff\x91\xdf\xaf\xff\xd7\xff\xb3\x6e\x6f\xfd" "\x7f\xee\xfe\xff\x06\x00\x00\xff\xff\x9f\x6a\x22\xe7", 24221); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000005d40, /*flags=MS_REC|MS_MANDLOCK*/ 0x4040, /*opts=*/0x200000001e40, /*chdir=*/3, /*size=*/0x5e9d, /*img=*/0x20000000bc00); break; case 1: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0xc4042 (4 bytes) // mode: open_mode = 0x1ff (2 bytes) // ] // returns fd memcpy((void*)0x200000000300, "./file1\000", 8); res = syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000300ul, /*flags=O_NOATIME|O_DIRECT|O_CREAT|O_CLOEXEC|0x2*/ 0xc4042, /*mode=S_IXOTH|S_IWOTH|S_IROTH|S_IXGRP|S_IWGRP|S_IRGRP|S_IXUSR|S_IWUSR|0x100*/ 0x1ff); if (res != -1) r[0] = res; break; case 2: // openat$nullb arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 6e 75 6c 6c 62 30 00} (length 0xc) // } // flags: open_flags = 0x1eb182 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_block memcpy((void*)0x200000000140, "/dev/nullb0\000", 12); res = syscall( __NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000140ul, /*flags=O_SYNC|O_NOFOLLOW|O_NOCTTY|O_NOATIME|O_LARGEFILE|0x82082*/ 0x1eb182, /*mode=*/0); if (res != -1) r[1] = res; break; case 3: // sendfile arguments: [ // fdout: fd (resource) // fdin: fd (resource) // off: nil // count: intptr = 0x20fffe82 (8 bytes) // ] syscall(__NR_sendfile, /*fdout=*/r[0], /*fdin=*/r[1], /*off=*/0ul, /*count=*/0x20fffe82ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 4; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }