// https://syzkaller.appspot.com/bug?id=d63b68a5bcc9d181a210746ad67ebdbe4768f78e // 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 __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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 thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } 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"); } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 5; 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) + (call == 2 ? 4000 : 0) + (call == 4 ? 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++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: NONFAILING(memcpy((void*)0x20001cc0, "jfs\000", 4)); NONFAILING(memcpy((void*)0x20001c80, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x200039c0, "\x78\x9c\xec\xdd\x4f\x6f\x1c\x67\x1d\x07\xf0\xdf\xfe\xf1\xfa\x4f\x69" "\x1a\x55\xa8\x0a\x11\x87\x34\x85\xd2\x52\x9a\xff\x09\x94\x7f\x4d\x39" "\x70\x80\x03\x48\x28\x67\x12\xb9\x6e\x15\x70\x01\x25\x06\xd1\xca\x22" "\xae\x7c\x40\x9c\x78\x0b\x70\xe9\x85\x43\xdf\x02\x2f\xa0\xaf\x01\xf1" "\x02\x88\x64\x73\xea\x81\x30\x68\xbc\xcf\x93\x8c\xd7\xeb\xac\x43\xe2" "\x9d\xb5\x9f\xcf\x47\x72\x66\x7e\xf3\xec\x78\x9f\xc9\xd7\xe3\xd9\xf5" "\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\xfc\xe8\x87\x3f\xbb\xd8\x89\x88\x9b\xbf\x4b\x0b\x4e\x46\x7c\x21" "\x7a\x11\xdd\x88\xc5\xba\x3e\x13\xf5\xcc\xf5\xfc\xf8\x7e\x44\x9c\x8a" "\x9d\xe6\x78\x29\x22\x7a\xf3\x11\xf5\xfa\x3b\xff\xbc\x10\x71\x25\x22" "\x3e\x3b\x11\xb1\xb5\xbd\xbe\x5c\x2f\xbe\x74\xc0\x7e\x5c\xbd\xb0\x76" "\xe7\xc1\x8f\x7f\xf0\x8f\x3f\xfe\x79\xf3\xd4\x2f\xde\xfd\xf9\x27\xa3" "\xed\x3f\xfd\xe2\xe5\x4f\xff\x74\x2f\xe2\xe4\x4f\xde\xfa\xf4\xc1\xbd" "\x67\xb3\xed\x00\x00\x00\x50\x8a\xaa\xaa\xaa\x4e\x7a\x9b\x7f\x3a\xbd" "\xbf\xef\xb6\xdd\x29\x00\x60\x2a\xf2\xf1\xbf\x4a\xf2\x72\xb5\x5a\xad" "\x56\xab\xd5\xc7\xaf\x6e\xaa\xc6\xbb\xd7\x2c\x22\x62\xa3\xb9\x4e\xfd" "\x9a\xc1\xe9\x78\x00\x38\x62\x36\xe2\xf3\xb6\xbb\x40\x8b\xe4\x5f\xb4" "\x7e\x44\x3c\xd7\x76\x27\x80\x99\xd6\x69\xbb\x03\x1c\x8a\xad\xed\xf5" "\xe5\x4e\xca\xb7\xd3\x3c\x1e\x9c\x19\xb6\xe7\x6b\x41\x76\xe5\xbf\xd1" "\x79\x78\x7f\xc7\x7e\xd3\x49\x46\xaf\x31\x99\xd6\xcf\xd7\x66\xf4\xe2" "\xc5\x7d\xfa\xb3\x38\xa5\x3e\xcc\x92\x9c\x7f\x77\x34\xff\x9b\xc3\xf6" "\x41\x7a\xdc\x61\xe7\x3f\x2d\xfb\xe5\x3f\x18\xde\xfa\x34\x59\xff\xd9" "\xf7\xa9\x4d\x39\xff\xde\x68\xfe\x23\x8e\x4f\xfe\xdd\xb1\xf9\x97\x2a" "\xe7\xdf\x7f\xa2\xfc\x7b\xf2\x07\x00\x00\x00\x00\x80\x19\x96\xff\xfe" "\x7f\xb2\xe5\xf3\xbf\xf3\x4f\xbf\x29\x07\xf2\xb8\xf3\xbf\x67\xa6\xd4" "\x07\x00\x00\x00\x00\x00\x00\x00\x78\xd6\x9e\x76\xfc\xbf\x87\x8c\xff" "\x07\x00\x00\x00\x33\xab\x7e\xaf\x5e\xfb\xcb\x89\x47\xcb\xf6\xfb\x2c" "\xb6\x7a\xf9\x8d\x4e\xc4\xf3\x23\x8f\x07\x0a\x93\x6e\x96\x59\x6a\xbb" "\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x92\xfe\xf0\x1a\xde" "\x1b\x9d\x88\xb9\x88\x78\x7e\x69\xa9\xaa\xaa\xfa\xab\x69\xb4\x7e\x52" "\x4f\xbb\xfe\x51\x57\xfa\xf6\x43\xc9\xda\xfe\x25\x0f\x00\x00\x43\x9f" "\x9d\x18\xb9\x97\xbf\x13\xb1\x10\x11\x37\xd2\x67\xfd\xcd\x2d\x2d\x2d" "\x55\xd5\xc2\xe2\x52\xb5\x54\x2d\xce\xe7\xd7\xb3\x83\xf9\x85\x6a\xb1" "\xf1\xbe\x36\x4f\xeb\x65\xf3\x83\x03\xbc\x20\xee\x0f\xaa\xfa\x9b\x2d" "\x34\xd6\x6b\x9a\xf4\x7e\x79\x52\xfb\xe8\xf7\xab\x9f\x6b\x50\xf5\x0e" "\xd0\xb1\xe9\x68\x31\x70\x00\x88\x88\xe1\xd1\x68\xcb\x11\xe9\x98\xa9" "\xaa\x17\xa2\xed\x57\x39\x1c\x0d\xf6\xff\xe3\xc7\xfe\xcf\x41\xb4\xfd" "\x73\x0a\x00\x00\x00\x1c\xbe\xaa\xaa\xaa\x4e\xfa\x38\xef\xd3\xe9\x9c" "\x7f\xb7\xed\x4e\x01\x00\x53\x91\x8f\xff\xa3\xe7\x05\xd4\x6a\xb5\x5a" "\xad\x56\x1f\xbf\xba\xa9\x1a\xef\x5e\xb3\x88\x88\x8d\xe6\x3a\xf5\x6b" "\x06\xc3\xf1\x03\xc0\x11\xb3\x11\x9f\xb7\xdd\x05\x5a\x24\xff\xa2\xf5" "\x23\xe2\x54\xdb\x9d\x00\x66\x5a\xa7\xed\x0e\x70\x28\xb6\xb6\xd7\x97" "\x3b\x29\xdf\x4e\xf3\x78\x90\xc6\x77\xcf\xd7\x82\xec\xca\x7f\xa3\xb3" "\xb3\x5e\x5e\x7f\xdc\x74\x92\xd1\x6b\x4c\xa6\xf5\xf3\xb5\x19\xbd\x78" "\x71\x9f\xfe\xbc\x34\xa5\x3e\xcc\x92\x9c\x7f\x77\x34\xff\x9b\xc3\xf6" "\x41\x7a\xdc\x61\xe7\x3f\x2d\xfb\xe5\x5f\x6f\xe7\xc9\x16\xfa\xd3\xb6" "\x9c\x7f\x6f\x34\xff\x11\xc7\x27\xff\xee\xd8\xfc\x4b\x95\xf3\xef\x3f" "\x51\xfe\x3d\xf9\x03\x00\x00\x00\x00\xc0\x0c\xcb\x7f\xff\x3f\xe9\xfc" "\x6f\xde\x64\x00\x00\x00\x00\x00\x00\x00\x38\x72\xb6\xb6\xd7\x97\xf3" "\x7d\xaf\xf9\xfc\xff\x97\xc7\x3c\xce\xfd\x9f\xc7\x53\xce\xbf\x23\xff" "\x22\xe5\xfc\x87\xf7\xff\x2f\x3e\x6a\x18\xb9\x20\xa7\xd7\x98\xbf\xff" "\xce\xa3\xfc\xff\xbd\xbd\xbe\xfc\xc9\xda\xbf\xbe\x94\xa7\x33\x9f\xff" "\x5c\x6f\x50\x3f\xf7\x5c\xa7\xdb\xeb\xa7\x6b\x7e\xaa\xb9\xf7\xe2\x76" "\xac\xc6\x4a\x5c\xd8\xf3\xf8\xfe\xae\xf6\x8b\x7b\xda\xe7\x76\xb5\x5f" "\x9a\xd0\x7e\x79\x4f\xfb\xa0\x6e\x5f\xcc\xed\xe7\x62\x39\x7e\x1d\xab" "\xf1\xee\xc3\xf6\xf9\x09\x17\x46\x2d\x4c\x68\xaf\x26\xb4\xe7\xfc\x7b" "\xf6\xff\x22\xe5\xfc\xfb\x8d\xaf\x3a\xff\xa5\xd4\xde\x19\x99\xd6\xee" "\x7f\xdc\xdd\xb3\xdf\x37\xa7\xe3\x9e\xe7\xfa\xdf\xfe\xf3\xea\xde\xbd" "\x6b\xfa\x36\xa3\xf7\x70\xdb\x9a\xea\xed\x3b\xdb\x42\x7f\x76\xfe\x4f" "\x9e\x1b\xc4\x6f\xef\xae\xdc\x39\xf7\xfb\x5b\x6b\x6b\x77\x2e\x46\x9a" "\xec\x5a\x7a\x29\xd2\xe4\x19\xcb\xf9\xcf\xa5\xaf\x9c\xff\x6b\xaf\x0c" "\xdb\xf3\xef\xfd\xe6\xfe\x7a\xff\xe3\xc1\x13\xe7\x3f\x2b\x36\xa3\xbf" "\x6f\xfe\xaf\x34\xe6\xeb\xed\x7d\x7d\xca\x7d\x6b\x43\xce\x7f\x90\xbe" "\x72\xfe\xf9\x08\x34\x7e\xff\x3f\xca\xf9\xef\xbf\xff\xbf\xd1\x42\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x71\xaa\xaa\xda" "\xb9\x45\xf4\x7a\x44\x5c\x4b\xf7\xff\xb4\x75\x6f\x26\x00\x30\x5d\xf9" "\xf8\x5f\x25\x79\xb9\x7a\xc6\xeb\x07\xbb\x17\xb4\xde\x1f\xb5\x5a\xad" "\x56\x1f\x89\xba\xa9\x1a\xef\xed\x66\x11\x11\x7f\x6f\xae\x53\xbf\x66" "\xf8\xc3\xb8\x6f\x06\x00\xcc\xb2\xff\x46\xc4\x3f\xdb\xee\x04\xad\x91" "\x7f\xc1\xf2\xe7\xfd\xd5\xd3\xaf\xb4\xdd\x19\x60\xaa\xee\x7e\xf8\xd1" "\x2f\x6f\xad\xae\xae\xdc\xb9\xdb\x76\x4f\x00\x00\x00\x00\x00\x00\x00" "\x80\xff\x57\x1e\xff\xf3\x4c\x63\xfc\xe7\x9d\xeb\x80\x46\xc6\x8d\xde" "\x35\xfe\xeb\x3b\x71\xe6\xc8\x8e\xff\xd9\x1d\xf4\x76\xc6\x3a\x4f\x1b" "\xf4\x72\x3c\x7e\xfc\xef\xb3\xf1\xf8\xf1\xbf\xfb\x13\x9e\x6f\x6e\x42" "\xfb\x60\x42\xfb\xfc\x84\xf6\x85\x09\xed\x63\x6f\xf4\x68\xc8\xf9\xbf" "\x9c\x32\xce\xf9\x9f\x4e\x1b\x56\xd2\xf8\xaf\xaf\xb5\xd0\x9f\xb6\xe5" "\xfc\xcf\xa6\xb1\x9e\x73\xfe\x5f\x1b\x79\x5c\x33\xff\xea\xaf\x47\x39" "\xff\xee\xae\xfc\xcf\xaf\x7d\xf0\x9b\xf3\x77\x3f\xfc\xe8\xcd\xdb\x1f" "\xdc\x7a\x7f\xe5\xfd\x95\x5f\x5d\xbc\x70\xed\xca\xe5\xab\x57\x2e\x5f" "\xbd\x7a\xfe\xbd\xdb\xab\x2b\x17\x86\xff\xb6\xd8\xe3\xc3\x95\xf3\xcf" "\x63\x5f\xbb\x0e\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb\x92\xf3\xff\x6a\xaa" "\xe5\x5f\x96\x9c\xff\xab\xa9\x96\x7f\x59\x72\xfe\xf9\xf5\x9e\xfc\xcb" "\x92\xf3\xcf\xef\x7d\xe4\x5f\x96\x9c\xff\xeb\xa9\x96\x7f\x59\x72\xfe" "\x5f\x4f\xb5\xfc\xcb\x92\xf3\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\x1b\xa9" "\x96\x7f\x59\x72\xfe\x6f\xa6\x5a\xfe\x65\xc9\xf9\x9f\x4b\xb5\xfc\xcb" "\x92\xf3\x3f\x9f\x6a\xf9\x97\x25\xe7\x9f\xcf\x70\xc9\xbf\x2c\x39\xff" "\x7c\x65\x83\xfc\xcb\x92\xf3\xbf\x94\x6a\xf9\x97\x25\xe7\x7f\x39\xd5" "\xf2\x2f\x4b\xce\xff\x4a\xaa\xe5\x5f\x96\x9c\xff\xd5\x54\xcb\xbf\x2c" "\x39\xff\x6b\xa9\x96\x7f\x59\x72\xfe\xdf\x4c\xb5\xfc\xcb\x92\xf3\xff" "\x56\xaa\xe5\x5f\x96\x9c\xff\x5b\xa9\x96\x7f\x59\x72\xfe\xdf\x4e\xb5" "\xfc\xcb\x92\xf3\xff\x4e\xaa\xe5\x5f\x96\x9c\xff\x77\x53\x2d\xff\xb2" "\xe4\xfc\xbf\x97\x6a\xf9\x97\x25\xe7\xff\xfd\x54\xcb\xbf\x2c\x39\xff" "\xb7\x53\x2d\xff\xb2\x3c\xfa\xfc\x7f\x33\x66\xcc\x98\xc9\x33\x6d\xff" "\x66\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x46\x4d\xe3\x72\xe2" "\xb6\xb7\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\xb1\x03\x07\x02" "\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x85\x1d\x38\x10\x00\x00\x00\x00\x00\xf2" "\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\x2a\xec\xdd\x5b\x8c\x5c\xf5\x7d\x07\xf0\xb3\x37\x7b\x6d\x08\xb8" "\xe1\x4e\x1c\xb0\xcd\xcd\xc0\xc2\xee\xfa\x06\x0e\x31\x98\x24\xa4\x94" "\xf4\x42\x49\x48\x9b\x96\xd4\x38\xf6\xda\x38\xf1\x0d\xef\x2e\x37\xa1" "\xb2\x29\xb4\x25\x0a\x52\x91\xda\x07\xfa\xd0\x34\x89\xd2\x28\x52\x5b" "\x81\xda\x48\x4d\x25\x1a\x21\x35\x52\xfb\xd6\x3c\x35\xe2\x25\x6a\xa5" "\x3c\xf8\x01\x2a\xc7\x4a\x2a\xa5\x0a\x6c\x75\x66\xfe\xff\xff\xce\xcc" "\xce\xce\xd9\xc5\x3b\x78\xe6\x9c\xcf\x27\xb2\x7f\xf6\xcc\x39\x33\xff" "\x39\x73\x66\x76\xbf\x4b\xbe\x63\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xd1\xe6\x8f\x4f" "\xfd\xe9\x40\x96\x65\xf9\xaf\xda\x6f\x1b\xb2\xec\xc2\xfc\xcf\xeb\xb2" "\xbd\xf9\x5f\xe7\x76\x9d\xef\x15\x02\x00\x00\x00\xe7\xea\x9d\xda\xef" "\x7f\x77\x71\xba\x60\xef\x32\x76\x6a\xd8\xe6\xdf\xae\xf9\x8f\xef\xce" "\xcf\xcf\xcf\x67\x5f\x38\x7b\xfa\xdd\x3f\x9f\x9f\x4f\x57\x6c\xca\xb2" "\xa1\xb5\x59\x56\xbb\x2e\xfa\xf7\x5f\xfc\x7c\xbe\x71\x9b\xe0\xf9\x6c" "\x74\x60\xb0\xe1\xef\x83\x05\x77\x3f\x54\x70\xfd\x70\xc1\xf5\x23\x05" "\xd7\xaf\x29\xb8\x7e\x6d\xc1\xf5\xa3\x05\xd7\x2f\x3a\x00\x8b\xac\xab" "\xff\x3c\xa6\x76\x63\xd7\xd7\xfe\xb8\xa1\x7e\x48\xb3\x4b\xb3\x91\xda" "\x75\xd7\xb7\xd9\xeb\xf9\x81\xb5\x83\x83\xf1\x67\x39\x35\x03\xb5\x7d" "\xe6\x47\x0e\x65\x47\xb2\xa3\xd9\x54\x36\xb1\x68\x9f\x81\xda\xff\xb2" "\xec\xf5\xcd\xf9\x7d\xdd\x9f\xc5\xfb\x1a\x6c\xb8\xaf\x8d\x59\x96\x9d" "\xf9\xe9\xb3\x07\xe2\x1a\x06\xc2\x31\xbe\x3e\x6b\xba\xb3\x9a\xc6\xe7" "\xee\xed\x7b\xb3\x4d\x67\x7f\xfa\xec\x81\x6f\xcf\xbc\x75\x55\xbb\x59" "\x78\x18\x16\xad\x34\xcb\xb6\x6e\xc9\xd7\xf9\x42\x96\x2d\xfc\xb8\x2a" "\x1b\xc8\xd6\xa6\x63\x12\xd7\x39\xd8\xb0\xce\x8d\x6d\xd6\x39\xd4\xb4" "\xce\x81\xda\x7e\xf9\x9f\x5b\xd7\x79\x66\x99\xeb\x8c\x8f\x7b\x34\xac" "\xf3\x87\x1d\xd6\xb9\x31\x5c\xf6\xd4\x75\x59\x96\xcd\x65\x4b\x6e\xd3" "\xea\xf9\x6c\x30\x5b\xdf\x72\xaf\xe9\x78\x8f\xd6\xcf\x88\xfc\x36\xf2" "\xa7\xf2\x83\xd9\xf0\x8a\xce\x93\xcd\xcb\x38\x4f\xf2\x7d\x7e\x72\x5d" "\xf3\x79\xd2\x7a\x4e\xc6\xe3\xbf\x39\x1c\x93\xe1\x25\xd6\xd0\xf8\x74" "\xbc\xfd\xe5\x35\x8b\x8e\xfb\x7b\x3d\x4f\xf2\x47\xdd\x0b\xe7\x6a\x7e" "\xdb\x0f\xe6\x77\x3a\x3a\xda\xf8\xa3\xd5\xa6\x73\x35\xdf\xe6\xd9\x1b" "\x96\x3e\x07\xda\x3e\x77\x6d\xce\x81\x74\x2e\x37\x9c\x03\x5b\x8a\xce" "\x81\xc1\x35\x43\xb5\x73\x60\x70\x61\xcd\x5b\x9a\xce\x81\xc9\x45\xfb" "\x0c\x66\x03\xb5\xfb\x3a\x7d\x43\xe7\x73\x60\x7c\xe6\xd8\xc9\xf1\xe9" "\xa7\x9f\xb9\xed\xc8\xb1\xfd\x87\xa7\x0e\x4f\x1d\x9f\x9c\xd8\xb5\x63" "\xfb\xce\x1d\xdb\x77\xee\x1c\x3f\x74\xe4\xe8\xd4\x44\xfd\xf7\x95\x1d" "\xd2\x3e\xb2\x3e\x1b\x4c\xe7\xe0\x96\xf0\x5e\x13\xcf\xc1\x9b\x5a\xb6" "\x6d\x3c\x25\xe7\xbf\xb1\x7a\xaf\x83\xd1\x1e\x79\x1d\xe4\x8f\xfd\x33" "\x37\xe6\x0b\xba\x70\x30\x5b\xe2\x1c\xcf\xb7\x79\x61\xeb\xb9\xbf\x0e" "\xd2\xd7\xfd\x86\xd7\xc1\x70\xc3\xeb\xa0\xed\x7b\x6a\x9b\xd7\xc1\xf0" "\x32\x5e\x07\xf9\x36\x67\xb6\x2e\xef\x6b\xe6\x70\xc3\xaf\x76\x6b\x68" "\xfb\x5e\xf8\x8f\xe7\x7e\xfc\x37\x34\x9c\x03\xe7\xf3\xeb\x61\x7e\x9f" "\x8f\xdc\xbc\xf4\x7b\xe1\xc6\xb0\xae\x17\x6f\x59\xe9\xd7\xc3\xa1\x45" "\xe7\x40\x7c\x58\x03\xe1\xb5\x97\x5f\x92\xbe\xdf\x1b\xbd\x33\x1c\x97" "\xc5\xe7\xc5\xd5\xf9\x15\x17\xac\xc9\x66\xa7\xa7\x4e\xdd\xfe\xd4\xfe" "\x99\x99\x53\x93\x59\x18\xef\x8b\x4b\x1a\x9e\xab\xd6\xf3\x65\x7d\xc3" "\x63\xca\x16\x9d\x2f\x83\x2b\x7e\xcf\xd8\xfb\xb7\xbf\xbc\xf1\xea\x36" "\x97\x6f\x08\xc7\x6a\xf4\xd6\xce\xcf\x55\xbe\xcd\x8e\xb1\xce\xcf\x55" "\xed\xdd\xbd\xfd\xf1\x6c\xba\x74\x5b\x16\xc6\x2a\x7b\xbf\x8f\x67\xbb" "\xaf\x66\xf9\xf1\x4c\x59\xa2\xc3\xf1\xcc\xb7\x79\xe1\xb6\x73\xff\x5e" "\x30\xe5\x92\x86\xf7\xbf\x91\xa2\xf7\xbf\xa1\x91\xe1\xfa\xfb\xdf\x50" "\x3a\x1a\x23\x4d\xef\x7f\x8b\x9f\x9a\xa1\xda\xca\xb2\xec\xcc\x6d\xcb" "\x7b\xff\x1b\x09\xbf\x56\xf4\xfe\xb7\x0a\x5f\x7f\x2e\xed\x91\xf7\xbf" "\xfc\x58\x3d\x72\x7b\xe7\x73\x20\xdf\xe6\xc5\xf1\x95\x9e\x03\xc3\x1d" "\xdf\xff\xae\x0b\x73\x20\xac\xe7\xe6\x90\x18\x46\x1b\x72\xff\xbb\xb5" "\xeb\xe7\xea\xa7\x69\xc3\x73\x59\x78\xde\x0c\x0f\x8f\x84\xf3\x66\x38" "\xde\x63\xf3\x79\xb3\x7d\xd1\x3e\xf9\xad\xe5\xf7\xbd\x75\xe2\xbd\x9d" "\x37\x5b\xaf\x6b\x7e\xae\x9a\xbe\x6f\x29\xe1\x79\x93\x1f\xab\xbf\x98" "\xe8\x7c\xde\xe4\xdb\xbc\x31\x79\xee\xef\x1d\xeb\xe2\x1f\x1b\xde\x3b" "\xd6\x14\x9d\x03\x23\x43\x6b\xf2\xf5\x8e\xa4\x93\xa0\xfe\x7e\x37\xbf" "\x2e\x9e\x03\xb7\x67\x07\xb2\x13\xd9\xd1\xec\x60\xda\x27\x7f\x96\xf3" "\xfb\x1a\xdb\xb6\xbc\x73\x60\x4d\xf8\xf5\x7e\xbf\x77\x5c\xd9\x23\xe7" "\x40\x7e\xac\x5e\xd9\xd6\xf9\x1c\xc8\xb7\xf9\xc1\xf6\xd5\xfd\xde\x69" "\x6b\xb8\x24\x6d\xd3\xf0\xbd\x53\xeb\xcf\x17\x96\xca\xfc\x57\x0f\x2f" "\xdc\x5e\xeb\x61\x5b\xed\xcc\x9f\xaf\xf3\x13\x3b\x3a\xff\x6c\x28\xdf" "\xe6\xad\x1d\x2b\xcd\x19\x9d\x8f\xd3\xad\xe1\x92\x0b\xda\x1c\xa7\xd6" "\xd7\xcf\x52\xe7\xf4\xc1\xec\xfd\x39\x4e\x57\x86\x75\x1e\xdd\xd9\xf9" "\x67\x53\xf9\x36\x97\xee\x5a\xe6\xf9\xb4\x37\xcb\xb2\x37\x27\xdf\xac" "\xfd\xbc\x2b\xfc\x7c\xf7\x1f\x66\xff\xf3\xbb\x4d\x3f\xf7\x6d\xf7\x33" "\xe5\x37\x27\xdf\x7c\x60\xfc\xa1\x1f\xad\x64\xfd\x00\x00\xbc\x77\xef" "\xd6\x7e\x9f\x5b\x53\xff\x5e\xb3\xe1\xbf\x58\x2f\xe7\xbf\xff\x03\x00" "\x00\x00\x7d\x21\xe6\xfe\xc1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\xa1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xe1\x30\x93\x8a" "\xe4\xff\xc7\xee\xdc\xfd\xea\x3b\xcf\x65\xe9\xd3\x00\xe7\x83\x78\x7d" "\x3c\x0c\x0f\xde\x5d\xdf\x2e\x76\xbc\xe7\xc2\xdf\x37\xcd\x2f\xc8\x2f" "\xff\xd8\xb7\x46\x5e\xfd\xca\x73\xcb\xbb\xef\xc1\x2c\xcb\x7e\xf9\xc0" "\x87\xda\x6e\xff\xd8\xdd\x71\x5d\x75\x27\xe3\x3a\x3f\xd2\x7c\xf9\x22" "\x57\x5e\xbb\xac\xfb\x7f\xf4\xe1\x85\xed\x1a\x3f\x3f\xe1\xcc\xee\xfa" "\xed\xc7\xc7\xb3\xdc\xd3\xa0\xf6\xff\x23\x59\x97\x65\xd9\xf8\xb6\xda" "\xed\x6e\x7a\x7a\xb2\x36\xdf\x78\x20\xab\xcd\x87\xe6\x5e\x7c\xbe\x7e" "\xfb\xf5\xbf\xc7\x6e\xf3\xe9\xed\xf5\xed\xff\x2a\x7c\x68\xc9\xde\x43" "\x03\x4d\xfb\x6f\x0d\xeb\xb9\x3e\xcc\x4d\xe1\x33\x65\x1e\xdc\xbb\x70" "\x1c\xf2\x19\xf7\x7b\x75\xe3\x35\xff\x7a\xc9\x67\x17\xee\x2f\xee\x37" "\xb0\xe5\xa2\xda\xc3\x7c\xe5\x0f\xeb\xb7\x1b\x3f\x23\xea\xe5\x4b\xea" "\xdb\xc7\xc7\xfd\xfa\x12\xeb\xff\x97\xaf\x7e\xe7\xd5\x7c\xfb\xa7\x6e" "\x68\xbf\xfe\xe7\x06\xdb\xaf\xff\x74\xb8\xdd\x9f\x84\xf9\x8b\x3d\xf5" "\xed\x1b\x8f\xf9\x57\x1a\xd6\xff\xc7\x61\xfd\xf1\xfe\xe2\x7e\xb7\x7f" "\xf3\xfb\x6d\xd7\xff\xda\x15\xf5\xed\x5f\x0b\xe7\xc5\xd7\xc3\x6c\x5d" "\xff\xbd\x7f\xf6\xe1\x77\x16\x3d\x5f\xd9\xc2\xfd\xec\xbd\xab\xbe\x5f" "\xbc\xff\x89\xff\xdd\x51\xdb\x2f\xde\x5e\xbc\xfd\xd6\xf5\x8f\x3e\x37" "\xd9\x74\x3c\x5a\x6f\xff\x8d\xb3\xf5\xdb\xd9\xf3\xc4\xcf\x86\x1a\xb7" "\x8f\x97\xc7\xfb\x89\x1e\xbd\xab\xf9\xfc\x1e\x08\xcf\x6f\x53\x8f\x3c" "\xcb\xb2\xef\xfc\x49\xd6\x74\x9c\xb3\x8f\xd6\xf7\xfb\xe7\x96\xf5\xc7" "\xdb\x3b\x79\x57\xfb\xf5\xdf\xda\xb2\xce\x93\x03\xd7\xd6\xf6\x5f\x78" "\x3c\x1b\x9a\x1e\xd7\xd7\xfe\x66\x5b\xdb\xc7\x1b\xd7\xb3\xf7\xef\x37" "\x34\x3d\x9e\x97\xef\x0b\xc7\xef\xec\xf8\x0f\xf2\xdb\x3d\xfd\x50\x38" "\x1f\xc3\xf5\xff\xf7\xc3\xfa\xed\xb5\x7e\x96\xe9\x6b\xf7\x35\xbf\xdf" "\xc4\xed\xbf\xbe\xa1\xfe\xba\x8d\xb7\x37\xde\xb2\xfe\x97\x5b\xd6\x3f" "\x77\x6d\x7e\xec\x8a\xd7\x7f\xff\xd9\xfa\xfa\x5f\xbb\x67\x6d\xd3\xfa" "\xf7\x7e\x32\x9c\x4f\xf7\xd7\x67\xd1\xfa\x0f\xff\xf5\xc5\x4d\xfb\x7f" "\xe3\xdb\xf5\xe7\xe3\xd4\x93\x63\xc7\x4f\x4c\xcf\x1e\x39\xd8\x70\x54" "\x1b\x5f\xc7\x6b\x47\xd7\xad\xbf\xe0\xc2\x0f\x5c\x74\x71\x78\x2f\x6d" "\xfd\xfb\xbe\x13\x33\x8f\x4d\x9d\xda\x34\xb1\x69\x22\xcb\x36\xf5\xe1" "\x47\x06\x76\x7b\xfd\xdf\x0c\xf3\x7f\xea\x63\x6e\xf5\xef\xa1\xee\x47" "\x3f\xab\x9f\x77\x2f\x7d\xaa\xfe\x75\xeb\xa6\x9f\xd7\xff\xfe\x72\xb8" "\xfc\xd1\xf0\x7c\xc6\xaf\x8f\x5f\xfb\xcb\x91\xa6\xf3\xb5\xf5\x79\x9f" "\xbb\xa7\x3e\xcf\x75\xfd\xb7\x84\x75\xb4\xf3\xf8\xba\xc5\x97\x5d\xf1" "\xd5\xff\xbe\x76\x59\x37\x7c\xfa\xf3\xaf\xcf\xfe\xd3\x1f\xbd\xd5\xfa" "\x7d\x41\x7c\x3c\x27\x2f\x1b\xad\x3d\xbe\x57\x36\x5f\x5e\xbb\x6e\xe0" "\x8d\xfa\xf5\xad\xef\x57\x45\xfe\xeb\xb2\xe6\xd7\xf5\x8f\x87\x27\x6a" "\xf3\x7b\xe1\xb8\xce\x87\x4f\x66\xde\x72\x79\xfd\xfe\x5a\x6f\x3f\x7e" "\x36\xc9\x4b\x9f\xae\xbf\x7e\xe3\x77\x72\x71\xff\xac\xe5\xf3\x44\x36" "\x0c\x35\x3f\x8e\x73\x5d\xff\x8f\xc3\xf7\x31\xdf\xbf\xb2\xf9\xfd\x2f" "\x9e\x1f\xdf\x7b\xae\xe5\xd3\x9c\x37\x64\x03\xf9\x12\xe6\xc2\xfb\x43" "\x36\x57\xbf\x3e\x6e\x15\x8f\xf7\x4b\x67\x2e\x6f\x7b\x7f\xf1\x73\x78" "\xb2\xb9\xab\x56\xb2\xcc\x25\x4d\x3f\x3d\x3d\x7e\xf4\xc8\xf1\xd9\xa7" "\xc6\x67\xa6\xa6\x67\xc6\xa7\x9f\x7e\x66\xdf\xb1\x13\xb3\xc7\x67\xf6" "\xd5\x3e\xbb\x74\xdf\x17\x8b\xf6\x5f\x78\x7d\xaf\xaf\xbd\xbe\x0f\x4e" "\xed\xda\x91\xd5\x5e\xed\x27\xea\xa3\xcb\xce\xf7\xfa\x4f\x3e\x7c\xe0" "\xe0\x1d\x13\x37\x1e\x9c\x3a\xb4\x7f\xf6\xd0\xcc\xc3\x27\xa7\x4e\x1d" "\x3e\x30\x3d\x7d\x60\xea\xe0\xf4\x8d\xfb\x0f\x1d\x9a\x7a\xb2\x68\xff" "\x23\x07\xf7\x4c\x6e\xdb\xbd\xfd\x8e\x6d\x63\x87\x8f\x1c\xdc\x73\xe7" "\xee\xdd\xdb\x77\x8f\x1d\x39\x7e\x22\x5f\x46\x7d\x51\x05\x76\x4d\x7c" "\x69\xec\xf8\xa9\x7d\xb5\x5d\xa6\xf7\xec\xd8\x3d\xb9\x73\xe7\x8e\x89" "\xb1\x63\x27\x0e\x4e\xed\xb9\x63\x62\x62\x6c\xb6\x68\xff\xda\xd7\xa6" "\xb1\x7c\xef\x27\xc6\x4e\x4d\x1d\xdd\x3f\x73\xe4\xd8\xd4\xd8\xf4\x91" "\x67\xa6\xf6\x4c\xee\xde\xb5\x6b\x5b\xe1\xa7\x3f\x1e\x3b\x79\x68\x7a" "\xd3\xf8\xa9\xd9\xe3\xe3\xb3\xd3\x53\xa7\xc6\xeb\x8f\x65\xd3\x4c\xed" "\xe2\xfc\x6b\x5f\xd1\xfe\x54\xc3\xf4\x89\xf0\x7e\xd7\x62\x20\x7c\x77" "\xfe\xb9\x5b\x77\xa5\xcf\xc7\xcd\x7d\xeb\xcb\x4b\xde\x54\x7d\x93\xe6" "\x6f\x4f\xb3\xb7\xc3\x67\x41\xc5\xaf\x6f\x45\x7f\x8f\xb9\x7f\x24\xcc" "\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xf0\xc1\xff\x0b\x57\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\xaf\x0d\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\x1f\x0d\x33\xa9\x48\xfe\xd7\xff\x5f\xc5\xfe\x7f\xb6\x74" "\x7f\x5e\xff\x5f\xff\x3f\xd3\xff\xd7\xff\x6f\x38\xaa\xfa\xff\xab\x47" "\xff\x7f\xe9\xfe\x7f\x3b\xfa\xff\xcd\x8f\x43\xff\x5f\xff\x5f\xff\x5f" "\xff\x9f\xee\xea\xb5\xfe\x7f\xcc\xfd\xeb\xb2\xac\x92\xf9\x1f\x00\x00" "\x00\xaa\x20\xe6\xfe\xf5\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd" "\x17\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x5f\x18\x66\x52\x91" "\xfc\xaf\xff\xaf\xff\xaf\xff\xdf\x5b\xfd\xff\xc1\x96\xdb\x59\x71\xff" "\x7f\x60\x38\xcb\xf4\xff\x6b\xf4\xff\x7b\x83\xfe\xbf\xfe\x7f\x27\xfa" "\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x8a\xf5\x5a\xff\x3f\xe6\xfe" "\x0f\x84\x99\x54\x24\xff\x03\x00\x00\x40\x15\x7c\xa0\xf6\x53\xde\xd1" "\xec\xa2\x2c\x93\xff\x01\x00\x00\xa0\xa4\x62\xee\xbf\x38\xcc\x44\xfe" "\x07\x00\x00\x80\xd2\x88\xb9\x7f\x43\x98\x49\x45\xf2\xbf\xfe\x7f\x1f" "\xf7\xff\x07\x42\x4d\x54\xff\xbf\x54\xfd\x7f\xff\xfe\xbf\xfe\xbf\xfe" "\xff\xca\xe8\xff\xeb\xff\x67\xfa\xff\xef\xd9\xf9\xee\xcf\xf7\xfb\xfa" "\xf5\xff\xf5\xff\x29\xd6\x6b\xfd\xff\x98\xfb\x7f\x25\xcc\xa4\x22\xf9" "\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x0f\x86\x99\xc8\xff\x00\x00\x00\x50" "\x1a\x31\xf7\x5f\x12\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x69" "\x98\x49\x45\xf2\xbf\xfe\x7f\x1f\xf7\xff\xfd\xfb\xff\xfa\xff\xfa\xff" "\x4d\xeb\xd7\xff\xef\x4d\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\xf7\xf3" "\xfa\xf5\xff\xf5\xff\x29\xd6\x6b\xfd\xff\x98\xfb\x2f\x0b\x33\xa9\x48" "\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xf2\x30\x13\xf9\x1f\x00\x00\x00" "\x4a\x23\xe6\xfe\x2b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xaf" "\x0c\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xef\x26\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa" "\xff\x14\xeb\xb5\xfe\x7f\xcc\xfd\x57\x85\x99\x54\x24\xff\x03\x00\x00" "\x40\x15\xc4\xdc\x7f\x75\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\x87\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x37\x86\x99\x54\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\x93\xfe\xbf" "\xfe\x7f\x27\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x8a\xf5\x5a" "\xff\x3f\xe6\xfe\x0f\x87\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc" "\x7f\x4d\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xb5\x61\x26\xf2" "\x3f\x00\x00\x00\x94\x46\xcc\xfd\x9b\xc2\x4c\x2a\x92\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\x57\xa9\xff\x3f\xa2\xff\xdf\x8e\xfe\xbf" "\xfe\x7f\x27\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x8a\xb5\xeb" "\xff\xaf\x3d\x8f\xfd\xff\x98\xfb\x37\x87\x99\x54\x24\xff\x03\x00\x00" "\x40\x15\xc4\xdc\xbf\x25\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\xba\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xeb\xc3\x4c\x2a\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xfd\xfb\xff\xdd\xa4\xff" "\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\x62\xed" "\xfa\xff\xd9\x79\xec\xff\xc7\xdc\x7f\x43\x98\x49\x45\xf2\x3f\x00\x00" "\x00\x54\x41\xcc\xfd\x37\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7" "\xdf\x14\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x35\xcc\xa4\x22" "\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x9b\xf4\xff" "\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\x53\xac\xd7" "\xfa\xff\x31\xf7\xdf\x1c\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73" "\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xb7\x86\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\x8f\x85\x99\x54\x24\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\x93\xfe\xbf\xfe\x7f\x27\xfa" "\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x8a\xf5\x5a\xff\x3f\xe6\xfe" "\xdb\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x3d\xcc\x44" "\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x3c\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\x7f\x22\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\xbf\x9b\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7" "\xf5\xeb\xff\xeb\xff\x53\xac\xd7\xfa\xff\x31\xf7\x4f\x86\x99\x54\x24" "\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\x7f\x7b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x8e" "\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\x6e\xd2\xff\xd7\xff\xef\x44\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff" "\x4f\xb1\x5e\xeb\xff\xc7\xdc\xbf\x33\xcc\xa4\x22\xf9\x1f\x00\x00\x00" "\xaa\x20\xe6\xfe\x5d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x77" "\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x19\x66\x52\x91\xfc" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4d\xfa\xff\xfa" "\xff\x9d\xe8\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\x29\xd6\x6b\xfd" "\xff\x98\xfb\x77\x87\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff" "\x91\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xbb\xc2\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\x3f\x1a\x66\x52\x91\xfc\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4d\xfa\xff\xfa\xff\x9d\xe8\xff" "\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\x29\xd6\x6b\xfd\xff\x98\xfb\xf7" "\x84\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\x7f\x77\x98\x89\xfc" "\x0f\x00\x00\x00\xa5\x11\x73\xff\x3d\x61\x26\xf2\x3f\x00\x00\x00\x94" "\x46\xcc\xfd\x7b\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xbb\x49\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x7e\x5e" "\xbf\xfe\xbf\xfe\x3f\xc5\x7a\xad\xff\x1f\x73\xff\xbd\x61\x26\x15\xc9" "\xff\x00\x00\x00\x50\x05\x31\xf7\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\xe3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x9f" "\x08\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xef\x26\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa" "\xff\x14\xeb\xb5\xfe\x7f\xcc\xfd\xf7\x85\x99\x54\x24\xff\x03\x00\x00" "\x40\x15\xc4\xdc\xff\xc9\x30\x13\xf9\x1f\x00\x00\x00\xfa\xc5\xa5\x45" "\x1b\xc4\xdc\xff\xab\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xf7" "\x87\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xa7\xfe\xff\xd9" "\xc7\x5b\x1e\x89\xfe\xbf\xfe\xff\xb9\xd3\xff\xd7\xff\xef\x44\xff\x5f" "\xff\xbf\x9f\xd7\x5f\xc2\xfe\xff\xa0\xfe\x3f\xab\xad\xd7\xfa\xff\x31" "\xf7\xff\x5a\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x0f\x84" "\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x2a\xcc\x44\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\xff\xd7\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xfd\xfb\xff\xfa\xff\xdd\xa4\xff\xaf\xff\xdf\x89\xfe\xbf" "\xfe\x7f\x3f\xaf\xbf\x84\xfd\x7f\xff\xfe\x3f\xab\xae\xd7\xfa\xff\x31" "\xf7\xff\x46\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xbf\x19" "\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x5b\x61\x26\xf2\x3f\x00" "\x00\x00\x94\x46\xcc\xfd\x0f\x86\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\x77\x93\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa" "\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x8a\xf5\x5a\xff\x3f\xe6\xfe\xdf\x0e" "\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xa1\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\x4f\x87\x99\xc8\xff\x00\x00\x00\x50\x1a" "\x31\xf7\x7f\x26\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\xbf\x9b\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xef\xe7\xf5" "\xeb\xff\xeb\xff\x53\xac\xd7\xfa\xff\x31\xf7\x3f\x1c\x66\x52\x91\xfc" "\x0f\x00\x00\x00\x55\x10\x73\xff\x67\xc3\x4c\x96\x99\xff\x2f\xea\xca" "\xaa\x00\x00\x00\x80\xd5\x14\x73\xff\xef\x84\x99\xf8\xef\xff\x00\x00" "\x00\x50\x1a\x31\xf7\xff\x6e\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x37\xf5\x4f\xff\xff\x9d\x8e\xd7\xea\xff" "\xd7\xe9\xff\x37\xd3\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xb3\x5e\xeb\xff" "\xc7\xdc\xff\xb9\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x7f" "\x2f\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xf7\xc3\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\x1f\x09\x33\xa9\x48\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xa6\xfe\xe9\xff\x77\xa6\xff\x5f" "\xa7\xff\xdf\x4c\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xce\x7a\xad\xff\x1f" "\x73\xff\xe7\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\x83" "\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x7d\x61\x26\xf2\x3f\x00" "\x00\x00\x94\x46\xcc\xfd\x8f\x86\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\x77\x93\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa" "\xff\xbd\xbe\xfe\x35\x1d\xf6\xd7\xff\xd7\xff\xa7\x58\xaf\xf5\xff\x63" "\xee\xdf\x1f\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x17\xc2" "\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x0f\x84\x99\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\x1f\x0c\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xef\x26\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff" "\xfb\x79\xfd\xdd\xeb\xff\xaf\x5d\xd6\xe3\xd7\xff\xa7\x1f\xf4\x5a\xff" "\x3f\xe6\xfe\xa9\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x0f" "\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x1f\x0e\x33\x91\xff\x01" "\x00\x00\xa0\x34\x62\xee\x7f\x2c\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x9b\xf4\xff\xf5\xff\x3b\xd1\xff\xd7" "\xff\xef\xe7\xf5\xfb\xf7\xff\xf5\xff\x29\xd6\x6b\xfd\xff\x98\xfb\x8f" "\x84\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\xc5\x30\x13\xf9" "\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x2f\x85\x99\xc8\xff\x00\x00\x00\x50" "\x1a\x31\xf7\x1f\x0d\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xef\x26\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\xfb\x79" "\xfd\xfa\xff\xfa\xff\x14\xeb\xb5\xfe\x7f\xcc\xfd\xc7\xc2\x4c\x2a\x92" "\xff\x01\x00\x00\xa0\x0a\x62\xee\x3f\x1e\x66\x22\xff\x03\x00\x00\x40" "\x69\xc4\xdc\x7f\x22\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x64" "\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f" "\x37\xe9\xff\xeb\xff\x77\xa2\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff" "\xa7\x58\xaf\xf5\xff\x63\xee\x7f\x3c\xcc\xa4\x22\xf9\x1f\x00\x00\x00" "\xaa\x20\xe6\xfe\x53\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xd3" "\x61\x26\xf2\x3f\x00\x00\x00\xf4\xb5\xc6\xae\x69\xcc\xfd\x33\x61\x26" "\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xdd\xa4" "\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\x62" "\xbd\xd6\xff\x8f\xb9\x7f\x36\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20" "\xe6\xfe\x27\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x9f\x0c\x33" "\x91\xff\x01\x00\x00\xa0\x34\xfe\x9f\xbd\xbb\xd8\x11\xec\x3a\xe2\x38" "\xdc\xb2\x13\x39\x79\xa6\xac\xb2\xcb\x23\x85\x99\xc9\x61\x66\x66\x4e" "\x1c\x66\x66\x66\x66\x66\x70\x60\x11\xc5\x5d\x55\xb1\x46\x9a\x7b\x7b" "\x5a\x7d\xbb\xcf\x39\xf5\x7d\x9b\x92\x25\xbb\xe7\x2c\xac\x51\xff\x17" "\x3f\xdd\xdc\xfd\xf7\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x8f\xa4\xff\xd7\xff\x6f\xd1\xff\xeb\xff\x67\x7e\xbf" "\xfe\x5f\xff\xcf\xbe\xd1\xfa\xff\xdc\xfd\xf7\x89\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\x7d\xe3\x16\xfb\x1f\x00\x00\x00\x96\x91\xbb" "\xff\x7e\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\x7f\xff\xb8\xa5\xc9" "\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x48\xfa\x7f\xfd" "\xff\x16\xfd\xbf\xfe\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x1b\xad\xff\xcf" "\xdd\xff\x80\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x30\x6e" "\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x1f\x14\xb7\xd8\xff\x00\x00\x00" "\xb0\x8c\xdc\xfd\x0f\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x8f\xa4\xff\xd7\xff\x6f\xd1\xff\xeb\xff\x67\x7e\x7f" "\x97\xfe\xff\xa6\xeb\xfc\xf7\xfa\x7f\xce\x62\xb4\xfe\x3f\x77\xff\x43" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd0\xb8\xc5\xfe\x07" "\x00\x00\x80\x65\xe4\xee\x7f\x58\xdc\x62\xff\x03\x00\x00\xc0\x32\x72" "\xf7\x3f\x3c\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x3f\x92\xfe\x5f\xff\xbf\x45\xff\xaf\xff\x9f\xf9\xfd\x5d\xfa\xff" "\xeb\xd1\xff\x73\x16\xa3\xf5\xff\xb9\xfb\x1f\x11\xb7\x34\xd9\xff\x00" "\x00\x00\xd0\x41\xee\xfe\x47\xc6\x2d\xf6\x3f\x00\x00\x00\x2c\x23\x77" "\xff\xa3\xe2\x16\xfb\x1f\x00\x00\x00\x96\x91\xbb\xff\xd1\x71\x4b\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x91\xf4\xff\xfa" "\xff\x2d\xfa\x7f\xfd\xff\xcc\xef\xd7\xff\x9f\xb5\xff\xbf\x7d\xef\x47" "\xb1\xb0\xd1\xfa\xff\xdc\xfd\x8f\x89\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\x63\xe3\x16\xfb\x1f\x00\x00\x00\x96\x91\xbb\xff\x71\x71" "\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff\xf8\xb8\xa5\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd" "\xbf\xfe\x7f\xe6\xf7\xeb\xff\x7d\xff\x9f\x7d\xa3\xf5\xff\xb9\xfb\x9f" "\x10\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x27\xc6\x2d\xf6\x3f" "\x00\x00\x00\x2c\x23\x77\xff\xad\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8" "\xdd\xff\xa4\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\x7f\xe6\xf7\xeb\xff\xf5" "\xff\xec\x1b\xad\xff\xcf\xdd\xff\xe4\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\x3f\x25\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x9f\x1a" "\xb7\xd8\xff\x00\x00\x00\xb0\x8c\xdc\xfd\x4f\x8b\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x8f\xa4\xff\xd7\xff\x6f\xd1" "\xff\xeb\xff\x67\x7e\xbf\xfe\x5f\xff\xcf\xbe\xd1\xfa\xff\xdc\xfd\x4f" "\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x33\xe2\x16\xfb\x1f" "\x00\x00\x00\x96\x91\xbb\xff\x99\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8" "\xdd\xff\xac\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\x2f\xac\xff\xbf\x4d\xff" "\x7f\xed\xcf\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x36\xfd\xbf\xfe" "\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x1b\xad\xff\xcf\xdd\xff\xec\xb8\xa5" "\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x27\x6e\xb1\xff\x01\x00\x00" "\x60\x19\xb9\xfb\x9f\x1b\xb7\xd8\xff\x00\x00\x00\xb0\x8c\xdc\xfd\xcf" "\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\xdf\xf7\xff\xf5\xff\xfa\x7f\xfd\xff" "\x91\xf4\xff\xfa\xff\x2d\xfa\x7f\xfd\xff\xcc\xef\xd7\xff\xeb\xff\xd9" "\x37\x5a\xff\x9f\xbb\xff\xf9\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\x7f\x41\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\xbf\x30\x6e\xb1" "\xff\x01\x00\x00\x60\x19\xb9\xfb\x5f\x14\xb7\x34\xd9\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\x49\xff\xaf\xff\xdf\xa2\xff\xd7" "\xff\xcf\xfc\xfe\xf3\xf6\xff\xf7\xba\xf5\xf4\xea\xff\xe9\x60\xb4\xfe" "\x3f\x77\xff\x8b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x92" "\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x69\xdc\x62\xff\x03\x00" "\x00\xc0\x32\x72\xf7\xbf\x2c\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\x45\xff\xaf\xff\x9f\xf9" "\xfd\xbe\xff\xaf\xff\x67\xdf\x68\xfd\x7f\xee\xfe\x97\xc7\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\x15\x71\x8b\xfd\x0f\x00\x00\x00\xcb" "\xc8\xdd\xff\xca\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f\x55\xdc" "\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\xb3\xfe\xff\xae\xd7\xfc" "\x71\xfa\xff\x83\xe9\xff\xf5\xff\x5b\xf4\xff\xfa\xff\x99\xdf\xaf\xff" "\xd7\xff\xb3\x6f\xb4\xfe\x3f\x77\xff\xab\xe3\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\x9a\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\x7f" "\x6d\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\xbf\xee\xf4\xfe\x3f\x43" "\x6d\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xbf\x59\xff\xef\xfb\xff\x97" "\x4c\xff\xaf\xff\xdf\xa2\xff\xd7\xff\xcf\xfc\x7e\xfd\xbf\xfe\x9f\x7d" "\xa3\xf5\xff\xb1\xfb\x4f\x5e\x1f\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x37\xc4\x2d\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff\x1b\xe3\x16" "\xfb\x1f\x00\x00\x00\x96\x91\xbb\xff\x4d\x71\x4b\x93\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x91\xf4\xff\xfa\xff\x2d\xfa\x7f" "\xfd\xff\xcc\xef\xd7\xff\xeb\xff\xd9\x37\x5a\xff\x9f\xbb\xff\xcd\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\xb3\xbb\xfb\x19\xfe\x9d\xdc\xfd\x6f\x89" "\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\xb7\xc6\x2d\xf6\x3f\x00\x00" "\x00\x2c\x23\x77\xff\xdb\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xfa\xff\x23\xe9\xff\xf5\xff\x5b\xf4\xff\xfa\xff\x99\xdf" "\xaf\xff\xd7\xff\xb3\x6f\xb4\xfe\x3f\x77\xff\xdb\xe3\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\x8e\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4" "\xee\xbf\x2d\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\xdf\x19\xb7\x34" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\xac\xff\xff\xdf\x0f" "\xd4\xff\x9f\x99\xfe\x5f\xff\x7f\xa2\xff\x3f\xb7\xab\xee\xe7\x67\x7f" "\xbf\xfe\x5f\xff\xcf\xbe\xd1\xfa\xff\xdc\xfd\xef\x8a\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\xbb\xe3\x16\xfb\x1f\x00\x00\x00\x96\x91" "\xbb\xff\x3d\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd\xff\xde\xb8\xa5" "\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x60\xfd\xbf\xef\xff" "\xdf\x10\xfd\xbf\xfe\xff\x44\xff\x7f\x6e\x57\xdd\xcf\xcf\xfe\x7e\xfd" "\xbf\xfe\x9f\x7d\xa3\xf5\xff\xb9\xfb\xdf\x17\xb7\x34\xd9\xff\x00\x00" "\x00\xd0\x41\xee\xfe\xf7\xc7\x2d\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff" "\x07\xe2\x16\xfb\x1f\x00\x00\x00\x96\x91\xbb\xff\x83\x71\x4b\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x7d\xfb\xff\x7b\xde\xf1\xbf\x92\xfe" "\xff\x58\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\x7f\xe6\xf7\xeb\xff\xf5\xff" "\xec\x1b\xad\xff\xcf\xdd\xff\xa1\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\x7f\x38\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x3f\x12\xb7" "\xd8\xff\x00\x00\x00\xb0\x8c\xdc\xfd\x1f\x8d\x5b\x9a\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xef\xdb\xff\x9f\xd2\xff\x1f\x4b\xff\xaf\xff\xdf" "\xa2\xff\xd7\xff\xcf\xfc\x7e\xfd\xbf\xfe\x9f\x7d\xa3\xf5\xff\xb9\xfb" "\x3f\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x8f\xc7\x2d\xf6" "\x3f\x00\x00\x00\x2c\x23\x77\xff\x27\xe2\x16\xfb\x1f\x00\x00\x00\x96" "\x91\xbb\xff\x93\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\x91\xf4\xff\xfa\xff\x2d\xfa\x7f\xfd\xff\xc5\xbf\xff\x1e" "\x37\xe9\xff\xf5\xff\x8c\xe3\x32\xfa\xff\x9b\x6f\xa0\xff\xcf\xdd\xff" "\xa9\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x3a\x6e\xb1\xff" "\x01\x00\x00\x60\x19\xb9\xfb\x3f\x13\xb7\xd8\xff\x00\x00\x00\x30\xac" "\x6b\x3b\xd2\x3d\xb9\xfb\x3f\x1b\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\x1f\x49\xff\xaf\xff\xdf\xa2\xff\xd7\xff\xcf" "\xfc\x7e\xfd\xbf\xfe\x9f\x7d\x97\xd1\xff\x9f\xdc\x40\xff\x9f\xbb\xff" "\x73\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x7c\xdc\x62\xff" "\x03\x00\x00\xc0\x32\x72\xf7\x7f\x21\x6e\xb1\xff\x01\x00\x00\x60\x19" "\xb9\xfb\xbf\x18\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x1f\x49\xff\xaf\xff\xdf\xa2\xff\x1f\xb3\xff\xbf\x59\xff\xaf" "\xff\xd7\xff\x73\x41\x46\xeb\xff\x73\xf7\x7f\x29\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\x5f\x8e\x5b\xec\x7f\x00\x00\x00\x58\x46\xee" "\xfe\xaf\xc4\x2d\xf6\x3f\x00\x00\x00\x2c\x23\x77\xff\x57\xe3\x96\x26" "\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x23\xe9\xff\xf5" "\xff\x5b\xf4\xff\x63\xf6\xff\xbe\xff\xaf\xff\xd7\xff\x73\x51\x46\xeb" "\xff\x73\xf7\x7f\x2d\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x5f" "\x8f\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\x6f\xc4\x2d\xf6\x3f\x00" "\x00\x00\x2c\x23\x77\xff\x37\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\x23\xe9\xff\xf5\xff\x5b\xf4\xff\xfa\xff\x99" "\xdf\xaf\xff\xd7\xff\xb3\xef\x8c\xfd\x7f\xfe\x7a\x7f\x78\xff\x9f\xbb" "\xff\x5b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x76\xdc\x62" "\xff\x03\x00\x00\xc0\x32\x72\xf7\x7f\x27\x6e\xb1\xff\x01\x00\x00\x60" "\x19\xb9\xfb\xbf\x1b\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\x1f\x49\xff\xaf\xff\xdf\xa2\xff\xd7\xff\xcf\xfc\x7e\xfd" "\xbf\xfe\x9f\x7d\x67\xec\xff\xeb\xef\xea\xa3\xfb\xff\xdc\xfd\xdf\x8b" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xf7\xe3\x16\xfb\x1f\x00" "\x00\x00\x96\x91\xbb\xff\x07\x71\x8b\xfd\x0f\x00\x00\x00\xcb\xc8\xdd" "\xff\xc3\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\x7f\xe6\xf7\xeb\xff\xf5\xff" "\xec\x1b\xad\xff\xcf\xdd\xff\xa3\xb8\xf5\x8b\x5c\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\xff\x71\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\xff" "\x24\x6e\xb1\xff\x01\x00\x00\x60\x19\xb9\xfb\x7f\x1a\xb7\x34\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\x49\xff\xaf\xff\xdf" "\xa2\xff\xd7\xff\xcf\xfc\x7e\xfd\xbf\xfe\x9f\x7d\xa3\xf5\xff\xb9\xfb" "\x7f\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x9f\xc7\x2d\xf6" "\x3f\x00\x00\x00\x2c\x23\x77\xff\x2f\xe2\x16\xfb\x1f\x00\x00\x00\x96" "\x91\xbb\xff\x97\x71\x4b\x93\xfd\xbf\x68\xff\x7f\xb7\xbd\x3f\x5b\xff" "\x7f\xea\xb8\xfe\xff\x16\xfd\xbf\xfe\x5f\xff\xaf\xff\xbf\x83\xfe\x5f" "\xff\xbf\x45\xff\xaf\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x46\xeb\xff" "\x73\xf7\xff\x2a\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xbf\x8e" "\x5b\xec\x7f\x00\x00\x00\x58\x46\xee\xfe\xdf\xc4\x2d\xf6\x3f\x00\x00" "\x00\x2c\x23\x77\xff\x6f\xe3\x96\x26\xfb\x7f\xd1\xfe\x7f\x97\xfe\xff" "\x94\xef\xff\xeb\xff\x4f\xf4\xff\xfa\xff\x83\xe9\xff\xf5\xff\x5b\xf4" "\xff\xfa\xff\x99\xdf\xaf\xff\xd7\xff\xb3\x6f\xb4\xfe\x3f\x77\xff\xef" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xfb\xb8\xc5\xfe\x07" "\x00\x00\x80\x65\xe4\xee\xff\x43\xdc\x62\xff\x03\x00\x00\xc0\x32\x72" "\xf7\xff\x31\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f" "\x79\xfd\xff\x2d\xfa\xff\x0b\xa7\xff\xd7\xff\x9f\xe8\xff\xcf\xed\xaa" "\xfb\xf9\xd9\xdf\xaf\xff\xd7\xff\xb3\x6f\xb4\xfe\x3f\x77\xff\x9f\xe2" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xe7\xb8\xc5\xfe\x07\x00" "\x00\x80\x65\xe4\xee\xff\x4b\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7" "\xff\x35\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef\xfb" "\xff\x47\xd2\xff\xeb\xff\xb7\xe8\xff\xf5\xff\x33\xbf\xff\x0a\xfa\xff" "\xbb\xdc\xf9\x1f\xf4\xff\xcc\x60\xb4\xfe\x3f\x77\xff\xdf\xe2\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xf7\xb8\xc5\xfe\x07\x00\x00\x80" "\x65\xe4\xee\xff\x47\xdc\x62\xff\x03\x00\x00\xc0\x32\x72\xf7\xdf\x1e" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\x49" "\xff\xaf\xff\xdf\xa2\xff\xd7\xff\xcf\xfc\x7e\xdf\xff\xd7\xff\xb3\x6f" "\xb4\xfe\x3f\x77\xff\x3f\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xaf\xb8\xc5\xfe\x07\x00\x00\x80\x65\xe4\xee\xff\x77\xdc\x62\xff" "\x03\x00\x00\xc0\x32\x72\xf7\xff\x27\x6e\x69\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\x45\xff\xaf\xff" "\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x46\xeb\xff\x73\xf7\xff\x37\x00\x00" "\xff\xff\x28\x5a\x44\x4d", 24095)); res = -1; NONFAILING(res = syz_mount_image(/*fs=*/0x20001cc0, /*dir=*/0x20001c80, /*flags=MS_I_VERSION*/ 0x800000, /*opts=*/0x200005c0, /*chdir=*/1, /*size=*/0x5e1f, /*img=*/0x200039c0)); if (res != -1) r[0] = res; break; case 1: NONFAILING( memcpy((void*)0x20000000, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 250)); syscall(__NR_mknod, /*file=*/0x20000000ul, /*mode=*/0ul, /*dev=*/0x701 + procid * 2); break; case 2: NONFAILING(memcpy((void*)0x20000f40, "msdos\000", 6)); NONFAILING(memcpy((void*)0x20000140, ".\000", 2)); res = -1; NONFAILING( res = syz_mount_image( /*fs=*/0x20000f40, /*dir=*/0x20000140, /*flags=MS_I_VERSION|MS_PRIVATE|MS_SYNCHRONOUS|MS_STRICTATIME|MS_SILENT|MS_REMOUNT|0x202408*/ 0x1a4a438, /*opts=*/0x200008c0, /*chdir=*/0xb, /*size=*/0, /*img=*/0x20000000)); if (res != -1) r[1] = res; break; case 3: NONFAILING(memcpy((void*)0x20000200, "./bus\000", 6)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000200ul, /*flags=O_NOCTTY|O_LARGEFILE|O_EXCL*/ 0x8180, /*mode=S_IXOTH|S_IWOTH|S_IROTH|S_IWGRP|S_IXUSR*/ 0x57); break; case 4: NONFAILING(memcpy((void*)0x20000f40, "msdos\000", 6)); NONFAILING(memcpy((void*)0x20000f00, ".\000", 2)); NONFAILING(*(uint64_t*)0x20000100 = 0); NONFAILING(*(uint16_t*)0x20000108 = -1); NONFAILING(*(uint8_t*)0x2000010a = 0); NONFAILING(*(uint64_t*)0x2000010b = r[1]); NONFAILING(sprintf((char*)0x20000113, "%023llo", (long long)r[0])); NONFAILING(*(uint32_t*)0x2000012a = -1); NONFAILING(syz_mount_image( /*fs=*/0x20000f40, /*dir=*/0x20000f00, /*flags=MS_I_VERSION|MS_PRIVATE|MS_SYNCHRONOUS|MS_STRICTATIME|MS_SILENT|MS_REMOUNT|0x202408*/ 0x1a4a438, /*opts=*/0x20000100, /*chdir=*/0xb, /*size=*/0, /*img=*/0x20000000)); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }