// https://syzkaller.appspot.com/bug?id=2e5ebed3dc4a74ecc7fd3965c4f56a3b99be3dc2 // 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 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void 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)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {13 13 77 c5 fc 35 d4 14 54 d5 d4 1d 29 ad 1a 60 29 59 81 46 // e6 be 16 6e 41 ad 0d bd 40 54 03 3c 9f 33 bb da 82 24 a2 f3 d7 72 e7 // 63 6e 48 b3 3c bf 70 83 72 e8 f1 b9 93 3e c5 12 77 43 be 22 06 20 9e // f0 2d f9 cb f2 f6 e8 80 d3 38 2f 00} (length 0x4e) // } // flags: mount_flags = 0x1c802 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x3 (1 bytes) // size: len = 0x5fa3 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5fa3) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000040, "jfs\000", 4)); NONFAILING( memcpy((void*)0x200000000380, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78)); NONFAILING(memcpy( (void*)0x200000007fc0, "\x78\x9c\xec\xdd\xdb\x6f\x1c\x57\x1d\x07\xf0\xdf\x5e\xbc\xbe\x94\xa6\x51" "\x85\xaa\x10\xf1\xe0\xa6\x50\x5a\x4a\x73\x4f\xa0\xdc\x9a\xf2\xc0\x03\x20" "\x81\x84\xf2\x4c\x22\xd7\xad\x02\x69\x41\x49\x40\xb4\x8a\x14\x57\x79\x40" "\x3c\x70\xf9\x13\xe0\xa5\x2f\x3c\xf4\x1f\x29\x12\x7f\x01\xe2\x0f\x20\x92" "\xcd\x53\x25\x28\x83\xc6\x3e\x27\x19\xaf\xd7\x5e\x87\xd8\x3b\xbb\x3e\x9f" "\x8f\xb4\x99\xf9\xed\x99\xf1\x9e\xc9\xd7\xe3\xbd\xcc\xcc\x9e\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x7b\xdf\xfd\xf1\xb9\x4e" "\x44\x5c\xfb\x55\xba\xe3\x78\xc4\x67\xa2\x17\xd1\x8d\x58\xac\xeb\xe5\xa8" "\x67\xae\xe4\xe5\xfb\x11\x71\x22\x36\x9b\xe3\xb9\x88\xe8\xcd\x47\xd4\xeb" "\x6f\xfe\xf3\x4c\xc4\xc5\x88\xf8\xf8\x58\xc4\xfa\xc6\xdd\x95\xfa\xee\xf3" "\xfb\xec\xc7\xa5\xb3\x77\x6e\x7d\xfa\xfd\xef\xfc\xfd\x37\x7f\xb8\x7f\xe2" "\xa7\x6f\xfe\xe4\xc3\xe1\xf6\x1f\x7d\xf6\xc2\x47\xbf\xbd\x17\x71\xfc\x87" "\xaf\x7d\xf4\xe9\xbd\x83\xd9\x76\x00\x00\x00\x28\x45\x55\x55\x55\x27\xbd" "\xcd\x3f\x99\xde\xdf\x77\xdb\xee\x14\x00\x30\x11\xf9\xf9\xbf\x4a\xf2\xfd" "\x6a\xb5\x5a\xad\x3e\xd0\xfa\xf7\xdd\xe9\xea\x8f\xba\xd0\xba\xa9\x1a\xed" "\x5e\xb3\x88\x88\xb5\xe6\x3a\xf5\x6b\x06\x87\xe3\x01\x60\xc6\xac\xc5\x27" "\x6d\x77\x81\x16\xc9\xbf\x68\xfd\x88\x78\xaa\xed\x4e\x00\x53\xad\xd3\x76" "\x07\x38\x14\xeb\x1b\x77\x57\x3a\x29\xdf\x4e\xf3\xf9\x60\x79\xab\x3d\x7f" "\x4e\xb9\x2d\xff\xb5\xce\xc3\xeb\x3b\x76\x9b\x8e\x33\x7c\x8e\xc9\xa4\x7e" "\xbf\xee\x47\x2f\x9e\xdd\xa5\x3f\x8b\x13\xea\xc3\x34\xc9\xf9\x77\x87\xf3" "\xbf\xb6\xd5\x3e\x48\xcb\x1d\x76\xfe\x93\xb2\x5b\xfe\x83\xad\x4b\x9f\x8a" "\x93\xf3\xef\x0d\xe7\x3f\x64\x5b\xfe\x7f\x8c\x88\x99\xcd\xbf\x3b\x32\xff" "\x52\xe5\xfc\xfb\x8f\x93\xff\x5a\x6f\x86\xf7\x7f\xf9\x03\x00\x00\x00\x00" "\x70\xf4\xe5\xcf\xff\x8f\xb7\x7c\xfc\x77\xfe\xc9\x37\x65\x5f\xf6\x3a\xfe" "\xbb\x3c\xa1\x3e\x00\x00\x00\x00\x00\x00\x00\xc0\x41\x7b\xd2\xf1\xff\x1e" "\x32\xfe\x1f\x00\x00\x00\x4c\xad\xfa\xbd\x7a\xed\x4f\xc7\x1e\xdd\xb7\xdb" "\x77\xb1\xd5\xf7\x5f\xed\x44\x3c\x3d\xb4\x3c\x50\x98\x74\xb1\xcc\x52\xdb" "\xfd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x92\xf4\xb7\xce\xe1\xbd" "\xda\x89\x98\x8b\x88\xa7\x97\x96\xaa\xaa\xaa\x6f\x4d\xc3\xf5\xe3\x7a\xd2" "\xf5\x67\x5d\xe9\xdb\x0f\x25\x6b\xfb\x8f\x3c\x00\x00\x6c\xf9\xf8\x58\xba" "\x96\x3f\x0f\xc0\xd7\x89\x58\x88\x88\xab\xe9\xbb\xfe\xe6\x96\x96\x96\xaa" "\x6a\x61\x71\xa9\x5a\xaa\x16\xe7\xf3\xeb\xd9\xc1\xfc\x42\xb5\xd8\x78\x5f" "\x9b\xa7\xf5\x7d\xf3\x83\x7d\xbc\x20\xee\x0f\xaa\xfa\x87\x2d\x34\xd6\x6b" "\x1a\xf7\x7e\x79\x5c\xfb\xf0\xcf\xab\x1f\x6b\x50\xf5\xf6\xd1\xb1\xc9\x68" "\x39\x74\x00\x8a\xb7\xf5\x6c\xb4\xee\x19\xe9\x88\xa9\xaa\x67\xa2\xed\x57" "\x39\xcc\x06\xfb\xff\xd1\x63\xff\x67\x3f\xda\xfe\x3d\x05\x00\x00\x00\x0e" "\x5f\x55\x55\x55\x27\x7d\x9d\xf7\xc9\x74\xcc\xbf\xdb\x76\xa7\x00\x80\x49" "\x58\xc8\xcf\xff\xc3\xc7\x05\xd4\x6a\xb5\x5a\xad\x56\x1f\xbd\xba\xa9\x1a" "\xed\x5e\xb3\x88\x88\xb5\xe6\x3a\xf5\x6b\x06\xc3\xf1\x03\xc0\x8c\x59\x8b" "\x4f\xda\xee\x02\x2d\x92\x7f\xd1\xfa\x11\x71\xa2\xed\x4e\x00\x53\xad\xd3" "\x76\x07\x38\x14\xeb\x1b\x77\x57\x3a\x29\xdf\x4e\xf3\xf9\x20\x8d\xef\x9e" "\xcf\x05\xd9\x96\xff\x5a\x67\x73\xbd\xbc\xfe\xa8\xe9\x38\xc3\xe7\x98\x4c" "\xea\xf7\xeb\x7e\xf4\xe2\xd9\x5d\xfa\xf3\xdc\x84\xfa\x30\x4d\x72\xfe\xdd" "\xe1\xfc\xaf\x6d\xb5\x0f\xd2\x72\x87\x9d\xff\xa4\xec\x96\x7f\xbd\x9d\xc7" "\x5b\xe8\x4f\xdb\x72\xfe\xbd\xe1\xfc\x87\x1c\x9d\xfc\xbb\x23\xf3\x2f\x55" "\xce\xbf\xff\x58\xf9\xf7\xe4\x0f\x00\x00\x00\x00\x00\x53\x2c\x7f\xfe\x7f" "\xbc\xdc\xe3\xbf\xbd\xdc\x9f\xe5\x09\xf5\x01\x00\x00\x00\x00\x00\x00\x00" "\x0e\xda\xfa\xc6\xdd\x95\x7c\xdd\x6b\x3e\xfe\xff\xf9\x11\xcb\x75\x9a\x73" "\xae\xff\x3c\x32\x72\xfe\x9d\x7d\xe7\xef\xfa\xdf\xa3\x24\xe7\xdf\x1d\xce" "\x7f\xe8\x84\x9c\x5e\x63\xfe\xc1\x1b\x8f\xf2\xff\xd7\xc6\xdd\x95\x0f\xef" "\xfc\xf3\x73\x79\x3a\xf5\xf9\xcf\xf5\x06\xf5\x63\xcf\x75\xba\xbd\x7e\x3a" "\xe7\xa7\x9a\x7b\x2b\x6e\xc4\xcd\x58\x8d\xb3\x3b\x96\xef\x6f\x6b\x3f\xb7" "\xa3\x7d\x6e\x5b\xfb\xf9\x31\xed\x17\x76\xb4\x0f\xea\xf6\xc5\xdc\x7e\x3a" "\x56\xe2\xe7\x71\x33\xde\x7c\xd8\x3e\x3f\xe6\xc4\xa8\x85\x31\xed\xd5\x98" "\xf6\x9c\x7f\xcf\xfe\x5f\xa4\x9c\x7f\xbf\x71\xab\xf3\x5f\x4a\xed\x9d\xa1" "\x69\xed\xc1\x07\xdd\x1d\xfb\x7d\x73\x3a\xea\x71\xae\xfc\xe5\x3f\x2f\xee" "\xdc\xbb\x26\xef\x7e\xf4\x1e\x6e\x5b\x53\xbd\x7d\xa7\x5a\xe8\xcf\xe6\xff" "\xc9\x53\x83\xf8\xe5\xed\xd5\x5b\xa7\x7f\x7d\xfd\xce\x9d\x5b\xe7\x22\x4d" "\xb6\xdd\x7b\x3e\xd2\xe4\x80\xe5\xfc\xe7\xd2\x2d\xe7\xff\xd2\x0b\x5b\xed" "\xf9\xef\x7e\x73\x7f\x7d\xf0\xc1\xe0\xb1\xf3\x9f\x16\xf7\xa3\xbf\x6b\xfe" "\x2f\x34\xe6\xeb\xed\x7d\x79\xc2\x7d\x6b\x43\xce\x7f\x90\x6e\x39\xff\xfc" "\x0c\x34\x7a\xff\x9f\xe5\xfc\x77\xdf\xff\x5f\x69\xa1\x3f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xb0\x97\xaa\xaa\x36\x2f\x11\xbd\x12\x11" "\x97\xd3\xf5\x3f\x6d\x5d\x9b\x09\x00\x4c\xd4\xef\x7e\x90\x66\xaa\x24\xd4" "\x6a\xb5\x5a\xad\x56\x1f\xd9\xba\xa9\x1a\xed\xf5\x66\x11\x0b\x8d\x15\x7c" "\x50\x00\x00\xb3\xea\xbf\x11\xf1\x8f\xb6\x3b\x41\x6b\xe4\x5f\xb0\xfc\x7d" "\x7f\xf5\xf4\x0b\x6d\x77\x06\x98\xa8\xdb\xef\xbd\xff\xb3\xeb\x37\x6f\xae" "\xde\xba\xdd\x76\x4f\x00\x00\x00\x00\x00\x00\x00\x80\xff\x57\x1e\xff\x73" "\xb9\x31\xfe\xf3\xe6\x79\x40\x43\xe3\x46\x6f\x1b\xff\xf5\x8d\x58\x9e\xd9" "\xf1\x3f\xbb\x83\xde\xe6\x58\xe7\x69\x83\x9e\x8f\xbd\xc7\xff\x3e\x15\x7b" "\x8f\xff\xdd\x1f\xf3\x78\x73\x63\xda\x07\x63\xda\xe7\xc7\xb4\x2f\x8c\x69" "\x1f\x79\xa1\x47\x43\xce\xff\xf9\x94\x71\xce\xff\x64\xda\xb0\x92\xc6\x7f" "\x7d\xa9\x85\xfe\xb4\x2d\xe7\x7f\x2a\x8d\xf5\x9c\xf3\xff\xd2\xd0\x72\xcd" "\xfc\xab\x3f\xcf\x72\xfe\xdd\x6d\xf9\x9f\xb9\xf3\xce\x2f\xce\xdc\x7e\xef" "\xfd\x57\x6f\xbc\x73\xfd\xed\xd5\xb7\x57\xdf\x3d\x77\xf6\xf2\xc5\x0b\x97" "\x2e\x5e\xb8\x74\xe9\xcc\x5b\x37\x6e\xae\x9e\xdd\xfa\xb7\xc5\x1e\x1f\xae" "\x9c\x7f\x1e\xfb\xda\x79\xa0\x65\xc9\xf9\xe7\xcc\xe5\x5f\x96\x9c\xff\x17" "\x53\x2d\xff\xb2\xe4\xfc\x5f\x4c\xb5\xfc\xcb\x92\xf3\xcf\xaf\xf7\xe4\x5f" "\x96\x9c\x7f\x7e\xef\x23\xff\xb2\xe4\xfc\x5f\x4e\xb5\xfc\xcb\x92\xf3\xff" "\x72\xaa\xe5\x5f\x96\x9c\xff\x2b\xa9\x96\x7f\x59\x72\xfe\x5f\x49\xb5\xfc" "\xcb\x92\xf3\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\x74\xaa\xe5\x5f\x96\x9c\xff" "\x99\x54\xcb\xbf\x2c\x39\xff\x7c\x84\x4b\xfe\x65\xc9\xf9\xe7\x33\x1b\xe4" "\x5f\x96\x9c\xff\xf9\x54\xcb\xbf\x2c\x39\xff\x0b\xa9\x96\x7f\x59\x72\xfe" "\x17\x53\x2d\xff\xb2\xe4\xfc\x2f\xa5\x5a\xfe\x65\xc9\xf9\x5f\x4e\xb5\xfc" "\xcb\x92\xf3\xff\x6a\xaa\xe5\x5f\x96\x9c\xff\xd7\x52\x2d\xff\xb2\xe4\xfc" "\x5f\x4b\xb5\xfc\xcb\x92\xf3\xff\x7a\xaa\xe5\x5f\x96\x9c\xff\x37\x52\x2d" "\xff\xb2\xe4\xfc\xbf\x99\x6a\xf9\x97\x25\xe7\xff\xad\x54\xcb\xbf\x2c\x39" "\xff\x6f\xa7\x5a\xfe\x65\xc9\xf9\xbf\x9e\x6a\xf9\x97\xe5\xd1\xf7\xff\x9b" "\x99\xf0\xcc\xbf\xff\x1a\x31\x05\xdd\x30\x53\xea\xcc\xbb\x7f\xdb\x6b\x99" "\xb6\xff\x32\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc3\x26\x71\xa6" "\x71\xdb\xdb\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xff\x63\x07\x0e\x04\x00\x00\x00\x00\x80\xfc" "\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20\x00\x00" "\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8" "\xbb\xbb\x18\xb9\xca\xfb\x0c\xe0\x67\xbf\xec\xb5\x71\xc0\x0d\xdf\xc4\x81" "\xb5\x31\x60\x60\xf1\xee\xfa\x0b\x1c\x62\x30\x49\x48\x29\x69\x53\x4a\x42" "\xda\xb4\xa4\xc6\xb1\xd7\x1f\x89\xbf\xea\x5d\x27\x80\x50\x59\x0a\x6d\x89" "\x82\x54\xa4\xf6\x82\x5e\x34\x4d\xa2\x34\x8a\xd4\x56\xa0\x28\x52\x53\x89" "\x46\x48\x8d\xd4\xde\x95\xab\x44\xdc\x44\xad\xc4\x85\xa5\x42\xe5\xa0\xa4" "\x52\x2a\x60\xab\x33\xf3\xbe\xef\xce\xcc\xce\xce\xac\xed\x5d\x7b\xce\x39" "\xbf\x1f\xc2\x7f\xef\xcc\x99\x99\x77\xce\x9c\x99\xdd\x67\xad\x67\x06\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x1a\xad\xff\xf8\xe4\x9f\xf7\x65\x59\x96\xff\x5f\xfb\x63\x6d\x96\xad" "\xc9\xff\xbe\x2a\xdb\x9d\x7f\x39\xb3\xe3\x62\xaf\x10\x00\x00\x00\x38\x5f" "\xef\xd5\xfe\xfc\x87\xcb\xd2\x09\xbb\x17\x71\xa1\x86\x6d\xfe\xed\xfa\xff" "\xf8\xc1\xec\xec\xec\x6c\xf6\xc5\x77\x4e\xbf\xff\x97\xb3\xb3\xe9\x8c\x91" "\x2c\x1b\x58\x99\x65\xb5\xf3\xa2\x7f\xff\xd5\x2f\x67\x1b\xb7\x09\x9e\xcd" "\x86\xfb\xfa\x1b\xbe\xee\xef\x72\xf3\x03\x5d\xce\x1f\xec\x72\xfe\x50\x97" "\xf3\x57\x74\x39\x7f\x65\x97\xf3\x87\xbb\x9c\x3f\x6f\x07\xcc\xb3\xaa\xfe" "\xfb\x98\xda\x95\x6d\xac\xfd\x75\x6d\x7d\x97\x66\x57\x64\x43\xb5\xf3\x36" "\xb6\xb9\xd4\xb3\x7d\x2b\xfb\xfb\xe3\xef\x72\x6a\xfa\x6a\x97\x99\x1d\x3a" "\x90\x1d\xce\x8e\x64\x93\xd9\xf8\xbc\xcb\xf4\xd5\xfe\xcb\xb2\x57\xd7\xe7" "\xb7\xf5\x40\x16\x6f\xab\xbf\xe1\xb6\xd6\x65\x59\x76\xe6\xe7\x4f\xed\x8b" "\x6b\xe8\x0b\xfb\x78\x63\xd6\x74\x63\x35\x8d\x8f\xdd\xdb\xf7\x65\x23\xef" "\xfc\xfc\xa9\x7d\xdf\x9d\x7e\xeb\xda\x76\xb3\xeb\x6e\x98\xb7\xd2\x2c\xdb" "\xb4\x21\x5f\xe7\x73\x59\x36\xf7\xeb\xaa\xac\x2f\x5b\x99\xf6\x49\x5c\x67" "\x7f\xc3\x3a\xd7\xb5\x59\xe7\x40\xd3\x3a\xfb\x6a\x97\xcb\xff\xde\xba\xce" "\x33\x8b\x5c\x67\xbc\xdf\xc3\x61\x9d\xaf\x77\x58\xe7\xba\x70\xda\xe3\x37" "\x66\x59\x36\x93\x2d\xb8\x4d\xab\x67\xb3\xfe\x6c\x75\xcb\xad\xa6\xfd\x3d" "\x5c\x3f\x22\xf2\xeb\xc8\x1f\xca\x0f\x66\x83\x67\x75\x9c\xac\x5f\xc4\x71" "\x92\x5f\xe6\xcd\x1b\x9b\x8f\x93\xd6\x63\x32\xee\xff\xf5\x61\x9f\x0c\x2e" "\xb0\x86\xc6\x87\xe3\xed\x67\x56\xcc\xdb\xef\xe7\x7a\x9c\xe4\xf7\xba\x17" "\x8e\xd5\xfc\xba\x1f\xca\x6f\x74\x78\xb8\xf1\x57\xab\x4d\xc7\x6a\xbe\xcd" "\x53\x37\x2d\x7c\x0c\xb4\x7d\xec\xda\x1c\x03\xe9\x58\x6e\x38\x06\x36\x74" "\x3b\x06\xfa\x57\x0c\xd4\x8e\x81\xfe\xb9\x35\x6f\x68\x3a\x06\x26\xe6\x5d" "\xa6\x3f\xeb\xab\xdd\xd6\xe9\x9b\x3a\x1f\x03\x63\xd3\x47\x4f\x8c\x4d\x3d" "\xf1\xe4\x1d\x87\x8f\xee\x3d\x38\x79\x70\xf2\xd8\xc4\xf8\x8e\x6d\x5b\xb7" "\x6f\xdb\xba\x7d\xfb\xd8\x81\xc3\x47\x26\xc7\xeb\x7f\x9e\xdd\x2e\x2d\x90" "\xd5\x59\x7f\x3a\x06\x37\x84\xd7\x9a\x78\x0c\xde\xd2\xb2\x6d\xe3\x21\x39" "\xfb\xad\xa5\x7b\x1e\x0c\xf7\xc8\xf3\x20\xbf\xef\x9f\xbd\x39\x5f\xd0\x9a" "\xfe\x6c\x81\x63\x3c\xdf\xe6\xb9\x4d\xe7\xff\x3c\x48\xdf\xf7\x1b\x9e\x07" "\x83\x0d\xcf\x83\xb6\xaf\xa9\x6d\x9e\x07\x83\x8b\x78\x1e\xe4\xdb\x9c\xd9" "\xb4\xb8\xef\x99\x83\x0d\xff\xb7\x5b\xc3\x72\xbd\x16\xae\x6d\x38\x06\x2e" "\xe6\xf7\xc3\xfc\x36\x1f\xbd\x75\xe1\xd7\xc2\x75\x61\x5d\xcf\xdf\x76\xb6" "\xdf\x0f\x07\xe6\x1d\x03\xf1\x6e\xf5\x85\xe7\x5e\x7e\x4a\xfa\x79\x6f\xf8" "\xae\xb0\x5f\xe6\x1f\x17\xd7\xe5\x67\x5c\xb2\x22\x3b\x35\x35\x79\x72\xf3" "\xe3\x7b\xa7\xa7\x4f\x4e\x64\x61\x5c\x10\x97\x37\x3c\x56\xad\xc7\xcb\xea" "\x86\xfb\x94\xcd\x3b\x5e\xfa\xcf\xfa\x78\xd9\xfd\xf7\xef\xde\x7c\x5d\x9b" "\xd3\xd7\x86\x7d\x35\x7c\x7b\xe7\xc7\x2a\xdf\x66\xdb\x68\xe7\xc7\xaa\xf6" "\xea\xde\xbc\x3f\x57\x64\xf5\xfd\xd9\x74\xea\x96\x2c\x8c\x25\x76\xa1\xf7" "\x67\xbb\xef\x66\xf9\xfe\x4c\x59\xa2\xc3\xfe\xcc\xb7\x79\xee\x8e\xf3\xff" "\x59\x30\xe5\x92\x86\xd7\xbf\xa1\x6e\xaf\x7f\x03\x43\x83\xf5\xd7\xbf\x81" "\xb4\x37\x86\x9a\x5e\xff\xe6\x3f\x34\x03\xb5\x95\x65\xd9\x99\x3b\x16\xf7" "\xfa\x37\x14\xfe\xbf\xd0\xaf\x7f\x57\xf4\xc8\xeb\x5f\xbe\xaf\x1e\xdd\xdc" "\xf9\x18\xc8\xb7\x79\x7e\xec\x6c\x8f\x81\xc1\x8e\xaf\x7f\x37\x86\xd9\x17" "\xd6\x73\x6b\x48\x0c\xc3\x0d\xb9\xff\xfd\xda\xf9\x33\xf5\xc3\xb4\xe1\xb1" "\xec\x7a\xdc\x0c\x0e\x0e\x85\xe3\x66\x30\xde\x62\xf3\x71\xb3\x75\xde\x65" "\xf2\x6b\xcb\x6f\x7b\xd3\xf8\xb9\x1d\x37\x9b\x6e\x6c\x7e\xac\x9a\x7e\x6e" "\x29\xe1\x71\x93\xef\xab\xbf\x1a\xef\x7c\xdc\xe4\xdb\xbc\x36\x71\xfe\xaf" "\x1d\xab\xe2\x5f\x1b\x5e\x3b\x56\x74\x3b\x06\x86\x06\x56\xe4\xeb\x1d\x4a" "\x07\x41\xfd\xf5\x6e\x76\x55\x3c\x06\x36\x67\xfb\xb2\xe3\xd9\x91\x6c\x7f" "\xba\x4c\xfe\x28\xe7\xb7\x35\xba\x65\x71\xc7\xc0\x8a\xf0\xff\x85\x7e\xed" "\xb8\xa6\x47\x8e\x81\x7c\x5f\xbd\xb4\xa5\xf3\x31\x90\x6f\xf3\xe3\xad\x4b" "\xfb\xb3\xd3\xa6\x70\x4a\xda\xa6\xe1\x67\xa7\xd6\xdf\x2f\x2c\x94\xf9\xaf" "\x1b\x9c\xbb\xbe\xd6\xdd\xb6\xd4\x99\x3f\x5f\xe7\x27\x7e\xf2\xe9\x74\x5a" "\xbb\x0c\x91\x6f\xf3\xd6\xb6\xb3\xcd\x19\x9d\xf7\xd3\xed\xe1\x94\x4b\xda" "\xec\xa7\xd6\xe7\xcf\x42\xc7\xf4\xfe\xec\xc2\xec\xa7\x6b\xc2\x3a\x8f\x6c" "\xef\xfc\xbb\xa9\x7c\x9b\x2b\x76\x2c\xf2\x78\xda\x9d\x65\xd9\x1b\x13\x6f" "\xd4\x7e\xdf\x15\x7e\xbf\xfb\xfd\x53\x3f\xf9\x41\xd3\xef\x7d\xdb\xfd\x4e" "\xf9\x8d\x89\x37\x1e\x1c\x7b\xf8\xa7\x67\xb3\x7e\x00\x00\xce\xdd\xfb\xb5" "\x3f\x67\x56\xd4\x7f\xd6\x6c\xf8\x17\xeb\xc5\xfc\xfb\x3f\x00\x00\x00\x50" "\x08\x31\xf7\xf7\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x0f\x84\x99" "\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x0f\x86\x99\x54\x24\xff\x1f\xba\x6b" "\xe7\xcb\xef\x3d\x9d\xa5\x77\x03\x9c\x0d\xe2\xf9\x71\x37\x3c\x74\x4f\x7d" "\xbb\xd8\xf1\x9e\x09\x5f\x8f\xcc\xce\xc9\x4f\xff\xd8\x77\x86\x5e\xfe\xda" "\xd3\x8b\xbb\xed\xfe\x2c\xcb\xde\x7d\xf0\x43\x6d\xb7\x3f\x74\x4f\x5c\x57" "\xdd\x89\xb8\xce\x8f\x34\x9f\x3e\xcf\x35\x37\x2c\xea\xf6\x1f\x7b\x64\x6e" "\xbb\xc6\xf7\x4f\x38\xb3\xb3\x7e\xfd\xf1\xfe\x2c\xf6\x30\x88\x5d\xe5\x57" "\xc7\xb6\xd4\xae\x77\xe4\x89\x89\xda\x7c\xed\xc1\xac\x36\x1f\x9e\x79\xfe" "\xd9\xfa\xf5\xd7\xbf\x8e\xdb\x9f\xde\x5a\xdf\xfe\x6f\xc2\x9b\x96\xec\x3e" "\xd0\xd7\x74\xf9\x4d\x61\x3d\x1b\xc3\x1c\xc9\x56\xd5\xde\x53\xe6\xa1\xdd" "\x73\xfb\x21\x9f\xf1\x72\x2f\xaf\xbb\xfe\x5f\x2f\xff\xdc\xdc\xed\xc5\xcb" "\xf5\x6d\xb8\xb4\x76\x37\x5f\xfa\xe3\xfa\xf5\xc6\xf7\x88\x7a\xf1\xf2\xfa" "\xf6\xf1\x7e\x2f\xb4\xfe\x7f\xf9\xfa\xf7\x5e\xce\xb7\x7f\xfc\xa6\xf6\xeb" "\x7f\xba\xbf\xfd\xfa\x4f\x87\xeb\x7d\x33\xcc\x5f\xed\xaa\x6f\xdf\xb8\xcf" "\xbf\xd6\xb0\xfe\x3f\x0d\xeb\x8f\xb7\x17\x2f\xb7\xf9\xdb\x3f\x6a\xbb\xfe" "\x57\xae\xae\x6f\xff\x4a\x38\x2e\xbe\x19\x66\xeb\xfa\xef\xfb\x8b\x0f\xbf" "\xd7\xee\xf1\x8a\xb7\xb3\xfb\xee\xfa\xe5\xe2\xed\x8f\xff\xef\xb6\xda\xe5" "\xe2\xf5\xc5\xeb\x6f\x5d\xff\xf0\xd3\x13\x4d\xfb\xa3\xf5\xfa\x5f\x7b\xa7" "\x7e\x3d\xbb\xbe\xf2\x8b\x81\xc6\xed\xe3\xe9\xf1\x76\xa2\xc7\xee\x6e\x3e" "\xbe\xfb\xc2\xe3\xdb\xd4\x23\xcf\xb2\xec\x7b\x7f\x96\x35\xed\xe7\xec\xa3" "\xf5\xcb\xfd\x73\xcb\xfa\xe3\xf5\x9d\xb8\xbb\xfd\xfa\x6f\x6f\x59\xe7\x89" "\xbe\x1b\x6a\x97\x9f\xbb\x3f\x6b\x9b\xee\xd7\x37\xfe\x6e\x4b\xdb\xfb\x1b" "\xd7\xb3\xfb\x1f\xd7\x36\xdd\x9f\x17\xef\x0f\xfb\xef\x9d\xb1\x1f\xe7\xd7" "\x7b\xfa\xe1\x70\x3c\x86\xf3\xff\xef\xf5\xfa\xf5\xb5\xbe\x97\xe9\x2b\xf7" "\x37\xbf\xde\xc4\xed\xbf\xb9\xb6\xfe\xbc\x8d\xd7\x37\xd6\xb2\xfe\x17\x5b" "\xd6\x3f\x73\x43\xbe\xef\xba\xaf\xff\x81\x77\xea\xeb\x7f\xe5\xde\x95\x4d" "\xeb\xdf\xfd\xc9\x70\x3c\x3d\x50\x9f\xdd\xd6\x7f\xf0\x6f\x2f\x6b\xba\xfc" "\xb7\xbe\x5b\x7f\x3c\x4e\x7e\x75\xf4\xd8\xf1\xa9\x53\x87\xf7\x37\xec\xd5" "\xc6\xe7\xf1\xca\xe1\x55\xab\x2f\x59\xf3\x81\x4b\x2f\x0b\xaf\xa5\xad\x5f" "\xef\x39\x3e\x7d\x68\xf2\xe4\xc8\xf8\xc8\x78\x96\x8d\x14\xf0\x2d\x03\x97" "\x7b\xfd\xdf\x0e\xf3\x7f\xea\x63\x66\xe9\x6f\xa1\xee\xa7\xbf\xa8\x1f\x77" "\x2f\x7c\xaa\xfe\x7d\xeb\x96\x5f\xd6\xbf\x7e\x31\x9c\xfe\x58\x78\x3c\xe3" "\xf7\xc7\x6f\xfc\xf5\x50\xd3\xf1\xda\xfa\xb8\xcf\xdc\x5b\x9f\xe7\xbb\xfe" "\xdb\xc2\x3a\x16\xeb\xea\xaf\xff\xd7\x0d\x8b\xda\xf0\xf4\x17\x5e\x3d\xf5" "\x4f\x7f\xf2\x56\xeb\xcf\x05\xf1\xfe\x9c\xb8\x72\xb8\x76\xff\x5e\x5a\x7f" "\x55\xed\xbc\xbe\xd7\xea\xe7\xb7\xbe\x5e\x75\xf3\x9f\x57\x36\x3f\xaf\x7f" "\x36\x38\x5e\x9b\x3f\x0c\xfb\x75\x36\xbc\x33\xf3\x86\xab\xea\xb7\xd7\x7a" "\xfd\xf1\xbd\x49\x5e\xf8\x4c\xfd\xf9\x1b\x7f\x92\x8b\x97\xcf\x5a\xde\x4f" "\x64\xed\x40\xf3\xfd\x38\xdf\xf5\xff\x2c\xfc\x1c\xf3\xa3\x6b\x9a\x5f\xff" "\xe2\xf1\xf1\xc3\xa7\x5b\xde\xcd\x79\x6d\xd6\x97\x2f\x61\x26\xbc\x3e\x64" "\x33\xf5\xf3\xe3\x56\x71\x7f\xbf\x70\xe6\xaa\xb6\xb7\x17\xdf\x87\x27\x9b" "\xb9\xf6\x6c\x96\xb9\xa0\xa9\x27\xa6\xc6\x8e\x1c\x3e\x76\xea\xf1\xb1\xe9" "\xc9\xa9\xe9\xb1\xa9\x27\x9e\xdc\x73\xf4\xf8\xa9\x63\xd3\x7b\x6a\xef\x5d" "\xba\xe7\x4b\xdd\x2e\x3f\xf7\xfc\x5e\x5d\x7b\x7e\xef\x9f\xdc\xb1\x2d\xab" "\x3d\xdb\x8f\xd7\xc7\x32\xbb\xd8\xeb\x3f\xf1\xc8\xbe\xfd\x77\x8e\xdf\xbc" "\x7f\xf2\xc0\xde\x53\x07\xa6\x1f\x39\x31\x79\xf2\xe0\xbe\xa9\xa9\x7d\x93" "\xfb\xa7\x6e\xde\x7b\xe0\xc0\xe4\x57\xbb\x5d\xfe\xf0\xfe\x5d\x13\x5b\x76" "\x6e\xbd\x73\xcb\xe8\xc1\xc3\xfb\x77\xdd\xb5\x73\xe7\xd6\x9d\xa3\x87\x8f" "\x1d\xcf\x97\x51\x5f\x54\x17\x3b\xc6\xbf\x3c\x7a\xec\xe4\x9e\xda\x45\xa6" "\x76\x6d\xdb\x39\xb1\x7d\xfb\xb6\xf1\xd1\xa3\xc7\xf7\x4f\xee\xba\x73\x7c" "\x7c\xf4\x54\xb7\xcb\xd7\xbe\x37\x8d\xe6\x97\xfe\xca\xe8\xc9\xc9\x23\x7b" "\xa7\x0f\x1f\x9d\x1c\x9d\x3a\xfc\xe4\xe4\xae\x89\x9d\x3b\x76\x6c\xe9\xfa" "\xee\x8f\x47\x4f\x1c\x98\x1a\x19\x3b\x79\xea\xd8\xd8\xa9\xa9\xc9\x93\x63" "\xf5\xfb\x32\x32\x5d\x3b\x39\xff\xde\xd7\xed\xf2\x54\xc3\xd4\xf1\xf0\x7a" "\xd7\xa2\x2f\xfc\x74\xfe\xf9\xdb\x77\xa4\xf7\xc7\xcd\x7d\xe7\x99\x05\xaf" "\xaa\xbe\x49\xf3\x8f\xa7\xd9\xdb\xe1\xbd\xa0\xe2\xf7\xb7\x6e\x5f\xc7\xdc" "\x3f\x14\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\x7f\x78\xe3\xff\xb9" "\x33\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x57\x86\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\xd7\x93\xff\x70\xfa\xf8\xf7\xaa\xe4\xff\xa5\xea\xff\x3f" "\xa3\xff\x5f\xb3\xfc\xfd\xff\x4c\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x50\xf4" "\xff\xf5\xff\x3b\xd1\xff\xd7\xff\x2f\xf2\xfa\xf5\xff\xf5\xff\xe9\xae\xd7" "\xfa\xff\x21\xf7\x67\xab\xb2\xcc\xbf\xff\x03\x00\x00\x40\x49\xc5\xdc\xbf" "\x3a\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x92\x30\x13\xf9\x1f\x00" "\x00\x00\x4a\x23\xe6\xfe\x35\x61\x26\x15\xc9\xff\x3e\xff\x5f\xff\x5f\xff" "\xbf\x53\xff\x3f\x6e\xab\xff\x9f\xe9\xff\xf7\x42\xff\x7f\xe3\x7f\xeb\xff" "\xcf\xa3\xff\xaf\xff\x9f\xe9\xff\x9f\xb3\x8b\xdd\x9f\x2f\xfa\xfa\x7b\xb0" "\xff\xbf\x4a\xff\x9f\x5e\xd3\x6b\xfd\xff\x98\xfb\x3f\x10\x66\x52\x91\xfc" "\x0f\x00\x00\x00\x55\x10\x73\xff\xa5\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\x97\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xaf\x0d\x33\xa9" "\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xf7\xf9\xff\xfa\xff\x85\xe9\xff\xfb\xfc" "\xff\x36\xf4\xff\xf5\xff\x33\xfd\xff\x73\x76\xb1\xfb\xf3\x45\x5f\x7f\x0f" "\xf6\xff\x7d\xfe\x3f\x3d\xa7\xd7\xfa\xff\x31\xf7\xff\x5a\x98\x49\x45\xf2" "\x3f\x00\x00\x00\x54\x41\xcc\xfd\x1f\x0c\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xbf\x3c\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x8a\x30\x93" "\x8a\xe4\xff\x6a\xf6\xff\xdf\xcc\xb2\x4c\xff\x3f\xd3\xff\xd7\xff\x6f\x59" "\xa7\xfe\xbf\xfe\xff\x72\xd0\xff\xd7\xff\xef\x44\xff\x5f\xff\xbf\xc8\xeb" "\xd7\xff\xd7\xff\xa7\xbb\x5e\xeb\xff\xc7\xdc\x7f\x65\x98\x49\x45\xf2\x3f" "\x00\x00\x00\x54\x41\xcc\xfd\x57\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\x5f\x1d\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x4d\x98\x49\x45" "\xf2\x7f\x35\xfb\xff\x3e\xff\x5f\xff\xbf\x4e\xff\xbf\x79\x9d\xfa\xff\xfa" "\xff\xcb\xa1\xd2\xfd\xff\x77\x0f\xe9\xff\x77\xa1\xff\xaf\xff\x5f\xe4\xf5" "\xeb\xff\xeb\xff\xd3\x5d\xaf\xf5\xff\x63\xee\xbf\x36\xcc\xa4\x22\xf9\x1f" "\x00\x00\x00\xaa\x20\xe6\xfe\xeb\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98" "\xfb\x3f\x14\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf\x2e\xcc\xa4\x22" "\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x39\x15\xab\xff" "\xdf\xbf\xe0\x39\x3e\xff\xbf\x4e\xff\xbf\xd9\xd2\xf5\xff\x67\xe6\x16\xa0" "\xff\x5f\x98\xf5\xeb\xff\xeb\xff\xd3\x5d\xaf\xf5\xff\x63\xee\xff\x70\x98" "\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xd7\x87\x99\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\xdf\x10\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f" "\x12\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf" "\x9c\x8a\xd5\xff\x5f\x98\xfe\x7f\x9d\xfe\x7f\x33\x9f\xff\xaf\xff\xaf\xff" "\xaf\xff\x4f\x67\xbd\xd6\xff\x8f\xb9\x7f\x7d\x98\x49\x45\xf2\x3f\x00\x00" "\x00\x54\x41\xcc\xfd\x1b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x6f" "\x0c\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x18\x66\x52\x9a\xfc\xff" "\x81\x8e\xe7\xea\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x2f\x27\xfd" "\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\x8b\xbc\x7e\xfd\x7f\xfd\x7f\xba\xeb\xb5" "\xfe\x7f\xcc\xfd\x37\x85\x99\x94\x26\xff\x03\x00\x00\x00\x31\xf7\xdf\x1c" "\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x4b\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\xff\xa6\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\x02" "\xf7\xff\x07\xf4\xff\x33\xfd\xff\x9e\xa7\xff\xaf\xff\xdf\x89\xfe\xbf\xfe" "\x7f\x91\xd7\xaf\xff\xaf\xff\x4f\x77\xbd\xd6\xff\x8f\xb9\xff\xd6\x30\x93" "\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x6f\x0b\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x34" "\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\xc0\xfd\x7f\x9f\xff\xdf\xb4" "\x7e\xfd\xff\xde\xa4\xff\x5f\x94\xfe\xff\x50\xf3\x97\xfa\xff\x8b\xa2\xff" "\xaf\xff\xaf\xff\xaf\xff\x4f\x67\xbd\xd6\xff\x8f\xb9\xff\x8e\x30\x93\x8a" "\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x37\x87\x99\xc8\xff\x00\x00\x00\x50" "\x1a\x31\xf7\x8f\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x8f\x87\x99" "\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17\xb6\xff\xbf\x6c" "\x5d\xf7\xa5\xa4\xff\x5f\x94\xfe\x7f\x0b\xfd\xff\x45\xd1\xff\xd7\xff\xd7" "\xff\xd7\xff\xa7\xb3\x5e\xeb\xff\xc7\xdc\x3f\x11\x66\x52\x91\xfc\x0f\x00" "\x00\x00\x55\x10\x73\xff\x96\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe" "\xad\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xdb\xc2\x4c\x2a\x92\xff" "\x0b\xd2\xff\xdf\x9c\x0a\x50\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x85" "\xa2\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x91\xd7\xaf\xff\xaf\xff\x4f\xb3" "\xfe\x36\xa7\xf5\x5a\xff\x3f\xe6\xfe\xed\x61\x26\x15\xc9\xff\x00\x00\x00" "\x50\x05\x31\xf7\xef\x08\x33\x99\xcb\xff\x6b\x2f\xfc\xaa\x00\x00\x00\x80" "\xa5\x14\x73\xff\x9d\x61\x26\xfe\xfd\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xbb" "\xc2\x4c\x2a\x92\xff\x0b\xd2\xff\xf7\xf9\xff\xfa\xff\xfa\xff\x0d\xf4\xff" "\xf5\xff\x8b\x44\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x22\xaf\x5f\xff\x5f" "\xff\x9f\xee\x7a\xad\xff\x1f\x73\xff\xce\x30\x93\x8a\xe4\x7f\x00\x00\x00" "\xa8\x82\x98\xfb\x3f\x12\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x77" "\x98\x89\xfc\x0f\x00\x00\x00\x85\xd2\xee\x73\x08\xa3\x98\xfb\x3f\x1a\x66" "\x52\x91\xfc\xaf\xff\x5f\xf6\xfe\xff\xec\x4a\xfd\x7f\xfd\x7f\xfd\xff\xce" "\xeb\xd7\xff\x5f\x5e\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\x17\x79\xfd\xfa" "\xff\xfa\xff\x74\xd7\x6b\xfd\xff\x98\xfb\x77\x85\x99\x54\x24\xff\x03\x00" "\x00\x40\x15\xc4\xdc\x7f\x4f\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\xbd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xbb\xc3\x4c\x2a\x92\xff" "\xf5\xff\xcb\xde\xff\xf7\xf9\xff\xfa\xff\xfa\xff\xdd\xd6\xaf\xff\xbf\xbc" "\xf4\xff\xf5\xff\x3b\xd1\xff\x2f\x66\xff\x3f\xfc\xd8\xa2\xff\xdf\x43\xfd" "\xff\xfc\x18\xd2\xff\xa7\x17\xf5\x5a\xff\x3f\xe6\xfe\xfb\xc2\x4c\x2a\x92" "\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\x58\x98\x89\xfc\x0f\x00\x00\x00\xa5" "\x11\x73\xff\xc7\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x3f\x11\x66" "\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\xcc\xfe\xff\x90\xfe\x7f" "\x41\xe8\xff\x2f\x5b\xff\xbf\xf6\x52\xa8\xff\x5f\xa7\xff\x7f\x6e\x2e\x76" "\x7f\xbe\xe8\xeb\xef\xa5\xfe\xbf\xcf\xff\xa7\x57\xf5\x5a\xff\x3f\xe6\xfe" "\xfb\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\x64\x98\x89\xfc" "\x0f\x00\x00\x00\xa5\x11\x73\xff\xaf\x87\x99\xc8\xff\x00\x00\x00\x50\x1a" "\x31\xf7\x3f\x10\x66\x52\x91\xfc\xaf\xff\xbf\x64\xfd\xff\x35\x99\xfe\xbf" "\xfe\x7f\xcb\xf5\xeb\xff\xfb\xfc\x7f\xfd\x7f\xfd\x7f\x9f\xff\xdf\x99\xfe" "\xbf\xfe\x7f\x91\xd7\xaf\xff\xaf\xff\x4f\x77\xbd\xd6\xff\x8f\xb9\xff\x37" "\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f\x30\xcc\x44\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\xff\x53\x61\x26\xf2\x3f\x00\x00\x00\x14\xcc\x8a" "\x05\xcf\x89\xb9\xff\x37\xc3\x4c\x2a\x92\xff\x8b\xd7\xff\x1f\xe9\xd5\xfe" "\x7f\xcd\x42\xfd\xf9\xfe\x74\xfd\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\x4b\x49\xff\x5f\xff\x3f\xd3\xff\x3f\x67\x17\xbb\x3f\x5f\xf4\xf5\xeb\xff" "\xeb\xff\xd3\x5d\xaf\xf5\xff\x63\xee\xff\xad\x30\x93\x8a\xe4\x7f\x00\x00" "\x00\xa8\x82\x98\xfb\x3f\x1d\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff" "\xdb\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x0f\x85\x99\x54\x24\xff" "\x2f\x75\xff\xbf\xf5\xf2\x9d\x94\xec\xf3\xff\x6b\x7c\xfe\xbf\xfe\x7f\xa6" "\xff\x9f\xe8\xff\xeb\xff\x67\xfa\xff\xfa\xff\x5d\xe8\xff\xeb\xff\x17\x74" "\xfd\xf1\x47\x11\xfd\x7f\xfd\x7f\xba\xe8\xb5\xfe\x7f\xcc\xfd\xbf\x13\x66" "\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xc3\x61\x26\xf2\x3f\x00\x00" "\x00\xf4\xa8\x43\x67\x7d\x89\x98\xfb\x3f\x13\x66\x22\xff\x03\x00\x00\x40" "\x69\xc4\xdc\xff\xd9\x30\x93\x8a\xe4\xff\xe2\x7d\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\x7f\x91\xe8\xff\xeb\xff\x77\xa2\xff\xaf\xff\x5f\xe4" "\xf5\xfb\xfc\x7f\xfd\x7f\xba\xeb\xb5\xfe\x7f\xcc\xfd\x8f\x84\x99\x54\x24" "\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\xb9\x30\x13\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\xdf\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\xbd\x30" "\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe5\xa4" "\xff\x3f\xbf\xff\x9f\xbf\x86\x55\xa6\xff\x3f\xdb\xfa\x8c\x6b\xa6\xff\xaf" "\xff\x5f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5d\xaf\xf5\xff\x63\xee\xff\x7c\x98" "\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xbf\x1f\x66\x22\xff\x03\x00" "\x00\x40\x69\xc4\xdc\xff\x07\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd" "\x8f\x86\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\x57\xb6\xff\x9f\x96\xad" "\xff\xaf\xff\xbf\x9c\xf4\xff\x7d\xfe\x7f\x27\xfa\xff\xfa\xff\x45\x5e\xbf" "\xfe\xbf\xfe\x3f\xdd\xf5\x5a\xff\x3f\xe6\xfe\x2f\x84\x99\x54\x24\xff\x03" "\x00\x00\x40\x15\xc4\xdc\xff\x87\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\x7b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x1f\x0b\x33\xa9\x48" "\xfe\xd7\xff\xd7\xff\xd7\xff\xaf\x6c\xff\xdf\xe7\xff\x07\xfa\xff\xcb\x4b" "\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x22\xaf\x5f\xff\x5f\xff\x9f\xee\x7a" "\xad\xff\x1f\x73\xff\xde\x30\x93\xdd\xcd\x37\x03\x00\x00\x00\x14\x57\xcc" "\xfd\x5f\x0c\x33\xa9\xc8\xbf\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x2f\xcc" "\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x7f\x98\x49\x45\xf2\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x72\xd2\xff\xd7\xff\xef\x44\xff" "\x5f\xff\xbf\xc8\xeb\xd7\xff\xd7\xff\xa7\xbb\x5e\xeb\xff\xc7\xdc\x3f\x19" "\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x81\x30\x13\xf9\x1f\x00" "\x00\x00\x4a\x23\xe6\xfe\x83\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd" "\x87\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x2b\xdb\xff\x7f\xfd\xfb" "\x2d\xeb\xd4\xff\xd7\xff\x5f\x0e\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\x17" "\x79\xfd\xfa\xff\xfa\xff\x74\xd7\x6b\xfd\xff\x98\xfb\x0f\x87\x99\x54\x24" "\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\xa5\x30\x13\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\x2f\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x1f\x09\x33" "\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xaf\x6c\xff\x7f\x71\x9f\xff\xbf\x6a" "\xee\x76\xf5\xff\xf5\xff\xcf\x85\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff\x45" "\x5e\xbf\xfe\xbf\xfe\x3f\xdd\xf5\x5a\xff\x3f\xe6\xfe\xa3\x61\x26\x15\xc9" "\xff\x00\x00\x00\x50\x76\x6b\xd2\xdf\x86\xb3\x63\x61\x26\xf2\x3f\x00\x00" "\x00\x94\x46\xcc\xfd\xc7\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x4f" "\x84\x99\x54\x24\xff\xeb\xff\x9f\x5d\xff\xbf\x6f\x81\x6e\xa0\xfe\x7f\xfb" "\xf5\xeb\xff\x97\xa0\xff\xdf\x40\xff\x5f\xff\xff\x5c\xe8\xff\xeb\xff\x77" "\xa2\xff\xaf\xff\x5f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5d\xaf\xf5\xff\x63\xee" "\xff\xa3\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x4f\x86\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\x4f\x85\x99\xc8\xff\x00\x00\x00\x50\x1a" "\x31\xf7\x4f\x87\x99\x54\x24\xff\xeb\xff\xfb\xfc\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\xe5\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\x7f\x91\xd7\xaf\xff" "\xff\xff\xec\xdd\xe7\x92\x67\x65\xb5\xc7\xf1\xa6\x39\x73\x18\x8a\xf2\x1e" "\x28\xef\xc0\x2b\xf0\x02\x7c\xe1\x35\x58\x65\x79\x07\xe6\x04\x66\xcc\x8a" "\x39\x27\xcc\x09\xb3\x62\xce\x39\x67\xcc\x59\x14\xc5\x1c\xab\xb4\xe8\x5e" "\x6b\x21\x43\xcf\xde\x3d\x33\xfd\x9f\x79\xf6\xb3\x3e\x9f\x17\x2e\x4e\xc3" "\xa9\x79\x28\x38\x55\xe7\x57\xe3\xb7\xb6\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb" "\xef\x1f\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x07\xc4\x2d\xf6\x3f" "\x00\x00\x00\x4c\x23\x77\xff\x03\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb" "\xff\x41\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff" "\x2e\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd" "\x68\xfd\x7f\xee\xfe\x07\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\x21\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xd0\xb8\xc5\xfe\x07\x00" "\x00\x80\x69\xe4\xee\x7f\x58\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xbf\x4b\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7" "\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\xe1\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\x7f\x44\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x32" "\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xaf\x89\x5b\x9a\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xbf\xc1\xfe\xff\xff\xf4\xff\xfa\xff\xed\xd0\xff\xeb\xff\x97" "\xe8\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xd7" "\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x51\x71\x8b\xfd\x0f\x00" "\x00\x00\x9b\x73\xf7\xfb\x1d\xfd\xf3\xdc\xfd\x8f\x8e\x5b\xec\x7f\x00\x00" "\x00\x98\x46\xee\xfe\xc7\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xdf\x60" "\xff\xef\xfb\xff\xfa\xff\x0d\xd1\xff\xeb\xff\x97\xe8\xff\xf5\xff\x5b\x7e" "\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x8f\x8d\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\xe3\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff" "\xf1\x71\x8b\xfd\x0f\x00\x00\x00\x5b\x77\x2a\xff\x20\x77\xff\x13\xe2\x96" "\x26\xfb\x5f\xff\x7f\xf1\xfa\xff\xcb\xf4\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\x7f\xe2\xf4\xff\xfa\xff\x3d\xfd\xff\x79\xbb\xd4\xfd\xfc\xd6\xdf\xaf\xff" "\xd7\xff\xb3\x6e\xe7\xfd\xff\xbd\xaf\x3b\xb8\xc7\xed\xff\x73\xf7\x5f\x17" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x27\xc6\x2d\xf6\x3f\x00\x00" "\x00\x4c\x23\x77\xff\x93\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xc9" "\x71\x4b\x93\xfd\xaf\xff\xf7\xfd\xff\x3b\xfa\xff\xff\x5c\xa6\xff\xd7\xff" "\xeb\xff\xef\xf8\xb9\xfe\xff\x64\xe8\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d" "\xbf\x5f\xff\xaf\xff\x67\xdd\xce\xfb\xff\x95\xde\xff\xcc\xff\x39\x77\xff" "\x53\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd4\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\x7f\x5a\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7" "\x3f\x3d\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xdf\xff\xd7\xff\xeb\xff\xf5\xff" "\xbb\xa4\xff\x1f\xb6\xff\x3f\xf3\xff\xf4\xee\x4c\xff\x7f\x2c\xfa\x7f\xfd" "\xff\xd9\xfa\xff\x7b\x1e\xe3\xfd\xfa\x7f\x3a\x18\xad\xff\xcf\xdd\xff\x8c" "\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x33\x6e\xb1\xff\x01\x00" "\x00\x60\x1a\xb9\xfb\xaf\x8f\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x67" "\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xdf\xb9\xff\xdf\x6f\xd9" "\xff\xdf\xfe\x33\xfd\xff\x6e\xe8\xff\x87\xed\xff\x97\xe9\xff\x8f\x45\xff" "\xaf\xff\xf7\xfd\x7f\xfd\x3f\xcb\x46\xeb\xff\x73\xf7\x3f\x3b\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\xcf\x89\x5b\xec\x7f\x00\x00\x00\x98\x46" "\xee\xfe\xe7\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xf3\xe2\x96\xfd" "\x4b\xf5\xa2\x8b\x4b\xff\xaf\xff\xd7\xff\xeb\xff\x2f\xe8\xfb\xff\x97\xcf" "\xd1\xff\xfb\xfe\xff\xee\xe8\xff\xcf\xbf\xff\xbf\xd7\x31\xde\xa5\xff\x3f" "\xa4\xff\x3f\x3f\x97\xba\x9f\xdf\xfa\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff" "\xe7\xee\x7f\x7e\xdc\xe2\xf7\xff\x01\x00\x00\x60\x0e\xfb\x7b\xb5\xfb\x5f" "\x10\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x8c\x5b\xec\x7f\x00\x00" "\x00\x98\x46\xee\xfe\x17\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\x5f\x50\xff\x3f\xc9\xf7\xff\xf5\xff\xbb\xa3\xff\xf7\xfd\xff\x25\xc7\xed" "\xff\xf7\xf4\xff\xf5\xf7\xa2\xff\x1f\xe7\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb" "\xff\x73\xf7\xbf\x38\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x2f\x89" "\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x97\xc6\x2d\xf6\x3f\x00\x00\x00" "\x4c\x23\x77\xff\xcb\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\x5d\xd2\xff\xeb\xff\x97\xf8\xfe\xbf\xfe\x7f\xcb\xef\xd7\xff" "\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\xe5\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\x7f\x45\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x32\x6e" "\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x15\xb7\x9c\xb9\xff\xf7\x2f\xe6" "\xab\x2e\x1e\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x77\x49\xff\xaf" "\xff\x5f\xa2\xff\x3f\xba\xff\x3f\x7d\x96\x5f\x4f\xff\x3f\xd6\xfb\xf5\xff" "\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xbf\x21\x6e\xf1\xfb\xff\x00\x00\x00\x30" "\x8d\xdc\xfd\xaf\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xd7\xc4\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x6b\xe3\x96\x26\xfb\xff\x6c\xfd\xff" "\x6d\x57\x1d\xfe\x79\xfd\xff\xf1\xe8\xff\x8f\x7e\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\x4b\xf4\xff\xbe\xff\xbf\xe5\xf7\xeb\xff\xf5\xff" "\xac\x1b\xad\xff\xcf\xdd\xff\xba\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72" "\xf7\xbf\x3e\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xdf\x10\xb7\xd8\xff" "\x00\x00\x00\x30\x8d\xdc\xfd\x6f\x8c\x5b\x9a\xec\xff\x93\xff\xfe\xff\xd5" "\xfa\x7f\xfd\xbf\xfe\x3f\xae\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x97\xe9" "\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x6f\x8a" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x9b\xe3\x16\xfb\x1f\x00\x00" "\x00\xa6\x91\xbb\xff\x2d\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xd6" "\xb8\xa5\xc9\xfe\x3f\xf9\xfe\xdf\xf7\xff\xf5\xff\xe7\xd8\xff\xef\xeb\xff" "\x93\xfe\x3f\xfe\xb9\xea\xff\xf5\xff\xe7\x60\xab\xfd\xff\xbe\xfe\xff\x80" "\xfe\x5f\xff\xbf\xe5\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\x7f\xe3" "\xc1\xd4\xeb\xb7\xff\x01\x00\x00\xa0\x83\x1b\x0f\xfe\xf3\xf4\xde\xdb\xe2" "\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xed\x71\x8b\xfd\x0f\x00\x00\x00" "\xd3\xc8\xdd\xff\x8e\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\x2f\x79\xff\xef\xfb" "\xff\x45\xff\x1f\xff\x5c\xf5\xff\xfa\xff\x73\xb0\xd5\xfe\xdf\xf7\xff\x0f" "\xe9\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xef" "\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xbb\xe2\x16\xfb\x1f\x00" "\x00\x00\xa6\x11\xbb\xff\xf0\xbf\xfc\x6e\xff\x03\x00\x00\xc0\x94\xde\x7d" "\xf0\x9f\xa7\xf7\xde\x13\xb7\x34\xd9\xff\x8d\xfb\xff\xab\x2f\xb4\xff\xbf" "\xf2\x7f\xfe\x58\xff\x7f\xf4\xfb\xf5\xff\x27\xd2\xff\xdf\x78\xe6\xbf\x7b" "\xfa\x7f\xfd\xff\x96\xe8\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x7f\x9c" "\xfe\x3f\x7e\x70\x8d\xfe\x9f\xf1\x8c\xd6\xff\xe7\xee\x7f\x6f\xdc\xd2\x64" "\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x17\xb7\xd8\xff\x00\x00\x00\x30\x8d" "\xdc\xfd\x37\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xfb\xe3\x96\x26" "\xfb\xbf\x71\xff\x3f\xc9\xf7\xff\xef\x73\x6b\xbc\x40\xff\x3f\x6f\xff\xef" "\xfb\xff\x71\xf5\xff\xfa\xff\xa3\xe8\xff\x27\xe8\xff\x6f\xff\x7f\xbf\xf4" "\xff\xf5\xeb\xeb\xff\xb7\xf3\xfe\x71\xfa\x7f\xdf\xff\x67\x5c\xa3\xf5\xff" "\xb9\xfb\x3f\x10\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x0f\xc6\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x87\xe2\x16\xfb\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\xc3\x71\x4b\x93\xfd\xaf\xff\xdf\x7a\xff\xef\xfb\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\x6c\xfa\x7f\xfd\xff\x12\xdf\xff\xd7\xff\x6f\xf9\xfd\xfa" "\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\x7f\x24\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\x1f\x8d\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x8f\xc5" "\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xc7\xe3\x96\x26\xfb\x5f\xff\xaf" "\xff\xdf\x55\xff\x7f\xfb\x2f\xa2\xff\x6f\xd2\xff\x5f\x7b\x45\xfe\xf5\xfa" "\x7f\xfd\xff\x5d\xe8\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf" "\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x4f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x93\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xa9\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x74\xdc\x70\x8f\xbb\x5d\xba\x27\x9d" "\xac\x53\x67\xf9\x79\xe4\xba\xfa\x7f\xfd\xbf\xef\xff\xeb\xff\x7d\xff\x5f" "\xff\xbf\x4b\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff" "\x59\x37\x5a\xff\x9f\xbb\xff\x33\x71\x8b\xdf\xff\x07\x00\x00\x80\x69\xe4" "\xee\xff\x6c\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x2e\x6e\xb1\xff" "\x01\x00\x00\x60\x1a\xb9\xfb\x3f\x1f\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xb3\xfd\xff\x95\xfa\xff\x3b\xbf\x5f\xff\x3f\x26\xfd\xbf\xfe\x7f\x89" "\xfe\x5f\xff\xbf\xe5\xf7\x1f\xbb\xff\xbf\xf9\xe8\xff\x7d\xfd\x3f\x1d\x8c" "\xd6\xff\xe7\xee\xff\x42\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf" "\x18\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x5f\x8a\x5b\xec\x7f\x00\x00" "\x00\x98\x46\xee\xfe\x2f\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xdf\x6c" "\xff\xef\xfb\xff\x67\xbc\x5f\xff\x3f\x26\xfd\xbf\xfe\xff\xd0\x2d\x47\xfe" "\x54\xff\xaf\xff\xdf\xf2\xfb\x7d\xff\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd" "\x5f\x89\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x57\xe3\x16\xfb\x1f" "\x00\x00\x00\xa6\x91\xbb\xff\x6b\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd" "\xff\xf5\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\x97\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff\xb3\x6e" "\xb4\xfe\x3f\x77\xff\x37\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xcd\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x56\xdc\x62\xff\x03\x00" "\x00\xc0\x34\x72\xf7\x7f\x3b\x6e\x69\xb2\xff\x67\xee\xff\x97\xfe\x32\xfd" "\xff\x21\xfd\xbf\xfe\x7f\x4f\xff\xaf\xff\xdf\x31\xfd\xbf\xfe\x7f\x89\xfe" "\x5f\xff\xbf\xe5\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\x9d\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x37\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\x6f\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xef\xc5" "\x2d\x4d\xf6\xff\xcc\xfd\xff\x12\xfd\xff\x21\xfd\xbf\xfe\x7f\x4f\xff\xaf" "\xff\xdf\x31\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7\xeb\xff\xf5\xff" "\xac\xbb\x44\xfd\xff\xa9\xbd\xb3\xf4\xff\xb9\xfb\xbf\x1f\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x1f\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\x0f\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x47\x71\xcb\x3c\xfb" "\xff\xbe\x37\x2d\xfc\x49\xfd\xff\x89\xf7\xff\x07\xff\x12\xe9\xff\xf5\xff" "\x7b\xfa\x7f\xfd\xbf\xfe\xff\x80\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2" "\xfb\xf5\xff\xfa\x7f\xd6\x8d\xf6\xfd\xff\xdc\xfd\x3f\x8e\x5b\xe6\xd9\xff" "\x00\x00\x00\xd0\xc0\xfe\xe2\x9f\xcd\xdd\xff\x93\xb8\xc5\xfe\x07\x00\x00" "\x80\x69\xe4\xee\xff\x69\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x2c" "\x6e\x69\xb2\xff\xf5\xff\xbe\xff\xaf\xff\x6f\xd5\xff\x5f\xbe\xa7\xff\xd7" "\xff\x5f\x64\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff" "\x59\x37\x5a\xff\x9f\xbb\xff\xe7\x71\x4b\x0e\xbf\xab\xce\xe7\xef\x12\x00" "\x00\x00\x18\x49\xee\xfe\x5f\xc4\x2d\x4d\x7e\xff\x1f\x00\x00\x00\x3a\xc8" "\xdd\xff\xcb\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x55\xdc\xd2\x64" "\xff\xeb\xff\xf5\xff\xfa\xff\x56\xfd\xbf\xef\xff\xeb\xff\x2f\x3a\xfd\xbf" "\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7\x67\xff\x9f\xff\xde\xe9\xff\xf5\xff" "\xdc\xd5\x68\xfd\x7f\xee\xfe\x5f\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90" "\xbb\xff\x96\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x4d\xdc\x62\xff" "\x03\x00\x00\xc0\x34\x72\xf7\xff\x36\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xdf\x25\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5" "\xf7\xfb\xfe\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x6f\x8d\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\xef\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb" "\xff\xf7\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\x7f\x5b\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\x53\xf6\xff\x57\xe8\xff\xf5\xff\xfa\xff\x51\xe8\xff\xf5" "\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee" "\xfe\x3f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x8f\x71\x8b\xfd" "\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xa7\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4" "\xee\xff\x73\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xe7\xde\xff\x9f\xaa\xbf\xef" "\x61\xfb\x7f\xdf\xff\xd7\xff\xeb\xff\x87\x31\x6f\xff\xff\xff\xfa\xff\xa3" "\xfa\xff\xd3\xe7\xf6\xfe\x13\xe8\xff\x0f\x7e\xc5\xad\xf6\xff\xd7\xdf\x70" "\xf8\x63\xfd\xff\x36\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x5f" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd7\xb8\xc5\xfe\x07\x00" "\x00\x80\x69\xe4\xee\xff\x5b\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff" "\x3d\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x29\xbf\xff\xaf\xff\xd7\xff\xeb\xff" "\x87\x31\x6f\xff\xef\xfb\xff\xbe\xff\xef\xfb\xff\xfa\x7f\xfd\xbf\xfe\x9f" "\x35\xa3\xf5\xff\xb9\xfb\xff\x11\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\x7f\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xbf\xe2\x16\xfb\x1f" "\x00\x00\x00\xa6\x91\xbb\xff\xdf\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\x2e\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf" "\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\xff\x06\x00\x00\xff\xff\xfe" "\xe0\x2e\x85", 24483)); NONFAILING(syz_mount_image( /*fs=*/0x200000000040, /*dir=*/0x200000000380, /*flags=MS_POSIXACL|MS_REC|MS_SILENT|MS_NOSUID|MS_NODIRATIME*/ 0x1c802, /*opts=*/0x200000002740, /*chdir=*/3, /*size=*/0x5fa3, /*img=*/0x200000007fc0)); // rename arguments: [ // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 32 00} (length 0x8) // } // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 30 00} (length 0xe) // } // ] NONFAILING(memcpy((void*)0x200000000000, "./file2\000", 8)); NONFAILING(memcpy((void*)0x2000000005c0, "./file0/file0\000", 14)); syscall(__NR_rename, /*old=*/0x200000000000ul, /*new=*/0x2000000005c0ul); // syz_mount_image$fuse arguments: [ // fs: nil // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 32 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: nil // chdir: int8 = 0x0 (1 bytes) // size: const = 0x0 (8 bytes) // img: nil // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000001040, "./file2\000", 8)); NONFAILING(syz_mount_image(/*fs=*/0, /*dir=*/0x200000001040, /*flags=*/0, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0)); // creat arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 00} (length 0xfb) // } // mode: open_mode = 0x24 (8 bytes) // ] // returns fd NONFAILING( memcpy((void*)0x200000000300, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 251)); syscall(__NR_creat, /*file=*/0x200000000300ul, /*mode=S_IROTH|S_IRGRP*/ 0x24ul); // creat arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 00} (length 0xfd) // } // mode: open_mode = 0x40 (8 bytes) // ] // returns fd NONFAILING( memcpy((void*)0x200000000580, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 253)); syscall(__NR_creat, /*file=*/0x200000000580ul, /*mode=S_IXUSR*/ 0x40ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }