// https://syzkaller.appspot.com/bug?id=bc5db15be2ab04e98ebf08c4ba4a3a95ba1769c8 // 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 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: {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 00} (length 0xfc) // } // flags: mount_flags = 0x82 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x13 (1 bytes) // size: len = 0x63a7 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x63a7) // } // ] // returns fd_dir memcpy((void*)0x200000000600, "jfs\000", 4); memcpy((void*)0x200000000500, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 252); memcpy( (void*)0x20000000d380, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x4a\xdb\xa8" "\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01\x0e\x5c" "\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11\x57\xbe\x70" "\xe0\x8f\x00\x21\x71\x41\x42\x88\x23\x27\xc4\xb9\x07\xae\xdc\xf8\x03\x88" "\x94\x20\x81\x2a\x0e\x1d\xb4\xde\xe7\xb1\x67\x37\x6b\xaf\x9d\x64\x67\xd6" "\x9e\xcf\x47\x72\x66\x7e\xf3\xcc\x7a\x9e\xf1\x77\x5f\x33\x33\xfb\x04\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\xdf\xff\xde\x0f\xcf" "\x15\x11\x71\xe5\x17\x69\xc1\x89\x88\xcf\x44\x37\xa2\x13\xb1\x32\xac\xd7" "\x22\x62\x65\xed\x44\x5e\xbf\x17\x11\x2f\xc4\x76\x73\x3c\x1f\x11\xfd\xa5" "\x88\x22\x37\x3e\x1b\xf1\x7a\x44\x7c\xfc\x4c\xc4\xfd\x07\x77\xd6\x87\x8b" "\xce\x1f\xb0\x1f\xdf\xfd\xd3\x3f\x7e\xf7\xa3\xa7\x7e\xf0\xf7\x3f\xf6\xcf" "\xfc\xf7\xcf\xb7\xba\x6f\xec\xb5\x5e\x2f\x7e\xfd\x9f\xbf\xdc\x7d\xf4\xfd" "\x05\x00\x00\x80\x36\x2a\xcb\xb2\x2c\xd2\xc7\xfc\x93\xe9\xf3\x7d\xa7\xe9" "\x4e\x01\x00\xb5\xc8\xaf\xff\x65\x92\x97\xab\x9f\x40\xbd\xb2\xfb\x77\x7e" "\x02\xbf\x6f\xf3\x90\xeb\xff\xaf\xf1\xfd\x57\xab\xd5\x6a\xf5\xc2\xd5\x55" "\xe5\x74\x77\xab\x45\x44\x6c\x56\x6f\x33\x7c\xcf\xe0\x70\x3c\x00\x1c\x31" "\x9b\xf1\x49\xd3\x5d\xa0\x41\xf2\x6f\xb5\x5e\x44\x3c\xd5\x74\x27\x80\x85" "\x56\x34\xdd\x01\xe6\xe2\xfe\x83\x3b\xeb\x45\xca\xb7\xa8\xbe\x1e\xac\x8d" "\xda\xf3\xb9\x20\x63\xf9\x6f\x16\x3b\xd7\x77\xec\x35\x9d\x65\xf2\x1c\x93" "\xba\xee\x5f\x5b\xd1\x8d\xe7\xf6\xe8\xcf\x4a\x4d\x7d\x58\x24\x39\xff\xce" "\x64\xfe\x57\x46\xed\x83\xb4\xde\xbc\xf3\xaf\xcb\x5e\xf9\x0f\x46\x97\x3e" "\xb5\x4e\xce\xbf\x3b\x99\xff\x84\xe3\x93\x7f\x67\x6a\xfe\x6d\x95\xf3\xef" "\x1d\x2a\xff\xae\xfc\x01\x00\x00\x00\x00\x60\x81\xe5\xff\xff\x3f\xd1\xf0" "\xf1\xdf\xa5\xc7\xdf\x95\x03\xd9\xef\xf8\xef\x5a\x4d\x7d\x00\x00\x00\x00" "\x00\x00\x00\x80\x27\xed\x71\xc7\xff\xdb\x51\xd4\x33\xfe\xdf\xed\xdb\xc6" "\xff\x03\x00\x00\x80\xc3\x1a\x7e\x56\x1f\xfa\xcd\x33\xbb\xcb\xaa\xe7\xfa" "\x0f\x62\x7c\xf9\xe5\x22\xe2\xe9\x89\xf5\x81\xe3\xe5\x6f\xb3\x2e\xc8\x49" "\x17\xcb\xac\xd6\xd1\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xa4" "\x37\x3a\x87\xf7\x72\x11\xd1\x8f\x88\xa7\x57\x57\xcb\xb2\x1c\xfe\x54\x4d" "\xd6\x87\xf5\xb8\xb7\x3f\xea\xda\xbe\xff\xd0\x66\x4d\x3f\xc9\x03\x00\xc0" "\xc8\xc7\xcf\x4c\x5c\xcb\x5f\x44\x2c\x47\xc4\xe5\xf4\x5d\x7f\xfd\xd5\xd5" "\xd5\xb2\x5c\x5e\x59\x2d\x57\xcb\x95\xa5\xfc\x7e\x76\xb0\xb4\x5c\xae\x54" "\x3e\xd7\xe6\xe9\x70\xd9\xd2\xe0\x00\x6f\x88\x7b\x83\x72\xf8\xcb\x96\x2b" "\xb7\xab\x9a\xf5\x79\x79\x56\xfb\xe4\xef\x1b\x6e\x6b\x50\x76\x0f\xd0\xb1" "\x7a\x34\x18\x38\x00\x44\xc4\xe8\xd5\xe8\xbe\x57\xa4\x63\xa6\x2c\x9f\x8d" "\xa6\xdf\xe5\x70\x34\x78\xfc\x1f\x3f\x1e\xff\x1c\x44\xd3\xf7\x53\x00\x00" "\x00\x60\xfe\xca\xb2\x2c\x8b\xf4\x75\xde\x27\xd3\x31\xff\x4e\xd3\x9d\x02" "\x00\x6a\x91\x5f\xff\x27\x8f\x0b\x2c\x50\x3d\x58\xb0\xfe\xa8\xd5\x6a\xb5" "\x5a\x3d\x9f\x7a\x79\x77\xc1\xbc\xb6\x57\x55\x4e\x77\xb7\x5a\x44\xc4\x66" "\xf5\x36\xc3\xf7\x0c\x86\xe3\x07\x80\x23\x66\x33\x3e\x69\xba\x0b\x34\x48" "\xfe\xad\xd6\x8b\x88\x17\x9a\xee\x04\xb0\xd0\x8a\xa6\x3b\xc0\x5c\xdc\x7f" "\x70\x67\xbd\x48\xf9\x16\xd5\xd7\x83\x34\xbe\x7b\x3e\x17\x64\x2c\xff\xcd" "\x62\xfb\x76\xf9\xf6\xd3\xa6\xb3\x4c\x9e\x63\x52\xd7\xfd\x6b\x2b\xba\xf1" "\xdc\x1e\xfd\x79\xbe\xa6\x3e\x2c\x92\x9c\x7f\x67\x32\xff\x2b\xa3\xf6\x41" "\x5a\x6f\xde\xf9\xd7\x65\xaf\xfc\x87\xfb\x79\xa2\x81\xfe\x34\x2d\xe7\xdf" "\x9d\xcc\x7f\xc2\xf1\xc9\xbf\x33\x35\xff\xb6\xca\xf9\xf7\x0e\x95\x7f\x57" "\xfe\x00\x00\x00\x00\x00\xb0\xc0\xf2\xff\xff\x9f\x58\xa8\xe3\xbf\x83\x47" "\xdd\x9d\x99\xf6\x3b\xfe\xbb\x36\xb7\xad\x02\x00\x00\x00\x00\x00\x00\xc0" "\x7c\x2d\x3f\xb8\xb3\x9e\xaf\x7b\xcd\xc7\xff\x3f\x37\x65\x3d\xd7\x7f\x1e" "\x4f\xf7\x53\xfe\x45\xed\xf9\x17\x8d\x7c\xa5\x84\xfc\xc7\xe5\xfc\x3b\x13" "\xf9\x7f\x79\x62\xbd\x6e\x65\xfe\xde\xdb\xbb\xf9\xff\xfb\xc1\x9d\xf5\xdf" "\xdf\xfa\xd7\x67\xf3\xf4\xa0\xf9\x2f\xe5\x99\x7c\x37\x28\xd2\x33\x42\x91" "\xb6\x54\xf4\xd2\xf4\x71\xf6\xee\x61\x5b\xfd\xee\x60\xb8\xa5\x7e\xd1\xe9" "\xf6\xd2\x39\x3f\x65\xff\xdd\xb8\x16\xd7\x63\x23\xce\x8e\xad\xdb\x49\x7f" "\x8f\xdd\xf6\x73\x63\xed\xc3\x9e\xf6\xb7\xdb\xcb\xee\xa8\xfd\xfc\x58\x7b" "\x6f\xa7\x3d\xdf\xfe\xc2\x58\x7b\x3f\x9d\xe9\x54\xae\xe4\xf6\xd3\xb1\x1e" "\x3f\x8d\xeb\xf1\xce\x76\xfb\xb0\x6d\x69\xc6\xfe\x2f\xcf\x68\x2f\xf7\x6f" "\x1f\xe4\xfc\xbb\x9e\xff\x5b\x29\xe7\xdf\xab\xfc\x0c\xf3\x5f\x4d\xed\xc5" "\xc4\x74\xe8\xde\x47\x9d\x87\x1e\xf7\xd5\xe9\xb4\xed\xbc\x75\xed\xf3\xbf" "\x3a\x3b\xff\xdd\x99\x69\x2b\xba\x3b\xfb\x56\x35\xdc\xbf\x97\x1a\xe8\xcf" "\xf6\xdf\xe4\xa9\x41\xfc\xfc\xe6\xc6\x8d\xd3\xb7\xaf\xde\xba\x75\xe3\x5c" "\xa4\xc9\xd8\xd2\xf3\x91\x26\x4f\x58\xce\xbf\x9f\x7e\x76\x9e\xff\x5f\x1e" "\xb5\xe7\xe7\xfd\xea\xe3\xf5\xde\x47\x83\x43\xe7\xbf\x28\xb6\xa2\xb7\x67" "\xfe\x2f\x57\xe6\x87\xfb\xfb\x4a\xcd\x7d\x6b\x42\xce\x7f\x90\x7e\x72\xfe" "\xef\xa4\xf6\xe9\x8f\xff\x43\xe4\xdf\xf9\x43\x6d\xfb\xf2\x90\x95\x87\x17" "\xed\xf7\xf8\x7f\xb5\x8e\x3e\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xc0\x21\x94\x65\xb9\x7d\x89\xe8\x5b\x11\x71\x31\x5d\xff\xd3\xd4\xb5" "\x99\x00\x40\xbd\xf2\xeb\x7f\x99\xe4\xe5\x75\xd5\xdd\x9a\xb7\xa7\x56\x1f" "\xf1\xba\x58\xb0\xfe\xd4\x5a\x7f\x5a\x2e\x56\x7f\xd4\xea\xa3\x58\x57\x95" "\xd3\xbd\x59\x2d\x22\xe2\xaf\xd5\xdb\x0c\xdf\x33\xfc\x72\xda\x2f\x03\x00" "\x16\xd9\xa7\x11\xf1\xcf\xa6\x3b\x41\x63\xe4\xdf\x62\xf9\xfb\xfe\x86\xd3" "\x53\x4d\x77\x06\xa8\xd5\xcd\x0f\x3e\xfc\xf1\xd5\xeb\xd7\x37\x6e\xdc\x6c" "\xba\x27\x00\x00\x00\x00\x00\x00\x00\xc0\xa3\xca\xe3\x7f\xae\x55\xc6\x7f" "\x3e\x55\x96\xe5\xdd\x89\xf5\xc6\xc6\x7f\x7d\x3b\xd6\x1e\x77\xfc\xd7\x5e" "\x9e\xd9\x19\x60\x74\x8f\x81\xaa\xbb\x87\xdf\xa7\xfd\x6c\x75\x06\xdd\x4e" "\x65\xb8\xf1\x17\x63\xaf\xf1\xbf\xfb\x3b\x73\xfb\x8d\xff\xdd\x9b\xb1\xbd" "\xfe\x8c\xf6\xc1\x8c\xf6\xa5\x19\xed\xcb\x33\xda\xa7\x5e\xe8\x51\x91\xf3" "\x7f\xb1\x32\xde\xf9\xa9\x88\x38\x39\x31\xfc\xfa\x23\x8f\xff\xba\x60\xf6" "\x1b\xff\x75\x72\xcc\xfb\x36\xc8\xf9\xbf\x54\xb9\x3f\x0f\xf3\xff\xd2\xc4" "\x7a\xd5\xfc\xcb\xdf\x1e\xe5\xfc\x3b\x63\xf9\x9f\xb9\xf5\xfe\xcf\xce\xdc" "\xfc\xe0\xc3\xd7\xae\xbd\x7f\xf5\xbd\x8d\xf7\x36\x7e\x72\xe1\xdc\xb9\xb3" "\x17\x2e\x5e\xbc\x74\xe9\xd2\x99\x77\xaf\x5d\xdf\x38\x3b\xfa\xb7\xc1\x1e" "\xcf\x57\xce\x3f\x8f\x7d\xed\x3c\xd0\x76\xc9\xf9\xe7\xcc\xe5\xdf\x2e\x39" "\xff\x2f\xa4\x5a\xfe\xed\x92\xf3\xff\x62\xaa\xe5\xdf\x2e\x39\xff\xfc\x7e" "\x4f\xfe\xed\x92\xf3\xcf\x9f\x7d\xe4\xdf\x2e\x39\xff\x57\x52\x2d\xff\x76" "\xc9\xf9\x7f\x25\xd5\xf2\x6f\x97\x9c\xff\xab\xa9\x96\x7f\xbb\xe4\xfc\xbf" "\x9a\x6a\xf9\xb7\x4b\xce\xff\xb5\x54\xcb\xbf\x5d\x72\xfe\xa7\x53\x2d\xff" "\x76\xc9\xf9\x9f\x49\xf5\x01\xf3\x5f\x99\x77\xbf\xa8\x47\xce\x3f\x1f\xe1" "\xf2\xf8\x6f\x97\x9c\x7f\x3e\xb3\x41\xfe\xed\x92\xf3\x3f\x9f\x6a\xf9\xb7" "\x4b\xce\xff\x42\xaa\xe5\xdf\x2e\x39\xff\xd7\x53\x2d\xff\x76\xc9\xf9\x7f" "\x2d\xd5\xf2\x6f\x97\x9c\xff\xc5\x54\xcb\xbf\x5d\x72\xfe\x5f\x4f\xb5\xfc" "\xdb\x25\xe7\x7f\x29\xd5\xf2\x6f\x97\x9c\xff\x37\x52\x2d\xff\x76\xc9\xf9" "\x7f\x33\xd5\xf2\x6f\x97\x9c\xff\x1b\xa9\x96\x7f\xbb\xe4\xfc\xbf\x95\x6a" "\xf9\xb7\x4b\xce\xff\xdb\xa9\x96\x7f\xbb\xe4\xfc\xbf\x93\x6a\xf9\xb7\x4b" "\xce\xff\xcd\x54\xcb\xbf\x5d\x76\xbf\xff\xdf\x8c\x19\x33\x66\xf2\x4c\xd3" "\xcf\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xa4\x3a\x4e\x27\x6e" "\x7a\x1f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf8\x3f\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\x81\x03\x01\x00" "\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2" "\xde\xdd\xc5\xc8\x75\xd6\xf7\x03\x3f\xb3\x6f\x5e\x3b\x21\x31\x10\xf2\x77" "\xf2\x37\x61\xe3\x98\x10\x92\x4d\x76\x6d\x27\x7e\xa1\x75\x31\xe1\xb5\xe1" "\xad\x24\x84\x02\x6d\xb1\x5d\xef\xda\x2c\xf5\x1b\x5e\xbb\x04\x1a\xd5\x8e" "\x02\x25\x12\x46\x45\x15\x6d\xc3\x45\x5b\x40\xa8\xcd\x4d\x85\x55\x51\x89" "\x56\x80\x72\x81\x5a\x55\xaa\x04\xed\x05\xbd\x41\x54\xa8\x5c\x44\x55\x40" "\x01\xa9\x52\x5b\x41\xb6\x9a\x39\xcf\xf3\xec\xcc\xec\xec\xcc\xae\x77\xbc" "\x7b\xe6\x9c\xcf\x47\xb2\x7f\xde\x99\x33\x73\x9e\x73\xe6\x39\x67\xf6\xb7" "\xeb\xef\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xa0\xd9\xed\x6f\x9c\xfd\x74\x2d\xcb\xb2\x5a\xad\x96\xdf\xb0" "\x35\xcb\xae\xaf\xd7\xcd\x13\x5b\x1b\xb7\xbc\x6e\x63\xc7\x07\x00\x00\x00" "\xac\xdd\x2f\x1a\x7f\xbf\x70\x63\xba\xe1\xd0\x0a\x1e\xd4\xb4\xcc\x3f\xde" "\xf6\x9d\xaf\x2d\x2c\x2c\x2c\x64\xef\x1f\xfe\xe3\xd1\xcf\x2f\x2c\xc4\xdb" "\x7f\xb0\x39\xcb\x46\x37\x65\x59\xe3\xbe\xe8\xca\x0f\x3f\x50\x6b\x5a\x26" "\x7a\x32\x1b\xaf\x0d\x35\x7d\x3d\xd4\x63\xf5\xc3\x3d\xee\x1f\xe9\x71\xff" "\x68\x8f\xfb\xc7\x7a\xdc\xbf\xa9\xc7\xfd\xe3\x3d\xee\x5f\xb2\x03\x96\xd8" "\x9c\xd5\xd2\x93\xed\x6c\xfc\x73\x6b\x96\x65\x13\x59\x96\xdd\x94\x8d\x36" "\xee\xdb\xd9\xe1\x51\x4f\xd6\x36\x0d\xd5\xf7\x5d\x7a\x6c\x56\x6b\x3c\x66" "\x61\xf4\x78\x36\x97\x9d\xcc\x66\xb3\xe9\x96\xe5\xf3\x65\x6b\x8d\xe5\xbf" "\x71\x7b\x7d\x5d\x6f\xcb\xe2\xba\x86\x9a\xd6\xb5\xbd\x3e\x43\x7e\xfa\xf8" "\xb1\x38\x86\x5a\xd8\xc7\x3b\x5b\xd6\xb5\xf8\x9c\xd1\x8f\xdf\x90\x4d\xfc" "\xec\xa7\x8f\x1f\xfb\xcb\xf3\xcf\xdf\xd2\xa9\xf6\xdc\x0d\x2d\xcf\x97\x8f" "\xf3\xae\x1d\xf5\x71\x7e\x32\xdc\x92\x8f\xb5\x96\x6d\x4a\xfb\x24\x8e\x73" "\xa8\x69\x9c\xdb\x3b\xbc\x26\xc3\x2d\xe3\xac\x35\x1e\x57\xff\x77\xfb\x38" "\x5f\x58\xe1\x38\x87\x17\x87\xb9\xae\xda\x5f\xf3\xf1\x6c\xa8\xf1\xef\xef" "\x36\xf6\xd3\x48\x2d\xeb\xb0\x9f\xb6\x87\xdb\xfe\xfb\x8e\x2c\xcb\x2e\x2d" "\x0e\xbb\x7d\x99\x25\xeb\xca\x86\xb2\x2d\x2d\xb7\x0c\x2d\xbe\x3e\xe3\xf9" "\x8c\xac\x3f\x47\x7d\x2a\xbd\x2c\x1b\xe9\x3e\x4f\x17\x6a\x2d\xf3\xf4\xf6" "\x15\xcc\xd3\x7a\x9d\xd9\xd9\x3a\x4f\xdb\x8f\x89\xf8\xfa\xdf\x1e\x1e\x37" "\xb2\xcc\x18\x9a\x5f\xa6\x1f\x3f\x31\xd6\xf4\xba\xff\x7c\xe1\x6a\xe6\x69" "\x54\xdf\xea\xe5\x8e\x95\xf6\x39\xd8\xef\x63\xa5\x28\x73\x30\xce\x8b\xef" "\x36\x36\xfa\xa9\x8e\x73\x70\x67\xd8\xfe\xc7\xef\x5c\x7e\x0e\x76\x9c\x3b" "\x1d\xe6\x60\xda\xee\xa6\x39\xb8\xa3\xd7\x1c\x1c\x1a\x1b\x6e\x8c\x39\xbd" "\x08\xb5\xc6\x63\x16\xe7\xe0\xae\x96\xe5\x87\x1b\x6b\xaa\x35\xea\x73\x77" "\x76\x9f\x83\x53\xe7\x4f\x9d\x9d\x9a\xff\xf8\x27\xee\x9d\x3b\x75\xf4\xc4" "\xec\x89\xd9\xd3\x7b\x76\xed\x9a\xde\xb3\x77\xef\xfe\xfd\xfb\xa7\x8e\xcf" "\x9d\x9c\x9d\xce\xff\xbe\xca\xbd\x5d\x7c\x5b\xb2\xa1\x74\x0c\xec\x08\xfb" "\x2e\x1e\x03\xaf\x69\x5b\xb6\x79\xaa\x2e\x7c\x69\x6c\xc9\xf9\xf7\x6a\x8f" "\xc3\xf1\x2e\xc7\xe1\xd6\xb6\x65\xfb\x7d\x1c\x8e\xb4\x6f\x5c\x6d\x7d\x0e" "\xc8\xa5\x73\x3a\x3f\x36\xde\x5b\xdf\xe9\xe3\x97\x87\xb2\x65\x8e\xb1\xc6" "\xeb\x73\xf7\xda\x8f\xc3\xb4\xdd\x4d\xc7\xe1\x48\xd3\x71\xd8\xf1\x3d\xa5" "\xc3\x71\x38\xb2\x82\xe3\xb0\xbe\xcc\xd9\xbb\x57\xf6\x3d\xcb\x48\xd3\x9f" "\x4e\x63\x58\xfe\xbd\x60\x6d\x73\x70\x6b\xd3\x1c\x6c\xff\x7e\xa4\x7d\x0e" "\xf6\xfb\xfb\x91\xa2\xcc\xc1\xf1\x30\x2f\xbe\x7f\xf7\xf2\xef\x05\xdb\xc3" "\x78\x9f\x9a\x5c\xed\xf7\x23\xc3\x4b\xe6\x60\xda\xdc\x70\xee\xa9\xdf\x92" "\x7f\xbf\x7f\xe2\xfa\x6c\x7c\x7f\xe3\x5f\x9d\xe6\xe5\xad\xf5\x3b\xae\x1b" "\xcb\x2e\xcc\xcf\x9e\xbb\xef\xb1\xa3\xe7\xcf\x9f\xdb\x95\x85\xb2\x2e\x5e" "\xde\x34\x57\xda\xe7\xeb\x96\xa6\x6d\xca\x96\xcc\xd7\xa1\x55\xcf\xd7\x43" "\x73\xb7\x3d\x75\x6b\x87\xdb\xb7\x86\x7d\x35\x7e\x6f\xfd\xaf\xf1\x65\x5f" "\xab\xfa\x32\xf7\xdf\xd7\xfd\xb5\x6a\xbc\xbb\x75\xde\x9f\x2d\xb7\xee\xce" "\x42\xe9\xb3\xb0\x3f\x17\x36\xad\xd3\xfe\xec\xf4\x6e\x5e\xdf\x9f\x63\x59" "\xf6\x85\x6f\x3f\xf1\xf0\x37\x1f\xff\xc2\x1b\x97\xdd\x9f\xf5\x7e\xf3\x93" "\x53\x6b\xff\x5e\x3c\xf5\xa5\x4d\xe7\xdf\xd1\x65\xce\xbf\xb1\xef\x7f\x31" "\x5f\x5f\x7a\xaa\x27\x87\x47\x47\xf2\xe3\x77\x38\xed\x9d\xd1\x96\xf3\x71" "\xeb\x4b\x35\xd2\x38\x77\xd5\x1a\xeb\x7e\x61\x6a\x65\xe7\xe3\xd1\xf0\x67" "\xbd\xcf\xc7\x37\x75\x39\x1f\x6f\x6b\x5b\xb6\xdf\xe7\xe3\xd1\xf6\x8d\x8b" "\xe7\xe3\x5a\xaf\x9f\x76\xac\x4d\xfb\xeb\x39\x1e\xe6\xc9\xc9\xe9\xee\xe7" "\xe3\xfa\x32\xdb\x76\xaf\x76\x4e\x8e\x74\x3d\x1f\xdf\x11\x6a\x2d\xec\xff" "\xd7\x86\x4e\x21\xf5\x45\x4d\x73\x67\xb9\x79\x9b\xd6\x35\x32\x32\x1a\xb6" "\x6b\x24\xae\xa1\x75\x9e\xee\x69\x59\x7e\x34\xf4\x66\xf5\x75\x3d\xb3\xfb" "\xea\xe6\xe9\x5d\x77\xe4\xcf\x35\x9c\xb6\x6e\xd1\x7a\xcd\xd3\x89\xb6\x65" "\xfb\x3d\x4f\xd3\xcf\xbe\x96\x9b\xa7\xb5\x5e\x3f\x7d\xbb\x3a\xed\xaf\xe7" "\x78\x98\x17\x37\xed\xe9\x3e\x4f\xeb\xcb\x3c\x7b\xff\xda\xcf\x9d\x9b\xe3" "\x3f\x9b\xce\x9d\x63\xbd\xe6\xe0\xe8\xf0\x58\x7d\xcc\xa3\x69\x12\x36\xce" "\xf7\xd9\xc2\xe6\x38\x07\xef\xcb\x8e\x65\x67\xb2\x93\xd9\x4c\xe3\xde\xb1" "\xc6\x7c\xaa\x35\xd6\x35\xf9\xc0\xca\xe6\xe0\x58\xf8\xb3\xde\xe7\xca\x6d" "\x5d\xe6\xe0\x5d\x6d\xcb\xf6\x7b\x0e\xa6\xf7\xb1\xe5\xe6\x5e\x6d\x64\xe9" "\xc6\xf7\x41\xfb\xeb\x39\x1e\xe6\xc5\xd3\x0f\x74\x9f\x83\xf5\x65\xde\xb4" "\xaf\xbf\xdf\xbb\xde\x15\x6e\x49\xcb\x34\x7d\xef\xda\xfe\xf3\xb5\xe5\x7e" "\xe6\x75\x6b\xdb\x6e\xba\x56\x73\x65\x24\x8c\xf3\xdb\xfb\xba\xff\x6c\xb6" "\xbe\xcc\xc9\xfd\xab\xed\x33\xbb\xef\xa7\x7b\xc2\x2d\xd7\x75\xd8\x4f\xed" "\xc7\xef\x72\xc7\xd4\x4c\xb6\x3e\xfb\x69\x5b\x18\xe7\xf3\xfb\x97\xdf\x4f" "\xf5\xf1\xd4\x97\xf9\xfc\x81\x15\xce\xa7\x43\x59\x96\x5d\xfc\xe8\x83\x8d" "\x9f\xf7\x86\xdf\xaf\xfc\xcd\x85\xef\x7d\xad\xe5\xf7\x2e\x9d\x7e\xa7\x73" "\xf1\xa3\x0f\xfe\xe4\x25\xc7\xff\x61\x35\xe3\x07\x60\xf0\xbd\x98\x97\x2d" "\xf9\x7b\x5d\xd3\x6f\xa6\x56\xf2\xfb\x7f\x00\x00\x00\x60\x20\xc4\xbe\x7f" "\x28\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xf8\xbf\xc2\x13\xfd\x3f" "\x00\x00\x00\x94\x46\xec\xfb\x47\x42\x4d\x2a\xd2\xff\x6f\x7b\xd3\xf3\x73" "\x2f\x5e\xcc\x52\x32\x7f\x21\x88\xf7\xa7\xdd\xf0\x50\xbe\x5c\xcc\xb8\x4e" "\x87\xaf\x27\x16\x16\xd5\x6f\x7f\xf0\x2b\xb3\xff\xf5\xf7\x17\x57\xb6\xee" "\xa1\x2c\xcb\x7e\xfe\xd0\xef\x75\x5c\x7e\xdb\x43\x71\x5c\xb9\x89\x30\xce" "\x2b\x6f\x6e\xbd\x7d\x89\xaf\xdd\xbb\xa2\x75\x1f\x79\xf4\x62\x5a\x6f\x73" "\x7e\xfd\x8b\xe1\xf9\xe3\xf6\xac\x74\x1a\x74\x8a\xe0\x4e\x67\x59\xf6\x8d" "\x1b\x3f\xdb\x58\xcf\xc4\x07\x2e\x37\xea\xb3\x0f\x1d\x69\xd4\x87\x2f\x3d" "\xf5\x64\x7d\x99\x17\x0e\xe4\x5f\xc7\xc7\x3f\xf7\xf2\x7c\xf9\x3f\x0b\xe1" "\xdf\x43\xc7\x8f\xb6\x3c\xfe\xb9\xb0\x1f\x7e\x14\xea\xf4\xdb\x3b\xef\x8f" "\xf8\xb8\xaf\x5e\x7e\xed\xf6\x7d\xef\x5b\x5c\x5f\x7c\x5c\x6d\xc7\x0d\x8d" "\xcd\x7e\xfa\x43\xf9\xf3\xc6\xcf\xc9\xf9\xdc\x93\xf9\xf2\x71\x3f\x2f\x37" "\xfe\x6f\x7e\xe6\x99\xaf\xd6\x97\x7f\xec\xd5\x9d\xc7\x7f\x71\xa8\xf3\xf8" "\x9f\x09\xcf\xfb\x95\x50\xff\xe7\x95\xf9\xf2\xcd\xaf\x41\xfd\xeb\xf8\xb8" "\x4f\x85\xf1\xc7\xf5\xc5\xc7\xdd\xf7\xe5\x6f\x75\x1c\xff\x95\x4f\xe7\xcb" "\x9f\x7d\x4b\xbe\xdc\x91\x50\xe3\xfa\xef\x0a\x5f\xef\x7c\xcb\xf3\x73\xcd" "\xfb\xeb\xb1\xda\xd1\x96\xed\xca\xde\x9a\x2f\x17\xd7\x3f\xfd\xbd\x3f\x6c" "\xdc\x1f\x9f\x2f\x3e\x7f\xfb\xf8\xc7\x0f\x5f\x6e\xd9\x1f\xed\xf3\xe3\xd9" "\x7f\xcd\x9f\x67\xaa\x6d\xf9\x78\x7b\x5c\x4f\xf4\x77\x6d\xeb\xaf\x3f\x4f" "\xf3\xfc\x8c\xeb\x7f\xe6\x0f\x8e\xb4\xec\xe7\x5e\xeb\xbf\xf2\xf0\x73\xaf" "\xac\x3f\x6f\xfb\xfa\xef\x69\x5b\xee\xec\x47\xef\x6e\xac\x7f\xf1\xf9\x5a" "\x3f\xb1\xe9\xcf\x3f\xf5\xd9\x8e\xeb\x8b\xe3\x39\xf4\xd7\x67\x5b\xb6\xe7" "\xd0\x7b\xc2\x71\x1c\xd6\xff\xf4\x87\xc2\x7c\x0c\xf7\xff\xef\x95\xfc\xf9" "\xda\x3f\x5d\xe1\xc8\x7b\x5a\xcf\x3f\x71\xf9\x2f\x6e\xbd\xd8\xb2\x3d\xd1" "\xdb\x7e\x96\xaf\xff\xca\xeb\x4f\x34\xea\xa6\xf1\xcd\x5b\xae\xbb\xfe\x25" "\x37\x5c\x7a\x55\x7d\xdf\x65\xd9\x77\x37\xe5\xcf\xd7\x6b\xfd\x27\xfe\xe2" "\x4c\xcb\xf8\xbf\x74\x73\xbe\x3f\xe2\xfd\x31\xa3\xdf\xbe\xfe\xe5\xc4\xf5" "\x9f\xfb\xd8\xe4\xe9\x33\xf3\x17\xe6\x66\xd2\x5e\x7d\xfc\xc6\xc6\x67\xe7" "\xbc\x23\x1f\x4f\x1c\xef\x8d\xe1\xdc\xda\xfe\xf5\xe1\x33\xe7\x3f\x3c\x7b" "\x6e\x62\x7a\x62\x3a\xcb\x26\xca\xfb\x11\x7a\x57\xed\xcb\xa1\xfe\x24\x2f" "\x97\xba\x2f\xbd\xb0\xe4\x0c\x7a\xf7\xa3\xe1\xf5\xbc\xf5\x4f\xbf\xb1\xe5" "\xce\x7f\xf9\x4c\xbc\xfd\xdf\xde\x9b\xdf\x7e\xf9\xed\xf9\xfb\xd6\x6b\xc2" "\x72\x9f\x0b\xb7\x6f\x0d\xaf\xdf\xea\xd6\xbf\xd4\xd3\xb7\xdf\xdc\x38\xbe" "\x6b\xcf\x86\x11\x2e\x2c\xfd\xbc\xe0\xb5\xd8\xbe\xf3\x3f\xf7\xaf\x68\xc1" "\xb0\xfd\xed\xdf\x17\xc4\xf9\x7e\xf6\x15\x1f\x6e\xec\x87\xfa\x7d\x8d\xf7" "\x8d\x78\x5c\xaf\x71\xfc\x3f\x98\xc9\x9f\xe7\xeb\x61\xbf\x2e\x84\x4f\x66" "\xde\x71\xf3\xe2\xfa\x9a\x97\x8f\x9f\x8d\x70\xf9\x91\xfc\x78\x5f\xf3\xfe" "\x0b\xa7\xb9\xf8\xba\xfe\x55\x78\xbd\xdf\xf9\xa3\xfc\xf9\xe3\xb8\xe2\xf6" "\xfe\x20\x7c\x1f\xf3\xad\x6d\xad\xe7\xbb\x38\x3f\xbe\x7e\x71\xa8\xfd\xf9" "\x1b\x9f\xe2\x71\x29\x9c\x4f\xb2\x4b\xf9\xfd\x71\xa9\xb8\xbf\x2f\xbf\x70" "\x73\xc7\xe1\xc5\xcf\x21\xc9\x2e\xdd\xd2\xf8\xfa\x8f\xd2\xf3\xdc\xb2\xaa" "\xcd\x5c\xce\xfc\xc7\xe7\xa7\x4e\xce\x9d\xbe\xf0\xd8\xd4\xf9\xd9\xf9\xf3" "\x53\xf3\x1f\xff\xc4\xe1\x53\x67\x2e\x9c\x3e\x7f\xb8\xf1\x59\x9e\x87\x3f" "\xd2\xeb\xf1\x8b\xe7\xa7\x2d\x8d\xf3\xd3\xcc\xec\xde\xfb\xb3\xc6\xd9\xea" "\x4c\x5e\xae\xb1\x8d\x1e\xff\xd9\x47\x8f\xcd\xec\x9b\xbe\x73\x66\xf6\xf8" "\xd1\x0b\xc7\xcf\x3f\x7a\x76\xf6\xdc\x89\x63\xf3\xf3\xc7\x66\x67\xe6\xef" "\x3c\x7a\xfc\xf8\xec\xc7\x7a\x3d\x7e\x6e\xe6\xe0\xae\xdd\x07\xf6\xec\xdb" "\x3d\x79\x62\x6e\xe6\xe0\xfe\x03\x07\xf6\x1c\x98\x9c\x3b\x7d\xa6\x3e\x8c" "\x7c\x50\x3d\xec\x9d\xfe\x9d\xc9\xd3\xe7\x0e\x37\x1e\x32\x7f\xf0\xfe\x03" "\xbb\x1e\x78\xe0\xfe\xe9\xc9\x53\x67\x66\x66\x0f\xee\x9b\x9e\x9e\xbc\xd0" "\xeb\xf1\x8d\xf7\xa6\xc9\xfa\xa3\x7f\x77\xf2\xdc\xec\xc9\xa3\xe7\xe7\x4e" "\xcd\x4e\xce\xcf\x7d\x62\xf6\xe0\xae\x03\x7b\xf7\xee\xee\xf9\x69\x80\xa7" "\xce\x1e\x9f\x9f\x98\x3a\x77\xe1\xf4\xd4\x85\xf9\xd9\x73\x53\xf9\xb6\x4c" "\x9c\x6f\xdc\x5c\x7f\xef\xeb\xf5\x78\xca\x69\xfe\xdf\xf3\xef\x67\xdb\xd5" "\xf2\x0f\xe2\xcb\xde\x7d\xcf\xde\xf4\xf9\xac\x75\x5f\x79\x62\xd9\xa7\xca" "\x17\x69\xfb\x00\xd1\xe7\xc3\x67\xd1\xfc\xd3\x4b\xcf\xee\x5f\xc9\xd7\xb1" "\xef\x1f\x0d\x35\xa9\x48\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\xb1\x50\x13" "\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x37\x85\x9a\xe8\xff\x01\x00\x00\xa0" "\x34\x62\xdf\x3f\x1e\x6a\x52\x91\xfe\xbf\x74\xf9\xff\x6d\x17\x57\xb4\x7e" "\xf9\x7f\xf9\xff\xe6\xfd\x25\xff\x5f\xb1\xfc\xff\x23\x45\xcb\xff\xe7\xe7" "\x0b\xf9\xff\xfe\x58\x6b\xfe\x5e\xfe\x3f\x90\xff\x97\xff\x97\xff\x1f\x98" "\xfc\xff\x42\x78\x43\x92\xff\xa7\x88\x8a\x96\xff\x8f\x7d\xff\xe6\x2c\xab" "\x64\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x2d\xa1\x26\xfa\x7f\x00\x00\x00" "\x28\x8d\xd8\xf7\x5f\x17\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xf5" "\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\x3b\xaf\x5f" "\xfe\x7f\x30\xc9\xff\x77\x27\xff\xdf\x83\xfc\xff\x54\x56\xad\xfc\xff\xa5" "\x7e\x8e\xdf\xf5\xff\xe5\xff\x59\xaa\x68\xf9\xff\xd8\xf7\xbf\x24\xd4\xa4" "\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\x6f\x08\x35\xd1\xff\x03\x00\x00" "\x40\x69\xc4\xbe\xff\xc6\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xb7" "\x86\x9a\x54\xa4\xff\x97\xff\x97\xff\x97\xff\x97\xff\x97\xff\xef\xbc\x7e" "\xf9\xff\xc1\x24\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xae\xff\x2f\xff\x2f\xff" "\x4f\x5f\x15\x2d\xff\x1f\xfb\xfe\x97\x86\x9a\x54\xa4\xff\x07\x00\x00\x80" "\x2a\x88\x7d\xff\xcb\x42\x4d\xf4\xff\x00\x00\x00\x50\x3c\x23\x57\xf7\xb0" "\xd8\xf7\xbf\x3c\xd4\x64\x49\xff\x7f\x95\x2b\x00\x00\x00\x00\x36\x5c\xec" "\xfb\x6f\xca\xda\x82\xe0\x15\xf9\xfd\xbf\xfc\xbf\xfc\x7f\xf1\xf3\xff\x9b" "\xd2\x7d\xf2\xff\xf2\xff\x59\x21\xf3\xff\xc3\x99\xfc\x7f\x71\xc8\xff\x77" "\x27\xff\xdf\x83\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x7d\x55\xb4\xfc\x7f\xa3" "\xef\xcf\xc6\xb3\x57\x84\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff" "\xcd\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xff\xbf\x50\x13\xfd\x3f" "\x00\x00\x00\x94\x46\xec\xfb\xb7\x85\x9a\x54\xa4\xff\x97\xff\x97\xff\xdf" "\xe8\xfc\xff\x68\xdb\xd8\x5d\xff\x7f\xf1\x71\xf2\xff\xb9\xe2\xe7\xff\x5d" "\xff\xbf\x48\xe4\xff\xbb\x93\xff\xef\x41\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f" "\xbe\x2a\x5a\xfe\x3f\xf6\xfd\xb7\x84\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a" "\x88\x7d\xff\xad\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xff\xff\x50" "\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xb7\x87\x9a\x54\xa4\xff\x97\xff" "\x2f\x78\xfe\x3f\x26\x47\x4b\x9c\xff\xef\x7d\xfd\x7f\xf9\x7f\xf9\x7f\xf9" "\x7f\xf9\xff\x95\x93\xff\xef\x4e\xfe\xbf\x07\xf9\x7f\xf9\x7f\xf9\x7f\xf9" "\x7f\xfa\xaa\x68\xf9\xff\xd8\xf7\xbf\x32\xd4\xa4\x22\xfd\x3f\x00\x00\x00" "\x54\x41\xec\xfb\x6f\x0b\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\x55" "\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x4f\x84\x9a\x54\xa4\xff\x97" "\xff\x2f\x78\xfe\x3f\xcf\xc1\x8f\x95\xf9\xfa\xff\xf2\xff\xf2\xff\xf2\xff" "\xf2\xff\xfd\x24\xff\xdf\x9d\xfc\x7f\x0f\xe1\x34\xf7\xe3\x2c\xcb\xe4\xff" "\x07\x35\xff\x1f\xbf\x92\xff\x97\xff\xa7\x08\x8a\x96\xff\x8f\x7d\xff\xed" "\xa1\x26\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf\xbf\x23\xd4\x44\xff\x0f" "\x00\x00\x00\xa5\x11\xfb\xfe\x3b\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1" "\xef\xdf\x19\x6a\x52\x91\xfe\x5f\xfe\x7f\x20\xf2\xff\x99\xfc\xbf\xfc\xbf" "\xfc\xbf\xfc\xbf\xfc\xff\xca\xc8\xff\x77\x27\xff\xdf\x83\xeb\xff\x97\x20" "\xff\xef\xfa\xff\x4d\xf9\xff\xfa\xd4\x92\xff\x67\x43\x15\x2d\xff\x1f\xfb" "\xfe\x57\x87\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\x9d\xa1\x26" "\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xbf\x26\xd4\x44\xff\x0f\x00\x00\x00" "\xa5\x11\xfb\xfe\xbb\x42\x4d\x2a\xd2\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff" "\xcb\xff\x77\x5e\xbf\xfc\xff\x60\x92\xff\xef\x4e\xfe\xbf\x07\xf9\x7f\xf9" "\xff\x72\xe5\xff\x5d\xff\x9f\x0d\x57\xb4\xfc\x7f\xec\xfb\x5f\x1b\x6a\x52" "\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\x77\x87\x9a\xe8\xff\x01\x00\x00" "\xa0\x34\x62\xdf\x7f\x4f\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x93" "\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\x3b\xaf\x5f" "\xfe\x7f\x30\xc9\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f" "\x7d\x55\xb4\xfc\x7f\xec\xfb\xef\x0d\x35\xa9\x48\xff\x0f\x00\x00\x00\x55" "\x10\xfb\xfe\xfb\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x9f\x0a\x35" "\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x3a\xd4\xa4\x22\xfd\xbf\xfc\xbf" "\xfc\xbf\xfc\xbf\xfc\xff\xaa\xf2\xff\xaf\x5a\x7c\x5e\xf9\xff\x9c\xfc\x7f" "\xb1\xc8\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\xff\x86\xe7\xff\x47\xe5\xff" "\x29\x95\xa2\xe5\xff\x63\xdf\xbf\x2b\xd4\x24\x35\x7e\x63\x57\xb1\x95\x00" "\x00\x00\x40\x91\xc4\xbe\x7f\x77\xa8\x49\x45\x7e\xff\x0f\x00\x00\x00\x55" "\x10\xfb\xfe\x3d\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xdf\x1f\x6a" "\x52\x91\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xdf\xf5\xff\x3b\xaf\x5f\xfe" "\x7f\x30\xc9\xff\x77\xd7\xff\xfc\x7f\xdc\x44\xf9\x7f\xf9\x7f\xf9\x7f\xd7" "\xff\x97\xff\x67\xa9\xa2\xe5\xff\x63\xdf\xff\x40\xa8\x49\x45\xfa\x7f\x00" "\x00\x00\xa8\x82\xd8\xf7\xef\x0d\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe" "\x7f\x5f\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xfb\x43\x4d\x2a\xd2" "\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xc7\xdb\x47\xdb\x96\x93\xff\x97\xff" "\x1f\x44\xf2\xff\xdd\xb9\xfe\x7f\x0f\xc5\xcb\xff\xbf\xbe\xf9\xe1\xeb\x99" "\xff\xaf\xaf\x4b\xfe\x5f\xfe\x5f\xfe\x9f\xd5\x7b\xe4\xf7\x9b\xbf\x2a\x5a" "\xfe\x3f\xf6\xfd\x07\x42\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff" "\x75\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xff\x52\xa8\x49\xf7\xfe" "\x7f\xd3\xb5\x1d\x15\x00\x00\x00\xd0\x4f\xb1\xef\xff\xe5\x50\x93\x8a\xfc" "\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xdf\xf5\xff\x3b\xaf\x5f\xfe\x7f\x30" "\xc9\xff\x77\x27\xff\xdf\x43\xf1\xf2\xff\x2d\x5c\xff\xbf\xd8\xe3\x97\xff" "\x97\xff\x67\xa9\xa2\xe5\xff\x63\xdf\x7f\x30\xd4\xa4\x22\xfd\x3f\x00\x00" "\x00\x54\x41\xec\xfb\x7f\x25\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe" "\xd7\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\x7f\x28\xd4\xa0\x53\x9c" "\x7b\x50\xfc\xed\xd6\x55\x2c\x2c\xff\x2f\xff\xbf\xc2\xfc\x7f\x5c\xa4\x20" "\xf9\xff\x71\xf9\x7f\xf9\xff\xd2\xe5\xff\xc7\xe2\xf3\xca\xff\xaf\x89\xfc" "\x7f\x77\xf2\xff\x3d\xc8\xff\xcb\xff\xcb\xff\xcb\xff\xd3\x57\x45\xcb\xff" "\xc7\xbe\xff\x0d\xa1\x26\x7e\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x07\x43" "\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x63\xa8\x89\xfe\x1f\x00\x00" "\x00\x4a\x23\xf6\xfd\x6f\x0a\x35\xa9\x48\xff\x2f\xff\x2f\xff\xef\xfa\xff" "\xf2\xff\xf2\xff\x9d\xd7\xef\xfa\xff\x83\xa9\x63\xfe\x7e\x7c\xe5\x8f\x97" "\xff\x0f\xe4\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xe9\x83\xa2\xe5\xff\x63" "\xdf\xff\xe6\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\x7f\x4b\xa8" "\x89\xfe\x1f\x00\x00\x00\x06\xd2\x68\x87\xdb\x62\xdf\xff\xd6\x50\x13\xfd" "\x3f\x00\x00\x00\x94\x46\xec\xfb\xdf\x16\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe" "\x7f\x23\xf3\xff\xb9\x4b\xf2\xff\xf2\xff\x0d\xf2\xff\xf2\xff\xfd\xe0\xfa" "\xff\xdd\xc9\xff\xf7\x20\xff\x2f\xff\x2f\xff\x2f\xff\x4f\x5f\x15\x2d\xff" "\x1f\xfb\xfe\x5f\x0d\x35\xa9\x48\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x87" "\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x7b\xa8\x89\xfe\x1f\x00" "\x00\x00\x4a\x23\xf6\xfd\xef\x08\x35\xa9\x48\xff\x2f\xff\x2f\xff\xef\xfa" "\xff\x85\xc9\xff\xd7\x17\x93\xff\x97\xff\x97\xff\x5f\x23\xf9\xff\xee\x06" "\x2c\xff\xff\x8b\x1b\xc2\xed\xf2\xff\x39\xf9\xff\x62\x8f\x7f\xb5\xf9\xff" "\x91\xb6\xaf\xaf\x49\xfe\xff\x87\xcb\xe5\xff\x17\x36\xb5\x3f\x5e\xfe\x9f" "\x6b\xa1\x68\xf9\xff\xd8\xf7\xbf\x33\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54" "\x41\xec\xfb\xdf\x15\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xbb\x43" "\x4d\x9a\xfa\xff\xbe\xfe\xc7\x3b\x00\x00\x00\x60\xdd\xc5\xbe\xff\xd7\x42" "\x4d\x2a\xf2\xfb\x7f\xf9\xff\xfa\x38\x16\xd3\xcb\xf2\xff\xf2\xff\x8d\x1b" "\x5c\xff\x5f\xfe\x5f\xfe\x7f\x60\xc9\xff\x77\x37\x60\xf9\x7f\xd7\xff\x6f" "\x23\xff\x5f\xec\xf1\xbb\xfe\xbf\xfc\x3f\x4b\x15\x2d\xff\x1f\xfb\xfe\xf7" "\x84\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\xc3\xa1\x26\xfa\x7f" "\x00\x00\x00\x28\x8d\xd8\xf7\x3f\x12\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88" "\x7d\xff\x7b\x43\x4d\x2a\xd2\xff\xcb\xff\xbb\xfe\xbf\xfc\xbf\xfc\xbf\xfc" "\x7f\xe7\xf5\xcb\xff\x0f\x26\xf9\xff\xee\xe4\xff\x7b\x90\xff\x97\xff\x2f" "\x5a\xfe\xff\x3f\xe4\xff\x19\x6c\x45\xcb\xff\xc7\xbe\xff\xd1\x50\x93\x8a" "\xf4\xff\x00\x00\x00\x30\x68\x3a\xfd\x0e\xb6\x97\xd8\xf7\xbf\x2f\xd4\x44" "\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x5f\x0f\x35\xd1\xff\x03\x00\x00\x40" "\x69\xc4\xbe\xff\xfd\xa1\x26\x15\xe9\xff\xe5\xff\x07\x25\xff\x3f\x31\xa0" "\xf9\xff\x27\xe4\xff\xaf\x61\xfe\xff\xb6\x1b\xf2\xe5\xe4\xff\xe5\xff\x59" "\x24\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\x45\xcb\xff\xbb\xfe\x3f\x03" "\xae\x68\xf9\xff\xd8\xf7\x7f\x20\xd4\x64\xe5\xfd\xff\xf8\x8a\x97\x04\x00" "\x00\x00\xae\xa1\x91\x65\xef\x89\x7d\xff\x07\x43\x4d\x2a\xf2\xfb\x7f\x00" "\x00\x00\xa8\x82\xd8\xf7\xff\x46\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6" "\xfd\xbf\x19\x6a\x52\x91\xfe\x5f\xfe\x7f\x50\xf2\xff\xae\xff\x9f\xc9\xff" "\xbb\xfe\x7f\xdb\xf6\xc8\xff\xcb\xff\x77\xb2\x7e\xf9\xff\x78\xe6\x91\xff" "\x97\xff\x2f\x56\xfe\x7f\xeb\xaa\x36\xb8\xd5\x46\xe7\xe7\xd7\x6a\xa3\xc7" "\x5f\xdd\xfc\x7f\xfe\xce\x28\xff\x4f\x27\x45\xcb\xff\xc7\xbe\xff\xb7\x42" "\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\x43\xa1\x26\xfa\x7f\x00" "\x00\x00\x18\x08\x9d\xfe\x4f\x76\xbb\xd8\xf7\x1f\x0e\x35\xd1\xff\x03\x00" "\x00\x40\x69\xc4\xbe\xff\x48\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9\x7f\xf9\xff" "\x82\xe6\xff\xff\x64\xc7\x3f\x7f\xff\x3b\xef\x3a\xb2\x4b\xfe\x7f\x55\xf9" "\xff\x73\x1f\x94\xff\xaf\xba\x75\xbd\xfe\x7f\xfd\xe0\x77\xfd\x7f\xf9\xff" "\x82\xe5\xff\xd7\x62\xa3\xf3\xf3\xeb\x35\xfe\xda\x32\x97\x06\x93\xff\x77" "\xfd\x7f\xfa\xaf\x68\xf9\xff\xd8\xf7\x1f\x0d\x35\xa9\x48\xff\x0f\x00\x00" "\x00\x55\x10\xfb\xfe\xdf\x0e\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff" "\x58\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x33\xa1\x26\x15\xe9\xff" "\xe5\xff\xe5\xff\xe5\xff\x0b\x9a\xff\x1f\xe0\xeb\xff\xc7\xfd\xe1\xfa\xff" "\xad\xfa\x96\xff\x8f\x27\x5d\xf9\xff\x8e\xd6\x35\xff\xff\xbe\xc5\x9c\xb8" "\xfc\xff\x6a\xf3\xff\x63\x1d\x6f\x95\xff\x97\xff\x1f\xe4\xf1\xcb\xff\xcb" "\xff\xb3\x54\xd1\xf2\xff\xb1\xef\x9f\x0d\x35\xa9\x48\xff\x0f\x00\x00\x00" "\x55\x10\xfa\xfe\xa1\xe3\x79\x5d\xbc\x43\xff\x0f\x00\x00\x00\xa5\x11\xfb" "\xfe\x13\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x7f\x38\xd4\xa4\x22" "\xfd\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x7f\x99\xae\xff\x9f\xad\x53\xfe\xbf" "\x36\xe2\xfa\xff\x45\x25\xff\xdf\x5d\x71\xf2\xff\x9d\xc9\xff\xcb\xff\x6f" "\xf8\xf8\x6f\xa8\x9f\x94\xe5\xff\xe5\xff\xe9\x97\xa2\xe5\xff\x63\xdf\x3f" "\x17\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\x1f\x09\x35\xd1\xff" "\x03\xc0\xff\xb1\x77\x67\x4f\x9a\x9e\x65\x1d\xc7\x9f\x4e\x26\x3d\x3d\x15" "\xb4\x38\xf3\xc0\x13\xab\x3c\xf4\x4f\xe0\x40\x0e\x2d\x3c\xc7\x03\xad\xd2" "\x03\xad\x72\x05\x15\x15\x15\x95\xc4\x7d\x45\xa3\xe2\xae\x28\x2a\x6e\xe0" "\x02\x82\x11\x15\x15\x77\xc0\x05\xc5\x1d\xd4\xa8\xb8\xaf\xb8\x61\xd4\x1a" "\x2b\xdd\xd7\x75\xf5\xf2\x6e\xdd\x3d\xef\x72\x3f\xf7\xfd\xf9\x1c\xe4\x72" "\x3a\xdd\xf3\xbe\xa4\xc6\x49\x7e\x99\xf9\xe6\x01\x00\xe8\x46\xee\xfe\x4f" "\x88\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x4f\x8c\x5b\x06\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xfe\xfa\xcd\x3e\xff\x5f\xff\xbf\x96" "\xfe\x7f\x3d\xfd\xff\x06\xfa\x7f\xfd\xbf\xe7\xff\xeb\xff\xd9\xaa\xd6\xfa" "\xff\xdc\xfd\x9f\x14\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9\xfb\x5f\x10" "\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x2f\x8c\x5b\xec\x7f\x00\x00\x00" "\x68\xdd\xdd\xeb\x7e\x62\xee\xfe\x4f\x8e\x5b\x06\xd9\xff\xfa\x7f\xfd\x7f" "\xb7\xfd\xff\x07\xeb\xff\x57\xbd\xbe\xfe\x5f\xff\xdf\xb3\xfd\xf4\xff\x8f" "\xd6\xe7\xeb\xff\xf5\xff\xfa\xff\x73\xab\xfb\xf9\x67\x6d\xe5\xfd\x1d\xee" "\xfd\xeb\xff\xf5\xff\xdc\x56\x6b\xfd\x7f\xee\xfe\x4f\x89\x5b\x06\xd9\xff" "\x00\x00\x00\x30\x82\xdc\xfd\x9f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc" "\xfd\x2f\x8a\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x4f\x8b\x5b\x06\xd9" "\xff\x57\xfa\xff\xa3\x69\xcc\xfe\xbf\xfe\x7b\x11\xfa\xff\x8e\xfa\x7f\xcf" "\xff\x5f\xf9\xfa\xfa\xff\x07\xe8\xff\x1f\xd6\xff\xb7\x6e\xbf\xcf\xff\x7f" "\xfc\x99\x9f\xf9\xf4\xff\xfa\x7f\xfd\x7f\xf0\xfc\xff\x6b\xf5\xff\x2b\xff" "\x3b\x65\xfa\x7f\x7a\xd4\x5a\xff\x9f\xbb\xff\xd3\xe3\x96\x41\xf6\x3f\x00" "\x00\x00\x8c\x20\x77\xff\x67\xc4\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff" "\x8b\xe3\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x33\xe3\x96\x41\xf6\xff" "\xf6\x9e\xff\x7f\xef\xf4\xe3\x33\xed\xff\xcb\xcc\xfa\xff\x63\xfd\xbf\xfe" "\x5f\xff\xbf\xe7\xfe\xff\xce\xf9\xb7\xf5\xff\x6d\xda\x6f\xff\xdf\xcd\xf3" "\xff\x1f\x5a\xf8\x48\x07\xfd\xff\x8b\xde\xf1\xe8\x0b\xde\xf3\x86\xf7\x7f" "\xf2\x26\xaf\xaf\xff\xd7\xff\x7b\xfe\xbf\xfe\x9f\xed\x6a\xad\xff\xcf\xdd" "\xff\x59\x71\xcb\x20\xfb\x1f\x00\x00\x00\x46\x90\xbb\xff\xb3\xe3\x16\xfb" "\x1f\x00\x00\x00\xba\x91\xbb\xff\x25\xa7\xbf\xff\xdd\xfe\x07\x00\x00\x80" "\x1e\xbd\xe4\xf4\x8f\x27\xd3\xe7\xc4\x2d\x83\xec\xff\xed\xf5\xff\xb3\x7e" "\xfe\x7f\x99\x59\xff\xef\xf9\xff\xfa\x7f\xfd\xff\xbe\xfb\xff\xe7\x7b\xfe" "\x7f\xeb\xf4\xff\xeb\xed\xfc\xf9\xff\x0f\xb7\xd3\xff\xdf\xe6\xf5\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x9f\xed\x3a\x74\xff\x9f\xdf\x71\x7e\x3b\x77\xff\xe7" "\xc6\x2d\x83\xec\x7f\x00\x00\x00\x18\x41\xee\xfe\xcf\x8b\x5b\xec\x7f\x00" "\x00\x00\xe8\x46\xee\xfe\x97\xc6\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff" "\x63\x71\xcb\x20\xfb\x5f\xff\xbf\xfb\xfe\xff\xff\xf4\xff\xfa\xff\xb8\xfa" "\x7f\xfd\xbf\xfe\x7f\xf7\xf4\xff\xeb\xed\xbc\xff\x6f\xe8\xf9\xff\xb7\x79" "\x7d\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xbb\x0e\xdd\xff\x5f\xfd\x76\xee\xfe" "\xc7\xe3\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\xe7\xc7\x2d\xf6\x3f" "\x00\x00\x00\x74\x23\x77\xff\x17\xc4\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77" "\xff\x17\xc6\x2d\x83\xec\x7f\xfd\xbf\xe7\xff\xeb\xff\xf5\xff\xfa\xff\xe5" "\xaf\xaf\xff\x9f\x27\xfd\xff\x7a\xfa\xff\x0d\xf4\xff\x0f\xda\xcf\x3f\xa2" "\xff\x9f\x61\xff\x1f\xff\x20\xa5\xff\x67\x17\x6e\xd8\xff\x3f\xbd\xe6\xa7" "\xed\xad\xf4\xff\xb9\xfb\xbf\x28\x6e\x19\x64\xff\x03\x00\x00\xc0\x08\x72" "\xf7\x7f\x71\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\x7f\x49\xdc\x62\xff" "\x03\x00\x00\x40\x37\x72\xf7\x7f\x69\xdc\x32\xc8\xfe\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\x5b\xf7\xff\x8b\x3f\xf4\x4e\xe9\xff\x97\xd3\xff\xef\x87\xfe" "\x7f\xbd\x66\xfa\xff\xa3\x3b\x4b\x3f\xac\xff\x9f\x7d\xff\xef\xf9\xff\x73" "\xec\xff\x83\xfe\x9f\x5d\x68\xed\xf9\xff\xb9\xfb\xbf\x2c\x6e\x19\x64\xff" "\x03\x00\x00\xc0\x08\x72\xf7\x7f\x79\xdc\xb2\x66\xff\xdf\xf8\x5f\xe6\x03" "\x00\x00\x00\x07\x95\xbb\xff\x2b\xe2\x16\xbf\xfe\x0f\x00\x00\x00\xb3\x97" "\xd5\x59\xee\xfe\xaf\x8c\x5b\x06\xd9\xff\xf3\xea\xff\x8f\xf4\xff\xfa\xff" "\x81\xfb\xff\x0f\x79\x5e\x73\xfd\xff\xc0\xcf\xff\x7f\xf2\xc2\xfb\xd3\xff" "\xb7\x45\xff\xbf\x5e\x33\xfd\xff\x0a\xfa\x7f\xfd\xff\x9c\xdf\xbf\xfe\x5f" "\xff\xcf\xa2\xd6\xfa\xff\xdc\xfd\x5f\x15\xb7\x0c\xb2\xff\x01\x00\x00\x60" "\x04\xb9\xfb\x5f\x16\xb7\xd8\xff\x00\x00\x00\x30\x17\xf7\x36\x7d\x42\xee" "\xfe\xaf\x8e\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\xaf\x89\x5b\x06\xd9" "\xff\xcb\xfb\xff\xf3\x3f\xdf\x56\xff\xef\xf9\xff\xfa\xff\x91\xfb\xff\xf3" "\xe7\xff\xe7\xf7\xa8\xff\x5f\xdb\xff\x3f\xd7\xf3\xff\xc7\xa4\xff\x5f\x6f" "\xff\xfd\xff\x5d\xfd\xff\xe5\xef\x5f\xff\xbf\x43\x87\x7e\xff\x9d\xf7\xff" "\x1b\x7f\x5d\x55\xff\xcf\x32\xad\xf5\xff\xb9\xfb\x9f\x88\x5b\x06\xd9\xff" "\x00\x00\x00\x30\x82\xdc\xfd\x5f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc" "\xfd\x5f\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x5f\x1f\xb7\x0c\xb2" "\xff\x0f\xfc\xfc\xff\xc7\x8f\x57\xbd\x2f\xfd\xff\x29\xfd\xbf\xfe\x7f\x59" "\xff\xef\xf9\xff\x67\x0e\xf9\xfc\xff\x69\xef\xfd\xff\x1d\xfd\xff\x35\xe9" "\xff\xd7\xf3\xfc\xff\x0d\xf4\xff\xfa\x7f\xfd\xbf\xe7\xff\xb3\x55\xad\xf5" "\xff\xb9\xfb\x5f\x1e\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\x2f\x7f\xef\x74" "\xba\xfb\xbf\x61\x9a\xec\x7f\x00\x00\x00\x98\xa3\x8b\xbf\x77\xe0\xea\x6f" "\x28\x0d\xb9\xfb\xbf\x31\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xbf\x29" "\x6e\x19\x64\xff\x1f\xb8\xff\xdf\xd5\xf3\xff\x1f\xd9\xf4\xda\x07\xef\xff" "\xdf\xe7\xec\x73\xf4\xff\xfa\x7f\xfd\xbf\xfe\xdf\xf3\xff\xb7\x4b\xff\xbf" "\x9e\xfe\x7f\x03\xfd\xff\x2e\xfa\xf9\x3b\x9d\xf5\xff\xaf\x58\xf5\xf5\x2d" "\xf4\xff\x2f\xd5\xff\xd3\x98\x4b\xfd\xff\x9b\xce\x3f\x7e\xa8\xfe\x3f\x77" "\xff\x37\xc7\x2d\x83\xec\x7f\x00\x00\x00\x18\x41\xee\xfe\x6f\x89\x5b\xec" "\x7f\x00\x00\x00\xe8\x46\xee\xfe\x6f\x8d\x5b\xec\x7f\x00\x00\x00\xe8\x46" "\xee\xfe\x6f\x8b\x5b\x06\xd9\xff\x3b\xef\xff\xef\xc5\x7d\xdb\xc7\x2d\xbc" "\xf6\x75\xfa\xff\xa3\x68\x27\x3d\xff\x5f\xff\x3f\xe9\xff\xf5\xff\x57\xfe" "\xf7\xe8\xff\xf5\xff\xcb\xe8\xff\xd7\xd3\xff\x6f\xa0\xff\xf7\xfc\x7f\xcf" "\xff\xd7\xff\xb3\x55\x97\xfa\xff\x0b\x0e\xd5\xff\xe7\xee\xff\xf6\xb8\x65" "\x90\xfd\x0f\x00\x00\x00\x23\xc8\xdd\xff\x1d\x71\x8b\xfd\x0f\x00\x00\x00" "\xdd\xc8\xdd\xff\x8a\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\xce\xb8" "\x65\x90\xfd\xdf\xe9\xf3\xff\x37\x7a\xe0\xfe\xff\x4a\x77\xa2\xff\xbf\xf8" "\xfe\xef\x2d\xbc\x0f\xfd\xff\x19\xfd\xbf\xfe\x5f\xff\xbf\x7b\xfa\xff\xf5" "\xf4\xff\x1b\xe8\xff\xf5\xff\xfa\xff\xcd\xfd\xff\xd5\xbf\x51\x07\xfd\x3f" "\xcb\xb4\xd6\xff\xe7\xee\xff\xae\xb8\x65\x90\xfd\x0f\x00\x00\x00\x23\xc8" "\xdd\xff\xca\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\xee\xb8\xc5\xfe" "\x07\x00\x00\x80\x6e\xe4\xee\xff\x9e\xb8\x65\x90\xfd\xaf\xff\xdf\xed\xf3" "\xff\xf3\xe3\x63\xf5\xff\x9e\xff\xff\xc0\xfd\x7f\x7c\x81\xfe\xff\x8c\xfe" "\x5f\xff\x7f\x13\x73\xeb\xff\xaf\xfe\xff\xcf\xad\xfb\xf5\xa3\x65\x7f\x27" "\x5a\xb4\xa2\xff\x7f\xeb\xc7\x3e\xf6\xa1\x97\x3f\xa2\xff\xd7\xff\xeb\xff" "\xf5\xff\x9e\xff\xcf\x16\x34\xd1\xff\xdf\x3f\xff\xa7\xcb\xdc\xfd\xdf\x1b" "\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9\xfb\x5f\x15\xb7\xd8\xff\x00\x00" "\x00\xd0\x8d\xdc\xfd\xdf\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xdf" "\x1f\xb7\xdc\x70\xff\x3f\x7b\xab\xef\x6a\x7f\xf4\xff\xbb\xed\xff\x3b\x7f" "\xfe\xff\x91\xfe\xdf\xf3\xff\xf5\xff\xfa\xff\xd6\xcc\xad\xff\xbf\xca\xf3" "\xff\xf5\xff\xfa\xff\xf9\xbe\x7f\xfd\xbf\xfe\x9f\x45\x4d\xf4\xff\x17\xbe" "\x9d\xbb\xff\x07\xe2\x16\xbf\xfe\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x83\x71" "\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x43\x71\x8b\xfd\x0f\x00\x00\x00" "\xdd\xc8\xdd\xff\xea\xb8\x65\x90\xfd\xaf\xff\xd7\xff\x7b\xfe\xbf\xfe\x5f" "\xff\xbf\xfc\xf5\x6f\xdb\xff\x9f\x4c\xcb\xe9\xff\xf7\x43\xff\xbf\x9e\xfe" "\x7f\x03\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xab\x5a\xeb\xff\x73\xf7\xbf\x26" "\x6e\x19\x64\xff\x03\x00\x00\xc0\x08\x72\xf7\xff\x70\xdc\x62\xff\x03\x00" "\x00\x40\x37\x72\xf7\xff\x48\xdc\x62\xff\x03\x00\x00\xc0\x9c\x64\x3a\xb6" "\x54\xee\xfe\x1f\x8d\x5b\x06\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\x0e\xfd\xff" "\xfb\xd6\xf7\xa3\xff\x6f\xbf\xff\x5f\x45\xff\xbf\x1f\x33\xed\xff\xeb\xa7" "\xc1\xa6\xfb\xff\x67\xfe\x31\x69\x45\xff\xff\xf0\x9c\xfa\xff\xd7\xae\x79" "\x03\xcb\xfa\xff\xfb\x77\xf5\xff\xfa\x7f\xfd\xbf\xfe\x9f\x5b\x6a\xad\xff" "\xcf\xdd\xff\x63\x71\xcb\x20\xfb\x1f\x00\x00\x00\x46\x90\xbb\xff\xb5\x71" "\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\xba\xb8\xc5\xfe\x07\x00\x00\x80" "\x6e\xe4\xee\xff\xf1\xb8\x65\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xe7\xd0\xff" "\x7b\xfe\xff\xac\xfb\xff\xb3\x9f\x5e\xf5\xff\x7b\x32\xd3\xfe\xbf\x34\xdd" "\xff\x7b\xfe\xbf\xfe\x7f\x03\xfd\xbf\xfe\x5f\xff\xcf\x55\xad\xf5\xff\xb9" "\xfb\x5f\x1f\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9\xfb\xdf\x10\xb7\xd8" "\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x3f\x11\xb7\xd8\xff\x00\x00\x00\xd0\x8d" "\xdc\xfd\x4f\xc6\x2d\x83\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x2f" "\x7f\x7d\xcf\xff\x9f\xa7\xdd\xf5\xff\xd3\xe1\xfa\xff\x77\x3f\x74\xd3\xef" "\x66\x25\xfd\xff\x06\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x56\xb5\xd6\xff\xe7" "\xee\xff\xc9\xb8\x65\x90\xfd\x0f\x00\x00\x00\x23\xc8\xdd\xff\xc6\xb8\xc5" "\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\xa9\xb8\xc5\xfe\x07\x00\x00\x80\x6e" "\xe4\xee\xff\xe9\xb8\x65\x90\xfd\x3f\x66\xff\x7f\xac\xff\x9f\x7d\xff\xff" "\xc4\xc9\xb2\xf7\xaf\xff\xd7\xff\x4f\xfa\xff\xe1\x79\xfe\xff\x7a\xfa\xff" "\x0d\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\xad\x6a\xad\xff\xcf\xdd\xff\x33\x71" "\xcb\x20\xfb\x1f\x00\x00\x00\x46\x90\xbb\xff\x4d\x71\x8b\xfd\x0f\x00\x00" "\x00\xdd\xc8\xdd\xff\xb3\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x73" "\x71\xcb\x20\xfb\x7f\xcc\xfe\x7f\xc3\xf3\xff\x1f\x1a\xb9\xff\x9f\xa6\x79" "\xf4\xff\x9e\xff\x3f\xe9\xff\x7b\xe8\xff\x4f\x26\xfd\xff\xd6\xe9\xff\xd7" "\xbb\x5e\xff\xff\xdc\xab\xfd\xff\x71\xfe\x99\xb6\xfb\xff\xf3\x9f\x3d\xf4" "\xff\xb7\x73\xe8\x7e\x7e\x67\xef\xff\xa1\xa9\x95\xfe\xff\x64\xdd\xd7\x5f" "\xaf\xff\xbf\xb7\xf2\xeb\xf5\xff\xb4\xa8\xb5\xfe\x3f\x77\xff\xcf\xc7\x2d" "\x83\xec\x7f\x00\x00\x00\x18\x41\xee\xfe\x37\x9f\xfe\xeb\x54\xfb\x1f\x00" "\x00\x00\xfa\x72\xf6\x7b\x67\xde\x7c\xfa\xc7\x93\xe9\x17\xe2\x16\xfb\x1f" "\x00\x00\x00\x5a\x76\xe7\x26\x9f\x9c\xbb\xff\x17\xe3\x96\x41\xf6\xff\xfc" "\xfb\xff\xbb\x57\xbe\x70\x0b\xfd\xff\xfc\x9f\xff\xff\xce\x17\x77\xff\xfc" "\x7f\xfd\xff\xa4\xff\xef\xa1\xff\xaf\xbf\xaa\xfa\xff\xed\xd1\xff\xaf\xe7" "\xf9\xff\x1b\xe8\xff\xfb\xec\xff\x3d\xff\x5f\xff\xcf\xc1\xb4\xd6\xff\xe7" "\xee\xff\xa5\xb8\x65\x90\xfd\x0f\x00\x00\x00\x23\xc8\xdd\xff\xcb\x71\x8b" "\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x2b\x71\x8b\xfd\x0f\x00\x00\x00\xdd" "\xc8\xdd\xff\xab\x71\xcb\x20\xfb\x7f\xfe\xfd\xff\xd5\x2f\xd4\xff\x4f\x0f" "\xf4\xfc\x7f\xfd\xff\xe9\x07\xf4\xff\xfa\x7f\xfd\xff\x6c\xe9\xff\xd7\xd3" "\xff\x6f\xa0\xff\xdf\xd8\xcf\x1f\xad\xf8\xe7\x9e\x49\xff\xaf\xff\xd7\xff" "\xb3\x44\x6b\xfd\x7f\xee\xfe\x5f\x8b\x5b\x06\xd9\xff\x00\x00\x00\x30\x82" "\xdc\xfd\x6f\x89\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\xb7\xc6\x2d\xf6" "\x3f\x00\x00\x00\x74\x23\x77\xff\xdb\xe2\x96\x41\xf6\xbf\xfe\x5f\xff\xaf" "\xff\x9f\x67\xff\x7f\xa2\xff\xd7\xff\xeb\xff\x97\x6a\xa5\xff\x7f\xce\x73" "\x9e\xf7\x76\xfd\xff\x36\xfa\xff\xe3\xd3\x8f\xeb\xff\xcf\xb4\xd0\xff\xaf" "\xa3\xff\xd7\xff\xeb\xff\xb9\xaa\xb5\xfe\x3f\x77\xff\xaf\xc7\x2d\x83\xec" "\x7f\x00\x00\x00\x18\x41\xee\xfe\xdf\x88\x5b\xec\x7f\x00\x00\x00\xe8\x46" "\xee\xfe\xdf\x8c\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\xdf\x8a\x5b\x06" "\xd9\xff\x8b\xfd\xff\x23\xd3\x59\xa1\x7a\x66\x59\xff\x1f\x8d\x9a\xfe\xff" "\x02\xfd\xff\xe5\xf7\xaf\xff\x5f\xfe\xe3\xc3\xf3\xff\xf5\xff\xfa\xff\xdd" "\x6b\xa5\xff\xf7\xfc\xff\xdb\xbd\x7f\xcf\xff\xd7\xff\xcf\xf9\xfd\xdf\xa8" "\xff\xff\x80\xc5\xaf\xd7\xff\xd3\xa3\xd6\xfa\xff\xdc\xfd\x6f\x8f\x5b\x06" "\xd9\xff\x00\x00\x00\x30\x82\xdc\xfd\xbf\x1d\xb7\xd8\xff\x00\x00\x00\xd0" "\x8d\xdc\xfd\xbf\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xef\x88\x5b" "\x06\xd9\xff\x9e\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xcb\x5f\x5f\xff\x3f" "\x4f\xfa\xff\xf5\xf4\xff\x1b\xe8\xff\xf5\xff\x9e\xff\xff\xc2\x8f\x7e\x58" "\xff\xcf\xf6\xb4\xd6\xff\xe7\xee\xff\xdd\xb8\xe5\x74\xf8\x7d\xe0\xb3\x6e" "\xf9\x3f\x13\x00\x00\x00\x68\x48\xee\xfe\xdf\x8b\x5b\x06\xf9\xf5\x7f\x00" "\x00\x00\x18\x41\xee\xfe\xdf\x8f\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe" "\x3f\x88\x5b\x06\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xfe\xfa" "\xfa\xff\x79\xd2\xff\xaf\xa7\xff\xdf\x60\x9c\xfe\xff\x64\xd9\x07\x0f\xdd" "\xcf\x3f\xa8\x43\xbf\xff\x6e\xfa\x7f\xcf\xff\x67\x8b\x5a\xeb\xff\x73\xf7" "\xff\x61\xdc\x32\xc8\xfe\x07\x00\x00\x80\x11\xe4\xee\xff\xa3\xb8\xc5\xfe" "\x07\x00\x00\x80\x6e\xe4\xee\xff\xe3\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4" "\xee\x7f\x67\xdc\x32\xc8\xfe\xd7\xff\xeb\xff\xfb\xef\xff\x3f\x4a\xff\x7f" "\xe5\xf5\xf5\xff\xfa\xff\x9e\xe9\xff\xf3\xef\xe8\xcb\xe9\xff\x37\x18\xa7" "\xff\x5f\xea\xd0\xfd\xfc\xdc\xdf\x7f\x23\xfd\xff\xab\x3e\x52\xff\x4f\x43" "\x5a\xeb\xff\x73\xf7\xbf\x2b\x6e\x19\x64\xff\x03\x00\x00\xc0\x08\x72\xf7" "\xff\x49\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xff\x69\xdc\x62\xff\x03" "\x00\x00\x40\x37\x72\xf7\xff\x59\xdc\x32\xc8\xfe\x3f\x48\xff\x1f\x35\xa4" "\xfe\x7f\xff\xfd\xff\xd1\x34\xc3\xfe\xff\x23\x8e\xa7\xc9\xf3\xff\xf5\xff" "\xfa\x7f\xfd\xff\x35\xcd\xa7\xff\x7f\xe5\x9d\x65\x1f\xf5\xfc\x7f\xfd\xff" "\xea\xfe\xff\x11\xfd\x7f\xe3\xef\xbf\x91\xfe\xdf\xf3\xff\x69\x4a\x6b\xfd" "\x7f\xee\xfe\xa7\x8e\xee\x0c\xb9\xff\x01\x00\x00\x60\xae\x3e\xec\x83\x3e" "\xfe\x5d\xd7\xfd\xdc\xa7\x4e\xff\x78\x32\xfd\x79\xdc\x62\xff\x03\x00\x00" "\x40\x37\x72\xf7\xff\x45\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xff\x65" "\xdc\x32\xc8\xfe\xf7\xfc\xff\xb1\xfa\xff\x31\x9f\xff\xaf\xff\xd7\xff\xeb" "\xff\x47\x32\x9f\xfe\x7f\x39\xfd\xbf\xfe\xdf\xf3\xff\xe7\xfb\xfe\xf5\xff" "\xfa\x7f\x16\xb5\xd6\xff\xe7\xee\x7f\x77\xdc\x72\x61\xf8\x2d\xfd\x0f\xf4" "\x00\x00\x00\x00\xb3\x91\xbb\xff\xaf\xe2\x96\x41\x7e\xfd\x1f\x00\x00\x00" "\x46\x90\xbb\xff\xaf\xe3\x96\x85\xfd\x7f\xff\x9a\xbf\xab\x1d\x00\x00\x00" "\x68\x4d\xee\xfe\xbf\x89\x5b\x06\xf9\xf5\x7f\xfd\xff\x9e\xfa\xff\x67\xdf" "\xb2\xff\x9f\x76\xd4\xff\xc7\xe7\xe9\xff\xcf\xe8\xff\xf5\xff\xcb\x5e\x5f" "\xff\x3f\x4f\xbd\xf5\xff\x77\xa7\xa6\xfa\xff\xfb\x47\xfa\x7f\xfd\xff\x1a" "\xfa\x7f\xfd\xbf\xfe\x9f\xab\x5a\xeb\xff\x73\xf7\xbf\xf1\xf5\xd3\x90\xfb" "\x1f\x00\x00\x00\x3a\x75\xe9\xdf\x28\xfc\xed\xe9\x1f\x4f\xa6\xbf\x8b\x5b" "\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\xbf\x8f\x5b\xec\x7f\x00\x00\x00\xe8" "\x46\xee\xfe\x7f\x88\x5b\x06\xd9\xff\xfa\xff\x1e\x9f\xff\x7f\xaf\xfe\x2f" "\xcf\xff\x1f\xbc\xff\x7f\xd9\xc9\xd2\xd7\xd7\xff\xeb\xff\x7b\xd6\x5b\xff" "\xef\xf9\xff\x67\x1f\xd7\xff\x9f\xd1\xff\xb7\xfd\xfe\xf5\xff\xfa\x7f\x16" "\xdd\xa0\xff\x3f\x1d\xa4\xbb\xee\xff\x73\xf7\xff\x63\xdc\x32\xc8\xfe\x07" "\x00\x00\x80\x11\xe4\xee\xff\xa7\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee" "\xff\xe7\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\x97\xb8\x65\x90\xfd" "\x7f\xf3\xfe\xff\xec\xf3\xf4\xff\x97\xdd\xa8\xff\x7f\xe2\xee\x34\xed\xb4" "\xff\xbf\xc6\xf3\xff\xd7\xf7\xff\x47\xd3\xa4\xff\xef\xa2\xff\x5f\xf1\xfa" "\xfd\xf4\xff\xef\xf7\xe8\x63\x6f\xf9\xf0\x8f\x79\xdd\x6b\xf4\xff\x9c\xdb" "\x67\xff\x9f\x3f\x16\xf4\xff\xfa\xff\x03\xf4\xff\xaf\x8e\x1f\x7f\xfa\xff" "\x86\xde\xbf\xfe\x5f\xff\xcf\xa2\xd6\x9e\xff\x9f\xbb\xff\x5f\xe3\x96\x41" "\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\x7b\xe2\x1e\xe7\x9f\xb0\xff\x01\x00" "\x00\xa0\x1b\xb9\xfb\xff\x2d\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xff" "\x3d\x6e\x99\xe9\xfe\x7f\xea\x86\x9f\xef\xf9\xff\x3d\x3e\xff\xff\x81\xfb" "\xff\x83\x3c\xff\x3f\xff\x5a\x1f\xa0\xff\x7f\x6c\x7e\xfd\x7f\x36\xc5\xa3" "\xf7\xff\x9e\xff\xaf\xff\x5f\xe4\xf9\xff\xeb\xe9\xff\x37\x98\x4f\xff\x7f" "\xfa\x6d\xcf\xff\x6f\xeb\xfd\xeb\xff\xf5\xff\x2c\x6a\xad\xff\xcf\xdd\xff" "\x1f\x71\xcb\x4c\xf7\x3f\x00\x00\x00\xb0\x28\x77\xff\x7f\xc6\x2d\xb9\xff" "\x8f\x6e\xfc\xaf\xee\x01\x00\x00\x80\xc6\xe4\xee\xff\xaf\xb8\xc5\xaf\xff" "\x03\x00\x00\x40\x37\x72\xf7\xbf\x37\x6e\x99\xf7\xfe\x7f\xfe\xc6\x40\x28" "\xe8\xff\xf5\xff\xad\xf4\xff\xc9\xf3\xff\xcf\xbf\xce\xf3\xff\xcf\xe8\xff" "\xf5\xff\x37\xb1\xb6\xbf\x3f\xd9\xfc\xf5\xfa\xff\xa0\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xb6\xa0\xb5\xfe\x3f\x77\xff\x7f\xc7\x2d\xf3\xde\xff\x00" "\x00\x00\xc0\x05\xb9\xfb\x9f\x8e\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe" "\xff\x89\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\xff\x8d\x5b\x06\xd9\xff" "\xfa\xff\xad\xf4\xff\xf7\xf4\xff\x97\xdf\xbf\xfe\xff\x32\xfd\x7f\xfc\x78" "\xd0\xff\xeb\xff\xf7\xc0\xf3\xff\xd7\xd3\xff\x3f\xe3\x78\xf5\x1b\xd0\xff" "\xeb\xff\xf5\xff\xfa\x7f\xb6\xaa\xb5\xfe\x3f\x77\xff\xff\x07\x00\x00\xff" "\xff\xbc\xe9\x4c\x20", 25511); syz_mount_image(/*fs=*/0x200000000600, /*dir=*/0x200000000500, /*flags=MS_NOSUID|MS_DIRSYNC*/ 0x82, /*opts=*/0x200000000040, /*chdir=*/0x13, /*size=*/0x63a7, /*img=*/0x20000000d380); // openat arguments: [ // fd: fd_dir (resource) // file: nil // flags: open_flags = 0x0 (4 bytes) // mode: open_mode = 0x51 (2 bytes) // ] // returns fd syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0ul, /*flags=*/0, /*mode=S_IXOTH|S_IWGRP|S_IXUSR*/ 0x51); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*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=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }