// https://syzkaller.appspot.com/bug?id=6ba874c1beebd4ed8dfc80f810c9b5e899b7bb9b // 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 use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } 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 == 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++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[5] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x1c880 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xfb (1 bytes) // size: len = 0x607b (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x607b) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000400, "jfs\000", 4)); NONFAILING(memcpy((void*)0x2000000000c0, "./file1\000", 8)); NONFAILING(memcpy( (void*)0x2000000084c0, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\x2f\xd3\x73\x09\x89" "\xad\x08\x45\xc6\x62\xe1\x38\x10\x12\x42\x7c\xb7\x21\xdc\xe2\xb0\x60" "\x01\x48\x20\x21\xaf\xb1\x35\x99\x44\x06\x07\x90\x6d\x10\x89\x2c\x3c" "\x91\x17\x88\x05\x97\x47\x80\x4d\x36\x2c\xf2\x22\x61\xc7\x1a\xf1\x00" "\x58\xb2\x59\x45\x82\x50\xa8\xa6\xcf\xb1\xab\xdb\x3d\xd3\x63\x3c\xd3" "\xd5\x3d\xe7\xf7\x93\x66\xaa\xbe\x3e\x55\xd3\xa7\xfc\x9f\x9a\xee\x72" "\x55\xf5\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x20\xbe\xf3\xed\x1f\x9e\xee\x44\xc4\xe5\x5f\xa6\x07\x0e\x47\x7c\x2a" "\x7a\x11\xdd\x88\xd5\xba\x3e\x16\xf5\xcc\xc5\xbc\x7c\x3f\x22\x8e\xc4" "\x56\x73\x3c\x17\x11\xbd\xe5\x88\x7a\xfd\xad\x6f\x87\x22\xce\x45\xc4" "\x47\xcf\x44\xdc\xbb\x7f\x6b\xbd\x7e\xf8\xcc\x2e\xfb\x71\xfe\xd4\xcd" "\xeb\x9f\x7c\xf7\x5b\x7f\xff\xcd\x1f\xee\x1c\xf9\xf1\x9b\x3f\xfa\x60" "\xbc\xfd\x07\x9f\x3e\xfb\xe1\x6f\x6f\x47\x1c\xfe\xfe\x6b\x1f\x7e\x72" "\x7b\x6f\xb6\x1d\x00\x00\x00\x4a\x51\x55\x55\xd5\x49\x87\xf9\x47\xb7" "\xbe\x0f\x8f\xed\x01\x80\x83\x6f\xf8\xfa\x3f\x7c\x3f\x50\xcb\x8f\xab" "\xd5\x6a\x75\x41\xf5\xe6\x0c\x9e\xef\xf7\xdd\xf9\xd9\x5e\x75\xc1\x75" "\x53\x35\xd9\xed\x66\x11\x11\x9b\xcd\x75\xea\xf7\x0c\x4e\xc7\x03\xc0" "\x82\xd9\x8c\x8f\xdb\xee\x02\x2d\x92\x7f\xd1\xfa\x11\xf1\x54\xdb\x9d" "\x00\xe6\x5a\xa7\xed\x0e\xb0\x2f\xee\xdd\xbf\xb5\xde\x49\xf9\x76\x9a" "\xaf\x07\xc3\x4b\x41\x1e\x5c\x0b\x32\x92\xff\x66\xe7\xc1\xfd\x1d\xdb" "\x4d\xa7\x19\xbf\xc6\x64\x56\xbf\x5f\x77\xa2\x17\xcf\x6e\xd3\x9f\xd5" "\x19\xf5\x61\x9e\xe4\xfc\xbb\xe3\xf9\x5f\x1e\xb6\x0f\xd2\x72\xfb\x9d" "\xff\xac\x6c\x97\xff\x60\x78\xeb\x53\x71\x72\xfe\xbd\xf1\xfc\xc7\x8c" "\xe4\xff\xc7\x88\x58\xd8\xfc\xbb\x13\xf3\x2f\x55\xce\xbf\xff\x38\xf9" "\x6f\xf6\x16\x78\xff\x97\x3f\x00\x00\x00\x00\x00\x07\x5f\xfe\xff\xff" "\xc3\x2d\x9f\xff\x5d\x7e\xf2\x4d\xd9\x95\x9d\xce\xff\x1e\x9b\x51\x1f" "\x00\x00\x00\x00\x00\x00\x00\x60\xaf\x3d\xe9\xf8\x7f\x0f\x18\xff\x0f" "\x00\x00\x00\xe6\x56\x7d\xac\x5e\xfb\xd3\x33\x0f\x1f\xeb\x44\xfc\xed" "\xd0\x84\x65\xeb\x43\xfc\x4b\x9d\x88\xa7\xc7\x96\x07\x0a\x93\x6e\x96" "\x59\x6b\xbb\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x92\xfe" "\xf0\x1a\xde\x4b\x9d\x88\xa5\x88\x78\x7a\x6d\xad\xaa\xaa\xfa\xab\x69" "\xbc\x7e\x5c\x4f\xba\xfe\xa2\x2b\x7d\xfb\xa1\x64\x6d\xff\x91\x07\x00" "\x80\xa1\x8f\x9e\x49\xf7\xf2\xdf\x5d\x19\x3e\xd0\x89\xa8\xe7\x2e\xa5" "\xcf\xfa\x5b\x5a\x5b\x5b\xab\xaa\x95\xd5\xb5\x6a\xad\x5a\x5d\xce\xef" "\x67\x07\xcb\x2b\xd5\x6a\xe3\xb8\x36\x4f\xeb\xc7\x96\x07\xbb\x78\x43" "\xdc\x1f\x54\xf5\x0f\x5b\x69\xac\xd7\x34\xed\x78\x79\x5a\xfb\xf8\xcf" "\xab\x9f\x6b\x50\xf5\x76\xd1\xb1\xd9\x68\x3b\x75\x00\x4a\x37\x7c\x35" "\xba\xe7\x15\xe9\x80\xa9\xaa\x43\xd1\xf6\xbb\x1c\x16\x83\xfd\xff\xe0" "\xb1\xff\xb3\x1b\x6d\xff\x9e\x02\x00\x00\x00\xfb\xaf\xaa\xaa\xaa\x93" "\x3e\xce\xfb\x68\x3a\xe7\xdf\x6d\xbb\x53\x00\xc0\x2c\xac\xe4\xd7\xff" "\xf1\xf3\x02\x6a\xb5\x5a\xad\x56\xab\x0f\x5e\xdd\x54\x4d\x76\xbb\x59" "\x44\xc4\x66\x73\x9d\xfa\x3d\x83\xe1\xf8\x01\x60\xc1\x6c\xc6\xc7\x6d" "\x77\x81\x16\xc9\xbf\x68\xfd\x88\x38\xd2\x76\x27\x80\xb9\xd6\x69\xbb" "\x03\xec\x8b\x7b\xf7\x6f\xad\x77\x52\xbe\x9d\xe6\xeb\x41\x1a\xdf\x3d" "\x5f\x0b\x32\x92\xff\x66\x67\x6b\xbd\xbc\xfe\xa4\xe9\x34\xe3\xd7\x98" "\xcc\xea\xf7\xeb\x4e\xf4\xe2\xd9\x6d\xfa\xf3\xdc\x8c\xfa\x30\x4f\x72" "\xfe\xdd\xf1\xfc\x2f\x0f\xdb\x07\x69\xb9\xfd\xce\x7f\x56\xb6\xcb\xbf" "\xde\xce\xc3\x2d\xf4\xa7\x6d\x39\xff\xde\x78\xfe\x63\x0e\x4e\xfe\xdd" "\x89\xf9\x97\x2a\xe7\xdf\x7f\xac\xfc\x7b\xf2\x07\x00\x00\x00\x00\x80" "\x39\x96\xff\xff\xff\xb0\xf3\xbf\x79\x93\x01\x00\x00\x00\x00\x00\x00" "\x60\xe1\xdc\xbb\x7f\x6b\x3d\xdf\xf7\x9a\xcf\xff\x7f\x76\xc2\x72\x9d" "\xe6\x9c\xfb\x3f\x0f\x8c\x9c\x7f\x67\xd7\xf9\xbb\xff\xf7\x20\xc9\xf9" "\x77\xc7\xf3\x1f\xbb\x20\xa7\xd7\x98\xbf\xfb\xc6\xc3\xfc\xff\x75\xff" "\xd6\xfa\x07\x37\xff\xf9\x99\x3c\x9d\xfb\xfc\x97\x7a\x83\xfa\xb9\x97" "\x3a\xdd\x5e\x3f\x5d\xf3\x53\x2d\xbd\x15\x57\xe3\x5a\x6c\xc4\xa9\x47" "\x96\xef\x8f\xb4\x9f\x7e\xa4\x7d\x69\xa4\xfd\xcc\x94\xf6\xb3\x8f\xb4" "\x0f\xea\xf6\xd5\xdc\x7e\x22\xd6\xe3\x67\x71\x2d\xde\x7c\xd0\xbe\x3c" "\xe5\xc2\xa8\x95\x29\xed\xd5\x94\xf6\x9c\x7f\xcf\xfe\x5f\xa4\x9c\x7f" "\xbf\xf1\x55\xe7\xbf\x96\xda\x3b\x63\xd3\xda\xdd\xf7\xbb\x8f\xec\xf7" "\xcd\xe9\xa4\xe7\xb9\xf8\x97\xff\xbc\xf8\xe8\xde\xb5\xd7\x06\x53\x97" "\xb8\x13\xbd\x07\xdb\xd6\x54\x6f\xdf\xf1\x7d\xe9\xd3\xce\xb6\xfe\x4d" "\x9e\x1a\xc4\x2f\x6e\x6c\x5c\x3f\xf1\xab\x2b\x37\x6f\x5e\x3f\x1d\x69" "\x32\xf2\xe8\x99\x48\x93\x3d\x96\xf3\x5f\x4a\x5f\x39\xff\x97\x5e\x18" "\xb6\xe7\xbf\xfb\xcd\xfd\xf5\xee\xfb\x83\xc7\xce\x7f\x5e\xdc\x89\xfe" "\xb6\xf9\xbf\xd0\x98\xaf\xb7\xf7\xe5\x19\xf7\xad\x0d\x39\xff\x41\xfa" "\xca\xf9\xe7\x57\xa0\xc9\xfb\xff\x22\xe7\xbf\xfd\xfe\xff\x4a\x0b\xfd" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x9d\x54\x55\xb5" "\x75\x8b\xe8\xc5\x88\xb8\x90\xee\xff\x69\xeb\xde\x4c\x00\x60\xa6\x7e" "\xf7\xbd\x34\x53\x25\xa1\x56\xab\xd5\x6a\xb5\x7a\xaf\xea\xfe\x9c\xf5" "\x67\x44\x35\xd9\xeb\xcd\x22\x56\x46\xd7\xb9\x10\x11\xbf\x9e\xf4\xc3" "\x00\x80\x79\xf6\xdf\x88\xf8\x47\xdb\x9d\xa0\x35\xf2\x2f\x58\xfe\xbc" "\xbf\x7a\xfa\xb9\xb6\x3b\x03\xcc\xd4\x8d\x77\xdf\xfb\xc9\x95\x6b\xd7" "\x36\xae\xdf\x68\xbb\x27\x00\x00\x00\x00\x00\x00\x00\xc0\xff\x2b\x8f" "\xff\x79\xac\x31\xfe\xf3\xd6\x75\x40\x63\xe3\x46\x8f\x8c\xff\xfa\x46" "\x1c\x5b\xd8\xf1\x3f\xbb\x83\xde\xd6\x58\xe7\x69\x83\x9e\x8f\x9d\xc7" "\xff\x3e\x1e\x3b\x8f\xff\xdd\x9f\xf2\x7c\x4b\x53\xda\xa7\x8d\x58\xbc" "\x3c\xa5\x7d\x65\x4a\xfb\xc4\x1b\x3d\x1a\x72\xfe\xcf\xa7\x8c\x73\xfe" "\x47\xd3\x86\x95\x34\xfe\xeb\x4b\x2d\xf4\xa7\x6d\x39\xff\xe3\x69\xac" "\xe7\x9c\xff\x17\xc6\x96\x6b\xe6\x5f\xfd\x79\x91\xf3\xef\x8e\xe4\x7f" "\xf2\xe6\x3b\x3f\x3f\x79\xe3\xdd\xf7\x5e\xbd\xfa\xce\x95\xb7\x37\xde" "\xde\xf8\xe9\xe9\x53\x17\xce\x9d\x3d\x7f\xee\xec\xf9\xf3\x27\xdf\xba" "\x7a\x6d\xe3\xd4\xf0\x7b\x8b\x3d\xde\x5f\x39\xff\x3c\xf6\xb5\xeb\x40" "\xcb\x92\xf3\xcf\x99\xcb\xbf\x2c\x39\xff\xcf\xa7\x5a\xfe\x65\xc9\xf9" "\xbf\x98\x6a\xf9\x97\x25\xe7\x9f\xdf\xef\xc9\xbf\x2c\x39\xff\x7c\xec" "\x23\xff\xb2\xe4\xfc\x5f\x4e\xb5\xfc\xcb\x92\xf3\xff\x62\xaa\xe5\x5f" "\x96\x9c\xff\x2b\xa9\x96\x7f\x59\x72\xfe\x5f\x4a\xb5\xfc\xcb\x92\xf3" "\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\x44\xaa\xe5\x5f\x96\x9c\xff\xc9\x54" "\xcb\xbf\x2c\x39\xff\x7c\x86\x4b\xfe\x65\xc9\xf9\xe7\x2b\x1b\xe4\x5f" "\x96\x9c\xff\x99\x54\xcb\xbf\x2c\x39\xff\xb3\xa9\x96\x7f\x59\x72\xfe" "\xe7\x52\x2d\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5" "\xfc\xcb\x92\xf3\xff\x72\xaa\xe5\x5f\x96\x9c\xff\x57\x52\x2d\xff\xb2" "\xe4\xfc\x5f\x4b\xb5\xfc\xcb\x92\xf3\xff\x6a\xaa\xe5\x5f\x96\x9c\xff" "\xd7\x52\x2d\xff\xb2\xe4\xfc\xbf\x9e\x6a\xf9\x97\x25\xe7\xff\x8d\x54" "\xcb\xbf\x2c\x39\xff\x6f\xa6\x5a\xfe\x65\xc9\xf9\xbf\x9e\x6a\xf9\x97" "\xe5\xe1\xe7\xff\x9b\x99\xf1\xcc\xbf\xff\x1a\x31\x07\xdd\xd8\x8f\x99" "\xaa\xaa\xaa\x39\xe8\x86\x99\x27\x98\x69\xfb\x2f\x13\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x30\x6e\x16\x97\x13\xb7\xbd\x8d\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xfc\x8f\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\xc0\x81\x00" "\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x61\xef\x5e\x63\xe4\x3a\xeb\xfb\x81\x9f" "\xbd\xd9\x6b\x27\x10\xff\x49\x08\x21\x18\xb2\x76\x9c\x60\xc8\xc6\xbb" "\xeb\x5b\x62\x82\xc1\x5c\xff\x69\x28\x34\x0d\x84\x96\x16\xea\x18\x7b" "\xed\x18\x7c\xab\xd7\x86\x24\x8a\xc8\xa6\x49\xdb\x20\x22\x35\x52\xfb" "\x22\x7d\x51\x6e\xa2\x08\xf5\xa2\x44\x08\xa9\x54\x4a\x51\xa4\x22\xb5" "\xaf\xda\xbc\x02\xe5\x0d\x6a\xa5\xbc\xb0\xd4\xa4\x32\x11\x54\xa2\x22" "\xd9\xea\xcc\x79\x9e\x67\x67\x66\x67\x67\x76\xed\x5d\xfb\xcc\x39\x9f" "\x4f\x14\xff\xbc\x73\x7d\xe6\xcc\x99\xd9\xfd\xae\xf5\x9d\x03\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x34\xdb\xf4\xa1\xe9\x3f\x1d\xc8\xb2" "\x2c\xff\xbf\xf1\xc7\x86\x2c\xbb\x32\xff\xfb\xba\x6c\x5f\xfe\xe5\xec" "\xee\xcb\xbd\x42\x00\x00\x00\xe0\x62\xbd\xd6\xf8\xf3\xef\xae\x4a\x27" "\xec\x5b\xc2\x95\x9a\x2e\xf3\x2f\xef\xf8\xf7\x1f\xcc\xcd\xcd\xcd\x65" "\x9f\x7f\xf5\xdc\xeb\x7f\x3e\x37\x97\xce\x18\xcb\xb2\xa1\xb5\x59\xd6" "\x38\x2f\xfa\xd7\x5f\xfd\x72\xae\xf9\x32\xc1\x63\xd9\xe8\xc0\x60\xd3" "\xd7\x83\x3d\xee\x7e\xa8\xc7\xf9\xc3\x3d\xce\x1f\xe9\x71\xfe\x9a\x1e" "\xe7\xaf\xed\x71\xfe\x68\x8f\xf3\x17\x6c\x80\x05\xd6\x15\xbf\x8f\x69" "\xdc\xd8\x96\xc6\x5f\x37\x14\x9b\x34\xbb\x26\x1b\x69\x9c\xb7\xa5\xc3" "\xb5\x1e\x1b\x58\x3b\x38\x18\x7f\x97\xd3\x30\xd0\xb8\xce\xdc\xc8\xe1" "\xec\x68\x76\x2c\x9b\xce\x26\x17\x5c\x67\xa0\xf1\x5f\x96\x3d\xb7\x29" "\xbf\xaf\x3b\xb3\x78\x5f\x83\x4d\xf7\xb5\x31\xcb\xb2\xf3\x3f\x7f\xf8" "\x60\x5c\xc3\x40\xd8\xc6\x5b\xb2\x96\x3b\x6b\x68\x7e\xee\x5e\xf9\x40" "\x36\xf6\xea\xcf\x1f\x3e\xf8\xdd\x33\x2f\xbf\xb5\xd3\xec\xb9\x19\x16" "\xac\x34\xcb\xb6\x6e\xce\xd7\xf9\x78\x96\xcd\xff\xba\x2a\x1b\xc8\xd6" "\xa6\x6d\x12\xd7\x39\xd8\xb4\xce\x8d\x1d\xd6\x39\xd4\xb2\xce\x81\xc6" "\xf5\xf2\xbf\xb7\xaf\xf3\xfc\x12\xd7\x19\x1f\xf7\x68\x58\xe7\x0b\x5d" "\xd6\xb9\x31\x9c\xf6\xc0\x8d\x59\x96\xcd\x66\x8b\x5e\xa6\xdd\x63\xd9" "\x60\xb6\xbe\xed\x5e\xd3\xf6\x1e\x2d\xf6\x88\xfc\x36\xf2\xa7\xf2\x4d" "\xd9\xf0\xb2\xf6\x93\x4d\x4b\xd8\x4f\xf2\xeb\xbc\x74\x63\xeb\x7e\xd2" "\xbe\x4f\xc6\xed\xbf\x29\x6c\x93\xe1\x45\xd6\xd0\xfc\x74\xbc\xf2\xe8" "\x9a\x05\xdb\xfd\x42\xf7\x93\xfc\x51\x97\x61\x5f\xcd\x6f\xfb\xee\xfc" "\x4e\x47\x47\x9b\x7f\xb5\xda\xb2\xaf\xe6\x97\x79\xf8\xa6\xc5\xf7\x81" "\x8e\xcf\x5d\x87\x7d\x20\xed\xcb\x4d\xfb\xc0\xe6\x5e\xfb\xc0\xe0\x9a" "\xa1\xc6\x3e\x30\x38\xbf\xe6\xcd\x2d\xfb\xc0\xd4\x82\xeb\x0c\x66\x03" "\x8d\xfb\x3a\x77\x53\xf7\x7d\x60\xe2\xcc\xf1\x53\x13\x33\x0f\x3e\x74" "\xeb\xd1\xe3\x07\x8e\x4c\x1f\x99\x3e\x31\x35\xb9\x7b\xe7\x8e\x5d\x3b" "\x77\xec\xda\x35\x71\xf8\xe8\xb1\xe9\xc9\xe2\xcf\xe5\x6d\xd2\x3e\xb2" "\x3e\x1b\x4c\xfb\xe0\xe6\xf0\x5e\x13\xf7\xc1\x77\xb6\x5d\xb6\x79\x97" "\x9c\xfb\xd6\xca\xbd\x0e\x46\x4b\xf2\x3a\xc8\x1f\xfb\xa7\x6e\xce\x17" "\x74\xe5\x60\xb6\xc8\x3e\x9e\x5f\xe6\xf1\xad\x17\xff\x3a\x48\xdf\xf7" "\x9b\x5e\x07\xc3\x4d\xaf\x83\x8e\xef\xa9\x1d\x5e\x07\xc3\x4b\x78\x1d" "\xe4\x97\x39\xbf\x75\x69\xdf\x33\x87\x9b\xfe\xef\xb4\x86\xd5\x7a\x2f" "\xdc\xd0\xb4\x0f\x5c\xce\xef\x87\xf9\x7d\x7e\xf6\x5d\x8b\xbf\x17\x6e" "\x0c\xeb\x7a\xe2\xdd\xcb\xfd\x7e\x38\xb4\x60\x1f\x88\x0f\x6b\x20\xbc" "\xf6\xf2\x53\xd2\xcf\x7b\xa3\xb7\x87\xed\xb2\x70\xbf\xb8\x3e\x3f\xe3" "\x8a\x35\xd9\xd9\x99\xe9\xd3\xdb\x1e\x38\x70\xe6\xcc\xe9\xa9\x2c\x8c" "\x4b\xe2\xea\xa6\xe7\xaa\x7d\x7f\x59\xdf\xf4\x98\xb2\x05\xfb\xcb\xe0" "\xb2\xf7\x97\x7d\x7f\xfb\xeb\x9b\xaf\xef\x70\xfa\x86\xb0\xad\x46\x6f" "\xe9\xfe\x5c\xe5\x97\xd9\x39\xde\xfd\xb9\x6a\xbc\xbb\xb7\x6e\xcf\x35" "\x59\xb1\x3d\x5b\x4e\xdd\x9e\x85\xb1\xc2\x2e\xf5\xf6\xec\xf4\xdd\x2c" "\xdf\x9e\x29\x4b\x74\xd9\x9e\xf9\x65\x1e\xbf\xf5\xe2\x7f\x16\x4c\xb9" "\xa4\xe9\xfd\x6f\xa4\xd7\xfb\xdf\xd0\xc8\x70\xf1\xfe\x37\x94\xb6\xc6" "\x48\xcb\xfb\xdf\xc2\xa7\x66\xa8\xb1\xb2\x2c\x3b\x7f\xeb\xd2\xde\xff" "\x46\xc2\xff\x97\xfa\xfd\xef\x9a\x92\xbc\xff\xe5\xdb\xea\xb3\xdb\xba" "\xef\x03\xf9\x65\x9e\x98\x58\xee\x3e\x30\xdc\xf5\xfd\xef\xc6\x30\x07" "\xc2\x7a\xde\x15\x12\xc3\x68\x53\xee\x7f\xbd\x71\xfe\x6c\xb1\x9b\x36" "\x3d\x97\x3d\xf7\x9b\xe1\xe1\x91\xb0\xdf\x0c\xc7\x7b\x6c\xdd\x6f\x76" "\x2c\xb8\x4e\x7e\x6b\xf9\x7d\x6f\x9d\xbc\xb0\xfd\x66\xeb\x8d\xad\xcf" "\x55\xcb\xcf\x2d\x15\xdc\x6f\xf2\x6d\xf5\x17\x93\xdd\xf7\x9b\xfc\x32" "\xcf\x4f\x5d\xfc\x7b\xc7\xba\xf8\xd7\xa6\xf7\x8e\x35\xbd\xf6\x81\x91" "\xa1\x35\xf9\x7a\x47\xd2\x4e\x50\xbc\xdf\xcd\xad\x8b\xfb\xc0\xb6\xec" "\x60\x76\x32\x3b\x96\x1d\x4a\xd7\xc9\x9f\xe5\xfc\xbe\xc6\xb7\x2f\x6d" "\x1f\x58\x13\xfe\xbf\xd4\xef\x1d\xd7\x95\x64\x1f\xc8\xb7\xd5\xd3\xdb" "\xbb\xef\x03\xf9\x65\x7e\xbc\x63\x65\x7f\x76\xda\x1a\x4e\x49\x97\x69" "\xfa\xd9\xa9\xfd\xf7\x0b\x8b\x65\xfe\xeb\x87\xe7\x6f\xaf\x7d\xb3\xad" "\x74\xe6\xcf\xd7\xf9\xe1\x9f\x7c\x22\x9d\xd6\x29\x43\xe4\x97\x79\x79" "\xe7\x72\x73\x46\xf7\xed\x74\x4b\x38\xe5\x8a\x0e\xdb\xa9\xfd\xf5\xb3" "\xd8\x3e\x7d\x28\xbb\x34\xdb\xe9\xba\xb0\xce\x63\xbb\xba\xff\x6e\x2a" "\xbf\xcc\x35\xbb\x97\xb8\x3f\xed\xcb\xb2\xec\xc5\xa9\x17\x1b\xbf\xef" "\x0a\xbf\xdf\xfd\xfe\xd9\x9f\xfc\xa0\xe5\xf7\xbe\x9d\x7e\xa7\xfc\xe2" "\xd4\x8b\x77\x4d\xdc\xf3\xd3\xe5\xac\x1f\x00\x80\x0b\xf7\x7a\xe3\xcf" "\xd9\x35\xc5\xcf\x9a\x4d\xff\x62\xbd\x94\x7f\xff\x07\x00\x00\x00\xfa" "\x42\xcc\xfd\x83\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x43\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xc3\x61\x26\x35\xc9\xff\xf7" "\xdf\xbe\xe7\x99\xd7\x1e\xc9\xd2\xa7\x01\xce\x05\xf1\xfc\xb8\x19\xee" "\x7e\x5f\x71\xb9\xd8\xf1\x9e\x0d\x5f\x8f\xcd\xcd\xcb\x4f\xff\xe0\x77" "\x46\x9e\xf9\xea\x23\x4b\xbb\xef\xc1\x2c\xcb\x7e\x7d\xd7\xdb\x3a\x5e" "\xfe\xfe\xf7\xc5\x75\x15\x4e\xc5\x75\xbe\xa7\xf5\xf4\x05\xae\xbb\x61" "\x49\xf7\x7f\xdf\xbd\xf3\x97\x6b\xfe\xfc\x84\xf3\x7b\x8a\xdb\x8f\x8f" "\x67\xa9\xbb\x41\xec\x2a\x3f\x37\xb1\xbd\x71\xbb\x63\x0f\x4e\x35\xe6" "\xf3\x77\x65\x8d\x79\xcf\xec\x13\x8f\x15\xb7\x5f\x7c\x1d\x2f\x7f\x6e" "\x47\x71\xf9\xbf\x0a\x1f\x5a\xb2\xef\xf0\x40\xcb\xf5\xb7\x86\xf5\x6c" "\x09\x73\x2c\x7c\xa6\xcc\xdd\xfb\xe6\xb7\x43\x3e\xe3\xf5\x9e\xd9\xf8" "\x8e\x7f\xbe\xfa\xd3\xf3\xf7\x17\xaf\x37\xb0\xf9\x8d\x8d\x87\xf9\xf4" "\x57\x8a\xdb\x8d\x9f\x11\xf5\xd4\xd5\xc5\xe5\xe3\xe3\x5e\x6c\xfd\xff" "\xf4\xb5\xef\x3d\x93\x5f\xfe\x81\x9b\x3a\xaf\xff\x91\xc1\xce\xeb\x3f" "\x17\x6e\xf7\xa5\x30\x7f\xb5\xb7\xb8\x7c\xf3\x36\xff\x6a\xd3\xfa\xff" "\x38\xac\x3f\xde\x5f\xbc\xde\xb6\x6f\xff\xa8\xe3\xfa\x9f\x7d\x4b\x71" "\xf9\x67\xc3\x7e\xf1\xcd\x30\xdb\xd7\xff\x81\x3f\x7b\xfb\x6b\x9d\x9e" "\xaf\x78\x3f\xfb\xee\x28\xae\x17\xef\x7f\xf2\x7f\x76\x36\xae\x17\x6f" "\x2f\xde\x7e\xfb\xfa\x47\x1f\x99\x6a\xd9\x1e\xed\xb7\xff\xfc\xab\xc5" "\xed\xec\xfd\xd2\x2f\x86\x9a\x2f\x1f\x4f\x8f\xf7\x13\xdd\x77\x47\xeb" "\xfe\x3d\x10\x9e\xdf\x96\x1e\x79\x96\x65\xdf\xfb\x93\xac\x65\x3b\x67" "\xef\x2d\xae\xf7\x8f\x6d\xeb\x8f\xb7\x77\xea\x8e\xce\xeb\xbf\xa5\x6d" "\x9d\xa7\x06\x6e\x68\x5c\x7f\xfe\xf1\x6c\x68\x79\x5c\x5f\xff\xeb\xed" "\x1d\x1f\x6f\x5c\xcf\xbe\xbf\xdf\xd0\xf2\x78\x9e\xfa\x48\xd8\x7e\xaf" "\x4e\xfc\x38\xbf\xdd\x73\xf7\x84\xfd\x31\x9c\xff\xbf\x2f\x14\xb7\xd7" "\xfe\x59\xa6\xcf\x7e\xa4\xf5\xfd\x26\x5e\xfe\x9b\x1b\x8a\xd7\x6d\xbc" "\xbd\x89\xb6\xf5\x3f\xd5\xb6\xfe\xd9\x1b\xf2\x6d\xd7\x7b\xfd\x77\xbe" "\x5a\xac\xff\xd9\xf7\xaf\x6d\x59\xff\xbe\x8f\x86\xfd\xe9\xce\x62\xf6" "\x5a\xff\x91\x6f\x5c\xd5\x72\xfd\x6f\x7d\xb7\x78\x3e\x4e\x7f\x79\xfc" "\xc4\xc9\x99\xb3\x47\x0f\x35\x6d\xd5\xe6\xd7\xf1\xda\xd1\x75\xeb\xaf" "\xb8\xf2\x0d\x6f\xbc\x2a\xbc\x97\xb6\x7f\xbd\xff\xe4\x99\xfb\xa7\x4f" "\x8f\x4d\x8e\x4d\x66\xd9\x58\x1f\x7e\x64\xe0\x6a\xaf\xff\xdb\x61\xfe" "\x77\x31\x66\x57\xfe\x1e\x0a\x3f\xfd\x45\xb1\xdf\x3d\xf9\xb1\xe2\xfb" "\xd6\x3b\x7f\x59\x7c\xfd\x54\x38\xfd\xbe\xf0\x7c\xc6\xef\x8f\x5f\xff" "\xcb\x91\x96\xfd\xb5\xfd\x79\x9f\x7d\x7f\x31\x2f\x76\xfd\xef\x0e\xeb" "\x58\xaa\xb7\x7c\xed\x3f\x6f\x58\xd2\x05\xcf\x7d\xee\xb9\xb3\xff\xf0" "\x47\x2f\xb7\xff\x5c\x10\x1f\xcf\xa9\x37\x8f\x36\x1e\xdf\xd3\x9b\xae" "\x6d\x9c\x37\xf0\x7c\x71\x7e\xfb\xfb\x55\x2f\xff\xf1\xe6\xd6\xd7\xf5" "\xcf\x86\x27\x1b\xf3\x87\x61\xbb\xce\x85\x4f\x66\xde\x7c\x6d\x71\x7f" "\xed\xb7\x1f\x3f\x9b\xe4\xc9\x4f\x16\xaf\xdf\xf8\x93\x5c\xbc\x7e\xd6" "\xf6\x79\x22\x1b\x86\x5a\x1f\xc7\xc5\xae\xff\x67\xe1\xe7\x98\x1f\x5d" "\xd7\xfa\xfe\x17\xf7\x8f\x1f\x3e\xd2\xf6\x69\xce\x1b\xb2\x81\x7c\x09" "\xb3\xe1\xfd\x21\x9b\x2d\xce\x8f\x97\x8a\xdb\xfb\xc9\xf3\xd7\x76\xbc" "\xbf\xf8\x39\x3c\xd9\xec\x5b\x97\xb3\xcc\x45\xcd\x3c\x38\x33\x71\xec" "\xe8\x89\xb3\x0f\x4c\x9c\x99\x9e\x39\x33\x31\xf3\xe0\x43\xfb\x8f\x9f" "\x3c\x7b\xe2\xcc\xfe\xc6\x67\x97\xee\xff\x42\xaf\xeb\xcf\xbf\xbe\xd7" "\x37\x5e\xdf\x87\xa6\x77\xef\xcc\x1a\xaf\xf6\x93\xc5\x58\x65\x97\x7b" "\xfd\xa7\xee\x3d\x78\xe8\xb6\xc9\x9b\x0f\x4d\x1f\x3e\x70\xf6\xf0\x99" "\x7b\x4f\x4d\x9f\x3e\x72\x70\x66\xe6\xe0\xf4\xa1\x99\x9b\x0f\x1c\x3e" "\x3c\xfd\xe5\x5e\xd7\x3f\x7a\x68\xef\xd4\xf6\x3d\x3b\x6e\xdb\x3e\x7e" "\xe4\xe8\xa1\xbd\xb7\xef\xd9\xb3\x63\xcf\xf8\xd1\x13\x27\xf3\x65\x14" "\x8b\xea\x61\xf7\xe4\x17\xc7\x4f\x9c\xde\xdf\xb8\xca\xcc\xde\x9d\x7b" "\xa6\x76\xed\xda\x39\x39\x7e\xfc\xe4\xa1\xe9\xbd\xb7\x4d\x4e\x8e\x9f" "\xed\x75\xfd\xc6\xf7\xa6\xf1\xfc\xda\x5f\x1a\x3f\x3d\x7d\xec\xc0\x99" "\xa3\xc7\xa7\xc7\x67\x8e\x3e\x34\xbd\x77\x6a\xcf\xee\xdd\xdb\x7b\x7e" "\xfa\xe3\xf1\x53\x87\x67\xc6\x26\x4e\x9f\x3d\x31\x71\x76\x66\xfa\xf4" "\x44\xf1\x58\xc6\xce\x34\x4e\xce\xbf\xf7\xf5\xba\x3e\xf5\x30\x73\x32" "\xbc\xdf\xb5\x19\x08\x3f\x9d\x7f\xe6\x96\xdd\xe9\xf3\x71\x73\xdf\x79" "\x74\xd1\x9b\x2a\x2e\xd2\xfa\xe3\x69\xf6\x4a\xf8\x2c\xa8\xf8\xfd\xad" "\xd7\xd7\x31\xf7\x8f\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc" "\x1f\x3e\xf8\x7f\xfe\x0c\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xb5\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x45\xf2\x1f\x4d\x87\x7f\xaf" "\x4b\xfe\x5f\xa9\xfe\xff\xa3\xfa\xff\x0d\xfa\xff\xfa\xff\x99\xfe\x7f" "\xa2\xff\xaf\xff\x9f\xe9\xff\xeb\xff\xf7\xa0\xff\xaf\xff\xdf\xcf\xeb" "\xd7\xff\xd7\xff\xa7\xb7\xb2\xf5\xff\x43\xee\xcf\xd6\x65\x99\x7f\xff" "\x07\x00\x00\x80\x8a\x8a\xb9\x7f\x7d\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\x15\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x57\x86" "\x99\xd4\x24\xff\x3b\xfe\xbf\xfe\xbf\xfe\x7f\xb7\xfe\x7f\xbc\xac\xfe" "\x7f\xa6\xff\x5f\x86\xfe\xff\x96\xff\xd2\xff\x5f\x40\xff\x5f\xff\x3f" "\xd3\xff\xbf\x60\x97\xbb\x3f\xdf\xef\xeb\x2f\x61\xff\x7f\x9d\xfe\x3f" "\x65\x53\xb6\xfe\x7f\xcc\xfd\x6f\x08\x33\xa9\x49\xfe\x07\x00\x00\x80" "\x3a\x88\xb9\xff\x8d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x57" "\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x6f\x08\x33\xa9\x49\xfe" "\xd7\xff\xd7\xff\xd7\xff\x77\xfc\x7f\xfd\xff\xbe\xe9\xff\x3b\xfe\x7f" "\x07\xfa\xff\xab\xdf\xff\x6f\xfe\xb6\xaa\xff\xdf\x4a\xff\x5f\xff\xbf" "\x64\xfd\x7f\xc7\xff\xa7\x74\xca\xd6\xff\x8f\xb9\xff\xff\x85\x99\xd4" "\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xa6\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\xab\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\xaf\x09\x33\xa9\x49\xfe\xaf\x67\xff\xff\xa5\x2c\xcb\xf4\xff\x33\xfd" "\x7f\xfd\xff\xb6\x75\xea\xff\xeb\xff\xaf\x06\xfd\xff\xfe\xef\xff\x3b" "\xfe\xff\xe2\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xae\x6c\xfd\xff\x98" "\xfb\xdf\x1c\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xb5\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x6f\x09\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\xbf\x2e\xcc\xa4\x26\xf9\xbf\x9e\xfd\x7f\xc7\xff" "\xd7\xff\x2f\xe8\xff\xb7\xae\xf3\x32\xf5\xff\xbf\xa2\xff\xaf\xff\x7f" "\x31\xf4\xff\xf5\xff\x33\xfd\xff\x0b\x76\xb9\xfb\xf3\xfd\xbe\x7e\xfd" "\x7f\xfd\x7f\x7a\x2b\x5b\xff\x3f\xe6\xfe\xb7\x86\x99\xd4\x24\xff\x03" "\x00\x00\x40\x1d\xc4\xdc\x7f\x7d\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\xdb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x37\x86\x99" "\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x3b\xfe\xbf\xfe\xff\x6a" "\xea\xaf\xfe\xff\xe0\xa2\xe7\xe8\xff\x17\xf4\xff\x5b\xad\x5c\xff\x7f" "\x76\x7e\x01\xfa\xff\x7d\xb3\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff\x3f" "\xe6\xfe\xb7\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\x8e" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x1b\xc2\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\xc7\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\x57\x53\x7f\xf5\xff\x17\xa7\xff\x5f\xd0" "\xff\x6f\xe5\xf8\xff\xfa\xff\xfa\xff\xfa\xff\x74\x57\xb6\xfe\x7f\xcc" "\xfd\x9b\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf\x1c\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x63\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\xff\x96\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\xd5\xa4\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\x7f" "\x3f\xaf\x5f\xff\x5f\xff\x9f\xde\xca\xd6\xff\x8f\xb9\xff\xa6\x30\x93" "\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x6f\x0e\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\x7f\x67\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\xd6\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\x3e\xee\xff\x0f" "\xe9\xff\x67\xfa\xff\xa5\xa7\xff\xaf\xff\xdf\x8d\xfe\x7f\xb9\xfa\xff" "\xc3\xfa\xff\xfa\xff\xfa\xff\xac\xb0\xb2\xf5\xff\x63\xee\x7f\x57\x98" "\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xef\x0e\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\xbf\x25\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\x7f\x3c\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\x8f\xfb\xff" "\x8e\xff\xdf\xb2\xfe\x15\xe8\xff\x8f\x34\x9f\xae\xff\xbf\x32\xf4\xff" "\xf5\xff\xbb\xd1\xff\x2f\x57\xff\xdf\xf1\xff\xf5\xff\xf5\xff\x59\x69" "\x65\xeb\xff\xc7\xdc\x7f\x6b\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41" "\xcc\xfd\xdb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x27\xc2\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x27\xc3\x4c\x6a\x92\xff\xf5\xff" "\x2f\x65\xff\xbf\xb1\x8d\xf5\xff\xf5\xff\xf5\xff\xc3\xf9\x25\xec\xff" "\x3b\xfe\xff\x2a\xd0\xff\xd7\xff\xef\x46\xff\x5f\xff\xbf\x9f\xd7\xaf" "\xff\xaf\xff\x4f\x6f\x65\xeb\xff\xc7\xdc\x3f\x15\x66\x52\x93\xfc\x0f" "\x00\x00\x00\x75\x10\x73\xff\xf6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\x1d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x3b\xc3\x4c" "\x6a\x92\xff\xfb\xa4\xff\xbf\x2d\x15\xa0\xfa\xba\xff\xef\xf8\xff\xfa" "\xff\x7d\xd9\xff\x4f\x2f\x03\xfd\x7f\xfd\xff\x0b\xa1\xff\xaf\xff\xdf" "\x8d\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\x56\x83\x1d\x4e\x2b" "\x5b\xff\x3f\xe6\xfe\x5d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31" "\xf7\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x2d\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xf6\x30\x93\x9a\xe4\xff\x3e\xe9" "\xff\x57\xe4\xf8\xff\xfa\xff\xfa\xff\x7d\xd9\xff\x4f\x8a\xfe\xfc\x90" "\xfe\xff\x22\xeb\xd7\xff\xef\x4c\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff" "\x7e\x5e\xbf\xfe\xbf\xfe\x3f\xbd\x95\xad\xff\x1f\x73\xff\x9e\x30\x93" "\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xdf\x13\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\x7d\xa5\xd3" "\x71\x08\xa3\x98\xfb\xdf\x1b\x66\x52\x93\xfc\xaf\xff\x5f\xf5\xfe\xff" "\xdc\x5a\xfd\x7f\xfd\xff\x95\xed\xff\x3b\xfe\xbf\xfe\xff\xf2\xe8\xff" "\xeb\xff\x77\xa3\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\xb7\xb2" "\xf5\xff\x63\xee\xdf\x1b\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73" "\xff\xfb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x1f\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x2f\xcc\xa4\x26\xf9\x5f\xff\xbf" "\xea\xfd\xff\xda\x1c\xff\xbf\x71\xbe\xfe\xbf\xfe\xbf\xfe\x7f\xf9\xe8" "\xff\xeb\xff\x77\xa3\xff\xdf\x9f\xfd\xff\xf0\x63\x8b\xfe\x7f\x89\xfa" "\xff\xf9\x3e\xa4\xff\x4f\x19\x95\xad\xff\x1f\x73\xff\x07\xc2\x4c\x6a" "\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xff\x60\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\xff\x87\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\x3f\x1c\x66\x52\x93\xfc\xaf\xff\xaf\xff\x5f\x91\xfe\xbf\xe3\xff\xeb" "\xff\xeb\xff\x97\x94\xfe\xff\xaa\xf5\xff\x1b\x6f\x85\xfa\xff\x85\x45" "\xfb\xff\xeb\xf4\xff\xbb\x99\xef\xcf\x5f\xe5\xf8\xff\x7d\xde\xff\x77" "\xfc\x7f\xca\xaa\x6c\xfd\xff\x98\xfb\x3f\x12\x66\x52\x93\xfc\x0f\x00" "\x00\x00\x75\x10\x73\xff\x47\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\xff\x7f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x9d\x61\x26" "\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xab\x49" "\xff\xdf\xf1\xff\xbb\x71\xfc\xff\xb2\xf4\xff\x2f\x4f\x7f\xbe\xdf\xd7" "\xaf\xff\xaf\xff\x4f\x6f\x65\xeb\xff\xc7\xdc\xff\x1b\x61\x26\x35\xc9" "\xff\x00\x00\x00\x50\x07\x31\xf7\xdf\x15\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\xff\xb1\x30\x13\xf9\x1f\x00\x00\x00\xfa\xcc\x9a\x45\xcf" "\x89\xb9\xff\x37\xc3\x4c\x6a\x92\xff\xfb\xaf\xff\x3f\xd6\x97\xfd\xff" "\xc1\x74\xfb\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x2b\x49\xff\x5f" "\xff\x3f\xd3\xff\xbf\x60\x97\xbb\x3f\xdf\xef\xeb\xd7\xff\xd7\xff\xa7" "\xb7\xb2\xf5\xff\x63\xee\xff\x78\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4" "\x41\xcc\xfd\x9f\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xad" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xbb\xc3\x4c\x6a\x92\xff" "\x57\xba\xff\xdf\x7e\xfd\x6e\x1c\xff\x5f\xff\x3f\xd3\xff\xd7\xff\xd7" "\xff\xd7\xff\xbf\x48\xfd\xd4\xff\x1f\xd1\xff\x5f\x40\xff\x5f\xff\xbf" "\x9f\xd7\xaf\xff\xaf\xff\x4f\x6f\x65\xeb\xff\xc7\xdc\xff\xdb\x61\x26" "\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xdf\x13\x66\x22\xff\x03\x00" "\x00\x40\x49\xdd\xbf\xec\x6b\xc4\xdc\xff\xc9\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\x4f\x85\x99\xd4\x24\xff\xf7\xdf\xf1\xff\xfb\xaf" "\xff\x9f\xdf\xbe\xfe\x7f\x35\xfa\xff\xff\x16\xd6\xab\xff\xdf\x4a\xff" "\xbf\xa0\xff\xdf\xd9\xe5\xed\xff\x7f\xe3\xe3\x2b\x75\x3f\x8e\xff\x5f" "\xd0\xff\x6f\xa5\xff\xdf\x5f\xfd\xff\x75\x2b\xbc\x7e\xfd\x7f\xfd\x7f" "\x7a\x2b\x5b\xff\x3f\xe6\xfe\x7b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0" "\x0e\x62\xee\xff\x74\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xef" "\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x6e\x98\x49\x4d\xf2" "\xbf\xfe\x7f\xcf\xfe\xff\xdf\x2c\xe5\xb1\x38\xfe\x7f\xe7\xf5\x57\xad" "\xff\xef\xf8\xff\xfa\xff\xfa\xff\xcb\xe7\xf8\xff\x0b\xfb\xff\xf9\x7b" "\x98\xfe\x7f\x41\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x6f\x65" "\xeb\xff\xc7\xdc\xff\x99\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98" "\xfb\x7f\x2f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xf7\xc3\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x3f\x1b\x66\x52\x93\xfc\xaf\xff" "\xbf\xfa\xc7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x77" "\xfc\xff\xce\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\xf4\x56\xb6" "\xfe\x7f\xcc\xfd\x9f\x0b\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9" "\xff\x0f\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xf7\x87\x99\xc8" "\xff\x00\x00\x00\xd0\x07\xda\x1b\xa5\x9d\xc5\xdc\x7f\x5f\x98\x49\x4d" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x6a\xd2\xff" "\xd7\xff\xef\x46\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x6f\x65" "\xeb\xff\xc7\xdc\x7f\x20\xcc\x64\x5f\xeb\xdd\x00\x00\x00\x00\xfd\x2b" "\xe6\xfe\xcf\x87\x99\xd4\xe4\xdf\xff\x01\x00\x00\xa0\x0e\x62\xee\x3f" "\x18\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x28\xcc\xa4\x26\xf9" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x35\xe9\xff\xeb" "\xff\x77\xa3\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\xb7\xb2\xf5" "\xff\x63\xee\x9f\x0e\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff" "\x70\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x91\x30\x13\xf9\x1f" "\x00\x00\x00\x2a\x23\xe6\xfe\xfb\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\x6b\xdb\xff\x7f\xe1\xfb\x6d\xeb\xd4\xff\xd7\xff\x5f\x0d\xfa" "\xff\xfa\xff\xdd\xe8\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\xe9\xad" "\x6c\xfd\xff\x98\xfb\x8f\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4" "\xdc\xff\x85\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x2f\x86\x99" "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x1f\x0b\x33\xa9\x49\xfe\xd7\xff" "\xd7\xff\xd7\xff\xaf\x6d\xff\x7f\x69\xc7\xff\x5f\x37\x7f\xbf\xfa\xff" "\xfa\xff\x17\x42\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x7e\x5e\xbf\xfe" "\xbf\xfe\x3f\xbd\x95\xad\xff\x1f\x73\xff\xf1\x30\x93\x9a\xe4\x7f\x00" "\x00\x00\xa8\x83\x98\xfb\x4f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\x9f\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x15\x66\x52" "\x93\xfc\xaf\xff\xbf\xbc\xfe\xff\xc0\x22\xdd\x40\xfd\xff\xce\xeb\xd7" "\xff\xaf\x40\xff\xbf\x89\xfe\xbf\xfe\xff\x85\xd0\xff\xd7\xff\xef\xe6" "\x12\xf4\xff\x5f\x6f\xbe\x8a\xfe\x7f\xab\xcb\xdd\x9f\xef\xf7\xf5\xeb" "\xff\xeb\xff\xd3\x5b\x29\xfa\xff\x23\xf3\x5f\xc7\xdc\xff\x87\x61\x26" "\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x9f\x0e\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\x9f\x09\x33\x91\xff\x01\xfe\x8f\xbd\xfb\x5a\xb2" "\xb4\xac\xe2\x38\xbc\x19\x72\x59\x7a\x0d\xdc\x82\x57\xe0\x25\xe8\xa9" "\x9c\x59\xe5\x1d\x18\x31\x82\x19\xb3\x62\xce\x09\x73\xc2\xac\x98\x73" "\xce\x8a\x11\x73\x16\xc5\x88\xa8\x55\x5a\x74\xaf\xb5\x86\xe9\x99\xbd" "\x77\xf7\x4c\xef\x99\xf7\x7b\xd7\xf3\x1c\xb0\xa0\x69\xe1\x6b\x68\x95" "\x7f\xd1\xbf\xfa\x00\x00\x60\x1a\xb9\xfb\x1f\x1c\xb7\x34\xd9\xff\xfa" "\x7f\xef\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x5d\xd2\xff\xeb\xff\x37" "\xf1\xfe\x7f\xfd\xff\x92\x9f\x5f\xff\xaf\xff\x67\xbb\x21\xfa\xff\xbb" "\xfd\x76\xee\xfe\x87\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\xa1\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xb0\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\x7f\x78\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4b\xfa\x7f\xfd\xff\x3a\xf9\xbf\x45\xfa" "\x7f\xfd\xff\x52\x9f\x5f\xff\xaf\xff\x67\xbb\x9d\xf5\xff\x31\x08\x8e" "\xda\xff\xe7\xee\xbf\x26\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\x8f\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x47\xc6\x2d\xf6\x3f" "\x00\x00\x00\x4c\x23\x77\xff\xa3\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\xff\x5d\xd2\xff\xeb\xff\x37\xf1\xfe\x7f\xfd" "\xff\x92\x9f\x5f\xff\xaf\xff\x67\xbb\x9d\xf5\xff\xe1\xa8\xfd\x7f\xee" "\xfe\x47\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x31\x71\x8b" "\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xd8\xb8\xc5\xfe\x07\x00\x00\x80" "\x69\xe4\xee\xbf\x36\x6e\x69\xb1\xff\x2f\xd1\xff\xeb\xff\xf5\xff\x4b" "\xec\xff\x2f\xd1\xff\xeb\xff\xf7\x3d\x68\x35\x3e\xfd\xbf\xfe\x7f\x13" "\xfd\xbf\xfe\x7f\xc9\xcf\xaf\xff\xd7\xff\xb3\xdd\x68\xfd\x7f\xee\xfe" "\xeb\xe2\x96\x16\xfb\x1f\x00\x00\x00\x7a\xc8\xdd\xff\xb8\xb8\xc5\xfe" "\x07\x00\x00\x80\x05\x38\x71\xa8\xcf\xca\xdd\xff\xf8\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\x7f\x42\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa" "\xff\x05\xf6\xff\xde\xff\xaf\xff\x5f\x10\xfd\xbf\xfe\x7f\x13\xfd\xbf" "\xfe\x7f\xc9\xcf\xaf\xff\xd7\xff\xb3\xd1\xde\xc2\x19\xad\xff\xcf\xdd" "\xff\xc4\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x29\x6e\xb1" "\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x1c\xb7\xd8\xff\x00\x00\x00\x30" "\x8d\xdc\xfd\x4f\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x77\x49\xff\xaf\xff\xdf\x64\xc9\xfd\x7f\x7e\xae\xfe\x5f" "\xff\xaf\xff\xd7\xff\xb3\xde\xce\xfb\xff\xfb\x5e\xbf\x77\x0f\xdb\xff" "\xe7\xee\xbf\x3e\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x4f\x8d" "\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xa7\xc5\x2d\xf6\x3f\x00\x00" "\x00\x4c\x23\x77\xff\xd3\xe3\x96\x26\xfb\x5f\xff\xaf\xff\x3f\xd9\xff" "\xff\xef\x22\xfd\xbf\xfe\x5f\xff\x7f\xf2\xe3\xfa\xff\xe3\xa1\xff\xd7" "\xff\x6f\xb2\xe4\xfe\x7f\xe5\xfd\xff\xfa\x7f\xfd\xbf\xfe\x9f\xad\x76" "\xde\xff\x6f\xe9\xfd\x0f\xfe\x76\xee\xfe\x67\xc4\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x99\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd" "\xff\xac\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x76\xdc\xd2\x64" "\xff\xeb\xff\xf5\xff\xde\xff\xaf\xff\xd7\xff\xeb\xff\x77\x49\xff\x3f" "\x6c\xff\x7f\xf0\xbf\x7a\xa7\xd2\xff\x1f\x8a\xfe\x5f\xff\xbf\xae\xff" "\xbf\xcf\x21\x9e\x5f\xff\x4f\x07\xa3\xf5\xff\xb9\xfb\x9f\x13\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xe7\xc6\x2d\xf6\x3f\x00\x00\x00" "\x4c\x23\x77\xff\x0d\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xbc" "\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x53\xfb\xff\x13\x2d" "\xfb\xff\xbb\x3e\xa6\xff\xdf\x0d\xfd\xff\xb0\xfd\xff\x66\xfa\xff\x43" "\xd1\xff\xeb\xff\xbd\xff\x5f\xff\xcf\x66\xa3\xf5\xff\xb9\xfb\x9f\x1f" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x17\xc4\x2d\xf6\x3f\x00" "\x00\x00\x4c\x23\x77\xff\x0b\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb" "\xff\x45\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x9f\x53\xff\x7f\xb9\xfe\x7f" "\xbe\xfe\xff\x88\xef\xff\xbf\x78\x8e\xfe\xdf\xfb\xff\x77\x47\xff\xaf" "\xff\xdf\x44\xff\xaf\xff\x5f\xf2\xf3\xeb\xff\xf5\xff\x6c\x37\x5a\xff" "\x9f\xbb\xff\xc5\x71\x4b\x93\xfd\x0f\x00\x00\x00\xd3\x3b\xb1\xaa\xdd" "\xff\x92\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x69\xdc\x62\xff" "\x03\x00\x00\xc0\x34\x72\xf7\xbf\x2c\x6e\x69\xb2\xff\xf5\xff\xfa\x7f" "\xef\xff\xd7\xff\x9f\x53\xff\x3f\xc9\xfb\xff\x97\xd1\xff\x5f\xa9\xff" "\x3f\x03\xfd\x7f\x8f\xfe\x7f\xa5\xff\xaf\xaf\x45\xff\x3f\xce\xf3\xeb" "\xff\xf5\xff\x6c\x37\x5a\xff\x9f\xbb\xff\xe5\x71\x4b\x93\xfd\x0f\x00" "\x00\x00\x1d\xe4\xee\x7f\x45\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7" "\xbf\x32\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x15\xb7\x34\xd9" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x4a\xff\xef\xfd\xff\x67" "\xa2\xff\xef\xd1\xff\x7b\xff\xff\xc9\xaf\x45\xff\x3f\xce\xf3\xeb\xff" "\xf5\xff\x6c\x37\x5a\xff\x9f\xbb\xff\xd5\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\x7f\x4d\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf" "\x36\x6e\xba\xdf\xc1\x1f\x48\x05\x00\x00\x00\x16\x2b\x77\xff\xeb\xe2" "\x96\x83\xff\xfe\xff\xc4\xf9\x7c\xaa\xf3\x47\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xfa\xff\x5d\xd2\xff\xeb\xff\x37\xd1\xff\x9f\xb9\xff\xbf" "\x62\xcd\x9f\x4f\xff\x3f\xd6\xf3\xeb\xff\xf5\xff\x6c\x37\x5a\xff\x9f" "\xbb\xff\xc6\xb8\xc5\xcf\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x3e\x6e" "\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xdf\x10\xb7\xd8\xff\x00\x00\x00" "\x30\x8d\xdc\xfd\x6f\x8c\x5b\x9a\xec\xff\x75\xfd\xff\xed\xf7\xd8\xff" "\xfd\xfa\xff\xc3\xd1\xff\x9f\xf9\xf9\xf5\xff\xfa\xff\xc3\xf6\xff\x77" "\xde\x7a\xf2\x3f\xa7\xff\xd7\xff\x1f\x85\xfe\x5f\xff\xbf\x9a\xb0\xff" "\xf7\xfe\xff\x65\x3c\xbf\xfe\x5f\xff\xcf\x76\xa3\xf5\xff\xb9\xfb\xdf" "\x14\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x37\xc7\x2d\xf6\x3f" "\x00\x00\x00\x4c\x23\x77\xff\x5b\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91" "\xbb\xff\xad\x71\x4b\x93\xfd\x7f\xfc\xef\xff\xbf\x4a\xff\xaf\xff\xd7" "\xff\xc7\xd5\xff\x7b\xff\xbf\xfe\x5f\xff\xaf\xff\xdf\x4c\xff\x7f\xc1" "\xfb\xff\xfb\x5f\xb6\xff\xab\xfa\x7f\xfd\xbf\xfe\x9f\x9d\x38\x9e\xfe" "\xff\xe2\xd5\x71\xf5\xff\xb9\xfb\xdf\x16\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x3b" "\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x9d\x71\x4b\x93\xfd\x7f" "\xfc\xfd\xbf\xf7\xff\xeb\xff\x8f\xd8\xff\x9f\xd0\xff\x27\xfd\x7f\xfc" "\x7d\xd5\xff\xeb\xff\x8f\x40\xff\xaf\xff\x5f\xe9\xff\xcf\xda\x85\xee" "\xe7\x97\xfe\xfc\xfa\x7f\xfd\x3f\xdb\x8d\xf6\xfe\xff\xdc\xfd\x37\xed" "\x4d\xbd\x7e\xfb\x1f\x00\x00\x00\x3a\xb8\x69\xef\x97\x57\xac\xde\x15" "\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xef\x8e\x5b\xec\x7f\x00\x00" "\x00\x98\x46\xee\xfe\xf7\xc4\x2d\x4d\xf6\xbf\xfe\x7f\xce\xfe\x3f\xbf" "\x93\x17\xd1\xff\x7b\xff\x7f\xd1\xff\xc7\xdf\x57\xfd\xbf\xfe\xff\x08" "\xf4\xff\xfa\xff\x95\xfe\xff\xac\x5d\xe8\x7e\x7e\xe9\xcf\xaf\xff\xd7" "\xff\xb3\xdd\x68\xfd\x7f\xee\xfe\xf7\xc6\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\x7d\x71\x8b\xfd\x0f\x00\x00\x00\xd3\x88\xdd\xbf\xff" "\xc3\xef\xf6\x3f\x00\x00\x00\x4c\xe9\xfd\x7b\xbf\xbc\x62\xf5\x81\xb8" "\xa5\xc9\xfe\x6f\xdc\xff\x5f\x75\xae\xfd\xff\x95\x77\xfb\xf5\xd1\xfa" "\xff\x45\xbd\xff\x5f\xff\x5f\xd6\xf4\xff\x37\x1d\xfc\xde\xd3\xff\xeb" "\xff\x97\x44\xff\xaf\xff\xdf\x44\xff\xaf\xff\x5f\xf2\xf3\x8f\xd3\xff" "\xc7\x07\xae\xd5\xff\x33\x9e\xd1\xfa\xff\xdc\xfd\x1f\x8c\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\x87\xe2\x16\xfb\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\xe6\xb8\xc5\xfe\x07\x00\x00\x80\xa5\x3a\xad\xab\xcb\xdd" "\xff\xe1\xb8\xa5\xc9\xfe\x6f\xdc\xff\x4f\xf2\xfe\xff\x07\xdc\x16\x4f" "\xa0\xff\x9f\xb7\xff\xf7\xfe\xff\xb8\x8b\xea\xff\x6f\xd7\xff\x27\xfd" "\xbf\xfe\x7f\x13\xfd\xbf\xfe\x7f\xc9\xcf\x3f\x4e\xff\xef\xfd\xff\x8c" "\x6b\xb4\xfe\x3f\x77\xff\x47\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8" "\xdd\xff\xd1\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x58\xdc\x62" "\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x3c\x6e\x69\xb2\xff\xf5\xff\x4b" "\xef\xff\xbd\xff\x5f\xff\xaf\xff\x1f\xb2\xff\xf7\xfe\xff\xa2\xff\xd7" "\xff\x6f\xa2\xff\x3f\xb1\xf7\x4f\x22\xfa\xff\x65\x3e\xbf\xfe\x5f\xff" "\xcf\x76\xa3\xf5\xff\xb9\xfb\x3f\x11\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\x4f\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xa7\xe2" "\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xd3\x71\x4b\x93\xfd\xaf\xff" "\xd7\xff\xef\xaa\xff\xbf\xeb\x4f\xa2\xff\x6f\xd2\xff\x5f\xa7\xff\x5f" "\xe9\xff\xd7\x9a\xad\xff\xcf\x7f\x52\xd0\xff\xeb\xff\x57\xde\xff\xaf" "\xff\xd7\xff\xeb\xff\xd9\x6a\xb4\xfe\x3f\x77\xff\x67\xe2\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd9\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\xff\x5c\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x3e\x6e" "\xb8\xf7\x3d\x2f\xdc\x23\x1d\xaf\x4b\xd7\x7c\x3c\x7a\x73\xfd\xbf\xfe" "\xdf\xfb\xff\xf5\xff\xde\xff\xaf\xff\xdf\xa5\xf3\xd7\xff\xef\xfd\x7f" "\xb8\xf7\xff\x6f\xa1\xff\x3f\xf5\xeb\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\x76\x6b\xb4\xfe\x3f\x77\xff\x17\xe2\x16\xff\xfe\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\x8b\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xa5\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x72\xdc\xd2\x64\xff\xeb\xff" "\xf5\xff\xfa\xff\xc5\xf6\xff\x57\xea\xff\x4f\x7d\x7e\xfd\xff\x98\x66" "\x7b\xff\xbf\xfe\x5f\xff\x7f\x77\xfa\x7f\xfd\xff\xb1\xf5\xff\xb7\x5c" "\xad\xff\x67\x4a\xa3\xf5\xff\xb9\xfb\xbf\x12\xb7\x34\xd9\xff\x00\x00" "\x00\xd0\x41\xee\xfe\xaf\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff" "\xd7\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xeb\x71\x4b\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\x8f\xa1\xff\xbf\xe8\xcc\xdf\x0f\xde\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\x9b\xe9\xff\xf5\xff\x4b\x7e\x7e\xef\xff" "\xd7\xff\xb3\xdd\x68\xfd\x7f\xee\xfe\x6f\xc4\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\x9b\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff" "\xad\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x76\xdc\xd2\x64\xff" "\xeb\xff\x87\xed\xff\xaf\xd1\xff\x2f\xa8\xff\x5f\xf3\xfd\xa0\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\xff\xcd\xf4\xff\xfa\xff\x63\x78\xfe\xfc\x36" "\xd1\xff\xeb\xff\x19\xd0\x68\xfd\x7f\xee\xfe\xef\xc4\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\xbb\x71\x8b\xfd\x0f\x00\x00\x00\xa3\x3b" "\xf8\xe3\x9d\x6b\xe5\xee\xbf\x25\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\xbf\x17\xb7\x34\xd9\xff\x33\xf7\xff\x9b\x3e\x6d\x01\xfd\xbf\xf7" "\xff\xeb\xff\xf5\xff\x07\xfe\x7a\xea\xff\xf5\xff\x67\x32\x73\xff\x7f" "\x98\x2f\x46\xff\xbf\x4f\xff\x7f\x76\x26\xe9\xff\xbd\xff\x5f\xff\xcf" "\xc0\x46\xeb\xff\x73\xf7\x7f\x3f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x3f\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x1f\xc6\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x8f\xe2\x96\x26\xfb\x7f\xe6\xfe" "\x7f\x13\xfd\xff\x3e\xfd\xbf\xfe\x7f\xa5\xff\xd7\xff\xef\x98\xfe\xdf" "\xfb\xff\x37\xd1\xff\xeb\xff\x97\xfc\xfc\xfa\x7f\xfd\x3f\xdb\x5d\xa0" "\xfe\xff\xd2\xd5\x9a\xfe\x3f\x77\xff\x8f\xe3\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\x7f\x6b\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff" "\x24\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x7f\x1a\xb7\xcc\xb3\xff" "\x1f\x78\xf3\x86\xdf\xa9\xff\x3f\xf6\xfe\x7f\xef\x9b\x48\xff\xaf\xff" "\x5f\xe9\xff\xf5\xff\xfa\xff\x3d\xfa\x7f\xfd\xff\x26\xfa\x7f\xfd\xff" "\x92\x9f\x5f\xff\xaf\xff\x67\xbb\xd1\xde\xff\x9f\xbb\xff\x67\x71\xcb" "\x3c\xfb\x1f\x00\x00\x00\xda\xcb\xdd\xff\xf3\xb8\xc5\xfe\x07\x00\x00" "\x80\x69\xe4\xee\xff\x45\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff" "\x32\x6e\x69\xb2\xff\xf5\xff\x63\xbc\xff\x3f\x9f\x41\xff\xaf\xff\xdf" "\x71\xff\x7f\xf1\x4a\xff\xaf\xff\x3f\xcf\xf4\xff\xfa\xff\x4d\xf4\xff" "\xfa\xff\x25\x3f\xbf\xfe\x5f\xff\xcf\x76\xa3\xf5\xff\xb9\xfb\x7f\x15" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x5f\xc7\x2d\xf6\x3f\x00" "\x00\x00\x4c\x23\x77\xff\x6f\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb" "\xff\xb7\x71\x4b\x93\xfd\x7f\xce\xfd\x7f\x86\x1a\xfa\xff\x3d\x67\xdb" "\xff\x9f\xdb\xfb\xff\x4f\xd6\xd3\xfa\xff\x0b\xd9\xff\x9f\x38\xed\x8f" "\x3f\x60\xff\xef\xfd\xff\xfa\xff\xf3\x4e\xff\xaf\xff\xdf\x44\xff\xaf" "\xff\x5f\xf2\xf3\x67\xff\x9f\xdf\x77\xfa\x7f\xfd\x3f\xa7\x1b\xad\xff" "\xcf\xdd\xff\xbb\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x3e" "\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xff\x10\xb7\xd8\xff\x00\x00" "\x00\x30\x8d\xdc\xfd\x7f\x8c\x5b\x9a\xec\x7f\xef\xff\x9f\xa1\xff\xf7" "\xfe\xff\x31\xfa\xff\xd3\xff\xf8\xfa\xff\xdd\xf5\xff\x77\x7d\x4c\xff" "\xbf\x0c\xfa\x7f\xfd\xff\x26\xfa\x7f\xfd\xff\x92\x9f\xdf\xfb\xff\xf5" "\xff\x6c\x37\x5a\xff\x9f\xbb\xff\xb6\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\xff\x29\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xff\x1c" "\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xb7\xc7\x2d\x4d\xf6\xbf\xfe" "\xff\xb8\xfa\xff\x3b\xe2\xaf\x82\xfe\x7f\x88\xfe\xff\x72\xfd\xff\xec" "\xfd\xbf\xf7\xff\x2f\x87\xfe\x5f\xff\xbf\x89\xfe\x5f\xff\xbf\xe4\xe7" "\xd7\xff\xeb\xff\xd9\x6e\xb4\xfe\x3f\x77\xff\x5f\xe2\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xd7\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4" "\xee\xff\x5b\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x3d\x6e\x69" "\xb2\xff\xf5\xff\xde\xff\x7f\xf4\xfe\xff\xd2\xfa\xba\x87\xed\xff\xbd" "\xff\x5f\xff\xaf\xff\x1f\xc6\xbc\xfd\xff\x65\xfa\x7f\xfd\xff\x39\xf7" "\xff\x37\xdc\xb8\xff\x61\xfd\xff\x32\x9f\x5f\xff\xaf\xff\x67\xbb\xd1" "\xfa\xff\xdc\xfd\xff\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\x3f\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x8e\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\xff\x57\xdc\xd2\x64\xff\xcf\xde\xff\x5f\xbd" "\xe6\xd3\xf4\xff\xfb\xa6\x7d\xff\xbf\xfe\x5f\xff\xaf\xff\x1f\xc6\xbc" "\xfd\xbf\xf7\xff\xeb\xff\xbd\xff\x5f\xff\xaf\xff\xd7\xff\xb3\xcd\x68" "\xfd\x7f\xee\xfe\x3b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xef\xb8\xc5\xfe\x07\x00\x00\x80\xb1\xdd\xeb\xf0\x9f\x9a\xbb\xff\x3f" "\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xdf\xb8\xa5\xc9\xfe\x9f" "\xbd\xff\x5f\x47\xff\xbf\x4f\xff\xaf\xff\x5f\xe9\xff\xf5\xff\x3b\xa6" "\xff\xd7\xff\x6f\xa2\xff\xd7\xff\x2f\xf9\xf9\xf5\xff\xfa\x7f\xb6\x1b" "\xad\xff\xcf\xdd\xff\xff\x00\x00\x00\xff\xff\xd9\x74\x29\x19", 24699)); NONFAILING(syz_mount_image( /*fs=*/0x200000000400, /*dir=*/0x2000000000c0, /*flags=MS_POSIXACL|MS_REC|MS_SILENT|MS_NODIRATIME|MS_DIRSYNC*/ 0x1c880, /*opts=*/0x200000000000, /*chdir=*/0xfb, /*size=*/0x607b, /*img=*/0x2000000084c0)); break; case 1: // mkdir arguments: [ // path: ptr[in, buffer] { // buffer: {13 13 77 c5 fc 35 d4 14 54 d5 d4 1d 29 ad 1a 60 29 59 81 46 // e6 be 16 6e 41 ad 0d bd 40 54 03 3c 9f 33 bb da 82 24 a2 f3 d7 72 e7 // 63 6e 48 b3 3c bf 70 83 72 e8 f1 b9 93 3e c5 12 77 43 be 22 06 20 9e // f0 2d f9 cb f2 f6 e8 80 d3 38 2f 00} (length 0x4e) // } // mode: open_mode = 0xc4 (8 bytes) // ] NONFAILING(memcpy( (void*)0x200000000280, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78)); syscall(__NR_mkdir, /*path=*/0x200000000280ul, /*mode=S_IROTH|S_IXUSR|S_IWUSR*/ 0xc4ul); break; case 2: // openat$misdntimer arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 6d 49 53 44 4e 74 69 6d 65 72 00} (length // 0x10) // } // flags: open_flags = 0x0 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_misdntimer NONFAILING(memcpy((void*)0x200000000040, "/dev/mISDNtimer\000", 16)); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000040ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[0] = res; break; case 3: // ioctl$BTRFS_IOC_GET_SUBVOL_INFO arguments: [ // fd: fd (resource) // cmd: const = 0x80044940 (4 bytes) // arg: ptr[out, btrfs_ioctl_get_subvol_info_args] { // btrfs_ioctl_get_subvol_info_args { // treeid: treeid (resource) // name: buffer: (DirOut) // parent_id: treeid (resource) // dirid: dirid (resource) // generation: transid (resource) // flags: int64 = 0x0 (8 bytes) // uuid: buffer: (DirOut) // parent_uuid: buffer: (DirOut) // received_uuid: buffer: (DirOut) // ctransid: transid (resource) // otransid: transid (resource) // stransid: transid (resource) // rtransid: transid (resource) // ctime: btrfs_ioctl_timespec { // sec: int64 = 0x0 (8 bytes) // msec: int32 = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // otime: btrfs_ioctl_timespec { // sec: int64 = 0x0 (8 bytes) // msec: int32 = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // stime: btrfs_ioctl_timespec { // sec: int64 = 0x0 (8 bytes) // msec: int32 = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // rtime: btrfs_ioctl_timespec { // sec: int64 = 0x0 (8 bytes) // msec: int32 = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // reserved: buffer: (DirOut) // } // } // ] res = syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x80044940, /*arg=*/0x200000001b00ul); if (res != -1) { NONFAILING(r[1] = *(uint64_t*)0x200000001c08); NONFAILING(r[2] = *(uint64_t*)0x200000001c18); NONFAILING(r[3] = *(uint64_t*)0x200000001c58); NONFAILING(r[4] = *(uint64_t*)0x200000001c60); } break; case 4: // syz_mount_image$msdos arguments: [ // fs: ptr[in, buffer] { // buffer: {6d 73 64 6f 73 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: mount_flags = 0x1a4243c (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {5e 4c 63 db 6a c1 36 69 b8 2f f9 3e ad c1 ed // e7 54 75 e7 cd 88 da a9 95 84 55 5c 85 42 a1 60 6e c3 70 4b 65 // ae ba d8 30 ab 99 cb 8b 28 15 a8 aa ef bc 49 3f 22 d8 5a ac 2c // c7 4c 93 e3 49 9e 50 ba 0c c1 54 cb 23 55 99 8e e2 6b 2f 68 6f // 88 d8 6c 4e 7e 43 7f 56 be b8 78 61 64 be 6c 89 82 51 82 9c b1 // fc 19 86 16 a5 37 69 15 08 64 f4 07 93 60 21 49 ad b3 80 45 fe // e4 ba 74 86 2c 51 ba 4e 6e 81 78 b8 27 b4 9a 37 49 a8 84 25 43 // c8 78 75 ba 9f ae da 7d 43 b7 be 34 01 9e 55 93 2c 52 a9 9d e9 // d1 0c 9f 41 29 d4 c9 5a 34 47 60 99 d4 e9 ee d0 d7 39 0d 7d f1 // c2 f5 d5 b7 72 e1 1c b9 10 41 08 94 bb 88 6c 7c 56 a2 0d} // (length 0xca) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // } // } // chdir: int8 = 0x0 (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000180, "msdos\000", 6)); NONFAILING(memcpy((void*)0x2000000006c0, ".\000", 2)); NONFAILING(*(uint16_t*)0x2000000008c0 = r[2]); NONFAILING(sprintf((char*)0x2000000008c2, "%020llu", (long long)r[3])); NONFAILING(sprintf((char*)0x2000000008d6, "0x%016llx", (long long)r[4])); NONFAILING(sprintf((char*)0x2000000008e8, "%020llu", (long long)-1)); NONFAILING(*(uint64_t*)0x2000000008fc = -1); NONFAILING(memcpy( (void*)0x200000000904, "\x5e\x4c\x63\xdb\x6a\xc1\x36\x69\xb8\x2f\xf9\x3e\xad\xc1\xed\xe7\x54" "\x75\xe7\xcd\x88\xda\xa9\x95\x84\x55\x5c\x85\x42\xa1\x60\x6e\xc3\x70" "\x4b\x65\xae\xba\xd8\x30\xab\x99\xcb\x8b\x28\x15\xa8\xaa\xef\xbc\x49" "\x3f\x22\xd8\x5a\xac\x2c\xc7\x4c\x93\xe3\x49\x9e\x50\xba\x0c\xc1\x54" "\xcb\x23\x55\x99\x8e\xe2\x6b\x2f\x68\x6f\x88\xd8\x6c\x4e\x7e\x43\x7f" "\x56\xbe\xb8\x78\x61\x64\xbe\x6c\x89\x82\x51\x82\x9c\xb1\xfc\x19\x86" "\x16\xa5\x37\x69\x15\x08\x64\xf4\x07\x93\x60\x21\x49\xad\xb3\x80\x45" "\xfe\xe4\xba\x74\x86\x2c\x51\xba\x4e\x6e\x81\x78\xb8\x27\xb4\x9a\x37" "\x49\xa8\x84\x25\x43\xc8\x78\x75\xba\x9f\xae\xda\x7d\x43\xb7\xbe\x34" "\x01\x9e\x55\x93\x2c\x52\xa9\x9d\xe9\xd1\x0c\x9f\x41\x29\xd4\xc9\x5a" "\x34\x47\x60\x99\xd4\xe9\xee\xd0\xd7\x39\x0d\x7d\xf1\xc2\xf5\xd5\xb7" "\x72\xe1\x1c\xb9\x10\x41\x08\x94\xbb\x88\x6c\x7c\x56\xa2\x0d", 202)); NONFAILING(*(uint8_t*)0x2000000009ce = r[3]); NONFAILING(sprintf((char*)0x2000000009cf, "0x%016llx", (long long)r[1])); NONFAILING(*(uint64_t*)0x2000000009e1 = -1); NONFAILING(*(uint8_t*)0x2000000009e9 = r[4]); NONFAILING(syz_mount_image( /*fs=*/0x200000000180, /*dir=*/0x2000000006c0, /*flags=MS_I_VERSION|MS_PRIVATE|MS_SYNCHRONOUS|MS_STRICTATIME|MS_REMOUNT|MS_RELATIME|0x240c*/ 0x1a4243c, /*opts=*/0x2000000008c0, /*chdir=*/0, /*size=*/0, /*img=*/0x200000000080)); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; install_segv_handler(); use_temporary_dir(); loop(); return 0; }