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