// https://syzkaller.appspot.com/bug?id=3e6a8499b70dc448ca4f8dcd150ba509b9b69a26 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #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 bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #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 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); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } NONFAILING(memcpy((void*)0x20000140, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000c0, "./file0\000", 8)); NONFAILING( memcpy((void*)0x200002c0, "quota,errors=remount-ro,integrity,iocharset=cp932,nodiscard," "nointegrity,grpquota\000quota,resize,iocharset=iso8859-5,uid=", 118)); NONFAILING(sprintf((char*)0x20000336, "%020llu", (long long)-1)); NONFAILING(sprintf((char*)0x2000034a, "0x%016llx", (long long)-1)); NONFAILING(memcpy( (void*)0x2000a180, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\xa5\xb4\xb5\x7a" "\xa8\x4a\x85\x90\x9b\x96\x97\x52\x9a\xc4\x49\x09\x81\x02\x4d\x0f\x70\xe0" "\xd2\x03\xca\x15\x25\x72\xdd\x2a\x22\x05\x94\x04\x94\x56\x16\x71\xe5\x0b" "\x07\x4e\xfc\x05\x20\x24\x8e\x08\x71\x44\x1c\xf8\x03\x7a\xe0\xca\x8d\x13" "\x27\x22\xd9\x48\xa0\x9e\x18\x34\xf6\xf3\xc4\xe3\xcd\x6e\xed\xd4\xf1\xce" "\xda\xcf\xe7\x23\x39\x33\xbf\x79\x66\xbd\xcf\xf8\xbb\xb3\x2f\x99\x99\x7d" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\xef\x7f\xef" "\x07\x2b\x9d\x88\xb8\xf6\xf3\xb4\x60\x29\xe2\x33\xd1\x8b\xe8\x46\x2c\xd4" "\xf5\x72\x44\x2c\x2c\x2f\xe5\xf5\xfb\x11\xf1\x5c\xec\x34\xc7\xb3\x11\x31" "\x98\x8b\xa8\x6f\xbf\xf3\xcf\xd3\x11\xaf\x45\xc4\x47\x4f\x45\x6c\x6d\xaf" "\xaf\xd6\x8b\x2f\x1c\xb2\x1f\xdf\xfd\xe3\xdf\x7f\xf7\xc3\x27\xde\xfa\xdb" "\x1f\x06\xe7\xfe\xfb\xa7\x3b\xbd\xd7\x27\xad\x77\xf7\xee\xaf\xfe\xf3\xe7" "\x7b\x47\xdb\x66\x00\x00\x00\x28\x4d\x55\x55\x55\x27\x7d\xcc\x7f\x3e\x7d" "\xbe\xef\xb6\xdd\x29\x00\x60\x2a\xf2\xeb\x7f\x95\xe4\xe5\xa7\xbe\xfe\xf5" "\x3f\xdf\xfa\xcb\x2c\xf5\x47\xad\x56\xab\xd5\xea\x29\xd4\x4d\xd5\x78\xf7" "\x9a\x45\x44\x6c\x34\x6f\x53\xbf\x67\x70\x38\x1e\x00\x4e\x98\x8d\xf8\xb8" "\xed\x2e\xd0\x22\xf9\x17\xad\x1f\x11\x4f\xb4\xdd\x09\x60\xa6\x75\xda\xee" "\x00\xc7\x62\x6b\x7b\x7d\xb5\x93\xf2\xed\x34\x5f\x0f\x96\x77\xdb\xf3\xb9" "\x20\xfb\xf2\xdf\xe8\x3c\xb8\xbe\x63\xd2\xf4\x20\xa3\xe7\x98\x4c\xeb\xf1" "\xb5\x19\xbd\x78\x66\x42\x7f\x16\xa6\xd4\x87\x59\x92\xf3\xef\x8e\xe6\x7f" "\x6d\xb7\x7d\x98\xd6\x3b\xee\xfc\xa7\x65\x52\xfe\xc3\xdd\x4b\x9f\x8a\x93" "\xf3\xef\x8d\xe6\x3f\xe2\xf4\xe4\xdf\x1d\x9b\x7f\xa9\x72\xfe\xfd\x47\xca" "\xbf\x27\x7f\x00\x00\x00\x00\x00\x98\x61\xf9\xff\xff\x97\x5a\x3e\xfe\x3b" "\x77\xf4\x4d\x39\x94\x4f\x3a\xfe\xbb\x3c\xa5\x3e\x00\x00\x00\x00\x00\x00" "\x00\xc0\xe3\x76\xd4\xf1\xff\x1e\x30\xfe\x1f\x00\x00\x00\xcc\xac\xfa\xb3" "\x7a\xed\x37\x4f\xed\x2d\x9b\xf4\x5d\x6c\xf5\xf2\xab\x9d\x88\x27\x47\xd6" "\x07\x0a\x93\x2e\x96\x59\x6c\xbb\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x50\x92\xfe\xee\x39\xbc\x57\x3b\x11\x83\x88\x78\x72\x71\xb1\xaa\xaa" "\xfa\xa7\x69\xb4\x7e\x54\x47\xbd\xfd\x49\x57\xfa\xf6\x43\xc9\xda\x7e\x92" "\x07\x00\x80\x5d\x1f\x3d\x35\x72\x2d\x7f\x27\x62\x3e\x22\xae\xa6\xef\xfa" "\x1b\x2c\x2e\x2e\x56\xd5\xfc\xc2\x62\xb5\x58\x2d\xcc\xe5\xf7\xb3\xc3\xb9" "\xf9\x6a\xa1\xf1\xb9\x36\x4f\xeb\x65\x73\xc3\x43\xbc\x21\xee\x0f\xab\xfa" "\x97\xcd\x37\x6e\xd7\x74\xd0\xe7\xe5\x83\xda\x47\x7f\x5f\x7d\x5f\xc3\xaa" "\x77\x88\x8e\x3d\x26\x83\xf4\xd7\x9c\xd0\xdc\x52\xd8\x00\x90\xec\xbe\x1a" "\x6d\x79\x45\x3a\x65\xaa\xea\xe9\x49\x6f\x3e\x60\x1f\xfb\xff\x29\xb4\x14" "\x4b\x6d\x3f\xae\x98\x7d\x6d\x3f\x4c\x01\x00\x00\x80\xe3\x57\x55\x55\xd5" "\x49\x5f\xe7\xfd\x7c\x3a\xe6\xdf\x6d\xbb\x53\x00\xc0\x54\xe4\xd7\xff\xd1" "\xe3\x02\x47\xaa\xbb\x13\xda\x23\x1e\xcf\xef\x57\xab\xd5\x6a\xb5\x5a\xfd" "\xa9\xea\xa6\x6a\xbc\x7b\xcd\x22\x22\x36\x9a\xb7\xa9\xdf\x33\x18\x8e\x1f" "\x00\x4e\x98\x8d\xf8\xb8\xed\x2e\xd0\x22\xf9\x17\xad\x1f\x11\xcf\xb5\xdd" "\x09\x60\xa6\x75\xda\xee\x00\xc7\x62\x6b\x7b\x7d\xb5\x93\xf2\xed\x34\x5f" "\x0f\xd2\xf8\xee\xf9\x5c\x90\x7d\xf9\x6f\x74\x76\x6e\x97\x6f\x3f\x6e\x7a" "\x90\xd1\x73\x4c\xa6\xf5\xf8\xda\x8c\x5e\x3c\x33\xa1\x3f\xcf\x4e\xa9\x0f" "\xb3\x24\xe7\xdf\x1d\xcd\xff\xda\x6e\xfb\x30\xad\x77\xdc\xf9\x4f\xcb\xa4" "\xfc\x87\x3b\x97\xcc\x95\x27\xe7\xdf\x1b\xcd\x7f\xc4\xe9\xc9\xbf\x3b\x36" "\xff\x52\xe5\xfc\xfb\x8f\x94\x7f\x4f\xfe\x00\x00\x00\x00\x00\x30\xc3\xf2" "\xff\xff\x2f\x39\xfe\x9b\x37\x19\x00\x00\x00\x00\x00\x00\x00\x4e\x9c\xad" "\xed\xf5\xd5\x7c\xdd\x6b\x3e\xfe\xff\xb9\x31\xeb\xb9\xfe\xf3\x74\xca\xf9" "\x77\x1e\x35\xff\x85\x34\x2f\xff\x13\x2d\xe7\xdf\x1d\xc9\xff\xcb\x23\xeb" "\xf5\x1a\xf3\xf7\xdf\xdc\xdb\xff\xff\xbd\xbd\xbe\xfa\xfb\x3b\xff\xfa\x6c" "\x9e\x1e\x36\xff\xb9\x3c\xd3\x49\x8f\xac\x4e\x7a\x44\x74\xd2\x3d\x75\xfa" "\x69\x7a\x94\xad\x7b\xd8\xe6\xa0\x37\xac\xef\x69\xd0\xe9\xf6\xfa\xe9\x9c" "\x9f\x6a\xf0\x4e\xdc\x88\x9b\xb1\x16\xe7\xf7\xad\xdb\x4d\x7f\x8f\xbd\xf6" "\x95\x7d\xed\x75\x4f\x07\xfb\xda\x2f\xec\x6b\xef\x3f\xd4\x7e\x71\x5f\xfb" "\x20\x7d\xef\x40\xb5\x90\xdb\xcf\xc6\x6a\xfc\x24\x6e\xc6\xdb\x3b\xed\x75" "\xdb\xdc\x01\xdb\x3f\x7f\x40\x7b\x75\x40\x7b\xce\xbf\xe7\xf9\xbf\x48\x39" "\xff\x7e\xe3\xa7\xce\x7f\x31\xb5\x77\x46\xa6\xb5\xfb\x1f\x76\x1f\xda\xef" "\x9b\xd3\x71\xf7\x73\xe5\xc6\xe7\x7f\x79\xfe\xf8\x37\xe7\x40\x9b\xd1\x7b" "\xb0\x6d\x4d\xf5\xf6\x9d\x69\xa1\x3f\x3b\x7f\x93\x27\x86\xf1\xb3\xdb\x6b" "\xb7\xce\xde\xbd\x7e\xe7\xce\xad\x95\x48\x93\x7d\x4b\x2f\x44\x9a\x3c\x66" "\x39\xff\xc1\xce\xcf\xdc\xde\xf3\xff\x8b\xbb\xed\xf9\x79\xbf\xb9\xbf\xde" "\xff\x70\xf8\xc8\xf9\xcf\x8a\xcd\xe8\x4f\xcc\xff\xc5\xc6\x7c\xbd\xbd\x2f" "\x4f\xb9\x6f\x6d\xc8\xf9\x0f\xd3\x4f\xce\xff\xed\xd4\x3e\x7e\xff\x3f\xc9" "\xf9\x4f\xde\xff\x5f\x69\xa1\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf0\x49\xaa\xaa\xda\xb9\x44\xf4\x4a\x44\x5c\x4a\xd7\xff\xb4\x75" "\x6d\x26\x00\x30\x5d\x57\x22\xee\x45\x7a\x3f\x50\xcb\xcb\xd5\x6a\xb5\x5a" "\xad\x56\x9f\xbe\xba\xa9\x1a\xef\x8d\x66\x11\x11\x7f\x6d\xde\xe6\x52\x44" "\xfc\x62\xdc\x2f\x03\x00\x66\xd9\xff\x22\xe2\x1f\x6d\x77\x82\xd6\xc8\xbf" "\x60\xf9\xfb\xfe\xea\xe9\x4b\x6d\x77\x06\x98\xaa\xdb\xef\x7f\xf0\xa3\xeb" "\x37\x6f\xae\xdd\xba\xdd\x76\x4f\x00\x00\x00\x00\x00\x00\x00\x80\x4f\x2b" "\x8f\xff\xb9\xdc\x18\xff\xf9\xa5\x88\x58\x1a\x59\x6f\xdf\xf8\xaf\x6f\xc6" "\xf2\x51\xc7\xff\xec\xe7\x99\x07\x03\x8c\x3e\xe6\x81\xbe\x27\xd8\xec\x0e" "\x7b\xdd\xc6\x70\xe3\x2f\xc4\xce\xf8\xdc\x67\x27\x8d\xff\x7d\x26\x1e\x1e" "\xff\x3b\x8f\x89\xdb\x6b\x6e\xc7\x04\x83\x03\xda\x87\x07\xb4\xcf\x1d\xd0" "\x3e\x3f\x76\xe9\x5e\x5a\x63\x2f\xf4\x68\xc8\xf9\xbf\xd0\x18\xef\xbc\xce" "\xff\xf9\x91\xe1\xd7\x4b\x18\xff\x75\x74\xcc\xfb\x12\xe4\xfc\xcf\x34\x1e" "\xcf\x75\xfe\x5f\x1a\x59\xaf\x99\x7f\xf5\xdb\x99\xcb\x7f\xe3\xb0\x2b\x6e" "\x46\x77\x5f\xfe\xe7\xee\xbc\xf7\xd3\x73\xb7\xdf\xff\xe0\xd5\x1b\xef\x5d" "\x7f\x77\xed\xdd\xb5\x1f\x5f\x5c\x59\x39\x7f\xf1\xd2\xa5\xcb\x97\x2f\x9f" "\x7b\xe7\xc6\xcd\xb5\xf3\xbb\xff\x1e\x4f\xaf\x67\x40\xce\x3f\x8f\x7d\xed" "\x3c\xd0\xb2\xe4\xfc\x73\xe6\xf2\x2f\x4b\xce\xff\x0b\xa9\x96\x7f\x59\x72" "\xfe\x5f\x4c\xb5\xfc\xcb\x92\xf3\xcf\xef\xf7\xe4\x5f\x96\x9c\x7f\xfe\xec" "\x23\xff\xb2\xe4\xfc\x5f\x4e\xb5\xfc\xcb\x92\xf3\xff\x4a\xaa\xe5\x5f\x96" "\xad\xed\xf5\xb9\x3a\xff\x57\x52\x2d\xff\xb2\xe4\xfd\xff\xab\xa9\x96\x7f" "\x59\x72\xfe\xaf\xa6\x5a\xfe\x65\xc9\xf9\x9f\x4d\xb5\xfc\xcb\x92\xf3\x3f" "\x97\xea\x43\xe4\xef\xeb\xe1\x4f\x91\x9c\x7f\x3e\xc2\x65\xff\x2f\x4b\xce" "\x7f\x25\xd5\xf2\x2f\x4b\xce\xff\x42\xaa\xe5\x5f\x96\x9c\xff\xc5\x54\xcb" "\xbf\x2c\x39\xff\xd7\x52\x2d\xff\xb2\xe4\xfc\xbf\x96\x6a\xf9\x97\x25\xe7" "\x7f\x29\xd5\xf2\x2f\x4b\xce\xff\xeb\xa9\x96\x7f\x59\x72\xfe\x97\x53\x2d" "\xff\xb2\xe4\xfc\xbf\x91\x6a\xf9\x97\x25\xe7\xff\xcd\x54\xcb\xbf\x2c\x39" "\xff\xd7\x53\x2d\xff\xb2\xe4\xfc\xbf\x95\x6a\xf9\x97\x25\xe7\xff\xed\x54" "\xcb\xbf\x2c\x39\xff\xef\xa4\x5a\xfe\x65\xc9\xf9\xbf\x91\x6a\xf9\x97\x65" "\xef\xfb\xff\xcd\x98\x31\x63\x26\xcf\xb4\xfd\xcc\x04\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x8c\x9a\xc6\xe9\xc4\x6d\x6f\x23\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x9f\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\xde\x62" "\xe4\xba\xeb\x3b\x80\x9f\xd9\x9b\xd7\x0e\x21\x06\x42\x70\x52\x03\x1b\xc7" "\x18\xe3\x2c\xd9\xf5\x25\xbe\xd0\xba\x98\x70\x6d\x80\x52\x20\xa1\xd0\x0b" "\xb6\xeb\x5d\x9b\x05\xdf\xf0\xda\x25\x50\x24\x9b\x06\x4a\x24\x8c\x8a\x2a" "\xaa\xa6\x0f\x6d\x01\xa1\x36\x52\x55\x61\x55\x3c\xd0\x8a\xd2\x3c\x54\xbd" "\x3c\x95\xf6\x81\xbe\x54\x54\x95\x90\x1a\x55\x01\x05\x54\xa4\xb6\xa2\xd9" "\x6a\xe6\xfc\xff\x7f\xcf\xcc\xce\xce\xec\x7a\xc7\xeb\xd9\xf3\xff\x7c\x24" "\xfb\xb7\x3b\x73\x66\xce\x99\x33\x67\x66\xf7\xbb\xf6\x77\x0f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xbb\xf7\x8d\xb3\x9f\xad" "\x15\x45\x51\xff\xd3\xf8\x6b\x73\x51\xbc\xa0\xfe\xf1\xc6\x89\xcd\x8d\xcb" "\x5e\x77\xab\xb7\x10\x00\x00\x00\x58\xad\xff\x6b\xfc\xfd\xdc\x1d\xe9\x82" "\x23\xcb\xb8\x51\xd3\x32\x7f\xf7\x8a\x7f\xfc\xfa\xc2\xc2\xc2\x42\xf1\xfe" "\xe1\xdf\x1d\xfd\xe2\xc2\x42\xba\x62\xa2\x28\x46\x37\x14\x45\xe3\xba\xe8" "\xda\xbf\x7f\xa0\xd6\xbc\x4c\xf0\x78\x31\x5e\x1b\x6a\xfa\x7c\xa8\xc7\xea" "\x87\x7b\x5c\x3f\xd2\xe3\xfa\xd1\x1e\xd7\x8f\xf5\xb8\x7e\x43\x8f\xeb\xc7" "\x7b\x5c\xbf\x68\x07\x2c\xb2\xb1\xfc\x79\x4c\xe3\xce\xb6\x37\x3e\xdc\x5c" "\xee\xd2\xe2\xce\x62\xb4\x71\xdd\xf6\x0e\xb7\x7a\xbc\xb6\x61\x68\x28\xfe" "\x2c\xa7\xa1\xd6\xb8\xcd\xc2\xe8\xc9\x62\xae\x38\x5d\xcc\x16\xd3\x2d\xcb" "\x97\xcb\xd6\x1a\xcb\x7f\xf3\xde\xfa\xba\xde\x56\xc4\x75\x0d\x35\xad\x6b" "\x6b\xfd\x08\xf9\xe1\x27\x4f\xc4\x6d\xa8\x85\x7d\xbc\xbd\x65\x5d\xd7\xef" "\x33\xfa\xfe\x1b\x8a\x89\x1f\xfd\xf0\x93\x27\xfe\xf8\xe2\xb3\x77\x77\x9a" "\x3d\x77\x43\xcb\xfd\x95\xdb\xb9\x73\x5b\x7d\x3b\x3f\x1d\x2e\x29\xb7\xb5" "\x56\x6c\x48\xfb\x24\x6e\xe7\x50\xd3\x76\x6e\xed\xf0\x9c\x0c\xb7\x6c\x67" "\xad\x71\xbb\xfa\xc7\xed\xdb\xf9\xdc\x32\xb7\x73\xf8\xfa\x66\xae\xa9\xf6" "\xe7\x7c\xbc\x18\x6a\x7c\xfc\xed\xc6\x7e\x1a\x69\xfe\xb1\x5e\xda\x4f\x5b" "\xc3\x65\xff\x7d\x5f\x51\x14\x57\xae\x6f\x76\xfb\x32\x8b\xd6\x55\x0c\x15" "\x9b\x5a\x2e\x19\xba\xfe\xfc\x8c\x97\x47\x64\xfd\x3e\xea\x87\xd2\x8b\x8b" "\x91\x15\x1d\xa7\xf7\x2e\xe3\x38\xad\xcf\x99\xed\xad\xc7\x69\xfb\x6b\x22" "\x3e\xff\xf7\x86\xdb\x8d\x2c\xb1\x0d\xcd\x4f\xd3\xf7\x3f\x35\xb6\xe8\x79" "\x5f\xe9\x71\x1a\xd5\x1f\xf5\x52\xaf\x95\xf6\x63\xb0\xdf\xaf\x95\x41\x39" "\x06\xe3\x71\xf1\xed\xc6\x83\x7e\xa2\xe3\x31\xb8\x3d\x3c\xfe\x4f\xee\x58" "\xfa\x18\xec\x78\xec\x74\x38\x06\xd3\xe3\x6e\x3a\x06\xb7\xf5\x3a\x06\x87" "\xc6\x86\x1b\xdb\x9c\x9e\x84\x5a\xe3\x36\xd7\x8f\xc1\xdd\x2d\xcb\x0f\x37" "\xd6\x54\x6b\xcc\x67\x76\x74\x3f\x06\xa7\x2e\x9e\x39\x3f\x35\xff\xf1\x4f" "\xbc\x76\xee\xcc\xf1\x53\xb3\xa7\x66\xcf\xee\xdd\xbd\x7b\x7a\xef\xfe\xfd" "\x07\x0f\x1e\x9c\x3a\x39\x77\x7a\x76\xba\xfc\xfb\x06\xf7\xf6\xe0\xdb\x54" "\x0c\xa5\xd7\xc0\xb6\xb0\xef\xe2\x6b\xe0\xd5\x6d\xcb\x36\x1f\xaa\x0b\x5f" "\xee\xdf\xeb\x70\xbc\xcb\xeb\x70\x73\xdb\xb2\xfd\x7e\x1d\x8e\xb4\x3f\xb8" "\xda\xda\xbc\x20\x17\x1f\xd3\xe5\x6b\xe3\x91\xfa\x4e\x1f\xbf\x3a\x54\x2c" "\xf1\x1a\x6b\x3c\x3f\xbb\x56\xff\x3a\x4c\x8f\xbb\xe9\x75\x38\xd2\xf4\x3a" "\xec\xf8\x35\xa5\xc3\xeb\x70\x64\x19\xaf\xc3\xfa\x32\xe7\x77\x2d\xef\x7b" "\x96\x91\xa6\x3f\x9d\xb6\xe1\x66\x7d\x2d\xd8\xdc\x74\x0c\xb6\x7f\x3f\xd2" "\x7e\x0c\xf6\xfb\xfb\x91\x41\x39\x06\xc7\xc3\x71\xf1\xaf\xbb\x96\xfe\x5a" "\xb0\x35\x6c\xef\x13\x93\x2b\xfd\x7e\x64\x78\xd1\x31\x98\x1e\x6e\x78\xef" "\xa9\x5f\x92\xbe\xdf\x1f\x3f\xd8\x18\x9d\x8e\xcb\x7b\xea\x57\xdc\x36\x56" "\x5c\x9a\x9f\xbd\xf0\xc0\x63\xc7\x2f\x5e\xbc\xb0\xbb\x08\x63\x4d\xbc\xa4" "\xe9\x58\x69\x3f\x5e\x37\x35\x3d\xa6\x62\xd1\xf1\x3a\xb4\xe2\xe3\xf5\xc8" "\xdc\x2b\x9e\xb8\xa7\xc3\xe5\x9b\xc3\xbe\x1a\x7f\x6d\xfd\xaf\xf1\x25\x9f" "\xab\xfa\x32\xfb\x1e\xe8\xfe\x5c\x35\xbe\xba\x75\xde\x9f\x2d\x97\xee\x29" "\xc2\xe8\xb3\xb5\xde\x9f\x9d\xbe\x9a\xd7\xf7\x67\xca\x92\x5d\xf6\x67\x7d" "\x99\x4f\x4f\xad\xfe\x7b\xf1\x94\x4b\x9b\xde\x7f\x47\x97\x78\xff\x8d\xb9" "\xff\xf9\x72\x7d\xe9\xae\x1e\x1f\x1e\x1d\x29\x5f\xbf\xc3\x69\xef\x8c\xb6" "\xbc\x1f\xb7\x3e\x55\x23\x8d\xf7\xae\x5a\x63\xdd\xcf\x4d\x2d\xef\xfd\x78" "\x34\xfc\x59\xeb\xf7\xe3\x3b\xbb\xbc\x1f\x6f\x69\x5b\xb6\xdf\xef\xc7\xa3" "\xed\x0f\x2e\xbe\x1f\xd7\x7a\xfd\xb4\x63\x75\xda\x9f\xcf\xf1\x70\x9c\x9c" "\x9e\xee\xfe\x7e\x5c\x5f\x66\xcb\x9e\x95\x1e\x93\x23\x5d\xdf\x8f\xef\x0b" "\xb3\x16\xf6\xff\x6b\x42\x52\x48\xb9\xa8\xe9\xd8\x59\xea\xb8\x4d\xeb\x1a" "\x19\x19\x0d\x8f\x6b\x24\xae\xa1\xf5\x38\xdd\xdb\xb2\xfc\x68\xc8\x66\xf5" "\x75\x3d\xb5\xe7\xc6\x8e\xd3\x9d\xf7\x95\xf7\x35\x9c\x1e\xdd\x75\x6b\x75" "\x9c\x4e\xb4\x2d\xdb\xef\xe3\x34\xbd\x5f\x2d\x75\x9c\xd6\x7a\xfd\xf4\xed" "\xc6\xb4\x3f\x9f\xe3\xe1\xb8\xb8\x73\x6f\xf7\xe3\xb4\xbe\xcc\xd3\xfb\x56" "\xff\xde\xb9\x31\x7e\xd8\xf4\xde\x39\xd6\xeb\x18\x1c\x1d\x1e\xab\x6f\xf3" "\x68\x3a\x08\xcb\xf7\xfb\x85\x8d\xf1\x18\x7c\xa0\x38\x51\x9c\x2b\x4e\x17" "\x33\x8d\x6b\xc7\x1a\xc7\x53\xad\xb1\xae\xc9\x07\x97\x77\x0c\x8e\x85\x3f" "\x6b\xfd\x5e\xb9\xa5\xcb\x31\xb8\xb3\x6d\xd9\x7e\x1f\x83\xe9\xeb\xd8\x52" "\xc7\x5e\x6d\x64\xf1\x83\xef\x83\xf6\xe7\x73\x3c\x1c\x17\x4f\x3e\xd8\xfd" "\x18\xac\x2f\xf3\xa6\x03\xfd\xfd\xde\x75\x67\xb8\x24\x2d\xd3\xf4\xbd\x6b" "\xfb\xcf\xd7\x96\xfa\x99\xd7\x3d\x6d\xbb\xe9\x66\xfe\xcc\xab\xbe\x9d\x7f" "\x73\xa0\xfb\xcf\x66\xeb\xcb\x9c\x3e\xb8\xd2\x9c\xd9\x7d\x3f\xdd\x1f\x2e" "\xb9\xad\xc3\x7e\x6a\x7f\xfd\x2e\xf5\x9a\x9a\x29\xd6\x66\x3f\x6d\x09\xdb" "\xf9\xec\xc1\xa5\xf7\x53\x7d\x7b\xea\xcb\x7c\xf1\xd0\x32\x8f\xa7\x23\x45" "\x51\x5c\xfe\xe8\x43\x8d\x9f\xf7\x86\x7f\x5f\xf9\xf3\x4b\xdf\xf9\x7a\xcb" "\xbf\xbb\x74\xfa\x37\x9d\xcb\x1f\x7d\xe8\x07\xb7\x9f\xfc\xdb\x95\x6c\x3f" "\x00\xeb\xdf\xf3\xe5\xd8\x54\x7e\xad\x6b\xfa\x97\xa9\xe5\xfc\xfb\x3f\x00" "\x00\x00\xb0\x2e\xc4\xdc\x3f\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x1f\xff\x57\x78\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x12\x66\x92\x49" "\xfe\xdf\xf2\xa6\x67\xe7\x9e\xbf\x5c\xa4\x66\xfe\x42\x10\xaf\x4f\xbb\xe1" "\xe1\x72\xb9\xd8\x71\x9d\x0e\x9f\x4f\x2c\x5c\x57\xbf\xfc\xa1\xaf\xce\xfe" "\xf8\x2f\x2f\x2f\x6f\xdd\x43\x45\x51\xfc\xe4\xe1\xdf\xe8\xb8\xfc\x96\x87" "\xe3\x76\x95\x26\xc2\x76\x5e\x7b\x73\xeb\xe5\x8b\x6f\x78\x79\x59\xeb\x3f" "\xf6\xe8\xf5\xe5\x9a\xfb\xeb\x5f\x0a\xf7\x1f\x1f\xcf\x72\x0f\x83\x4e\x15" "\xdc\xe9\xa2\x28\xbe\x79\xc7\xe7\x1b\xeb\x99\xf8\xc0\xd5\xc6\x7c\xfa\xe1" "\x63\x8d\xf9\x9e\x2b\x4f\x3c\x5e\x5f\xe6\xb9\x43\xe5\xe7\xf1\xf6\xcf\xbc" "\xa4\x5c\xfe\x0f\x42\xf9\xf7\xc8\xc9\xe3\x2d\xb7\x7f\x26\xec\x87\xef\x85" "\x39\xfd\xf6\xce\xfb\x23\xde\xee\x6b\x57\x5f\xb3\xf5\xc0\xfb\xae\xaf\x2f" "\xde\xae\xb6\xed\x85\x8d\x87\xfd\xe4\x07\xcb\xfb\x8d\xbf\x27\xe7\x0b\x8f" "\x97\xcb\xc7\xfd\xbc\xd4\xf6\xff\xd5\xe7\x9e\xfa\x5a\x7d\xf9\xc7\x5e\xd5" "\x79\xfb\x2f\x0f\x75\xde\xfe\xa7\xc2\xfd\x7e\x35\xcc\xff\x79\x79\xb9\x7c" "\xf3\x73\x50\xff\x3c\xde\xee\x33\x61\xfb\xe3\xfa\xe2\xed\x1e\xf8\xca\xb7" "\x3a\x6e\xff\xb5\xcf\x96\xcb\x9f\x7f\x4b\xb9\xdc\xb1\x30\xe3\xfa\x77\x86" "\xcf\xb7\xbf\xe5\xd9\xb9\xe6\xfd\xf5\x58\xed\x78\xcb\xe3\x2a\xde\x5a\x2e" "\x17\xd7\x3f\xfd\x9d\xdf\x6e\x5c\x1f\xef\x2f\xde\x7f\xfb\xf6\x8f\x1f\xbd" "\xda\xb2\x3f\xda\x8f\x8f\xa7\xff\xb9\xbc\x9f\xa9\xb6\xe5\xe3\xe5\x71\x3d" "\xd1\x5f\xb4\xad\xbf\x7e\x3f\xcd\xc7\x67\x5c\xff\x53\xbf\x75\xac\x65\x3f" "\xf7\x5a\xff\xb5\xf7\x3c\xf3\xf2\xfa\xfd\xb6\xaf\xff\xfe\xb6\xe5\x86\xdb" "\x6e\xdf\xfe\x1b\x9b\xfe\xf0\x33\x9f\xef\xb8\xbe\xb8\x3d\x47\xfe\xec\x7c" "\xcb\xe3\x39\xf2\xee\xf0\x3a\x0e\xeb\x7f\xf2\x83\xe1\x78\x0c\xd7\xff\xef" "\xb5\xcf\xb7\xac\x37\x3a\xf6\xee\xd6\xf7\x9f\xb8\xfc\x97\x36\x5f\x6e\x79" "\x3c\xd1\xdb\x7e\x54\xae\xff\xda\xeb\x4f\x35\xe6\x7f\x4c\xfc\xf8\xf7\x6f" "\x7b\xc1\xed\x2f\xbc\xf2\xca\xfa\xbe\x2b\x8a\x6f\xbf\xb7\xbc\xbf\x5e\xeb" "\x3f\xf5\x47\xe7\x5a\xb6\xff\xcb\x77\xed\x6a\x3c\x1f\xf1\xfa\xd8\xd1\x6f" "\x5f\xff\x52\xe2\xfa\x2f\x7c\x6c\xf2\xec\xb9\xf9\x4b\x73\x33\x4d\x7b\xb5" "\xf1\xbb\x73\xde\x51\x6e\xcf\x86\xf1\x8d\x9b\xea\xdb\x7b\x47\x78\x6f\x6d" "\xff\xfc\xe8\xb9\x8b\x1f\x9a\xbd\x30\x31\x3d\x31\x5d\x14\x13\xd5\xfd\x15" "\x7a\x37\xec\x2b\x61\xfe\xa0\x1c\x57\x56\x7a\xfb\x5d\x8f\x86\xe7\xf3\x9e" "\xdf\xfb\xe6\xa6\x1d\xff\xf4\xb9\x78\xf9\xbf\x3c\x52\x5e\x7e\xf5\xed\xe5" "\xd7\xad\x57\x87\xe5\xbe\x10\x2e\xdf\x5c\x3e\x7f\x0b\xb5\x55\xae\xff\xc9" "\x7b\xef\x6a\xbc\xbe\x6b\x4f\x97\x9f\xb7\xf4\xd8\xfb\x60\xeb\xf6\xff\x3c" "\xb8\xac\x05\xc3\xe3\x6f\xff\xbe\x20\x1e\xef\xe7\x5f\xfa\xa1\xc6\x7e\xa8" "\x5f\xd7\xf8\xba\x11\x5f\xd7\xab\xdc\xfe\xef\xce\x94\xf7\xf3\x8d\xb0\x5f" "\x17\xc2\x6f\x66\xde\x76\xd7\xf5\xf5\x35\x2f\x1f\x7f\x37\xc2\xd5\xf7\x96" "\xaf\xf7\x55\xef\xbf\xf0\x36\x17\x9f\xd7\x3f\x09\xcf\xf7\x3b\xbf\x57\xde" "\x7f\xdc\xae\xf8\x78\xbf\x1b\xbe\x8f\xf9\xd6\x96\xd6\xf7\xbb\x78\x7c\x7c" "\xe3\xf2\x50\xfb\xfd\x37\x7e\x8b\xc7\x95\xf0\x7e\x52\x5c\x29\xaf\x8f\x4b" "\xc5\xfd\x7d\xf5\xb9\xbb\x3a\x6e\x5e\xfc\x3d\x24\xc5\x95\xbb\x1b\x9f\xff" "\x4e\xba\x9f\xbb\x57\xf4\x30\x97\x32\xff\xf1\xf9\xa9\xd3\x73\x67\x2f\x3d" "\x36\x75\x71\x76\xfe\xe2\xd4\xfc\xc7\x3f\x71\xf4\xcc\xb9\x4b\x67\x2f\x1e" "\x6d\xfc\x2e\xcf\xa3\x1f\xee\x75\xfb\xeb\xef\x4f\x9b\x1a\xef\x4f\x33\xb3" "\xfb\xf7\x15\xd3\x1b\x8b\xa2\x38\x57\x4c\xaf\xc1\x1b\xd6\xcd\xd9\xfe\xfa" "\x47\xcb\xdb\xfe\xf3\x8f\x9e\x98\x39\x30\xbd\x63\x66\xf6\xe4\xf1\x4b\x27" "\x2f\x3e\x7a\x7e\xf6\xc2\xa9\x13\xf3\xf3\x27\x66\x67\xe6\x77\x1c\x3f\x79" "\x72\xf6\x63\xbd\x6e\x3f\x37\x73\x78\xf7\x9e\x43\x7b\x0f\xec\x99\x3c\x35" "\x37\x73\xf8\xe0\xa1\x43\x7b\x0f\x4d\xce\x9d\x3d\x57\xdf\x8c\x72\xa3\x7a" "\xd8\x3f\xfd\x91\xc9\xb3\x17\x8e\x36\x6e\x32\x7f\x78\xdf\xa1\xdd\x0f\x3e" "\xb8\x6f\x7a\xf2\xcc\xb9\x99\xd9\xc3\x07\xa6\xa7\x27\x2f\xf5\xba\x7d\xe3" "\x6b\xd3\x64\xfd\xd6\xbf\x3e\x79\x61\xf6\xf4\xf1\x8b\x73\x67\x66\x27\xe7" "\xe7\x3e\x31\x7b\x78\xf7\xa1\xfd\xfb\xf7\xf4\xfc\x6d\x80\x67\xce\x9f\x9c" "\x9f\x98\xba\x70\xe9\xec\xd4\xa5\xf9\xd9\x0b\x53\xe5\x63\x99\xb8\xd8\xb8" "\xb8\xfe\xb5\xaf\xd7\xed\xa9\xa6\xf9\x7f\x2b\xbf\x9f\x6d\x57\x2b\x7f\x11" "\x5f\xf1\xae\xfb\xf7\xa7\xdf\xcf\x5a\xf7\xd5\x4f\x2d\x79\x57\xe5\x22\x6d" "\xbf\x40\xf4\xd9\xf0\xbb\x68\xfe\xe1\x45\xe7\x0f\x2e\xe7\xf3\x98\xfb\x47" "\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xc7\xc2\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\x37\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\x8f\x87\x99\x64\x92\xff\xf5\xff\xf5\xff\x97\xd7\xff\x2f\xaf\xd7\xff\xcf" "\xab\xff\x7f\xfe\xa3\x65\xaf\x74\xbd\xf7\xff\x63\x7f\x5e\xff\x3f\x0f\xb7" "\xb8\xff\xbf\xea\xf5\xeb\xff\xeb\xff\x57\xaf\xff\xbf\xfc\xfe\xfc\x7a\xdf" "\x7e\xfd\x7f\xfd\x7f\x16\x1b\xb4\xfe\x7f\xcc\xfd\x1b\x8b\x22\xcb\xfc\x0f" "\x00\x00\x00\x39\x88\xb9\x7f\x53\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\x6d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x2f\x08\x33\xc9\x24" "\xff\xeb\xff\x2f\xab\xff\xbf\xa7\x57\xe1\xaa\xfa\xfd\x7f\xe7\xff\xd7\xff" "\x2f\xd6\x67\xff\x3f\x3e\x39\xfa\xff\xd9\x58\x71\xff\xfe\x7d\x8f\xb4\x7c" "\xaa\xff\x1f\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb3\x6a\xa3\x4b\x5e" "\x73\xab\xfa\xff\x31\xf7\xdf\x1e\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4" "\xdc\xff\xc2\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x3b\xc2\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x37\x87\x99\x64\x92\xff\xf5\xff\x9d\xff" "\x5f\xff\x5f\xff\x7f\xf5\xfd\xff\xd6\x35\x0e\x54\xff\x7f\xb5\xe7\xff\x6f" "\xda\x18\xfd\xff\xf5\xc1\xf9\xff\xbb\xd3\xff\xef\xe1\x86\xfb\xff\xe3\xfa" "\xff\xeb\xb1\xff\x3f\xda\xdf\xed\x1f\xec\xfe\x7f\xcf\xcd\xd7\xff\xe7\xa6" "\x18\xb4\xf3\xff\xc7\xdc\xff\xa2\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\x17\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x24\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xce\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x7f\xa5\xcf\xff\xbf\xda\xfe\x7f\xd7\xf3\xff\x97\x1f\xe9" "\xff\x0f\x16\xfd\xff\xee\xf4\xff\x7b\x70\xfe\xff\xbc\xfa\xff\x7d\xde\xfe" "\xc1\xee\xff\xf7\xfb\xfc\xff\xa3\x6f\x6e\xbf\xbd\xfe\x3f\x9d\x0c\x5a\xff" "\x3f\xe6\xfe\x97\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xdf\x15" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xb2\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\x2d\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\xce\xeb\xef\xdd\xff\x2f\xe9\xff\x0f\x16\xfd\xff\xee\xf4\xff" "\x7b\xd0\xff\xd7\xff\xd7\xff\x5f\x5e\xff\xbf\xc3\x37\xbf\xad\xfd\xff\xf8" "\xd5\x52\xff\x3f\x77\x83\xd6\xff\x8f\xb9\xff\xee\x30\x93\x4c\xf2\x3f\x00" "\x00\x00\xe4\x20\xe6\xfe\x7b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\x7f\x2a\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x6b\x98\x49\x26\xf9" "\x5f\xff\x5f\xff\x5f\xff\x3f\xaf\xfe\xff\xfd\x63\xfa\xff\xfa\xff\xd5\xa6" "\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xfa\xff\xfa\xff\xcb\x3c\xff\xff\x62\x2b" "\x39\xff\xff\x86\x5e\x77\x46\x65\x0c\x5a\xff\x3f\xe6\xfe\x97\x87\x99\x64" "\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xbf\x22\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\xff\x95\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x13\x61" "\x26\x99\xe4\x7f\xfd\xff\x6a\xf5\xff\xff\xf4\xaf\x9f\x7c\x65\xa1\xff\xaf" "\xff\xdf\x63\xfd\x15\xed\xff\xc7\xc3\x40\xff\x3f\x73\xfa\xff\xdd\xe9\xff" "\xf7\xa0\xff\xaf\xff\xaf\xff\xbf\x26\xfd\x7f\xf2\x31\x68\xfd\xff\x98\xfb" "\xef\x0d\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x16\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\xf6\x30\x93\x4c\xf2\xbf\xfe\x7f\xb5\xfa\xff\x91\xfe\xbf\xfe\x7f" "\xb7\xf5\x57\xb4\xff\x9f\xe8\xff\xe7\x4d\xff\xbf\x83\xa6\x17\xa9\xfe\x7f" "\x0f\xfa\xff\xfa\xff\xd9\xf7\xff\xe3\x77\xbf\xfa\xff\xf4\xc7\xa0\xf5\xff" "\x63\xee\x7f\x55\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x8e\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x57\x87\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\xef\x0c\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\x77\x5e\xbf\xfe\xff\xfa\xa4\xff\xdf\xdd\x4a\xfb\xff\x63\xfa\xff" "\xfa\xff\xfa\xff\x99\xf5\xff\x9d\xff\x9f\xfe\x1a\xb4\xfe\x7f\xcc\xfd\xaf" "\x09\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x15\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xff\xbf\x59\xfe\xbf\x57\xf9\x1f\x00\x00\x00\xaa\x28" "\xe6\xfe\xc9\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\x7f\x4e\xfd\xff\x9a\xfe\xbf" "\xfe\xbf\xfe\x7f\xe5\xe9\xff\x77\xe7\xfc\xff\x3d\xe8\xff\xeb\xff\xaf\x69" "\xff\xff\xfb\x2d\x9f\x75\xe9\xff\x8f\x35\x1d\xee\x4b\xd2\xff\x67\x10\x0d" "\x5a\xff\x3f\xe6\xfe\xd7\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7" "\x3f\x10\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x15\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\x3f\x1d\x66\x92\x49\xfe\xd7\xff\xd7\xff\xcf\xa9" "\xff\xef\xfc\xff\xfa\xff\xfa\xff\xd5\xa7\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff" "\xfa\xff\x55\x3b\xff\x7f\x51\xe8\xff\x73\x4b\x0d\x5a\xff\x3f\xe6\xfe\xdd" "\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x7b\xc2\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\xef\x0b\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\x5e" "\xff\x80\xf7\xff\x6b\xfa\xff\x9d\xe9\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe" "\x7f\xd5\xfa\xff\xce\xff\xcf\x2d\x36\x68\xfd\xff\x98\xfb\x1f\x0c\x33\xc9" "\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x1f\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x7f\x20\xcc\x24\xe4\xff\x4e\xff\xaf\x1b\x00\x00\x00\x58\x5f" "\x62\xee\x3f\x18\x66\x92\xc9\xbf\xff\xeb\xff\x57\xa4\xff\xff\x9b\x7f\xdf" "\xb2\x6e\xfd\x7f\xfd\xff\x6e\xeb\xef\x4f\xff\x7f\xa3\xfe\x7f\x98\xce\xff" "\x3f\x58\x2a\xda\xff\x6f\x7f\x59\xdc\x30\xfd\xff\x1e\xf4\xff\xf5\xff\xf5" "\xff\xf5\xff\xe9\xab\x41\xeb\xff\xc7\xdc\x7f\x28\xcc\x24\x93\xfc\x0f\x00" "\x00\x00\x39\x88\xb9\xff\x75\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\x3f\x1d\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x33\x61\x26\x99\xe4" "\x7f\xfd\xff\x8a\xf4\xff\xdb\xe8\xff\xeb\xff\x77\x5b\xbf\xf3\xff\xeb\xff" "\x57\x59\x45\xfb\xff\x7d\x53\xa9\xfe\xff\x90\xfe\xbf\xfe\xff\x60\x6d\xbf" "\xfe\xbf\xfe\x3f\x8b\xdd\xfc\xfe\x7f\xfc\x68\x79\xfd\xff\x98\xfb\x0f\x87" "\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xff\x6c\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\xeb\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\x8f\x84\x99\x54\x2d\xff\xbf\xac\xf3\xc5\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\x37\xa7\xff\xff\xfa\xa2\xdd\x20\xf6\xff\xeb\x07\x8f\xfe\x7f\xb5\xe8\xff" "\x77\x57\xa9\xfe\xbf\xf3\xff\xeb\xff\x0f\xd8\xf6\xeb\xff\xeb\xff\xb3\xd8" "\xa0\x9d\xff\x3f\xe6\xfe\x37\x84\x99\x54\x2d\xff\x03\x00\x00\x40\xc6\x62" "\xee\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x8d\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x6f\x0a\x33\xc9\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\x3b\xff\x7f\xe7\xf5\xeb\xff\xaf\x4f\xfa\xff\xdd\xe9\xff" "\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x0d\x5a\xff\x3f\xe6\xfe\x37" "\x87\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xbf\x25\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\xff\xad\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\x6f\x0b\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77" "\x5e\xbf\xfe\xff\xfa\xa4\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xf4\xd5\xa0\xf5\xff\x63\xee\xff\xb9\x30\x93\x4c\xf2\x3f\x00\x00" "\x00\xe4\x20\xe6\xfe\x87\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf" "\x1e\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x8e\x30\x93\x4c\xf2\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xf5\xeb\xff\xaf\x4f\xfa\xff" "\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x8d\xd8\xb8\xd4\x15" "\x83\xd6\xff\x8f\xb9\xff\x9d\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc" "\xfd\x3f\x1f\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xae\x30\x13\xf9" "\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x5f\x08\x33\xc9\x24\xff\xeb\xff\xeb\xff" "\x0f\x56\xff\x7f\xe1\x72\xf3\xed\xf4\xff\xf5\xff\x8b\x7e\xf5\xff\xeb\x37" "\xd2\xff\xcf\x82\xfe\x7f\x77\xfa\xff\x3d\x74\xe8\xff\x6f\xd0\xff\xd7\xff" "\xd7\xff\xd7\xff\xe7\x86\x0d\x5a\xff\x3f\xe6\xfe\x77\x87\x99\x64\x92\xff" "\x01\x00\x00\x20\x07\x31\xf7\xbf\x27\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\xbd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x8f\x84\x99\x64" "\x92\xff\xf5\xff\xb3\xec\xff\x0f\xc5\xde\xf2\xe0\xf5\xff\x9d\xff\x5f\xff" "\xdf\xf9\xff\xf5\xff\x57\x47\xff\xbf\x3b\xfd\xff\x1e\x9c\xff\x5f\xff\x5f" "\xff\x5f\xff\x9f\xbe\x1a\xb4\xfe\x7f\xcc\xfd\x8f\x86\x99\x64\x92\xff\x01" "\x00\x00\x20\x07\x31\xf7\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\x17\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x1f\x66\x92\x49" "\xfe\xd7\xff\xcf\xb2\xff\x3f\xc0\xe7\xff\xaf\x5a\xff\x7f\xa4\xe5\xf8\xc8" "\xa9\xff\x3f\xde\xf4\x7c\xa6\xe3\x52\xff\x5f\xff\x7f\x0d\xe8\xff\x77\xa7" "\xff\xdf\x83\xfe\xbf\xfe\xff\x20\xf7\xff\xc3\xd1\xbc\x71\x89\xdb\xeb\xff" "\x33\x88\x06\xad\xff\x1f\x73\xff\x07\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90" "\x83\x98\xfb\x7f\x29\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x97\xc3" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x25\xcc\x24\x93\xfc\xaf\xff" "\xaf\xff\xaf\xff\xef\xfc\xff\xce\xff\xdf\x79\xfd\xfa\xff\xeb\x93\xfe\x7f" "\x77\xfa\xff\x3d\xe8\xff\xeb\xff\x0f\x72\xff\xbf\x07\xfd\x7f\x06\xd1\xa0" "\xf5\xff\x63\xee\xff\xd5\x30\x93\x25\x83\xdf\x0f\xfe\x6b\x19\x0f\x13\x00" "\x00\x00\x18\x20\x31\xf7\x7f\x30\xcc\x24\x93\x7f\xff\x07\x00\x00\x80\x1c" "\xc4\xdc\x7f\x34\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x58\x98\x49" "\x26\xf9\x5f\xff\xbf\xbd\xff\x1f\xcf\xa8\xaa\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xbf\x1e\xf5\xaf\xff\xff\xb2\xdb\x8b\x42\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x9f\xd5\x18\xb4\xfe\x7f\xcc\xfd\xc7\xc3\x4c\x32\xc9" "\xff\x00\x00\x00\x90\x83\x98\xfb\x7f\x2d\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\x44\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x4c\x98\x49" "\x26\xf9\xff\x16\xf6\xff\x47\x07\xb3\xff\xef\xfc\xff\x37\xda\xff\xff\x89" "\xfe\xbf\xfe\x7f\xa0\xff\xdf\x99\xfe\xff\xda\x70\xfe\xff\xee\xf4\xff\x7b" "\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x06\xad\xff\x1f\x73\xff\x6c\x98" "\x49\x26\xf9\x1f\x00\x00\x00\x2a\x2c\xfd\x38\x38\xe6\xfe\x93\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\xa7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\x3f\x14\x66\x92\x49\xfe\x77\xfe\x7f\xfd\x7f\xe7\xff\xbf\x15\xfd" "\xff\x91\x96\xe5\xf5\xff\x4b\xfa\xff\xfa\xff\xfd\xa0\xff\xdf\x9d\xfe\x7f" "\x0f\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\xd5\xa0\xf5\xff\x63\xee\x9f\x0b" "\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xff\x70\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\x47\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\x4f\x87\x99\x64\x92\xff\xf5\xff\xf5\xff\x73\xef\xff\xd7\x8a\xe2\x8a\xf3" "\xff\xeb\xff\x77\x5a\xbf\xfe\xff\xfa\xa4\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xf4\xd5\xa0\xf5\xff\x63\xee\x3f\x13\x66\x92\x49" "\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x36\xcc\x44\xfe\x07\xfe\x9f\xbd\xfb" "\x68\x92\xeb\xbc\xee\x38\xdc\xa6\x49\x84\x72\x95\xed\x8f\xe0\xb5\x57\x5e" "\xda\x2b\xfa\x23\x78\xeb\x9d\xab\xbc\x76\x39\xd1\x74\x36\x49\xe7\x6c\x53" "\x39\x07\x2a\xe7\x9c\x13\x25\x2a\x67\x2a\x67\x51\x39\x47\x2a\x52\xaa\x82" "\x8a\xc3\x73\x0e\x31\x33\x8d\x7b\x01\x4c\x63\xfa\xde\xf7\x3c\xcf\xe6\x08" "\x28\x8c\xba\x07\x18\x86\xbf\xa6\x7e\xba\x00\x00\xc0\x30\x72\xf7\xff\x71" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x49\xdc\xd2\x64\xff\xeb\xff" "\xf5\xff\xdd\xfb\xff\xcd\x5e\x9e\xff\x7f\xf8\xd7\xeb\xff\x1f\xa0\xff\xd7" "\xff\xef\xc2\xb1\xfe\xfe\xfa\xed\xbf\xee\x52\x51\xf8\x25\xfb\xff\xdf\xfa" "\xed\x9b\xfe\x40\xff\xaf\xff\xd7\xff\x4f\xd2\xff\xeb\xff\xf5\xff\x1c\xb5" "\xb4\xfe\x3f\x77\xff\x9f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\xcf\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xcf\xe3\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\xa6\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa" "\xff\x43\xfd\xff\x9d\xfa\x7f\xfd\xff\xba\x79\xfe\xff\x34\xfd\xff\x0c\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\xa7\x96\xd6\xff\xe7\xee\xff\x8b\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\xdf\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x7f\x19\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x7f\x15\xb7\x34" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\x2d\xfd\xff\x19\xcf\xff\x3f\xf2\xf9\xe8" "\xff\xf5\xff\xdb\xe8\xff\xa7\xe9\xff\x67\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\x3b\xb5\xb4\xfe\x3f\x77\xff\x5f\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90" "\xbb\xff\x6f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x6f\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\xef\xe2\x96\x26\xfb\xbf\x4b\xff\x7f\xf7" "\x91\x1f\xeb\xff\xf5\xff\x17\xff\x7e\xad\xa3\xff\x3f\xa5\xe7\xff\xeb\xff" "\xf5\xff\x2b\x77\xc7\xe6\xc1\xbf\x27\xe8\xff\x8f\xd3\xff\xcf\x98\xe9\xff" "\x37\x1b\xfd\xff\x94\xcb\xee\xe7\xb7\x7f\x7a\xeb\x79\xff\x97\xa0\xff\xd7" "\xff\x73\xdc\xd2\xfa\xff\xdc\xfd\x7f\x1f\xb7\xfc\xee\x66\x73\xe6\x6a\x3f" "\x49\x00\x00\x00\x60\x51\x72\xf7\xff\x43\xdc\xd2\xe4\xfb\xff\x00\x00\x00" "\xd0\x41\xee\xfe\x5b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xd6\xb8" "\xa5\xc9\xfe\xef\xd2\xff\x1f\xa5\xff\xd7\xff\x5f\xfc\xfb\xa5\xff\xd7\xff" "\x6f\x7b\x7d\xfd\xff\x3a\x79\xfe\xff\xb4\x93\xf7\xff\xbf\xf9\xeb\x7f\xf4" "\x87\x7d\xfb\x7f\xcf\xff\x9f\xe6\xf9\xff\xbb\xee\xff\xef\xff\xca\xd0\xff" "\xb3\x6e\x4b\xeb\xff\x73\xf7\xdf\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x7f\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x7f\x8a\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x7f\x8e\x5b\x9a\xec\x7f\xfd\xff\x68\xfd" "\xff\x2f\x1f\xfa\xb8\x8b\xfa\xff\x83\xda\x45\xff\xaf\xff\xd7\xff\xeb\xff" "\x47\xa7\xff\x9f\xe6\xf9\xff\x33\x0e\xfe\x36\x77\xbe\x7e\xa8\xff\xd7\xff" "\x7b\xfe\xbf\xfe\x9f\x93\x59\x5a\xff\x9f\xbb\xff\x5f\xe2\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xaf\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\x6f\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xef\x71\x4b\x93\xfd" "\xaf\xff\x1f\xad\xff\x3f\xfc\x71\x9e\xff\x5f\xfd\xff\xcd\xbf\xfa\xc0\x2f" "\xd1\xff\xeb\xff\xf5\xff\x83\xd3\xff\x4f\xd3\xff\xcf\x18\xe5\xf9\xff\x57" "\xf9\x55\xb3\xef\x7e\xfe\xa4\xf6\xfd\xfe\xf5\xff\xfa\x7f\x8e\x5b\x5a\xff" "\x9f\xbb\xff\x3f\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x9f\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x5f\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xdf\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xaf\xa3\xff\xcf\x57" "\xf0\xfc\x7f\xfd\xff\xb5\xef\xff\x93\xfe\x7f\x9d\xf4\xff\xd3\xf4\xff\x33" "\x46\xe9\xff\xaf\xd2\xbe\xfb\xf9\xb5\xbf\x7f\xfd\xbf\xfe\x9f\xe3\x96\xd6" "\xff\xe7\xee\xff\x9f\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x6f" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x5f\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xff\x7f\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xeb\xe8\xff\x4f" "\xfc\xfc\x7f\xfd\xbf\xfe\xdf\xf3\xff\x9b\xd0\xff\x4f\xd3\xff\xcf\xd0\xff" "\xeb\xff\xf5\xff\xfa\x7f\x76\x6a\x69\xfd\x7f\xee\xfe\xdb\xe3\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x90\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\x7f\x68\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x2c\x6e\x69\xb2" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfd\xf5\xf5\xff\xeb\xa4\xff" "\x9f\xa6\xff\x9f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\xec\xd4\x82\xfa\xff\x8b" "\x3e\xea\xdc\xe6\xe1\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x44" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x32\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x1f\x15\xb7\x34\xd9\xff\xfa\xff\xc5\xf4\xff\x07\x39\xdf" "\x58\xfd\xff\xf9\xcd\x66\xa3\xff\xdf\x34\xed\xff\xcf\x5f\xf4\xe7\x59\x5f" "\x97\xfa\x7f\xfd\xff\x29\xd0\xff\x4f\xd3\xff\xcf\xd0\xff\xeb\xff\xf5\xff" "\xfa\x7f\x76\x6a\x41\xfd\xff\xc1\x8f\x73\xf7\x3f\x3a\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\x8f\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\xc7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xe3\xe2\x96\x26\xfb\x5f" "\xff\xbf\x98\xfe\xff\xc0\x58\xfd\xbf\xe7\xff\x1f\xfd\xfa\xe8\xd4\xff\x7b" "\xfe\xff\x71\xfa\xff\xd3\xa1\xff\x9f\xa6\xff\x9f\xa1\xff\xd7\xff\xeb\xff" "\xf5\xff\xec\xd4\xd2\xfa\xff\xdc\xfd\x8f\x8f\x9b\xce\xdc\x70\xd5\x9f\x22" "\x00\x00\x00\xb0\x30\xb9\xfb\x9f\x10\xb7\x34\xf9\xfe\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x89\x71\x8b\xfd\x0f\x00\x00\x00\x2b\x75\xfb\xb1\x9f\xc9\xdd" "\xff\xa4\xb8\xa5\xc9\xfe\xd7\xff\xef\xb6\xff\x3f\x73\xd1\xcf\xe9\xff\xf5" "\xff\x47\xbf\x3e\xf4\xff\xfa\x7f\xfd\xff\xb5\xa7\xff\x9f\xa6\xff\x9f\xa1" "\xff\xd7\xff\xeb\xff\xf5\xff\xec\xd4\xd2\xfa\xff\xdc\xfd\x4f\x8e\x5b\x9a" "\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x1d\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\x94\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x6a\xdc\xd2" "\x64\xff\xeb\xff\x3d\xff\x5f\xff\xaf\xff\xd7\xff\x6f\x7f\x7d\xfd\xff\x3a" "\xe9\xff\xa7\xe9\xff\x67\xe8\xff\xf5\xff\xfb\xed\xff\xcf\x3e\xf8\x1f\xf5" "\xff\x8c\xe1\x0a\xfa\xff\x0b\x17\x2e\xdc\x72\xcd\xfb\xff\xdc\xfd\x4f\x8b" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xd3\xe3\x16\xfb\x1f\x00\x00" "\x00\x86\x91\xbb\xff\x19\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xcc" "\xb8\xa5\xc9\xfe\xd7\xff\x37\xed\xff\xf3\x4b\x7d\x5d\xfd\xff\xad\x9b\x8d" "\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\xd3\xff\x4f\xd3\xff\xcf\xd0\xff\xeb\xff" "\x3d\xff\x5f\xff\xcf\x4e\x2d\xed\xf9\xff\xb9\xfb\x9f\x15\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x67\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\x73\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xb9\x71\x4b\x93\xfd" "\xaf\xff\x6f\xda\xff\x7b\xfe\xbf\xfe\x5f\xff\x7f\xda\xfd\xff\x7d\x1b\xfd" "\xff\xa9\x58\x45\xff\x7f\xfe\xd2\xaf\xbf\xf4\xfe\xff\x36\xfd\xbf\xfe\x7f" "\x42\xbb\xfe\xff\xf7\x7e\xe7\xd0\x0f\xf5\xff\xfa\xff\x96\x8e\xfe\x8b\xdb" "\x11\x4b\xeb\xff\x73\xf7\x3f\x2f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\xcf\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x17\xc4\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x0b\xe3\xa6\xeb\x9b\xec\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\x6f\x7f\xfd\x53\x7e\xfe\xff\x99\xcd\x66\xa3\xff\xdf" "\x81\x55\xf4\xff\x13\x96\xde\xff\xef\xe6\xf9\xff\x97\x8e\x45\xf5\xff\xfa" "\xff\x35\xbf\x7f\xfd\xbf\xfe\x9f\xe3\x96\xd6\xff\xe7\xee\x7f\x51\xdc\xd2" "\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x1c\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x2f\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x97\xc6\x2d" "\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x0f\xdf\xff\xdf\xb6\x8a\xfe\xdf" "\xf3\xff\x77\x44\xff\x3f\x6d\x19\xfd\xff\xa5\xe9\xff\xf5\xff\x6b\x7e\xff" "\xfa\x7f\xfd\x3f\x97\x6f\x5f\xfd\x7f\xee\xfe\x97\xc5\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\xe5\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff" "\x8a\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x65\xdc\xd2\x64\xff\xeb" "\xff\xf5\xff\x57\xd2\xff\xe7\xfb\xd4\xff\x8f\xd5\xff\x9f\x5d\x5c\xff\x7f" "\xee\xd0\x7f\x5f\x93\xe7\xff\xeb\xff\x77\x44\xff\x3f\x4d\xff\x3f\x43\xff" "\xaf\xff\xd7\xff\xdf\xae\xff\x67\x97\x96\xf6\xfc\xff\xdc\xfd\xaf\x8a\x5b" "\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xab\xe3\xd6\xff\x74\x6b\xff\x03" "\x00\x00\xc0\x30\x72\xf7\xbf\x26\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb" "\x5f\x1b\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xe7\xff\xeb\xff\x87\x7f\xfe\xbf" "\xfe\xbf\x15\xfd\xff\x34\xfd\xff\x0c\xfd\xbf\xfe\x5f\xff\xef\xf9\xff\xec" "\xd4\xd2\xfa\xff\xdc\xfd\xaf\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\xeb\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x0d\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\x7f\x67\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\xff\x81\x3f\x43\xfd\xff\x18\xf4\xff\xd3\x4e\xa7\xff\x3f\xaf" "\xff\xd7\xff\x57\x3f\xff\x4b\xf1\x57\x81\xfe\x5f\xff\x3f\xf7\xf1\x8c\x69" "\x69\xfd\x7f\xee\xfe\x37\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\x4d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x57\xdc\x62\xff\x03\x00" "\x00\xc0\x2a\x5d\xbf\xe5\xe7\x72\xf7\xbf\x39\x6e\x69\xb2\xff\xf5\xff\xfa" "\xff\x93\xf5\xff\x87\x5f\x57\xff\xaf\xff\xdf\xac\xb4\xff\xdf\xf6\xfa\xfa" "\xff\x75\xda\x4b\xff\x9f\x5f\x14\xfa\x7f\xcf\xff\x0f\x7d\xfa\xff\xdf\x38" "\xf4\xa3\xb5\x3d\xff\xff\xe8\x3f\xbf\xf4\xff\xfa\x7f\x76\x6f\x69\xfd\x7f" "\xee\xfe\xb7\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xad\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb6\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x7b\xdc\xd2\x64\xff\xeb\xff\xf5\xff\x9e\xff\xaf\xff\xd7\xff" "\x6f\x7f\x7d\xfd\xff\x3a\x79\xfe\xff\x34\xfd\xff\x0c\xfd\xff\x7c\x3f\xbf" "\xed\xff\x50\x2b\xac\xad\xff\xdf\xf5\xfb\xd7\xff\xeb\xff\x39\x6e\x69\xfd" "\x7f\xee\xfe\x77\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x9d\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xae\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\x1c\xec\xfe\x8c\xcb\x1a\xee\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\x6f\x7f\x7d\xfd\xff\x3a\xe9\xff\xa7\xe9\xff\x67\xe8\xff\xf7\xda\xcf\xaf" "\xfd\xfd\xeb\xff\xf5\xff\x1c\xb7\xb4\xfe\xff\xdd\x07\x1f\x75\x6e\xf3\x9e" "\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x37\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\xdf\x17\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xef" "\x8f\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\x1d\xfd\xff\x85\x0b\x17\x6e\x69\xd4" "\xff\xe7\x5f\x68\xfa\xff\x03\xf3\xfd\xff\x3d\xfa\x7f\x8a\xfe\x7f\x9a\xfe" "\x7f\x86\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x53\x4b\xeb\xff\x73\xf7\xdf\x1d" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x0f\xc4\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x07\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x43" "\x71\x4b\x93\xfd\xaf\xff\x5f\x40\xff\x7f\x4e\xff\xef\xf9\xff\x9e\xff\xbf" "\xf1\xfc\x7f\xfd\xff\x8e\xe8\xff\xa7\xe9\xff\x67\x8c\xd8\xff\x9f\xbb\xfc" "\x4f\x7f\xdf\xfd\xfc\x49\xed\xfb\xfd\xeb\xff\xf5\xff\x1c\xb7\xb4\xfe\x3f" "\x77\xff\x87\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x91\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x68\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\x7f\x2c\x6e\x69\xb2\xff\xf5\xff\xa7\xd7\xff\xdf\xff\x7b\xd7\xe5" "\xf9\xff\xe7\x37\xdb\xdf\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x5f\x6b\xfa\xff" "\x69\xfa\xff\x19\x23\xf6\xff\x57\x60\xdf\xfd\xfc\xda\xdf\xbf\xfe\x5f\xff" "\xcf\x71\x4b\xeb\xff\x73\xf7\x7f\x3c\x6e\x39\x3c\xfc\x6e\xb8\xb2\xcf\x12" "\x00\x00\x00\x58\x92\xdc\xfd\x9f\x88\x5b\x9a\x7c\xff\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\xc9\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x54\xdc\xd2" "\x64\xff\xeb\xff\x17\xf0\xfc\xff\x01\xfb\x7f\xcf\xff\xdf\xfe\xf5\xa1\xff" "\x5f\x74\xff\x7f\x9d\xfe\x7f\x0c\xfa\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xff" "\x1e\xfa\xff\xfc\xe7\xca\x58\xfd\x7f\x7e\x35\xeb\xff\xbb\x5b\x5a\xff\x9f" "\xbb\xff\xd3\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x4c\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x36\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\xef\x89\x5b\x2e\xda\xff\xdb\xda\xee\x51\xe8\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\xfb\xeb\xeb\xff\xd7\x49\xff\x3f\xed\x72\xfb\xff\xb3\x9b" "\x93\xf5\xff\x49\xff\xaf\xff\xd7\xff\x7b\xfe\xbf\xfe\xbf\xb7\xa5\xf5\xff" "\xb9\xfb\x3f\x17\xb7\xf8\xfe\x3f\x00\x00\x00\xac\xce\x0d\x97\xf8\xf9\xdc" "\xfd\x9f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x2f\xc4\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x17\xe3\x96\x7b\xaf\xdb\xd7\x5b\x3a\x55\xfa" "\x7f\xfd\xff\x10\xfd\xff\x5d\xbf\x72\xf0\xb1\xfa\x7f\xfd\xff\x46\xff\xdf" "\x9e\xfe\x7f\x9a\xe7\xff\xcf\xd0\xff\xef\xa2\x9f\xbf\x51\xff\x3f\x46\xff" "\xbf\xd9\xe8\xff\x39\xb9\xa5\xf5\xff\xb9\xfb\xbf\x14\xb7\xf8\xfe\x3f\x00" "\x00\x00\x0c\x23\x77\xff\x97\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\x2b\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd5\xb8\xa5\xc9\xfe\xd7" "\xff\xeb\xff\x4f\xd8\xff\x1f\xa4\x99\x7b\xef\xff\xe3\x63\xf5\xff\xfa\xff" "\x8d\xfe\xbf\x3d\xfd\xff\x34\xfd\xff\x0c\xfd\xbf\xe7\xff\xeb\xff\x3d\xff" "\x9f\x9d\x5a\x5a\xff\x9f\xbb\xff\x6b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d" "\xe4\xee\xff\x7a\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x23\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x19\xb7\x34\xd9\xff\x7b\xeb\xff\xe3" "\xb7\x5a\xff\xbf\xfa\xfe\x7f\x19\xcf\xff\x8f\x8f\xd5\xff\xeb\xff\x37\xfa" "\xff\xf6\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x9d\x5a" "\x5a\xff\x9f\xbb\xff\x5b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff" "\x76\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x27\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\xbf\x1b\xb7\x34\xd9\xff\x9e\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xdb\x5f\x5f\xff\xbf\x4e\xfa\xff\x69\xfa\xff\xed\xea\x0f\x4a" "\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa9\xa5\xf5\xff\xb9\xfb\xbf\x17\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xef\xc7\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\xbd\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x83\xb8\xa5" "\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xb1\xd7\xbf\x71\xa3\xff" "\x5f\x2d\xfd\xff\xb4\x7d\xf6\xff\xbf\xff\x6b\xf3\x2f\xeb\xf9\xff\x7b\xef" "\xff\xf3\x2d\xe8\xff\xf5\xff\xfa\x7f\x76\x62\x69\xfd\x7f\xee\xfe\x1f\xc6" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x47\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\xe3\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x49" "\xdc\xd2\x64\xff\xcf\xf4\xff\x67\xeb\x17\xea\xff\x27\xe9\xff\x0f\xbf\x7f" "\xfd\xff\xf6\xaf\x0f\xfd\xff\x6a\xfa\xff\x03\xfa\xff\x75\xd2\xff\x4f\xf3" "\xfc\xff\x19\xfa\x7f\xcf\xff\xd7\xff\xeb\xff\xd9\xa9\xa5\xf5\xff\xb9\xfb" "\x7f\x1a\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xfb\xe2\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x67\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xf3\xb8\xa5\xc9\xfe\xf7\xfc\xff\x35\xf5\xff\x37\xea\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x7f\x86\xfe\x7f\x9a\xfe\x7f\xc6\xb2\xfa\xff\x63\xff\x7a" "\xa1\xff\x5f\xf6\xfb\xd7\xff\xeb\xff\x39\x6e\x69\xfd\x7f\xee\xfe\x5f\x04" "\x00\x00\xff\xff\x3b\x94\x50\x61", 24992)); NONFAILING(syz_mount_image(/*fs=*/0x20000140, /*dir=*/0x200000c0, /*flags=MS_NOSUID*/ 2, /*opts=*/0x200002c0, /*chdir=*/0xfe, /*size=*/0x61a0, /*img=*/0x2000a180)); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }