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