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