// https://syzkaller.appspot.com/bug?id=3e3f8cd8cd1a8114ef58c4f91f2c1360241e1a05 // 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, 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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"); } 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } 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; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW) == 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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, MNT_DETACH | UMOUNT_NOFOLLOW)) 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) { int i, call, thread; for (call = 0; call < 9; 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[4] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000040, "jfs\000", 4); memcpy((void*)0x20000080, "./bus\000", 6); memcpy((void*)0x200000c0, "errors=continue", 15); *(uint8_t*)0x200000cf = 0x2c; memcpy((void*)0x200000d0, "nodiscard", 9); *(uint8_t*)0x200000d9 = 0x2c; memcpy((void*)0x200000da, "uid", 3); *(uint8_t*)0x200000dd = 0x3d; sprintf((char*)0x200000de, "0x%016llx", (long long)0xee01); *(uint8_t*)0x200000f0 = 0x2c; memcpy((void*)0x200000f1, "nodiscard", 9); *(uint8_t*)0x200000fa = 0x2c; memcpy((void*)0x200000fb, "discard", 7); *(uint8_t*)0x20000102 = 0x3d; sprintf((char*)0x20000103, "0x%016llx", (long long)8); *(uint8_t*)0x20000115 = 0x2c; memcpy((void*)0x20000116, "iocharset", 9); *(uint8_t*)0x2000011f = 0x3d; memcpy((void*)0x20000120, "cp949", 5); *(uint8_t*)0x20000125 = 0x2c; memcpy((void*)0x20000126, "errors=continue", 15); *(uint8_t*)0x20000135 = 0; memcpy((void*)0x20000136, "discard", 7); *(uint8_t*)0x2000013d = 0x3d; sprintf((char*)0x2000013e, "0x%016llx", (long long)0x3f); *(uint8_t*)0x20000150 = 0x2c; memcpy((void*)0x20000151, "discard", 7); *(uint8_t*)0x20000158 = 0x2c; memcpy((void*)0x20000159, "iocharset", 9); *(uint8_t*)0x20000162 = 0x3d; memcpy((void*)0x20000163, "iso8859-13", 10); *(uint8_t*)0x2000016d = 0x2c; memcpy((void*)0x2000016e, "discard", 7); *(uint8_t*)0x20000175 = 0x3d; sprintf((char*)0x20000176, "0x%016llx", (long long)9); *(uint8_t*)0x20000188 = 0x2c; memcpy((void*)0x20000189, "nodiscard", 9); *(uint8_t*)0x20000192 = 0x2c; memcpy((void*)0x20000193, "mask", 4); *(uint8_t*)0x20000197 = 0x3d; memcpy((void*)0x20000198, "^MAY_APPEND", 11); *(uint8_t*)0x200001a3 = 0x2c; memcpy((void*)0x200001a4, "measure", 7); *(uint8_t*)0x200001ab = 0x2c; memcpy((void*)0x200001ac, "pcr", 3); *(uint8_t*)0x200001af = 0x3d; sprintf((char*)0x200001b0, "%020llu", (long long)0x12); *(uint8_t*)0x200001c4 = 0x2c; memcpy((void*)0x200001c5, "hash", 4); *(uint8_t*)0x200001c9 = 0x2c; memcpy((void*)0x200001ca, "subj_type", 9); *(uint8_t*)0x200001d3 = 0x3d; memset((void*)0x200001d4, 39, 1); *(uint8_t*)0x200001d5 = 0x2c; *(uint8_t*)0x200001d6 = 0; memcpy( (void*)0x20006580, "\x78\x9c\xec\xdd\xbd\x8f\x1c\x67\x1d\x07\xf0\xdf\xec\xdb\xbd\x98\xd8" "\xa7\x14\x51\xb0\x10\xba\x38\xe1\x25\x84\xf8\x35\x18\x43\x80\x24\x05" "\x14\x34\x29\x90\x5b\x64\xeb\x72\x09\x16\x0e\x20\xdb\x20\x27\xb2\xf0" "\x45\xd7\x50\x50\xf1\x17\x80\x90\x28\x11\xa2\x44\x14\xfc\x01\x29\x68" "\xe9\xa8\xa8\xb0\x64\x23\x81\x52\x31\x68\xee\x9e\xc7\x9e\x5b\xdf\x7a" "\xcf\x9c\x6f\x67\x7d\xcf\xe7\x23\x9d\x67\x7e\xfb\xcc\xdc\x3e\x73\xdf" "\x9d\x7d\xf1\xcc\xec\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x7c\xf7\x3b\xdf\x3b\x53\x45\xc4\xa5\x9f\xa5\x1b\x56" "\x22\x3e\x15\xfd\x88\x5e\xc4\x52\x53\xaf\x46\xc4\xd2\xea\x4a\x5e\x7e" "\x10\x11\xcf\xc7\x56\x73\x3c\x17\x11\xc3\x85\x88\x66\xfd\xad\x7f\x8e" "\x45\xbc\x16\x11\x1f\x1f\x8d\xb8\x7b\xef\xd6\x5a\x73\xf3\xd9\x3d\xf6" "\xe3\xdb\x7f\xf8\xdb\x6f\xbf\x7f\xe4\xed\xbf\xfe\x7e\x78\xea\x3f\x7f" "\xbc\xd1\x7f\x7d\xd2\x72\x37\x6f\xfe\xf2\xdf\x7f\xba\xbd\xbf\x6d\x06" "\x00\x00\x80\xd2\xd4\x75\x5d\x57\xe9\x63\xfe\xf1\xf4\xf9\xbe\xd7\x75" "\xa7\x00\x80\x99\xc8\xaf\xff\x75\x92\x6f\x3f\xf4\xf5\xaf\xfe\xf1\xf6" "\x9f\xe7\xa9\x3f\x6a\xb5\x5a\xad\x56\xcf\xa0\x6e\xab\x77\x77\xbb\x5d" "\x44\xc4\x46\x7b\x9d\xe6\x3d\x83\xc3\xf1\x00\xf0\x94\xd9\x88\x4f\xba" "\xee\x02\x1d\x92\x7f\xd1\x06\x11\x71\xa4\xeb\x4e\x00\x73\xad\xea\xba" "\x03\x1c\x88\xbb\xf7\x6e\xad\x55\x29\xdf\xaa\xfd\x7a\xb0\xba\xdd\x9e" "\xcf\x05\xd9\x91\xff\x46\x75\xff\xfa\x8e\x49\xd3\x69\xc6\xcf\x31\x99" "\xd5\xe3\x6b\x33\xfa\xf1\xec\x84\xfe\x2c\xcd\xa8\x0f\xf3\x24\xe7\xdf" "\x1b\xcf\xff\xd2\x76\xfb\x28\x2d\x77\xd0\xf9\xcf\xca\xa4\xfc\x47\xdb" "\x97\x3e\x15\x27\xe7\xdf\x1f\xcf\x7f\xcc\xe1\xc9\xbf\xb7\x6b\xfe\xa5" "\xca\xf9\x0f\x1e\x2b\xff\xbe\xfc\x01\x00\x00\x00\x00\x60\x8e\xe5\xff" "\xff\x5f\xe9\xf8\xf8\xef\xc2\xfe\x37\x25\xfb\xc1\xa3\x1a\x1f\x75\xfc" "\x77\xf5\xc9\xf5\x01\x00\x00\x00\x00\x00\x00\x00\x66\x6a\xbf\xe3\xff" "\xdd\x67\xfc\x3f\x00\x00\x00\x98\x5b\xcd\x67\xf5\xc6\xaf\x8f\x3e\xb8" "\x6d\xd2\x77\xb1\x35\xb7\x5f\xac\x22\x9e\x19\x5b\x1e\x28\x4c\xba\x58" "\x66\xb9\xeb\x7e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x49\x06" "\xdb\xe7\xf0\x5e\xac\x22\x86\x11\xf1\xcc\xf2\x72\x5d\xd7\xcd\x4f\xdb" "\x78\xfd\xb8\xf6\xbb\xfe\xd3\xae\xf4\xed\x87\x92\x75\xfd\x24\x0f\x00" "\x00\xdb\x3e\x3e\x3a\x76\x2d\x7f\x15\xb1\x18\x11\x17\xd3\x77\xfd\x0d" "\x97\x97\x97\xeb\x7a\x71\x69\xb9\x5e\xae\x97\x16\xf2\xfb\xd9\xd1\xc2" "\x62\xbd\xd4\xfa\x5c\x9b\xa7\xcd\x6d\x0b\xa3\x3d\xbc\x21\x1e\x8c\xea" "\xe6\x97\x2d\xb6\xd6\x6b\x9b\xf6\x79\x79\x5a\xfb\xf8\xef\x6b\xee\x6b" "\x54\xf7\xf7\xd0\xb1\x27\x64\x98\xfe\x9a\x13\x9a\x3b\x0a\x1b\x00\x92" "\xed\x57\xa3\xbb\x5e\x91\x0e\x99\xba\x3e\x36\xe9\xcd\x07\xec\x60\xff" "\x3f\x7c\xec\xff\xec\x45\xd7\x8f\x53\x00\x00\x00\xe0\xe0\xd5\x75\x5d" "\x57\xe9\xeb\xbc\x8f\xa7\x63\xfe\xbd\xae\x3b\x05\x00\xcc\x44\x7e\xfd" "\x1f\x3f\x2e\xa0\x3e\x1c\x75\x7d\x6c\xbe\xfa\xa3\x56\xab\xd5\xea\x6e" "\xeb\xb6\x7a\x77\xb7\xdb\x45\x54\xb1\xd1\x5e\xa7\x79\xcf\x60\x38\x7e" "\x00\x78\xca\x6c\xc4\x27\x5d\x77\x81\x0e\xc9\xbf\x68\x83\x88\x78\xbe" "\xeb\x4e\x00\x73\xad\xea\xba\x03\x1c\x88\xbb\xf7\x6e\xad\x55\x29\xdf" "\xaa\xfd\x7a\x90\xc6\x77\xcf\xe7\x82\xec\xc8\x7f\xa3\xda\x5a\x2f\xaf" "\xbf\xdb\x74\x9a\xf1\x73\x4c\x66\xf5\xf8\xda\x8c\x7e\x3c\x3b\xa1\x3f" "\xcf\xcd\xa8\x0f\xf3\x24\xe7\xdf\x1b\xcf\xff\xd2\x76\xfb\x28\x2d\x77" "\xd0\xf9\xcf\xca\xa4\xfc\x9b\xed\x5c\xe9\xa0\x3f\x5d\xcb\xf9\xf7\xc7" "\xf3\x1f\x73\x78\xf2\xef\xed\x9a\x7f\xa9\x72\xfe\x83\xc7\xca\xbf\x2f" "\x7f\x00\x00\x00\x00\x00\x98\x63\xf9\xff\xff\x57\x1c\xff\xcd\x9b\x0c" "\x00\x00\x00\x00\x00\x00\x00\x4f\x9d\xbb\xf7\x6e\xad\xe5\xeb\x5e\xf3" "\xf1\xff\xcf\xec\xb2\x9c\xeb\x3f\x0f\xa7\x9c\x7f\x25\xff\x22\xe5\xfc" "\x7b\x63\xf9\x7f\x71\x6c\xb9\x7e\x6b\xfe\xce\x5b\x0f\xf2\xff\xd7\xbd" "\x5b\x6b\xbf\xbb\xf1\xcf\x4f\xe7\xe9\x5e\xf3\x5f\xc8\x33\x55\x7a\x64" "\x55\xe9\x11\x51\xa5\x7b\xaa\x06\x69\xba\x9f\xad\x7b\xd8\xe6\xb0\x3f" "\x6a\xee\x69\x58\xf5\xfa\x83\x74\xce\x4f\x3d\x7c\x37\xae\xc4\xd5\x58" "\x8f\xd3\x3b\x96\xed\xa5\xbf\xc7\x83\xf6\x33\x3b\xda\x9b\x9e\x0e\x77" "\xb4\x9f\xdd\xd1\x3e\x78\xa8\xfd\xdc\x8e\xf6\x61\xfa\xde\x81\x7a\x29" "\xb7\x9f\x8c\xb5\xf8\x71\x5c\x8d\x77\xb6\xda\x9b\xb6\x85\x29\xdb\xbf" "\x38\xa5\xbd\x9e\xd2\x9e\xf3\xef\xdb\xff\x8b\x94\xf3\x1f\xb4\x7e\x9a" "\xfc\x97\x53\x7b\x35\x36\x6d\xdc\xf9\xa8\xf7\xd0\x7e\xdf\x9e\xee\x76" "\x3f\x6f\x5e\xf9\xec\x2f\x4e\x1f\xfc\xe6\x4c\xb5\x19\xfd\xfb\xdb\xd6" "\xd6\x6c\xdf\x89\x0e\xfa\xb3\xf5\x37\x39\x32\x8a\x9f\x5e\x5f\xbf\x76" "\xf2\xe6\xe5\x1b\x37\xae\x9d\x89\x34\xd9\x71\xeb\xd9\x48\x93\x27\x2c" "\xe7\x3f\xdc\xfa\x59\x78\xf0\xfc\xff\xe2\x76\x7b\x7e\xde\x6f\xef\xaf" "\x77\x3e\x1a\x3d\x76\xfe\xf3\x62\x33\x06\x13\xf3\x7f\xb1\x35\xdf\x6c" "\xef\xcb\x33\xee\x5b\x17\x72\xfe\xa3\xf4\x93\xf3\x7f\x27\xb5\xef\xbe" "\xff\x3f\xcd\xf9\x4f\xde\xff\x5f\xe9\xa0\x3f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf0\x28\x75\x5d\x6f\x5d\x22\xfa\x66\x44\x9c" "\x4f\xd7\xff\x74\x75\x6d\x26\x00\x30\x5b\xf9\xf5\xbf\x4e\xf2\xed\x6a" "\xb5\x5a\xad\x56\xab\x0f\x5f\xdd\x56\xef\xee\x8d\x76\x11\x11\x7f\x69" "\xaf\xd3\xbc\x67\xf8\xf9\x6e\xbf\x0c\x00\x98\x67\xff\x8d\x88\xbf\x77" "\xdd\x09\x3a\x23\xff\x82\xe5\xef\xfb\x6b\xa6\x2f\x75\xdd\x19\x60\xa6" "\xae\x7f\xf0\xe1\x0f\x2f\x5f\xbd\xba\x7e\xed\x7a\xd7\x3d\x01\x00\x00" "\x00\x00\x00\x00\x00\xfe\x5f\x79\xfc\xcf\xd5\xd6\xf8\xcf\x2f\x45\xc4" "\xca\xd8\x72\x3b\xc6\x7f\x7d\x2b\x56\xf7\x3b\xfe\xe7\x20\xcf\xdc\x1f" "\x60\xf4\x09\x0f\xf4\x3d\xc1\x66\x6f\xd4\xef\xb5\x86\x1b\x7f\x21\xb6" "\xc6\xe7\x3e\x39\x69\xfc\xef\x13\xf1\xe8\xf1\xbf\x07\x53\xee\x6f\x38" "\xa5\x7d\x34\xa5\x7d\x61\x4a\xfb\xe2\x94\xf6\x5d\x2f\xf4\x68\xc9\xf9" "\xbf\xd0\x1a\xef\xbc\xc9\xff\xf8\xd8\xf0\xeb\x25\x8c\xff\x3a\x3e\xe6" "\x7d\x09\x72\xfe\x27\x5a\x8f\xe7\x26\xff\x2f\x8c\x2d\xd7\xce\xbf\xfe" "\xcd\xdc\xe5\xbf\xb1\xd7\x05\x37\xa3\xb7\x23\xff\x53\x37\xde\xff\xc9" "\xa9\xeb\x1f\x7c\xf8\xea\x95\xf7\x2f\xbf\xb7\xfe\xde\xfa\x8f\xce\x9d" "\x39\x73\xfa\xdc\xf9\xf3\x17\x2e\x5c\x38\xf5\xee\x95\xab\xeb\xa7\xb7" "\xff\x3d\x98\x5e\xcf\x81\x9c\x7f\x1e\xfb\xda\x79\xa0\x65\xc9\xf9\xe7" "\xcc\xe5\x5f\x96\x9c\xff\xe7\x52\x2d\xff\xb2\xe4\xfc\x3f\x9f\x6a\xf9" "\x97\x25\xe7\x9f\xdf\xef\xc9\xbf\x2c\x39\xff\xfc\xd9\x47\xfe\x65\xc9" "\xf9\xbf\x9c\x6a\xf9\x97\x25\xe7\xff\xa5\x54\xcb\xbf\x2c\x39\xff\x57" "\x52\x2d\xff\xb2\xe4\xfc\xbf\x9c\x6a\xf9\x97\x25\xe7\xff\x6a\xaa\xe5" "\x5f\x96\x9c\xff\xc9\x54\xcb\xbf\x2c\x39\xff\x53\xa9\xde\x43\xfe\xbe" "\x1e\xfe\x10\xc9\xf9\xe7\x23\x5c\xf6\xff\xb2\xe4\xfc\xf3\x99\x0d\xf2" "\x2f\x4b\xce\xff\x6c\xaa\xe5\x5f\x96\x9c\xff\xb9\x54\xcb\xbf\x2c\x39" "\xff\xd7\x52\x2d\xff\xb2\xe4\xfc\xbf\x92\x6a\xf9\x97\x25\xe7\x7f\x3e" "\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\xff\xf5\x54\xcb\xbf\x2c\x39" "\xff\xd7\x53\x2d\xff\xb2\xe4\xfc\xbf\x91\x6a\xf9\x97\x25\xe7\xff\xcd" "\x54\xcb\xbf\x2c\x39\xff\x6f\xa5\x5a\xfe\x65\xc9\xf9\xbf\x91\x6a\xf9" "\x97\xe5\xc1\xf7\xff\x9b\x31\x63\xc6\x4c\x9e\xe9\xfa\x99\x09\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x18\x37\x8b\xd3\x89\xbb\xde\x46\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x7f" "\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\x07\x0e\x04\x00\x00" "\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\x0a\x7b\xf7\x16\x23\xe7\x59\xdf\x0f\xfc\x9d\x3d" "\xd8\x6b\x07\x88\x81\x90\xbf\x93\xbf\x81\xb5\x63\x8c\x71\x96\xec\xfa" "\x10\x1f\x68\x5d\x4c\x38\x36\x40\x29\xe4\x50\xd2\x43\x6c\xd7\xbb\x76" "\x16\x7c\x8a\x77\x5d\x92\x34\x92\x4d\x03\x25\x12\x46\x45\x15\x55\xd3" "\x8b\xb6\x80\xa2\x36\x37\x15\x56\xc5\x05\xad\x52\x94\x8b\xaa\x87\xab" "\xa6\xbd\xa0\x37\x15\x55\x25\xa4\x46\x55\x40\x01\x09\xa9\xad\xda\x6c" "\x35\xf3\x3e\xcf\xb3\x33\xb3\xb3\x33\xeb\x78\x6c\xcf\xbe\xcf\xe7\x23" "\xc5\x3f\xef\xce\x3b\xf3\xbe\xf3\xce\x33\xb3\xfb\x5d\xe7\xbb\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xb3\xcd\xef\x9f" "\xf9\x52\xad\x28\x8a\xfa\x7f\x8d\x3f\x36\x14\xc5\xeb\xea\x7f\x5f\x37" "\xbe\xa1\xf1\xb9\xf7\xdc\xe8\x23\x04\x00\x00\x00\xae\xd6\xff\x36\xfe" "\x7c\xe5\xe6\xf4\x89\x43\x2b\xb8\x52\xd3\x36\x7f\xfb\xb6\x7f\xf8\xf6" "\xc2\xc2\xc2\x42\xf1\xe9\xe1\xdf\x1b\xfd\xda\xc2\x42\xba\x60\xbc\x28" "\x46\xd7\x16\x45\xe3\xb2\xe8\xf2\xbf\x3d\x54\x6b\xde\x26\x78\xaa\x18" "\xab\x0d\x35\x7d\x3c\xd4\x63\xf7\xc3\x3d\x2e\x1f\xe9\x71\xf9\x68\x8f" "\xcb\xd7\xf4\xb8\x7c\x6d\x8f\xcb\xc7\x7a\x5c\xbe\xe4\x04\x2c\xb1\xae" "\xfc\x79\x4c\xe3\xc6\xb6\x36\xfe\xba\xa1\x3c\xa5\xc5\x2d\xc5\x68\xe3" "\xb2\xad\x1d\xae\xf5\x54\x6d\xed\xd0\x50\xfc\x59\x4e\x43\xad\x71\x9d" "\x85\xd1\xe3\xc5\x6c\x71\xb2\x98\x29\xa6\x5a\xb6\x2f\xb7\xad\x35\xb6" "\x7f\x7e\x73\x7d\x5f\x1f\x29\xe2\xbe\x86\x9a\xf6\xb5\xa9\xbe\x42\x7e" "\xfc\xe4\xb1\x78\x0c\xb5\x70\x8e\xb7\xb6\xec\x6b\xf1\x36\xa3\x1f\xbe" "\xaf\x18\xff\xc9\x8f\x9f\x3c\xf6\x27\xf3\x2f\xdf\xd6\x69\xf6\x3c\x0d" "\x2d\xb7\x57\x1e\xe7\xf6\x2d\xf5\xe3\xfc\x42\xf8\x4c\x79\xac\xb5\x62" "\x6d\x3a\x27\xf1\x38\x87\x9a\x8e\x73\x53\x87\xc7\x64\xb8\xe5\x38\x6b" "\x8d\xeb\xd5\xff\xde\x7e\x9c\xaf\xac\xf0\x38\x87\x17\x0f\xf3\xba\x6a" "\x7f\xcc\xc7\x8a\xa1\xc6\xdf\x5f\x6c\x9c\xa7\x91\xe6\x1f\xeb\xa5\xf3" "\xb4\x29\x7c\xee\x3f\xef\x28\x8a\xe2\xe2\xe2\x61\xb7\x6f\xb3\x64\x5f" "\xc5\x50\xb1\xbe\xe5\x33\x43\x8b\x8f\xcf\x58\xb9\x22\xeb\xb7\x51\x5f" "\x4a\x6f\x2a\x46\xae\x68\x9d\x6e\x5e\xc1\x3a\xad\xcf\xe9\xad\xad\xeb" "\xb4\xfd\x39\x11\x1f\xff\xcd\xe1\x7a\x23\xcb\x1c\x43\xf3\xc3\xf4\xc3" "\xcf\xaf\x59\xf2\xb8\x5f\xe9\x3a\x8d\xea\xf7\x7a\xb9\xe7\x4a\xfb\x1a" "\xec\xf7\x73\x65\x50\xd6\x60\x5c\x17\x2f\x36\xee\xf4\xd3\x1d\xd7\xe0" "\xd6\x70\xff\x9f\xdc\xb6\xfc\x1a\xec\xb8\x76\x3a\xac\xc1\x74\xbf\x9b" "\xd6\xe0\x96\x5e\x6b\x70\x68\xcd\x70\xe3\x98\xd3\x83\x50\x6b\x5c\x67" "\x71\x0d\xee\x6c\xd9\x7e\xb8\xb1\xa7\x5a\x63\xbe\xb4\xad\xfb\x1a\x9c" "\x9c\x3f\x75\x76\x72\xee\xf1\x27\xde\x3d\x7b\xea\xe8\x89\x99\x13\x33" "\xa7\x77\xef\xdc\x39\xb5\x7b\xef\xde\xfd\xfb\xf7\x4f\x1e\x9f\x3d\x39" "\x33\x55\xfe\xf9\x1a\xcf\xf6\xe0\x5b\x5f\x0c\xa5\xe7\xc0\x96\x70\xee" "\xe2\x73\xe0\x9d\x6d\xdb\x36\x2f\xd5\x85\x6f\xf4\xef\x79\x38\xd6\xe5" "\x79\xb8\xa1\x6d\xdb\x7e\x3f\x0f\x47\xda\xef\x5c\xed\xfa\x3c\x21\x97" "\xae\xe9\xf2\xb9\x71\x7f\xfd\xa4\x8f\x5d\x1a\x2a\x96\x79\x8e\x35\x1e" "\x9f\x1d\x57\xff\x3c\x4c\xf7\xbb\xe9\x79\x38\xd2\xf4\x3c\xec\xf8\x35" "\xa5\xc3\xf3\x70\x64\x05\xcf\xc3\xfa\x36\x67\x77\xac\xec\x7b\x96\x91" "\xa6\xff\x3a\x1d\xc3\xb5\xfa\x5a\xb0\xa1\x69\x0d\xb6\x7f\x3f\xd2\xbe" "\x06\xfb\xfd\xfd\xc8\xa0\xac\xc1\xb1\xb0\x2e\xfe\x65\xc7\xf2\x5f\x0b" "\x36\x85\xe3\x7d\x7a\xe2\x4a\xbf\x1f\x19\x5e\xb2\x06\xd3\xdd\x0d\xaf" "\x3d\xf5\xcf\xa4\xef\xf7\xc7\xf6\x37\x46\xa7\x75\x79\x7b\xfd\x82\x9b" "\xd6\x14\xe7\xe7\x66\xce\xdd\xf5\xd8\xd1\xf9\xf9\x73\x3b\x8b\x30\xae" "\x8b\x37\x37\xad\x95\xf6\xf5\xba\xbe\xe9\x3e\x15\x4b\xd6\xeb\xd0\x15" "\xaf\xd7\x43\xb3\x6f\x7b\xfa\xf6\x0e\x9f\xdf\x10\xce\xd5\xd8\xbb\xeb" "\x7f\x8c\x2d\xfb\x58\xd5\xb7\xd9\x73\x57\xf7\xc7\xaa\xf1\xd5\xad\xf3" "\xf9\x6c\xf9\xec\xae\x22\x8c\x3e\xbb\xde\xe7\xb3\xd3\x57\xf3\xfa\xf9" "\x4c\x59\xb2\xcb\xf9\xac\x6f\xf3\x85\xc9\xab\xff\x5e\x3c\xe5\xd2\xa6" "\xd7\xdf\xd1\x65\x5e\x7f\x63\xee\x7f\xb5\xdc\x5f\xba\xa9\xa7\x86\x47" "\x47\xca\xe7\xef\x70\x3a\x3b\xa3\x2d\xaf\xc7\xad\x0f\xd5\x48\xe3\xb5" "\xab\xd6\xd8\xf7\x2b\x93\x2b\x7b\x3d\x1e\x0d\xff\x5d\xef\xd7\xe3\x5b" "\xba\xbc\x1e\x6f\x6c\xdb\xb6\xdf\xaf\xc7\xa3\xed\x77\x2e\xbe\x1e\xd7" "\x7a\xfd\xb4\xe3\xea\xb4\x3f\x9e\x63\x61\x9d\x9c\x9c\xea\xfe\x7a\x5c" "\xdf\x66\xe3\xae\x2b\x5d\x93\x23\x5d\x5f\x8f\xef\x08\xb3\x16\xce\xff" "\xbb\x42\x52\x48\xb9\xa8\x69\xed\x2c\xb7\x6e\xd3\xbe\x46\x46\x46\xc3" "\xfd\x1a\x89\x7b\x68\x5d\xa7\xbb\x5b\xb6\x1f\x0d\xd9\xac\xbe\xaf\xe7" "\x76\xbd\xb6\x75\xba\xfd\x8e\xf2\xb6\x86\xd3\xbd\x5b\x74\xbd\xd6\xe9" "\x78\xdb\xb6\xfd\x5e\xa7\xe9\xf5\x6a\xb9\x75\x5a\xeb\xf5\xd3\xb7\xd7" "\xa6\xfd\xf1\x1c\x0b\xeb\xe2\x96\xdd\xdd\xd7\x69\x7d\x9b\x17\xf6\x5c" "\xfd\x6b\xe7\xba\xf8\xd7\xa6\xd7\xce\x35\xbd\xd6\xe0\xe8\xf0\x9a\xfa" "\x31\x8f\xa6\x45\x58\xbe\xde\x2f\xac\x8b\x6b\xf0\xae\xe2\x58\x71\xa6" "\x38\x59\x4c\x37\x2e\x5d\xd3\x58\x4f\xb5\xc6\xbe\x26\xee\x5e\xd9\x1a" "\x5c\x13\xfe\xbb\xde\xaf\x95\x1b\xbb\xac\xc1\xed\x6d\xdb\xf6\x7b\x0d" "\xa6\xaf\x63\xcb\xad\xbd\xda\xc8\xd2\x3b\xdf\x07\xed\x8f\xe7\x58\x58" "\x17\xcf\xdc\xdd\x7d\x0d\xd6\xb7\xf9\xc0\xbe\xfe\x7e\xef\xba\x3d\x7c" "\x26\x6d\xd3\xf4\xbd\x6b\xfb\xcf\xd7\x96\xfb\x99\xd7\xed\x6d\xa7\xe9" "\x5a\xfe\xcc\xab\x7e\x9c\x7f\xbd\xaf\xfb\xcf\x66\xeb\xdb\x9c\xdc\x7f" "\xa5\x39\xb3\xfb\x79\xba\x33\x7c\xe6\xa6\x0e\xe7\xa9\xfd\xf9\xbb\xdc" "\x73\x6a\xba\xb8\x3e\xe7\x69\x63\x38\xce\x97\xf7\x2f\x7f\x9e\xea\xc7" "\x53\xdf\xe6\x6b\x07\x56\xb8\x9e\x0e\x15\x45\x71\xe1\xd1\x7b\x1a\x3f" "\xef\x0d\xff\xbe\xf2\xe7\xe7\xbf\xf7\xed\x96\x7f\x77\xe9\xf4\x6f\x3a" "\x17\x1e\xbd\xe7\x47\xaf\x3f\xfe\x37\x57\x72\xfc\x00\xac\x7e\xaf\x96" "\x63\x7d\xf9\xb5\xae\xe9\x5f\xa6\x56\xf2\xef\xff\x00\x00\x00\xc0\xaa" "\x10\x73\xff\x50\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\x7f\xfc\xbf" "\xc2\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x91\x30\x93\x4c\xf2\xff" "\xc6\x0f\xbc\x3c\xfb\xea\x85\x22\x35\xf3\x17\x82\x78\x79\x3a\x0d\xf7" "\x96\xdb\xc5\x8e\xeb\x54\xf8\x78\x7c\x61\x51\xfd\xf3\xf7\x3c\x3b\xf3" "\xd3\xbf\xbc\xb0\xb2\x7d\x0f\x15\x45\xf1\x3f\xf7\xfe\x66\xc7\xed\x37" "\xde\x1b\x8f\xab\x34\x1e\x8e\xf3\xf2\x07\x5b\x3f\xbf\xf4\x8a\x17\x56" "\xb4\xff\x23\x0f\x2c\x6e\xd7\xdc\x5f\xff\x7a\xb8\xfd\x78\x7f\x56\xba" "\x0c\x3a\x55\x70\xa7\x8a\xa2\x78\xfe\xe6\xaf\x34\xf6\x33\xfe\xd0\xa5" "\xc6\x7c\xe1\xde\x23\x8d\xf9\xa9\x8b\x4f\x3f\x55\xdf\xe6\x95\x03\xe5" "\xc7\xf1\xfa\x2f\xbd\xb9\xdc\xfe\x0f\x43\xf9\xf7\xd0\xf1\xa3\x2d\xd7" "\x7f\x29\x9c\x87\x1f\x84\x39\xf5\xd1\xce\xe7\x23\x5e\xef\x5b\x97\xde" "\xb5\x69\xdf\x83\x8b\xfb\x8b\xd7\xab\x6d\x79\x43\xe3\x6e\x3f\xf3\x70" "\x79\xbb\xf1\xf7\xe4\x7c\xf5\xa9\x72\xfb\x78\x9e\x97\x3b\xfe\xbf\xfa" "\xf2\x73\xdf\xaa\x6f\xff\xd8\x3b\x3a\x1f\xff\x85\xa1\xce\xc7\xff\x5c" "\xb8\xdd\x67\xc3\xfc\xaf\xb7\x96\xdb\x37\x3f\x06\xf5\x8f\xe3\xf5\xbe" "\x18\x8e\x3f\xee\x2f\x5e\xef\xae\x6f\x7e\xb7\xe3\xf1\x5f\xfe\x52\xb9" "\xfd\xd9\x0f\x95\xdb\x1d\x09\x33\xee\x7f\x7b\xf8\x78\xeb\x87\x5e\x9e" "\x6d\x3e\x5f\x8f\xd5\x8e\xb6\xdc\xaf\xe2\xc3\xe5\x76\x71\xff\x53\xdf" "\xfb\x9d\xc6\xe5\xf1\xf6\xe2\xed\xb7\x1f\xff\xd8\xe1\x4b\x2d\xe7\xa3" "\x7d\x7d\xbc\xf0\x4f\xe5\xed\x4c\xb6\x6d\x1f\x3f\x1f\xf7\x13\xfd\x45" "\xdb\xfe\xeb\xb7\xd3\xbc\x3e\xe3\xfe\x9f\xfb\xed\x23\x2d\xe7\xb9\xd7" "\xfe\x2f\x7f\xea\xa5\xb7\xd6\x6f\xb7\x7d\xff\x77\xb6\x6d\x77\xf6\xd1" "\x1d\x8d\xfd\x2f\xde\x5e\xeb\x6f\x6c\xfa\xa3\x2f\x7e\xa5\xe3\xfe\xe2" "\xf1\x1c\xfa\xb3\xb3\x2d\xf7\xe7\xd0\x27\xc3\xf3\x38\xec\xff\x99\x87" "\xc3\x7a\x0c\x97\xff\xf7\xe5\xf2\xf6\xda\x7f\xbb\xc2\x91\x4f\xb6\xbe" "\xfe\xc4\xed\xbf\xbe\xe1\x42\xcb\xfd\x89\x3e\xf2\x93\x72\xff\x97\xdf" "\x7b\xa2\x31\xff\x7d\xfc\xa7\x7f\x70\xd3\xeb\x5e\xff\x86\x8b\x6f\xaf" "\x9f\xbb\xa2\x78\xf1\xbe\xf2\xf6\x7a\xed\xff\xc4\x1f\x9f\x69\x39\xfe" "\x6f\xdc\x5a\x9e\x8f\x78\x79\xec\xe8\xb7\xef\x7f\x39\x71\xff\xe7\x3e" "\x37\x71\xfa\xcc\xdc\xf9\xd9\xe9\xa6\xb3\xda\xf8\xdd\x39\x1f\x2b\x8f" "\x67\xed\xd8\xba\xf5\xf5\xe3\xbd\x39\xbc\xb6\xb6\x7f\x7c\xf8\xcc\xfc" "\x23\x33\xe7\xc6\xa7\xc6\xa7\x8a\x62\xbc\xba\xbf\x42\xef\x35\xfb\x66" "\x98\x3f\x2a\xc7\xc5\x2b\xbd\xfe\x8e\x07\xc2\xe3\x79\xfb\xef\x3f\xbf" "\x7e\xdb\x3f\x7e\x39\x7e\xfe\x9f\xef\x2f\x3f\x7f\xe9\xa3\xe5\xd7\xad" "\x77\x86\xed\xbe\x1a\x3e\xbf\xa1\x7c\xfc\x16\x6a\x57\xb9\xff\x67\x36" "\xdf\xda\x78\x7e\xd7\x5e\x28\x3f\x6e\xe9\xb1\xf7\xc1\xa6\xad\xff\xb1" "\x7f\x45\x1b\x86\xfb\xdf\xfe\x7d\x41\x5c\xef\x67\xdf\xf2\x48\xe3\x3c" "\xd4\x2f\x6b\x7c\xdd\x88\xcf\xeb\xab\x3c\xfe\xef\x4f\x97\xb7\xf3\x9d" "\x70\x5e\x17\xc2\x6f\x66\xde\x72\xeb\xe2\xfe\x9a\xb7\x8f\xbf\x1b\xe1" "\xd2\x7d\xe5\xf3\xfd\xaa\xcf\x5f\x78\x99\x8b\x8f\xeb\x9f\x86\xc7\xfb" "\xe3\x3f\x28\x6f\x3f\x1e\x57\xbc\xbf\xdf\x0f\xdf\xc7\x7c\x77\x63\xeb" "\xeb\x5d\x5c\x1f\xdf\xb9\x30\xd4\x7e\xfb\x8d\xdf\xe2\x71\x31\xbc\x9e" "\x14\x17\xcb\xcb\xe3\x56\xf1\x7c\x5f\x7a\xe5\xd6\x8e\x87\x17\x7f\x0f" "\x49\x71\xf1\xb6\xc6\xc7\xbf\x9b\x6e\xe7\xb6\x2b\xba\x9b\xcb\x99\x7b" "\x7c\x6e\xf2\xe4\xec\xe9\xf3\x8f\x4d\xce\xcf\xcc\xcd\x4f\xce\x3d\xfe" "\xc4\xe1\x53\x67\xce\x9f\x9e\x3f\xdc\xf8\x5d\x9e\x87\x3f\xd3\xeb\xfa" "\x8b\xaf\x4f\xeb\x1b\xaf\x4f\xd3\x33\x7b\xf7\x14\x53\xeb\x8a\xa2\x38" "\x53\x4c\x5d\x87\x17\xac\x6b\x73\xfc\xf5\xbf\xad\xec\xf8\xcf\x3e\x70" "\x6c\x7a\xdf\xd4\xb6\xe9\x99\xe3\x47\xcf\x1f\x9f\x7f\xe0\xec\xcc\xb9" "\x13\xc7\xe6\xe6\x8e\xcd\x4c\xcf\x6d\x3b\x7a\xfc\xf8\xcc\xe7\x7a\x5d" "\x7f\x76\xfa\xe0\xce\x5d\x07\x76\xef\xdb\x35\x71\x62\x76\xfa\xe0\xfe" "\x03\x07\x76\x1f\x98\x98\x3d\x7d\xa6\x7e\x18\xe5\x41\xf5\xb0\x77\xea" "\xb3\x13\xa7\xcf\x1d\x6e\x5c\x65\xee\xe0\x9e\x03\x3b\xef\xbe\x7b\xcf" "\xd4\xc4\xa9\x33\xd3\x33\x07\xf7\x4d\x4d\x4d\x9c\xef\x75\xfd\xc6\xd7" "\xa6\x89\xfa\xb5\x7f\x63\xe2\xdc\xcc\xc9\xa3\xf3\xb3\xa7\x66\x26\xe6" "\x66\x9f\x98\x39\xb8\xf3\xc0\xde\xbd\xbb\x7a\xfe\x36\xc0\x53\x67\x8f" "\xcf\x8d\x4f\x9e\x3b\x7f\x7a\xf2\xfc\xdc\xcc\xb9\xc9\xf2\xbe\x8c\xcf" "\x37\x3e\x5d\xff\xda\xd7\xeb\xfa\x54\xd3\xdc\xbf\x96\xdf\xcf\xb6\xab" "\x95\xbf\x88\xaf\xf8\xc4\x9d\x7b\xd3\xef\x67\xad\x7b\xf6\xf3\xcb\xde" "\x54\xb9\x49\xdb\x2f\x10\x7d\x39\xfc\x2e\x9a\xbf\x7f\xe3\xd9\xfd\x2b" "\xf9\x38\xe6\xfe\xd1\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe" "\x35\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x6b\xc3\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\xc7\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\x55\xef\xff\xc7\xfe\xbc\xfe\x7f\x1e\x6e\x70\xff\xff" "\xaa\xf7\xaf\xff\xaf\xff\x5f\xbd\xfe\xff\xca\xfb\xf3\xab\xfd\xf8\xf5" "\xff\xf5\xff\x59\x6a\xd0\xfa\xff\x31\xf7\xaf\x2b\x8a\x2c\xf3\x3f\x00" "\x00\x00\xe4\x20\xe6\xfe\xf5\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\x37\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x2e\xcc\x24" "\x93\xfc\xaf\xff\xbf\xa2\xfe\xff\xae\x5e\x85\x2b\xfd\xff\xd6\xe3\xd7" "\xff\xef\xbc\x3e\xf4\xff\x6f\x40\xff\x3f\x3e\x38\xfa\xff\xd9\xb8\xe2" "\xfe\xfd\x83\xf7\xb7\x7c\xa8\xff\x1f\xe8\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\x73\xd5\x46\x97\xbd\xe4\x46\xf5\xff\x63\xee\x7f\x7d\x98\x49" "\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x1b\xc2\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\x6f\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\xdf\x10\x66\x92\x49\xfe\xd7\xff\xf7\xfe\xff\xfa\xff\xfa\xff\x95\xee" "\xff\x5f\xed\xfb\xff\x37\x1d\x8c\xfe\xff\xea\xe0\xfd\xff\xbb\xd3\xff" "\xef\xe1\x35\xf7\xff\xc7\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\x60\xd0" "\xde\xff\x3f\xe6\xfe\x37\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31" "\xf7\xbf\x29\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xcd\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xb7\x84\x99\x64\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x3b\xef\xdf\xfb\xff\xaf\x4e\xfa\xff" "\xdd\xe9\xff\xf7\xe0\xfd\xff\xf5\xff\xf5\xff\x57\xd8\xff\x1f\xfd\x60" "\xfb\xf5\xf5\xff\xe9\x64\xd0\xfa\xff\x31\xf7\xbf\x25\xcc\x24\x93\xfc" "\x0f\x00\x00\x00\x39\x88\xb9\xff\xd6\x30\x13\xf9\x1f\x00\x00\x00\x2a" "\x23\xe6\xfe\xff\x17\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x31" "\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x79\xff" "\xfa\xff\xab\x93\xfe\x7f\x77\xfa\xff\x3d\xe8\xff\xeb\xff\xeb\xff\xaf" "\xac\xff\xdf\xe1\x9b\x5f\xfd\x7f\x3a\x19\xb4\xfe\x7f\xcc\xfd\xb7\x85" "\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xdf\x1e\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\xff\xff\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\x37\x85\x99\x64\x92\xff\xf5\xff\x17\x3b\x77\xa3\xfa\xff\xfa" "\xff\x19\xf4\xff\xef\x5c\xa3\xff\xaf\xff\x5f\x6d\xfa\xff\xdd\xe9\xff" "\xf7\xa0\xff\xaf\xff\xaf\xff\xbf\xc2\xf7\xff\x5f\x4a\xff\x9f\x4e\x06" "\xad\xff\x1f\x73\xff\x5b\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98" "\xfb\xdf\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xf6\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf1\x30\x93\x4c\xf2\xbf\xfe\xbf" "\xf7\xff\xd7\xff\xcf\xab\xff\x5f\xe1\xf7\xff\x8f\xcb\x40\xff\x3f\x73" "\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x0d" "\x5a\xff\x3f\xe6\xfe\xcd\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc" "\xfd\x5b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xef\x08\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\xdf\x1a\x66\x92\x49\xfe\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xaf\x48\xff\x3f\xd1\xff\xcf\x9b\xfe\x7f\x07\x4d" "\x4f\x52\xfd\xff\x1e\xf4\xff\xf5\xff\xb3\xef\xff\xc7\xef\x7e\xf5\xff" "\xe9\x8f\x41\xeb\xff\xc7\xdc\xff\x8e\x30\x93\x4c\xf2\x3f\x00\x00\x00" "\xe4\x20\xe6\xfe\x6d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef" "\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xdf\x1e\x66\x92\x49\xfe" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbc\x7f\xfd\xff\xd5\x49" "\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xab\xd9\xff\x5f\xd0\xff\xf7\xfe\xff" "\xdc\x28\x83\xd6\xff\x8f\xb9\xff\x5d\x61\x26\x99\xe4\x7f\x00\x00\x00" "\xc8\x41\xcc\xfd\x3b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\xf8\xff\x6f" "\x96\xff\xdf\xab\xfc\x0f\x00\x00\x00\x55\x14\x73\xff\x44\x98\x49\x26" "\xf9\x5f\xff\x5f\xff\x3f\xa7\xfe\x7f\x4d\xff\x5f\xff\x5f\xff\xbf\xf2" "\xf4\xff\xbb\xd3\xff\xef\x41\xff\xbf\x9a\xfd\x7f\xef\xff\xaf\xff\xcf" "\x0d\x33\x68\xfd\xff\x98\xfb\xdf\x1d\x66\x92\x49\xfe\x07\x00\x00\x80" "\x1c\xc4\xdc\x7f\x57\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x64" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x54\x98\x49\x26\xf9\x5f" "\xff\x5f\xff\x3f\xa7\xfe\xbf\xf7\xff\xd7\xff\xd7\xff\xaf\x3e\xfd\xff" "\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xaf\x5a\xff\xbf\x28\xf4\xff\xb9\xa1" "\x06\xad\xff\x1f\x73\xff\xce\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\x5d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbb\xc3\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xf7\x84\x99\x64\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x3b\xef\x5f\xff\x7f\x75\xd2\xff\xef" "\x4e\xff\xbf\x07\xfd\x7f\xfd\xff\xaa\xf5\xff\xbd\xff\x3f\x37\xd8\xa0" "\xf5\xff\x63\xee\xbf\x3b\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9" "\x7f\x6f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xbe\x30\x13\xf9" "\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xfd\x61\x26\x99\xe4\x7f\xfd\xff\x8a" "\xf4\xff\x7f\xeb\xef\x5a\xf6\xad\xff\xaf\xff\xdf\x6d\xff\xfd\xe9\xff" "\xaf\xd3\xff\x0f\x53\xff\x7f\xb0\xe8\xff\x77\xa7\xff\xdf\x83\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\x3f\x7d\x35\x68\xfd\xff\x98\xfb\x0f\x84\x99\x64" "\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xbf\x27\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x67\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\x7f\x36\xcc\x24\x93\xfc\xaf\xff\x5f\x91\xfe\x7f\x1b\xfd\x7f\xfd\xff" "\x6e\xfb\xf7\xfe\xff\xfa\xff\x55\xa6\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xf4\xd5\xb5\xef\xff\xc7\xbf\xad\xac\xff\x1f" "\x73\xff\xc1\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x9f\x0b" "\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x6f\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\xa1\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xff\xb5\xe9\xff\xbf\xb7\x68\x37\x88\xfd\xff\xfa\xe2\xd1\xff" "\xaf\x16\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7" "\xaf\x06\xed\xfd\xff\x63\xee\x7f\x5f\x98\x49\x26\xf9\x1f\x00\x00\x00" "\x72\x10\x73\xff\x3d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef" "\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x40\x98\x49\x26\xf9" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x3f\xb3\xf7\xff\x1f\x2e\xbc\xff\x7f" "\xa5\xe9\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x7d" "\x35\x68\xfd\xff\x98\xfb\x3f\x18\x66\x92\x49\xfe\x07\x00\x00\x80\x1c" "\xc4\xdc\xff\xa1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x0f\x87" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x24\xcc\x24\x93\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\x9f\x59\xff\xbf\xe5\xfd\xff\xf5\xff\xab" "\x47\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xab" "\x41\xeb\xff\xc7\xdc\xff\xf3\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41" "\xcc\xfd\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x34\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x63\x61\x26\x99\xe4\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xce\xfb\xd7\xff\x5f\x9d\xf4\xff" "\xbb\xd3\xff\xef\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xbe\x1a\xb4\xfe" "\x7f\xcc\xfd\x1f\x0f\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xff" "\x85\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4f\x84\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\xff\x62\x98\x49\x26\xf9\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\xbf\xf3\xfe\xf5\xff\x57\x27\xfd\xff\xee\xf4" "\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x06\xad\xff\x1f\x73" "\xff\x27\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x3f\x15\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x5f\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\xff\xfd\x61\x26\x99\xe4\x7f\xfd\xff\x2c\xfb\xff\xe9" "\x2e\xeb\xff\x97\xf4\xff\xf5\xff\x3b\xed\x5f\xff\x7f\x75\xd2\xff\xef" "\x4e\xff\xbf\x07\xfd\x7f\xfd\x7f\xfd\xff\xeb\xd3\xff\x6f\xff\x62\x4f" "\x65\x0d\x5a\xff\x3f\xe6\xfe\x07\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90" "\x83\x98\xfb\x1f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xa5" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4f\x87\x99\x64\x92\xff" "\xf5\xff\xb3\xec\xff\x7b\xff\xff\xeb\xd6\xff\x1f\x69\x59\x1f\xfa\xff" "\xfa\xff\xfa\xff\xd7\x9e\xfe\x7f\x77\xfa\xff\x3d\xe8\xff\xeb\xff\x0f" "\x72\xff\x3f\xac\xe6\x75\xcb\x5c\x7f\x55\xf5\xff\xc9\xc6\xa0\xf5\xff" "\x63\xee\x7f\x28\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x97" "\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\x32\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xde\xff\x5f\xff\xbf\xf3\xfe\xf5\xff\x57\x27\xfd\xff\xee\xf4" "\xff\x7b\xd0\xff\xd7\xff\x1f\xe4\xfe\x7f\x0f\xfa\xff\x0c\xa2\x41\xeb" "\xff\xc7\xdc\xff\x6b\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd" "\x0f\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x1f\x0e\x33\x91\xff" "\x01\x00\x00\xa0\x32\x62\xee\x3f\x12\x66\x92\x49\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xef\xbc\x7f\xfd\xff\xd5\x49\xff\xbf\x3b\xfd" "\xff\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xab\x41\xeb\xff\xc7\xdc" "\x7f\x34\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xd7\xc3\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x8f\x85\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\x4f\x87\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x3b\xef\x5f\xff\x7f\x75\xd2\xff\xef\x4e\xff\xbf\x07\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfa\x6a\xd0\xfa\xff\x31\xf7\xcf\x84\x99" "\x64\x92\xff\x01\x00\x00\xa0\xc2\xd2\x8f\x83\x63\xee\x3f\x1e\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x22\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\xff\x91\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xff\x8d" "\xe8\xff\x8f\xb4\x6c\xaf\xff\x5f\xd2\xff\xd7\xff\xef\x07\xfd\xff\xee" "\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x06\xad\xff\x1f" "\x73\xff\x6c\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x67\xc2" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x3f\x1b\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\x7f\x32\xcc\x24\x93\xfc\xaf\xff\xaf\xff\x9f\x7b" "\xff\xbf\x56\x14\x17\xbd\xff\xbf\xfe\x7f\xa7\xfd\xeb\xff\xaf\x4e\xfa" "\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x0d\x5a" "\xff\x3f\xe6\xfe\x53\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd" "\xa7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xcf\x84\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\x9f\x0d\x33\xc9\x24\xff\x67\xdf\xff\xaf" "\xe9\xff\xe7\xde\xff\x2f\x6e\xc8\xfb\xff\xb7\x6e\xaf\xff\x5f\xd2\xff" "\xd7\xff\xef\x87\x25\xfd\xfb\x91\x2b\xbb\xfe\xb2\xfd\xff\xa9\xfd\xf3" "\x47\xf4\xff\xf5\xff\xf5\xff\xbb\xd2\xff\xd7\xff\xd7\xff\xa7\xdd\xa0" "\xf5\xff\x63\xee\x7f\x34\xcc\x24\x93\xfc\x0f\x00\xf0\x7f\xec\xdd\xc5" "\xb6\x26\x77\xd5\xc7\xf1\x27\xef\x8a\x74\x8f\x5e\x2e\x01\x06\x4c\xb8" "\x03\x46\xdc\x02\x53\xc6\x8c\x99\xe0\x1e\x82\x3b\x04\x77\x09\xee\x6e" "\xc1\x82\xbb\xbb\xbb\xbb\x43\x80\x15\x16\x9d\xbd\x77\xba\xfb\x14\x55" "\xe9\x74\xe5\x9c\xaa\xff\xfe\x7c\x26\x9b\x3e\x10\xea\xc9\xe9\x03\xac" "\x1f\xc9\x77\x15\x00\x74\x90\xbb\xff\xee\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\x7f\x8f\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x67" "\xdc\xd2\x64\xff\xb7\xef\xff\xbd\xff\x5f\xff\xaf\xff\x3f\xb7\xff\xbf" "\x4e\xff\xaf\xff\xdf\x37\xef\xff\x9f\xa7\xff\x5f\xa0\xff\xd7\xff\xeb" "\xff\xf5\xff\xac\x6a\x6b\xfd\x7f\xee\xfe\x7b\xc5\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\xde\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\x7f\x9f\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x6f\xdc\xd2\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xf7\xff\x4f\x3f\x5f\xff\xbf\x4f" "\xfa\xff\x79\xfa\xff\x05\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xaa\xb6\xd6" "\xff\xe7\xee\xbf\x5f\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xef" "\x1f\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x0f\x88\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x07\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xa7\x9f\xaf\xff\xdf\xa7\x6b\x0e\x37\xfd\x77\x82\xfe" "\xff\x28\xfd\xff\x82\x85\xfe\xff\x70\xd0\xff\xcf\xd1\xff\xeb\xff\xf5" "\xff\x9c\x6f\x6b\xfd\x7f\xee\xfe\x07\xc5\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\xc1\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x65" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x24\x6e\x69\xb2\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfd\x7c\xfd\xff\x3e\x79\xff\xff" "\xbc\x8b\xef\xff\xef\x70\x9b\xbb\xdd\xb5\x6f\xff\xef\xfd\xff\xf3\xf4" "\xff\xfa\x7f\xfd\x3f\xe7\xdb\x5a\xff\x9f\xbb\xff\xaa\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\x3f\x34\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\x1f\x16\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x0f\x8f\x5b" "\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\x3f\x5f\xff\xbf" "\x4f\xfa\xff\x79\xde\xff\xbf\x40\xff\xaf\xff\xd7\xff\xeb\xff\x59\xd5" "\xd6\xfa\xff\xdc\xfd\x8f\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x23\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x51\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe8\xb8\xa5\xc9\xfe\x1f\xb9\xff\x3f" "\x35\xf3\x2f\xd3\xff\xeb\xff\xcf\xfe\x7e\xe9\xff\xf5\xff\x53\xcf\xd7" "\xff\xef\x93\xfe\x7f\x9e\xfe\x7f\xc1\x28\xfd\xff\x2d\xfc\xa9\x39\xe9" "\x7e\xfe\x62\x9d\xf4\xe7\xd7\xff\xeb\xff\x39\x6a\x6b\xfd\x7f\xee\xfe" "\xc7\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xb1\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb8\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x7c\xdc\xd2\x64\xff\x8f\xdc\xff\xcf\xd1\xff\xeb\xff\xcf" "\xfe\x7e\xe9\xff\xf5\xff\x53\xcf\xd7\xff\xef\x93\xfe\x7f\x9e\xfe\x7f" "\xc1\x28\xfd\xff\x2d\x74\xd2\xfd\xfc\xde\x3f\xbf\xfe\x5f\xff\xcf\x51" "\x5b\xeb\xff\x73\xf7\x3f\x21\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\x4f\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x27\xc5\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x93\xe3\x96\x26\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xd3\xcf\xd7\xff\xef\x93\xfe\x7f\x9e\xfe\x7f" "\x81\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\xaa\xad\xf5\xff\xb9\xfb\xaf\x8e" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x53\xe2\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\xa9\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xb4\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf4" "\xf3\xf5\xff\xfb\xa4\xff\x9f\xa7\xff\x5f\xa0\xff\xd7\xff\xeb\xff\xf5" "\xff\xac\x6a\x43\xfd\xff\x59\x7f\xd4\xa9\xc3\xd3\xe3\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\x8c\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\x7f\x66\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x2b\x6e\x19" "\x70\xff\x5f\x3e\xf1\x35\xfd\xff\x66\xfa\xff\x33\x39\xdf\x58\xfd\xff" "\xe9\xc3\xe1\xa0\xff\x3f\x34\xed\xff\x4f\x9f\xf5\xfb\x59\x3f\x97\xfa" "\x7f\xfd\xff\x31\xd0\xff\xcf\xd3\xff\x2f\xd0\xff\xeb\xff\xf5\xff\xfa" "\x7f\x56\xb5\xa1\xfe\xff\xcc\xaf\x73\xf7\x3f\x3b\x6e\x19\x70\xff\x03" "\x00\x00\x40\x57\xb9\xfb\x9f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xcf\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xe7\xc5\x2d\x4d" "\xf6\xbf\xfe\x7f\x33\xfd\xff\x19\x63\xf5\xff\xde\xff\x7f\xfe\xcf\x47" "\xa7\xfe\xdf\xfb\xff\x8f\xd2\xff\x1f\x0f\xfd\xff\x3c\xfd\xff\x02\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\x55\x5b\xeb\xff\x73\xf7\x3f\x3f\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x2f\x88\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\x17\xc6\x2d\xf6\x3f\x00\x00\x00\xec\xd4\xd5\x47\xbe" "\x92\xbb\xff\x45\x71\x4b\x93\xfd\xaf\xff\x5f\xb7\xff\xbf\xfc\xac\xaf" "\xe9\xff\xf5\xff\xe7\xff\x7c\xe8\xff\xf5\xff\xfa\xff\x5b\x9f\xfe\x7f" "\x9e\xfe\x7f\x81\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\xaa\xad\xf5\xff\xb9" "\xfb\x5f\x1c\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x6b\xe2\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x25\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xd2\xb8\xa5\xc9\xfe\xd7\xff\x7b\xff\xbf\xfe\x5f\xff" "\xaf\xff\x9f\x7e\xbe\xfe\x7f\x9f\xf4\xff\xf3\xf4\xff\x0b\xf4\xff\xfa" "\xff\x93\xed\xff\xaf\xb8\xe9\x1f\xea\xff\x19\xc3\xd6\xfa\xff\xdc\xfd" "\x2f\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xcb\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x15\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xca\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\xf4\xf3\xf5\xff\xfb\xa4\xff\x9f\xa7\xff\x5f\xa0\xff\xd7\xff\x7b" "\xff\xbf\xfe\x9f\x55\x6d\xad\xff\xcf\xdd\xff\xaa\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\xbf\x3a\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x5f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x8d\x5b\x9a" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\x3f\x7f\xe5\xfe\xff" "\xfa\x83\xfe\xff\x58\xe8\xff\xe7\x5d\x6c\xff\x7f\x95\xfe\x5f\xff\x3f" "\xa3\x5d\xff\x7f\xe7\x3b\x9e\xf3\x4b\xfd\xbf\xfe\x9f\xa3\xb6\xd6\xff" "\xe7\xee\x7f\x5d\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x1f" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f\x88\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x37\xc6\x4d\x97\x36\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x9f\x7e\xbe\xf7\xff\xef\x93\xfe\x7f\x9e\xf7\xff\x2f" "\xd0\xff\xeb\xff\xbd\xff\x5f\xff\xcf\xaa\xb6\xd6\xff\xe7\xee\x7f\x53" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x1c\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\x6f\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\xb7\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xa7" "\x9f\xaf\xff\xdf\x27\xfd\xff\x3c\xfd\xff\x02\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x67\x55\x5b\xeb\xff\x73\xf7\xbf\x2d\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\x6f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x77" "\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x3b\xe3\x96\x26\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xaf\xd8\x5c\xff\x7f\xea\x9c\x7f\x3f\xfd" "\xbf\xfe\xff\x42\xe8\xff\xe7\xe9\xff\x17\xe8\xff\xf5\xff\xfa\xff\xab" "\xf5\xff\xac\x69\x6b\xfd\x7f\xee\xfe\x77\xc5\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\xda\xb8\xf5\x7f\xdd\xda\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\xef\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xf7\xc4\x2d" "\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x7b\xff\xff\xf4\xf3\xf5\xff" "\xfb\xa4\xff\x9f\xa7\xff\x5f\xa0\xff\xd7\xff\xeb\xff\xbd\xff\x9f\x55" "\x6d\xad\xff\xcf\xdd\xff\xde\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72" "\xf7\xbf\x2f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x1f\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\xd7\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xa7\x9f\xaf\xff\xdf\x27\xfd\xff\xbc\xe3\xe9" "\xff\x4f\xeb\xff\xf5\xff\xd5\xcf\x5f\x12\xff\x29\xd0\xff\xeb\xff\x97" "\xfe\x78\xc6\xb4\xb5\xfe\x3f\x77\xff\x07\xe2\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\xc1\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff" "\x50\xdc\x62\xff\x03\x00\x00\xc0\x2e\x5d\x3a\xf1\xb5\xdc\xfd\x1f\x8e" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\x3f\x5f\xff" "\xbf\x4f\xfa\xff\x79\xde\xff\xbf\x40\xff\x7f\x81\xfd\xfc\x6d\xcf\xf9" "\xd5\xde\xde\xff\x7f\xfe\xff\x7e\xe9\xff\xf5\xff\xac\x6f\x6b\xfd\x7f" "\xee\xfe\x8f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xa3\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb1\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\xff\x78\xdc\xd2\x64\xff\xeb\xff\x6f\xe5\xfe\x3f\xff" "\x29\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\x0b\xfd\xff\x3c\xfd\xff" "\x02\xfd\xff\x89\xbe\x3f\x7f\xef\x9f\x5f\xff\xaf\xff\xe7\xa8\xad\xf5" "\xff\xb9\xfb\x3f\x11\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x4f" "\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xa7\xe2\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\xd3\x71\x4b\x93\xfd\xaf\xff\xf7\xfe\x7f\xfd" "\xbf\xfe\x5f\xff\x3f\xfd\x7c\xfd\xff\x3e\xe9\xff\xe7\xe9\xff\x17\xe8" "\xff\xf5\xff\xfa\x7f\xfd\x3f\xab\xda\x5a\xff\x9f\xbb\xff\x33\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x6c\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\x7f\x2e\x6e\x59\xd8\xff\xff\x3e\xef\xef\x87\x03\x00" "\x00\x00\xb6\x2b\x77\xff\xe7\xe3\x96\x26\x7f\xfd\x5f\xff\xaf\xff\xdf" "\x47\xff\x7f\xc3\x0d\x37\x5c\xa9\xff\xd7\xff\x9f\xfb\xe7\xa3\xff\xd7" "\xff\x4f\xd1\xff\xcf\xd3\xff\x2f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x56" "\xb5\xb5\xfe\x3f\x77\xff\x17\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8" "\xdd\xff\xc5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x52\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x39\x6e\x69\xb2\xff\xf5\xff\x1b" "\xe8\xff\x4f\xe9\xff\xbd\xff\x5f\xff\x7f\xd0\xff\xeb\xff\x57\xa2\xff" "\x9f\xa7\xff\x5f\x30\x62\xff\x7f\xea\xe6\xff\xe9\x9f\x74\x3f\x7f\xb1" "\x4e\xfa\xf3\xeb\xff\xf5\xff\x1c\xb5\xb5\xfe\x3f\x77\xff\x57\xe2\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd5\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\xff\x5a\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f" "\x3d\x6e\x69\xb2\xff\xf5\xff\xc7\xd7\xff\xff\xf7\x7b\xd7\xe5\xfd\xff" "\xa7\x0f\xd3\x9f\x5f\xff\xaf\xff\xbf\xa0\xfe\xff\x92\xf8\x9d\xd5\xff" "\xeb\xff\x2f\x80\xfe\x7f\x9e\xfe\x7f\xc1\x42\xff\x7f\xfb\x3d\xf6\xff" "\x17\xe0\xa4\xfb\xf9\xbd\x7f\x7e\xfd\xbf\xfe\x9f\xa3\xb6\xd6\xff\xe7" "\xee\xff\x46\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x19\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xdf\x8a\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\x6f\xc7\x2d\x4d\xf6\xbf\xfe\x7f\x03\xef\xff\x1f\xb0" "\xff\xf7\xfe\xff\xe9\x9f\x8f\xe3\xe8\xff\x6f\x37\x52\xff\x1f\x8e\xe9" "\xfd\xff\xff\xa7\xff\x1f\x83\xfe\x7f\x9e\xfe\x7f\xc1\x88\xef\xff\xbf" "\x00\x27\xdd\xcf\xef\xfd\xf3\xeb\xff\xcf\xee\xff\xf3\xa7\x59\xff\xdf" "\xdd\xd6\xfa\xff\xdc\xfd\xdf\x89\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20" "\x77\xff\x77\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x7b\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xfd\xb8\xe5\xac\xfd\x3f\xd5\x76" "\x8f\x42\xff\xaf\xff\xd7\xff\x8f\xd1\xff\x5f\x36\xe2\xfb\xff\xc3\x31" "\xf5\xff\xde\xff\x3f\x08\xfd\xff\xbc\x9b\xdb\xff\x5f\x71\xb8\xb8\xfe" "\x3f\xe9\xff\xf5\xff\xfa\xff\xae\xfd\xbf\xf7\xff\x73\xa3\xad\xf5\xff" "\xb9\xfb\x7f\x10\xb7\xf8\xeb\xff\x00\x00\x00\xb0\x3b\x97\xfd\x8f\xaf" "\xe7\xee\xff\x61\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x28\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x1c\xb7\x34\xd9\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\x8c\xfe\xff\x5a\xfd\x7f\xd1\xff\xf7\xa6\xff\x9f\xe7" "\xfd\xff\x0b\xf4\xff\x6b\xf4\xf3\x77\xd2\xff\x8f\xd1\xff\x1f\x0e\xfa" "\x7f\x2e\xde\xd6\xfa\xff\xdc\xfd\x3f\x89\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x4f\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x67" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xf3\xb8\xa5\xc9\xfe\xd7" "\xff\xeb\xff\x2f\xb2\xff\x3f\x93\x66\xea\xff\x6f\xa4\xff\xbf\x91\xfe" "\x7f\x9a\xfe\xff\x78\xe8\xff\xe7\xe9\xff\x17\xe8\xff\xbd\xff\x5f\xff" "\xef\xfd\xff\xac\x6a\x6b\xfd\x7f\xee\xfe\x5f\xc4\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x97\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xab\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x75\xdc\xd2\x64" "\xff\x9f\x58\xff\x1f\xdf\x6a\xfd\xff\xee\xfb\x7f\xef\xff\xd7\xff\xeb" "\xff\xf5\xff\x9b\xa2\xff\x9f\xa7\xff\x5f\xa0\xff\xd7\xff\xeb\xff\xf5" "\xff\xac\x6a\x6b\xfd\x7f\xee\xfe\xdf\xc4\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\xb7\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xbb" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x7d\xdc\xd2\x64\xff\x7b" "\xff\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\x3f\x5f\xff\xbf\x4f\xfa\xff" "\x79\xfa\xff\x69\xf5\x1b\xa5\xff\xd7\xff\xeb\xff\xf5\xff\xac\x6a\x6b" "\xfd\x7f\xee\xfe\x3f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\x8f\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa7\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\xff\x73\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x7f\xfa\xf9\xfa\xff\x7d\xd2\xff\xcf\x3b\xc9\xfe\xff" "\x2e\xff\xbf\xfc\x58\xef\xff\x3f\xf1\xfe\x3f\x3f\x82\xfe\x5f\xff\xaf" "\xff\x67\x15\x5b\xeb\xff\x73\xf7\xff\x25\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\x7f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xbf" "\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xdf\xe3\x96\x26\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xd3\xcf\xd7\xff\xef\x93\xfe\x7f" "\x9e\xf7\xff\x2f\xd0\xff\x7b\xff\xbf\xfe\x5f\xff\xcf\xaa\xb6\xd6\xff" "\xe7\xee\xff\x47\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xaf\x8f" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x7f\xc6\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\xbf\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xd3\xcf\xd7\xff\xef\x93\xfe\x7f\x9e\xfe\x7f\x81\xfe\x5f" "\xff\xaf\xff\xd7\xff\xb3\xaa\xad\xf5\xff\xb9\xfb\xff\x13\x00\x00\xff" "\xff\x8a\xb8\x77\x9a", 24655); syz_mount_image(/*fs=*/0x20000040, /*dir=*/0x20000080, /*flags=*/0x2010882, /*opts=*/0x200000c0, /*chdir=*/1, /*size=*/0x604f, /*img=*/0x20006580); break; case 1: memcpy((void*)0x20000180, "./file2\000", 8); res = syscall(__NR_open, /*file=*/0x20000180ul, /*flags=*/0x14f942ul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x20000040, "./bus\000", 6); res = syscall(__NR_open, /*file=*/0x20000040ul, /*flags=*/0x147042ul, /*mode=*/0ul); if (res != -1) r[1] = res; break; case 3: syscall(__NR_ftruncate, /*fd=*/r[1], /*len=*/0x2007ffful); break; case 4: syscall(__NR_sendfile, /*fdout=*/r[0], /*fdin=*/r[1], /*off=*/0ul, /*count=*/0x1000000201004ul); break; case 5: memcpy((void*)0x20000080, "./file2\000", 8); memcpy((void*)0x200000c0, "./bus\000", 6); syscall(__NR_rename, /*old=*/0x20000080ul, /*new=*/0x200000c0ul); break; case 6: memcpy((void*)0x20000180, "./file2\000", 8); res = syscall(__NR_open, /*file=*/0x20000180ul, /*flags=*/0x14f942ul, /*mode=*/0ul); if (res != -1) r[2] = res; break; case 7: memcpy((void*)0x20000040, "./bus\000", 6); res = syscall(__NR_open, /*file=*/0x20000040ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[3] = res; break; case 8: syscall(__NR_sendfile, /*fdout=*/r[2], /*fdin=*/r[3], /*off=*/0ul, /*count=*/0x1000000201004ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); use_temporary_dir(); loop(); return 0; }