// https://syzkaller.appspot.com/bug?id=f4846413aea05f713fce426378f26c7bfabd539f // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[4] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x20000140, "jfs\000", 4); memcpy((void*)0x20005e80, "./file1\000", 8); memcpy( (void*)0x20005ec0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x42\x53\xab" "\x87\xaa\x44\x08\xb9\x69\x79\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01\x0e\x5c" "\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11\x57\xbe\x70" "\xe0\x8f\x00\x21\x71\x44\x88\x23\x27\xfe\x80\x1e\xb8\x72\xe3\x0f\x20\x52" "\x82\x04\x2a\x12\x62\xd0\xd8\xcf\x93\x8c\x37\xbb\x59\xa7\xb1\x77\x6c\x3f" "\x9f\x8f\xe4\xcc\xfe\xe6\x99\xf1\x3e\x93\xef\xce\xbe\x78\x66\xf6\x09\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\xbe\xff\xbd\x1f\x9e" "\xad\x22\xe2\xf2\x2f\xd2\x8c\x95\x88\xcf\x44\x3f\xa2\x17\xb1\xd4\xd4\xab" "\x11\xb1\xb4\xba\x92\x97\x1f\x44\xc4\x0b\xb1\xd5\x1c\xcf\x47\xc4\x70\x21" "\xa2\x59\x7f\xeb\x9f\x67\x23\x5e\x8f\x88\x8f\x8f\x47\xdc\xbb\x7f\x7b\xad" "\x99\x7d\x6e\x97\xfd\xf8\xee\x1f\xff\xf6\xbb\x1f\x1d\xfb\xc1\x5f\xff\x30" "\x3c\xfd\xef\x3f\xdd\xec\xbf\x31\x6d\xb9\x5b\xb7\x7e\xfd\xaf\x3f\xdf\x79" "\xba\x6d\x06\x00\x00\x80\xd2\xd4\x75\x5d\x57\xe9\x63\xfe\x89\xf4\xf9\xbe" "\xd7\x75\xa7\x00\x80\xb9\xc8\xaf\xff\x75\x92\xe7\xab\xd5\x6a\xb5\x5a\xad" "\x3e\x7a\x75\x5b\x3d\xd9\x9d\x76\x11\x11\x1b\xed\x75\x9a\xf7\x0c\x0e\xc7" "\x03\xc0\x21\xb3\x11\x9f\x74\xdd\x05\x3a\x24\xff\xa2\x0d\x22\xe2\x58\xd7" "\x9d\x00\x0e\xb4\xaa\xeb\x0e\xb0\x2f\xee\xdd\xbf\xbd\x56\xa5\x7c\xab\xf6" "\xeb\xc1\xea\x76\x7b\x3e\x17\x64\x47\xfe\x1b\xd5\x83\xeb\x3b\xa6\x4d\x67" "\x19\x3f\xc7\x64\x5e\x8f\xaf\xcd\xe8\xc7\x73\x53\xfa\xb3\x34\xa7\x3e\x1c" "\x24\x39\xff\xde\x78\xfe\x97\xb7\xdb\x47\x69\xb9\xfd\xce\x7f\x5e\xa6\xe5" "\x3f\xda\xbe\xf4\xa9\x38\x39\xff\xfe\x78\xfe\x63\x8e\x4e\xfe\xbd\x89\xf9" "\x97\x2a\xe7\x3f\x78\xa2\xfc\xfb\xf2\x07\x00\x00\x00\x00\x80\x03\x2c\xff" "\xfd\x7f\x65\xb7\xc7\x7f\xff\x53\xd7\xf5\x3e\x1c\xff\x59\xd8\x9b\xcd\x99" "\xe9\x71\xc7\x7f\x57\xe7\xd4\x07\x00\x00\x00\x00\x00\x00\x00\xd8\x6b\x4f" "\x3b\xfe\xdf\x03\xc6\xff\x03\x00\x00\x80\x03\xab\xf9\xac\xde\xf8\xcd\xf1" "\x87\xf3\xa6\x7d\x17\x5b\x33\xff\x52\x15\xf1\xcc\xd8\xf2\x40\x61\xd2\xc5" "\x32\xcb\x5d\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4a\x32\xd8" "\x3e\x87\xf7\x52\x15\x31\x8c\x88\x67\x96\x97\xeb\xba\x6e\x7e\xda\xc6\xeb" "\x27\xf5\xb4\xeb\x1f\x76\xa5\x6f\x3f\x94\xac\xeb\x27\x79\x00\x00\xd8\xf6" "\xf1\xf1\xb1\x6b\xf9\xab\x88\xc5\x88\xb8\x94\xbe\xeb\x6f\xb8\xbc\xbc\x5c" "\xd7\x8b\x4b\xcb\xf5\x72\xbd\xb4\x90\xdf\xcf\x8e\x16\x16\xeb\xa5\xd6\xe7" "\xda\x3c\x6d\xe6\x2d\x8c\x76\xf1\x86\x78\x30\xaa\x9b\x5f\xb6\xd8\x5a\xaf" "\x6d\xd6\xe7\xe5\x59\xed\xe3\xbf\xaf\xb9\xaf\x51\xdd\xdf\x45\xc7\xe6\xa3" "\xc3\xc0\x01\x20\x22\xb6\x5f\x8d\xee\x79\x45\x3a\x62\xea\xfa\xd9\xe8\xfa" "\x5d\x0e\x87\x83\xfd\xff\xe8\xb1\xff\xb3\x1b\x5d\x3f\x4e\x01\x00\x00\x80" "\xfd\x57\xd7\x75\x5d\xa5\xaf\xf3\x3e\x91\x8e\xf9\xf7\xba\xee\x14\x00\x30" "\x17\xf9\xf5\x7f\xfc\xb8\x80\x5a\xad\x56\xab\xd5\xea\xa3\x57\xb7\xd5\x93" "\xdd\x69\x17\x11\xb1\xf1\x70\x8d\xde\xd6\x7b\x06\xc3\xf1\x03\xc0\x21\xb3" "\x11\x9f\x74\xdd\x05\x3a\x24\xff\xa2\x0d\x22\xe2\x85\xae\x3b\x01\x1c\x68" "\x55\xd7\x1d\x60\x5f\xdc\xbb\x7f\x7b\xad\x4a\xf9\x56\xed\xd7\x83\x34\xbe" "\x7b\x3e\x17\x64\x47\xfe\x1b\xd5\xd6\x7a\x79\xfd\x49\xd3\x59\xc6\xcf\x31" "\x99\xd7\xe3\x6b\x33\xfa\xf1\xdc\x94\xfe\x3c\x3f\xa7\x3e\x1c\x24\x39\xff" "\xde\x78\xfe\x97\xb7\xdb\x47\x69\xb9\xfd\xce\x7f\x5e\xa6\xe5\xdf\x6c\xe7" "\x4a\x07\xfd\xe9\x5a\xce\xbf\x3f\x9e\xff\x98\xbd\xcd\xff\xbf\x53\xfe\x02" "\xbd\xff\x36\xa3\x37\x31\xff\x52\xe5\xfc\x07\x4f\x94\x7f\xff\x10\xef\xff" "\xf2\x07\x00\x00\x00\x00\xe0\xe8\xcb\x7f\xff\x5f\x71\xfc\x37\x6f\x32\x00" "\x00\x00\x00\x00\x00\x00\x1c\x3a\xf7\xee\xdf\x5e\xcb\xd7\xbd\xe6\xe3\xff" "\x9f\x9b\xb0\xdc\xd1\xb9\xfe\xd7\xf5\x7f\x6d\x39\xff\x4a\xfe\x45\xca\xf9" "\xf7\xc6\xf2\xff\xf2\xd8\x72\xfd\xd6\xed\xbb\x6f\x3f\xcc\xff\x9f\xf7\x6f" "\xaf\xfd\xfe\xe6\x3f\x3e\x9b\xa7\xbb\xcd\x7f\x21\xdf\xa8\xd2\x23\xab\x4a" "\x8f\x88\x2a\xdd\x53\x35\x48\xd3\xa7\xd9\xba\x47\x6d\x0e\xfb\xa3\xe6\x9e" "\x86\x55\xaf\x3f\x48\xe7\xfc\xd4\xc3\x77\xe3\x6a\x5c\x8b\xf5\x38\xb3\x63" "\xd9\x5e\xfa\xff\x78\xd8\x7e\x76\x47\x7b\xd3\xd3\xe1\x8e\xf6\x73\x3b\xda" "\x07\x8f\xb4\x9f\xdf\xd1\x3e\x4c\xdf\x3b\x50\x2f\xe5\xf6\x53\xb1\x16\x3f" "\x8d\x6b\xf1\xce\x56\x7b\xd3\xb6\x30\x63\xfb\x17\x67\xb4\xd7\x33\xda\x73" "\xfe\x7d\xfb\x7f\x91\x72\xfe\x83\xd6\x4f\x93\xff\x72\x6a\xaf\xc6\xa6\x8d" "\xbb\x1f\xf5\x1e\xd9\xef\xdb\xd3\x49\xf7\xf3\xd6\xd5\xcf\xff\xea\xcc\xfe" "\x6f\xce\x4c\x9b\xd1\x7f\xb0\x6d\x6d\xcd\xf6\x9d\xec\xa0\x3f\x5b\xff\x27" "\xc7\x46\xf1\xf3\x1b\xeb\xd7\x4f\xdd\xba\x72\xf3\xe6\xf5\xb3\x91\x26\x3b" "\xe6\x9e\x8b\x34\xd9\x63\x39\xff\x61\xfa\x79\xf0\xfc\xff\xd2\x76\x7b\x7e" "\xde\x6f\xef\xaf\x77\x3f\x1a\x3d\x71\xfe\x07\xc5\x66\x0c\xa6\xe6\xff\x52" "\xeb\x76\xb3\xbd\xaf\xcc\xb9\x6f\x5d\xc8\xf9\x8f\xd2\x4f\xce\xff\x9d\xd4" "\x3e\x79\xff\x3f\xcc\xf9\x4f\xdf\xff\x5f\xed\xa0\x3f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf0\x38\x75\x5d\x6f\x5d\x22\xfa\x56\x44\x5c" "\x48\xd7\xff\x74\x75\x6d\x26\x00\x30\x5f\xf9\xf5\xbf\x4e\xf2\x7c\xb5\x5a" "\xad\x56\xab\xd5\x47\xaf\x6e\xab\x27\x7b\xb3\x5d\x44\xc4\x5f\xda\xeb\x34" "\xef\x19\x7e\x39\xe9\x97\x01\x00\x07\xd9\xff\x22\xe2\xef\x5d\x77\x82\xce" "\xc8\xbf\x60\xf9\xfb\xfe\x9a\xe9\xcb\x5d\x77\x06\x98\xab\x1b\x1f\x7c\xf8" "\xe3\x2b\xd7\xae\xad\x5f\xbf\xd1\x75\x4f\x00\x00\x00\x00\x00\x00\x00\x80" "\x4f\x2b\x8f\xff\xb9\xda\x1a\xff\xf9\xe5\x88\x58\x19\x5b\x6e\xc7\xf8\xaf" "\x6f\xc7\xea\xd3\x8e\xff\x39\xc8\x37\x1e\x0c\x30\xba\xc7\x03\x7d\x4f\xb1" "\xd9\x1b\xf5\x7b\xad\xe1\xc6\x5f\x8c\xc7\x8f\xff\x7d\x32\x1e\x3f\xfe\xf7" "\x60\xc6\xfd\x0d\x67\xb4\x8f\x66\xb4\x2f\xcc\x68\x5f\x9c\xd1\x3e\xf1\x42" "\x8f\x96\x9c\xff\x8b\xad\xf1\xce\x9b\xfc\x4f\x8c\x0d\xbf\x5e\xc2\xf8\xaf" "\xe3\x63\xde\x97\x20\xe7\x7f\xb2\xf5\x78\x6e\xf2\xff\xd2\xd8\x72\xed\xfc" "\xeb\xdf\x1e\xe6\xfc\x7b\x3b\xf2\x3f\x7d\xf3\xfd\x9f\x9d\xbe\xf1\xc1\x87" "\xaf\x5d\x7d\xff\xca\x7b\xeb\xef\xad\xff\xe4\xfc\xd9\xb3\x67\xce\x5f\xb8" "\x70\xf1\xe2\xc5\xd3\xef\x5e\xbd\xb6\x7e\x66\xfb\xdf\x0e\x7b\xbc\xbf\x72" "\xfe\x79\xec\x6b\xe7\x81\x96\x25\xe7\x9f\x33\x97\x7f\x59\x72\xfe\x5f\x48" "\xb5\xfc\xcb\x92\xf3\xff\x62\xaa\xe5\x5f\x96\x9c\x7f\x7e\xbf\x27\xff\xb2" "\xe4\xfc\xf3\x67\x1f\xf9\x97\x25\xe7\xff\x4a\xaa\xe5\x5f\x96\x9c\xff\x57" "\x52\x2d\xff\xb2\xe4\xfc\x5f\x4d\xb5\xfc\xcb\x92\xf3\xff\x6a\xaa\xe5\x5f" "\x96\x9c\xff\x6b\xa9\x96\x7f\x59\x72\xfe\xa7\x52\x2d\xff\xb2\xe4\xfc\x4f" "\xa7\x5a\xfe\x65\xc9\xf9\xe7\x23\x5c\xf2\x2f\x4b\xce\x3f\x9f\xd9\x20\xff" "\xb2\xe4\xfc\xcf\xa5\x5a\xfe\x65\xc9\xf9\x9f\x4f\xb5\xfc\xcb\x92\xf3\x7f" "\x3d\xd5\xf2\x2f\x4b\xce\xff\x6b\xa9\x96\x7f\x59\x72\xfe\x17\x52\x2d\xff" "\xb2\xe4\xfc\xbf\x9e\x6a\xf9\x97\x25\xe7\x7f\x31\xd5\xf2\x2f\x4b\xce\xff" "\x1b\xa9\x96\x7f\x59\x72\xfe\xdf\x4c\xb5\xfc\xcb\x92\xf3\x7f\x23\xd5\xf2" "\x2f\x4b\xce\xff\x5b\xa9\x96\x7f\x59\x72\xfe\xdf\x4e\xb5\xfc\xcb\x92\xf3" "\xff\x4e\xaa\xe5\x5f\x96\x9c\xff\x9b\xa9\x96\x7f\x59\x1e\x7e\xff\xbf\x1b" "\x07\xfd\x46\x3f\x65\x76\x50\xfa\xe3\xc6\x51\xbe\xd1\xf1\x13\x13\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x88\x79\x9c\x4e\xdc\xf5\x36\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x9f\x1d\x38" "\x10\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\x2a\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x61\xef\xee\x62\xe4\x2a\xef\xfb\x81\x9f\x7d\xb3" "\xd7\xe6\xcd\x09\x84\xbf\xf1\xdf\x90\xb5\x71\x8c\x31\x0b\xbb\x7e\xc1\x2f" "\x69\xdd\x38\x84\x10\x0a\x49\x53\xde\xd2\xd0\x17\x6c\xd7\xbb\x36\x9b\xf8" "\x0d\xaf\xdd\x00\x41\xb2\x23\x92\x06\x29\x8e\x1a\x55\xa9\xca\x4d\xdb\x24" "\x42\x2d\x37\x55\xac\x2a\x17\x69\x45\x11\x17\x55\xab\x5e\x95\xe6\x22\x95" "\xaa\x2a\x55\xa5\x5c\xa0\x8a\xa4\x24\x52\xa5\xb6\x2a\x6c\x35\xe7\x3c\xcf" "\xb3\x33\xb3\xb3\x33\xbb\x78\xb0\x67\xce\xf9\x7c\x24\xfc\xf3\xce\x9c\x99" "\x73\xe6\xcc\x33\xb3\xfb\x5d\xf3\xdd\x05\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa8" "\xb7\xe1\x63\xd3\x5f\x1d\xc8\xb2\xac\xf6\x5f\xfe\xc7\x9a\x2c\xbb\xba\xf6" "\xf7\x55\x63\x6b\xf2\xcb\x3e\x7c\xa5\x8f\x10\x00\x00\x00\xb8\x54\x6f\xe7" "\x7f\xbe\x75\x5d\xba\x60\xff\x12\x6e\x54\xb7\xcd\xdf\xdd\xf2\x0f\xdf\x9b" "\x9b\x9b\x9b\xcb\x3e\x3b\xf4\x07\x23\xdf\x9c\x9b\x4b\x57\x8c\x65\xd9\xc8" "\xca\x2c\xcb\xaf\x8b\x2e\xfe\xdb\xe3\x03\xf5\xdb\x04\xcf\x67\xa3\x03\x83" "\x75\x1f\x0f\x76\xd8\xfd\x50\x87\xeb\x87\x3b\x5c\x3f\xd2\xe1\xfa\x15\x1d" "\xae\x5f\xd9\xe1\xfa\xd1\x0e\xd7\x2f\x38\x01\x0b\xac\x2a\xbe\x1f\x93\xdf" "\xd9\xa6\xfc\xaf\x6b\x8a\x53\x9a\xdd\x90\x8d\xe4\xd7\x6d\x6a\x71\xab\xe7" "\x07\x56\x0e\x0e\xc6\xef\xe5\xe4\x06\xf2\xdb\xcc\x8d\x1c\xc9\x66\xb2\x63" "\xd9\x74\x36\xd9\xb0\x7d\xb1\xed\x40\xbe\xfd\x2b\x1b\x6a\xfb\xba\x3f\x8b" "\xfb\x1a\xac\xdb\xd7\xfa\xda\x0a\xf9\xd9\x73\x87\xe3\x31\x0c\x84\x73\xbc" "\xa9\x61\x5f\xf3\xf7\x19\xfd\xe4\xa3\xd9\xd8\xcf\x7f\xf6\xdc\xe1\x3f\x3d" "\xf3\xe6\x4d\xad\x66\xc7\xd3\xd0\x70\x7f\xc5\x71\x6e\xd9\x58\x3b\xce\x2f" "\x87\x4b\x8a\x63\x1d\xc8\x56\xa6\x73\x12\x8f\x73\xb0\xee\x38\xd7\xb7\x78" "\x4e\x86\x1a\x8e\x73\x20\xbf\x5d\xed\xef\xcd\xc7\xf9\xd6\x12\x8f\x73\x68" "\xfe\x30\x2f\xab\xe6\xe7\x7c\x34\x1b\xcc\xff\xfe\x7a\x7e\x9e\x86\xeb\xbf" "\xad\x97\xce\xd3\xfa\x70\xd9\x7f\xdd\x9a\x65\xd9\xf9\xf9\xc3\x6e\xde\x66" "\xc1\xbe\xb2\xc1\x6c\x75\xc3\x25\x83\xf3\xcf\xcf\x68\xb1\x22\x6b\xf7\x51" "\x5b\x4a\xef\xcf\x86\x97\xb5\x4e\x37\x2c\x61\x9d\xd6\xe6\xd4\xa6\xc6\x75" "\xda\xfc\x9a\x88\xcf\xff\x86\x70\xbb\xe1\x45\x8e\xa1\xfe\x69\xfa\xc9\x97" "\x56\x2c\x78\xde\x97\xbb\x4e\xa3\xda\xa3\x5e\xec\xb5\xd2\xbc\x06\xbb\xfd" "\x5a\xe9\x95\x35\x18\xd7\xc5\xeb\xf9\x83\x7e\xa1\xe5\x1a\xdc\x14\x1e\xff" "\x73\x9b\x17\x5f\x83\x2d\xd7\x4e\x8b\x35\x98\x1e\x77\xdd\x1a\xdc\xd8\x69" "\x0d\x0e\xae\x18\xca\x8f\x39\x3d\x09\x03\xf9\x6d\xe6\xd7\xe0\xb6\x86\xed" "\x87\xf2\x3d\x0d\xe4\xf3\x8d\xcd\xed\xd7\xe0\xc4\x99\xe3\xa7\x26\x66\x9f" "\x79\xf6\xce\x99\xe3\x87\x8e\x4e\x1f\x9d\x3e\xb1\x63\xdb\xb6\xc9\x1d\xbb" "\x76\xed\xd9\xb3\x67\xe2\xc8\xcc\xb1\xe9\xc9\xe2\xcf\x77\x79\xb6\x7b\xdf" "\xea\x6c\x30\xbd\x06\x36\x86\x73\x17\x5f\x03\xb7\x35\x6d\x5b\xbf\x54\xe7" "\xbe\xdd\xbd\xd7\xe1\x68\x9b\xd7\xe1\x9a\xa6\x6d\xbb\xfd\x3a\x1c\x6e\x7e" "\x70\x03\x97\xe7\x05\xb9\x70\x4d\x17\xaf\x8d\x47\x6b\x27\x7d\xf4\xc2\x60" "\xb6\xc8\x6b\x2c\x7f\x7e\xb6\x5e\xfa\xeb\x30\x3d\xee\xba\xd7\xe1\x70\xdd" "\xeb\xb0\xe5\xe7\x94\x16\xaf\xc3\xe1\x25\xbc\x0e\x6b\xdb\x9c\xda\xba\xb4" "\xaf\x59\x86\xeb\xfe\x6b\x75\x0c\xef\xd5\xe7\x82\x35\x75\x6b\xb0\xf9\xeb" "\x91\xe6\x35\xd8\xed\xaf\x47\x7a\x65\x0d\x8e\x86\x75\xf1\x2f\x5b\x17\xff" "\x5c\xb0\x3e\x1c\xef\x0b\xe3\xcb\xfd\x7a\x64\x68\xc1\x1a\x4c\x0f\x37\xbc" "\xf7\xd4\x2e\x49\x5f\xef\x8f\xee\xc9\x47\xab\x75\xb9\xae\x76\xc5\x55\x2b" "\xb2\xb3\xb3\xd3\xa7\xef\x7a\xfa\xd0\x99\x33\xa7\xb7\x65\x61\x5c\x16\xd7" "\xd7\xad\x95\xe6\xf5\xba\xba\xee\x31\x65\x0b\xd6\xeb\xe0\xb2\xd7\xeb\xfe" "\x99\x5b\x5e\x58\xd7\xe2\xf2\x35\xe1\x5c\x8d\xde\x59\xfb\x63\x74\xd1\xe7" "\xaa\xb6\xcd\xce\xbb\xda\x3f\x57\xf9\x67\xb7\xd6\xe7\xb3\xe1\xd2\xed\x59" "\x18\x5d\x76\xb9\xcf\x67\xab\xcf\xe6\xb5\xf3\x99\xb2\x64\x9b\xf3\x59\xdb" "\xe6\xcb\x13\x97\xfe\xb5\x78\xca\xa5\x75\xef\xbf\x23\x8b\xbc\xff\xc6\xdc" "\xff\x4e\xb1\xbf\x74\x57\xcf\x0f\x8d\x0c\x17\xaf\xdf\xa1\x74\x76\x46\x1a" "\xde\x8f\x1b\x9f\xaa\xe1\xfc\xbd\x6b\x20\xdf\xf7\x5b\x13\x4b\x7b\x3f\x1e" "\x09\xff\x5d\xee\xf7\xe3\x1b\xda\xbc\x1f\xaf\x6d\xda\xb6\xdb\xef\xc7\x23" "\xcd\x0f\x2e\xbe\x1f\x0f\x74\xfa\x6e\xc7\xa5\x69\x7e\x3e\x47\xc3\x3a\x39" "\x36\xd9\xfe\xfd\xb8\xb6\xcd\xda\xed\xcb\x5d\x93\xc3\x6d\xdf\x8f\x6f\x0d" "\x73\x20\x9c\xff\xdb\x43\x52\x48\xb9\xa8\x6e\xed\x2c\xb6\x6e\xd3\xbe\x86" "\x87\x47\xc2\xe3\x1a\x8e\x7b\x68\x5c\xa7\x3b\x1a\xb6\x1f\x09\xd9\xac\xb6" "\xaf\x97\xb7\xbf\xbb\x75\xba\xe5\xd6\xe2\xbe\x86\xd2\xa3\x9b\x77\xb9\xd6" "\xe9\x58\xd3\xb6\xdd\x5e\xa7\xe9\xfd\x6a\xb1\x75\x3a\xd0\xe9\xbb\x6f\xef" "\x4e\xf3\xf3\x39\x1a\xd6\xc5\x0d\x3b\xda\xaf\xd3\xda\x36\xaf\xed\xbc\xf4" "\xf7\xce\x55\xf1\xaf\x75\xef\x9d\x2b\x3a\xad\xc1\x91\xa1\x15\xb5\x63\x1e" "\x49\x8b\xb0\x78\xbf\x9f\x5b\x15\xd7\xe0\x5d\xd9\xe1\xec\x64\x76\x2c\x9b" "\xca\xaf\x5d\x91\xaf\xa7\x81\x7c\x5f\xe3\x77\x2f\x6d\x0d\xae\x08\xff\x5d" "\xee\xf7\xca\xb5\x6d\xd6\xe0\x96\xa6\x6d\xbb\xbd\x06\xd3\xe7\xb1\xc5\xd6" "\xde\xc0\xf0\xc2\x07\xdf\x05\xcd\xcf\xe7\x68\x58\x17\x2f\xde\xdd\x7e\x0d" "\xd6\xb6\xb9\x77\x77\x77\xbf\x76\xdd\x12\x2e\x49\xdb\xd4\x7d\xed\xda\xfc" "\xfd\xb5\xc5\xbe\xe7\xb5\xae\xe9\x34\xbd\x97\xdf\xf3\xaa\x1d\xe7\xdf\xec" "\x6e\xff\xbd\xd9\xda\x36\xc7\xf6\x2c\x37\x67\xb6\x3f\x4f\x77\x84\x4b\xae" "\x6a\x71\x9e\x9a\x5f\xbf\x8b\xbd\xa6\xa6\xb2\xcb\x73\x9e\xd6\x86\xe3\x7c" "\x73\xcf\xe2\xe7\xa9\x76\x3c\xb5\x6d\xbe\xb9\x77\x89\xeb\x69\x7f\x96\x65" "\xe7\x9e\xba\x27\xff\x7e\x6f\xf8\xf7\x95\xbf\x38\xfb\xc3\xef\x35\xfc\xbb" "\x4b\xab\x7f\xd3\x39\xf7\xd4\x3d\x3f\xbd\xe6\xc8\xdf\x2e\xe7\xf8\x01\xe8" "\x7f\xef\x14\x63\x75\xf1\xb9\xae\xee\x5f\xa6\x96\xf2\xef\xff\x00\x00\x00" "\x40\x5f\x88\xb9\x7f\x30\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x3f\xfe" "\x5f\xe1\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x70\x98\x49\x45\xf2\xff" "\xda\x7b\xdf\x9c\x79\xe7\x5c\x96\x9a\xf9\x73\x41\xbc\x3e\x9d\x86\x07\x8a" "\xed\x62\xc7\x75\x32\x7c\x3c\x36\x37\xaf\x76\xf9\x3d\x2f\x4d\xff\xe7\x5f" "\x9d\x5b\xda\xbe\x07\xb3\x2c\xfb\xdf\x07\xbe\xd8\x72\xfb\xb5\x0f\xc4\xe3" "\x2a\x8c\x85\xe3\xbc\xf8\xf1\xc6\xcb\x17\xde\xf0\xdc\x92\xf6\x7f\xf0\xb1" "\xf9\xed\xea\xfb\xeb\xdf\x0a\xf7\x1f\x1f\xcf\x52\x97\x41\xab\x0a\xee\x64" "\x96\x65\xaf\x5c\xf7\xf5\x7c\x3f\x63\x8f\x5f\xc8\xe7\x6b\x0f\x1c\xcc\xe7" "\xc3\xe7\x5f\x78\xbe\xb6\xcd\x5b\x7b\x8b\x8f\xe3\xed\xdf\xb8\xbe\xd8\xfe" "\x8f\x42\xf9\x77\xff\x91\x43\x0d\xb7\x7f\x23\x9c\x87\x1f\x87\x39\xf9\x60" "\xeb\xf3\x11\x6f\xf7\xdd\x0b\xb7\xaf\xdf\xfd\x99\xf9\xfd\xc5\xdb\x0d\x6c" "\xbc\x36\x7f\xd8\x2f\x3e\x51\xdc\x6f\xfc\x39\x39\xdf\x78\xbe\xd8\x3e\x9e" "\xe7\xc5\x8e\xff\xaf\xbf\xf6\xf2\x77\x6b\xdb\x3f\xfd\xa1\xd6\xc7\x7f\x6e" "\xb0\xf5\xf1\xbf\x1c\xee\xf7\xa5\x30\xff\xfb\xe6\x62\xfb\xfa\xe7\xa0\xf6" "\x71\xbc\xdd\x57\xc2\xf1\xc7\xfd\xc5\xdb\xdd\xf5\x9d\x57\x5b\x1e\xff\xc5" "\xaf\x16\xdb\x9f\xba\xaf\xd8\xee\x60\x98\x71\xff\x5b\xc2\xc7\x9b\xee\x7b" "\x73\xa6\xfe\x7c\x3d\x3d\x70\xa8\xe1\x71\x65\x9f\x28\xb6\x8b\xfb\x9f\xfc" "\xe1\xef\xe5\xd7\xc7\xfb\x8b\xf7\xdf\x7c\xfc\xa3\x07\x2e\x34\x9c\x8f\xe6" "\xf5\xf1\xda\x0f\x8a\xfb\x99\x68\xda\x3e\x5e\x1e\xf7\x13\xfd\x65\xd3\xfe" "\x6b\xf7\x53\xbf\x3e\xe3\xfe\x5f\xfe\xdd\x83\x0d\xe7\xb9\xd3\xfe\x2f\x3e" "\xfc\xc6\xcd\xb5\xfb\x6d\xde\xff\x1d\x4d\xdb\x9d\x7a\x6a\x6b\xbe\xff\xf9" "\xfb\x6b\xfc\x89\x4d\x7f\xfc\x95\xaf\xb7\xdc\x5f\x3c\x9e\xfd\x7f\x7e\xaa" "\xe1\xf1\xec\x7f\x28\xbc\x8e\xc3\xfe\x5f\x7c\x22\xac\xc7\x70\xfd\xff\x5c" "\x2c\xee\xaf\xf9\xa7\x2b\x1c\x7c\xa8\xf1\xfd\x27\x6e\xff\xad\x35\xe7\x1a" "\x1e\x4f\x74\xff\xcf\x8b\xfd\x5f\xfc\xc8\xd1\x7c\xae\x1c\x5d\xb5\xfa\xaa" "\xab\xaf\xb9\xf6\xfc\x07\x6b\xe7\x2e\xcb\x5e\x7f\xa4\xb8\xbf\x4e\xfb\x3f" "\xfa\x27\x27\x1b\x8e\xff\xdb\x37\x16\xe7\x23\x5e\x1f\x3b\xfa\xcd\xfb\x5f" "\x4c\xdc\xff\xe9\x2f\x8c\x9f\x38\x39\x7b\x76\x66\xaa\xee\xac\xe6\x3f\x3b" "\xe7\x93\xc5\xf1\xc4\xe3\xbd\x2e\xbc\xb7\x36\x7f\x7c\xe0\xe4\x99\x27\xa7" "\x4f\x8f\x4d\x8e\x4d\x66\xd9\x58\x79\x7f\x84\xde\xbb\xf6\x9d\x30\x7f\x5a" "\x8c\xf3\xcb\xbd\xfd\xd6\xc7\xc2\xf3\xb9\xee\x0f\x5f\x59\xbd\xf9\x1f\xbf" "\x16\x2f\xff\xa7\x47\x8b\xcb\x2f\x3c\x58\x7c\xde\xba\x2d\x6c\xf7\x8d\x70" "\xf9\x9a\xf0\xfc\x5d\xea\xfe\x5f\xdc\x70\x63\xfe\xfa\x1e\x78\xad\xf8\xb8" "\xa1\xc7\xde\x05\xeb\x37\xfd\xfb\x9e\x25\x6d\x18\x1e\x7f\xf3\xd7\x05\x71" "\xbd\x9f\xfa\xc0\x93\xf9\x79\xa8\x5d\x97\x7f\xde\x88\xaf\xeb\x4b\x3c\xfe" "\x1f\x4d\x15\xf7\xf3\xfd\x70\x5e\xe7\xc2\x4f\x66\xde\x78\xe3\xfc\xfe\xea" "\xb7\x8f\x3f\x1b\xe1\xc2\x23\xc5\xeb\xfd\x92\xcf\x5f\x78\x9b\x8b\xcf\xeb" "\x9f\x85\xe7\xfb\x53\x3f\x2e\xee\x3f\x1e\x57\x7c\xbc\x3f\x0a\x5f\xc7\xbc" "\xba\xb6\xf1\xfd\x2e\xae\x8f\xef\x9f\x1b\x6c\xbe\xff\xfc\xa7\x78\x9c\x0f" "\xef\x27\xd9\xf9\xe2\xfa\xb8\x55\x3c\xdf\x17\xde\xba\xb1\xe5\xe1\xc5\x9f" "\x43\x92\x9d\xbf\x29\xff\xf8\xf7\xd3\xfd\xdc\xb4\xac\x87\xb9\x98\xd9\x67" "\x66\x27\x8e\xcd\x9c\x38\xfb\xf4\xc4\x99\xe9\xd9\x33\x13\xb3\xcf\x3c\x7b" "\xe0\xf8\xc9\xb3\x27\xce\x1c\xc8\x7f\x96\xe7\x81\xcf\x75\xba\xfd\xfc\xfb" "\xd3\xea\xfc\xfd\x69\x6a\x7a\xd7\xce\x2c\x7f\xb7\x3a\x59\x8c\xf7\xd8\x95" "\x3e\xfe\x53\x8f\x1d\x9e\xda\x3d\xb9\x79\x6a\xfa\xc8\xa1\xb3\x47\xce\x3c" "\x76\x6a\xfa\xf4\xd1\xc3\xb3\xb3\x87\xa7\xa7\x66\x37\x1f\x3a\x72\x64\xfa" "\x0b\x9d\x6e\x3f\x33\xb5\x6f\xdb\xf6\xbd\x3b\x76\x6f\x1f\x3f\x3a\x33\xb5" "\x6f\xcf\xde\xbd\x3b\xf6\x8e\xcf\x9c\x38\x59\x3b\x8c\xe2\xa0\x3a\xd8\x35" "\xf9\xf9\xf1\x13\xa7\x0f\xe4\x37\x99\xdd\xb7\x73\xef\xb6\xbb\xef\xde\x39" "\x39\x7e\xfc\xe4\xd4\xf4\xbe\xdd\x93\x93\xe3\x67\x3b\xdd\x3e\xff\xdc\x34" "\x5e\xbb\xf5\xef\x8c\x9f\x9e\x3e\x76\xe8\xcc\xcc\xf1\xe9\xf1\xd9\x99\x67" "\xa7\xf7\x6d\xdb\xbb\x6b\xd7\xf6\x8e\x3f\x0d\xf0\xf8\xa9\x23\xb3\x63\x13" "\xa7\xcf\x9e\x98\x38\x3b\x3b\x7d\x7a\xa2\x78\x2c\x63\x67\xf2\x8b\x6b\x9f" "\xfb\x3a\xdd\x9e\x72\x9a\xfd\xd7\xe2\xeb\xd9\x66\x03\xc5\x0f\xe2\xcb\x3e" "\x7d\xc7\xae\xf4\xf3\x59\x6b\x5e\xfa\xd2\xa2\x77\x55\x6c\xd2\xf4\x03\x44" "\xdf\x0c\x3f\x8b\xe6\xef\xdf\x77\x6a\xcf\x52\x3e\x8e\xb9\x7f\x24\xcc\xa4" "\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x15\x61\x26\xf2\x3f\x00\x00\x00" "\x94\x46\xcc\xfd\x2b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x47\xc3" "\x4c\x2a\x92\xff\xdf\xd3\xfe\x7f\x87\x5f\xe9\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xdf\x6d\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf" "\xff\xaf\xff\xcf\xbb\xb2\x58\x04\xeb\xb5\xfe\x7f\xcc\xfd\xab\xb2\xac\x92" "\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xd5\x61\x26\xf2\x3f\x00\x00\x00\x94" "\x46\xcc\xfd\x57\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x5f\x1d\x66" "\x52\x91\xfc\xef\xf7\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb7\xde\xbf\xfe" "\x7f\x7f\xd2\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba" "\xaa\xd7\xfa\xff\x31\xf7\x5f\x13\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10" "\x73\xff\xb5\x61\x26\x6d\xf2\x7f\xf3\xbf\x4d\x01\x00\x00\x00\xbd\x2d\xe6" "\xfe\xeb\xc2\x4c\xfc\xfb\x3f\x00\x00\x00\x94\x46\xcc\xfd\x6b\xc2\x4c\x2a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x5b\xef\x5f\xff\xbf\x3f" "\xe9\xff\xb7\xa7\xff\xdf\x81\xfe\xbf\xfe\x7f\x0f\xf5\xff\x87\x32\xfd\x7f" "\xfa\x5f\xaf\xf5\xff\x63\xee\x7f\x5f\x98\x49\x45\xf2\x3f\x00\x00\x00\x54" "\x41\xcc\xfd\xef\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x3e\xcc" "\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x86\x30\x93\x8a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xd6\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9" "\xff\x77\xa0\xff\xaf\xff\xdf\x43\xfd\x7f\xbf\xff\x9f\x32\xe8\xb5\xfe\x7f" "\xcc\xfd\x1f\x08\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xc6\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xff\x17\x66\x22\xff\x03\x00\x00" "\x40\x69\xc4\xdc\xbf\x36\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\xbf\xf5\xfe\xf5\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\xeb" "\xff\xeb\xff\xeb\xff\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\xa6\x30\x93\x8a\xe4" "\x7f\x00\x00\x00\xa8\x82\x98\xfb\xd7\x85\x99\xc8\xff\x00\x00\x00\x50\x1a" "\x31\xf7\xff\xff\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xf5\x61\x26" "\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xad\xf7\xaf\xff\xdf" "\x9f\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea" "\xb5\xfe\x7f\xcc\xfd\x37\x87\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc" "\x7f\x4b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x07\xc3\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\xc7\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x5b\xef\x5f\xff\xbf\x3f\xe9\xff\xb7\xa7\xff\xdf\x81" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x5d\xd5\x6b\xfd\xff\x98\xfb\x37\x84\x99" "\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x31\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\xff\xd6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x4d" "\x61\x26\x15\xc9\xff\xbd\xd6\xff\x1f\x89\xc7\xa5\xff\x9f\xd3\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\x5f\x1e\xfd\xff\xf6\xf4\xff\x3b\xd0\xff\xd7\xff" "\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73\xff\x87\xc2\x4c\x2a\x92\xff" "\x01\x00\x00\xa0\x0a\x62\xee\xdf\x1c\x66\x22\xff\x03\x00\x00\x40\x69\xc4" "\xdc\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x96\x30\x93\x8a" "\xe4\xff\x5e\xeb\xff\xa7\xe3\xd2\xff\xcf\xe9\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\x2f\x8f\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\xeb\xff\xeb\xff\xeb\xff" "\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\xf6\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8" "\x82\x98\xfb\xb7\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x11\x66" "\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f\x1e\x66\x52\x91\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7a\xff\xfa\xff\xfd\x49\xff\xbf\x3d\xfd" "\xff\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xaa\x5e\xeb\xff\xc7\xdc\x7f" "\x67\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x77\x85\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\x4f\x84\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\x4f\x86\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb7" "\xde\xbf\xfe\x7f\x7f\xd2\xff\x6f\xaf\x87\xfa\xff\xff\xf1\x83\x16\x17\xea" "\xff\xeb\xff\xf7\xf3\xf1\xeb\xff\xeb\xff\xb3\x50\xaf\xf5\xff\x63\xee\xdf" "\x16\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xf6\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\x1d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\x3b\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x5b" "\xef\x5f\xff\xbf\x3f\xe9\xff\xb7\xd7\x43\xfd\xff\x96\xf4\xff\xf5\xff\xfb" "\xf9\xf8\xf5\xff\xf5\xff\x59\xa8\xd7\xfa\xff\x31\xf7\xdf\x1d\x66\x52\x91" "\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xae\x30\x13\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\xdd\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x7b\xc2\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x4b\xd1\xff\x7f\x3b\xbc\x0c\xf5\xff" "\xf5\xff\x2b\x4f\xff\xbf\x3d\xfd\xff\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff" "\xe9\xaa\x5e\xeb\xff\xc7\xdc\xbf\x37\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa" "\x20\xe6\xfe\x0f\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x42\x98" "\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x2f\x86\x99\x54\x24\xff\xeb\xff" "\x5f\x89\xfe\xff\xca\x2c\xcb\xf4\xff\xf5\xff\xfd\xfe\x7f\xfd\xff\xf9\xb3" "\xaa\xff\xdf\x3d\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff" "\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\x7d\x61\x26\x15\xc9\xff\x00\x00\x00\x50" "\x05\x31\xf7\xff\x52\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x47\xc2" "\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xf7\x87\x99\x54\x24\xff\xeb\xff" "\xfb\xfd\xff\xfa\xff\xfa\xff\xfa\xff\xad\xf7\xaf\xff\xdf\x9f\xf4\xff\xdb" "\xab\x60\xff\x7f\xac\xf8\x5b\xab\xcf\xd4\x2d\xe8\xff\xeb\xff\xeb\xff\xeb" "\xff\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\xa3\x61\x26\x15\xc9\xff\x00\x00\x00" "\x50\x05\x31\xf7\xdf\x13\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xb1" "\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x7b\xc3\x4c\x2a\x92\xff\xf5" "\xff\xf5\xff\xf5\xff\xcb\xdd\xff\xff\xe2\x3f\xaf\x4b\x8f\x55\xff\x5f\xff" "\xbf\x0a\xf4\xff\xdb\xab\x60\xff\xdf\xef\xff\x5f\x86\x2b\xdd\x9f\xef\xf7" "\xe3\xd7\xff\xd7\xff\x67\xa1\x5e\xeb\xff\xc7\xdc\xff\xf1\x30\x93\x8a\xe4" "\x7f\x00\x00\x00\xa8\x82\x98\xfb\xef\x0b\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xff\x44\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xfd\x61\x26" "\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xe5\xee\xff\xb7\xda\xbf\xfe\xbf\xfe" "\x7f\x99\xe9\xff\xb7\xa7\xff\xdf\x81\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x5d" "\xd5\x6b\xfd\xff\x98\xfb\x7f\x39\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20" "\xe6\xfe\x07\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x1f\x0c\x33\x91" "\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x64\x98\x49\x45\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xeb\xfd\xeb\xff\xf7\x27\xfd\xff\xf6\xf4\xff" "\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73\xff\xa7" "\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\x95\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\x4f\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31" "\xf7\xff\x6a\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f" "\xeb\xfd\xeb\xff\xf7\x27\xfd\xff\xf6\xf4\xff\x3b\xd0\xff\xd7\xff\xd7\xff" "\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73\xff\x43\x61\x26\x15\xc9\xff\x00\x00" "\x00\x50\x05\x31\xf7\x3f\x1c\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff" "\x48\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xa3\x61\x26\x15\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xad\xf7\x7f\xc5\xfa\xff\x6f\xeb" "\xff\x5f\x0a\xfd\xff\xf6\xf4\xff\x3b\xb8\xbc\xfd\xff\x57\xf5\xff\xbb\xeb" "\x4a\x1f\xbf\xfe\xbf\xfe\x3f\x0b\xf5\x5a\xff\x3f\xe6\xfe\xc7\xc2\x4c\x2a" "\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\x4c\x98\x89\xfc\x0f\x00\x00\x00" "\xa5\x11\x73\xff\xaf\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x36" "\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xf5\xfe\xfd" "\xfe\xff\xfe\xa4\xff\xdf\x9e\xfe\x7f\x07\x7e\xff\xbf\xfe\xbf\xfe\xbf\xfe" "\x3f\x5d\xd5\x6b\xfd\xff\x98\xfb\x1f\x0f\x33\xa9\x48\xfe\x07\x00\x00\x80" "\x2a\x88\xb9\xff\xd7\xc3\x4c\x8a\xfc\x3f\x7c\x65\x8e\x0a\x00\x00\x00\xe8" "\xa6\x98\xfb\x7f\x23\xcc\xc4\xbf\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x9b" "\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xad\xf7\x7f" "\x89\xfd\xff\xc1\xe6\x0b\xf4\xff\x2f\x0f\xfd\xff\xf6\xf4\xff\x3b\xd0\xff" "\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73\xff\x6f\x85\x99\x54" "\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x44\x98\x89\xfc\x0f\x00\x00\x00" "\xa5\x11\x73\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x83\x61" "\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xad\xf7\xef\xf7" "\xff\xf7\x27\xfd\xff\xf6\xf4\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7" "\xab\x7a\xad\xff\x1f\x73\xff\xa1\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82" "\x98\xfb\x7f\x3b\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x70\x98\x89" "\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x54\x98\x49\x45\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xeb\xfd\xeb\xff\xf7\x27\xfd\xff\xf6\xf4\xff" "\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73\xff\x74" "\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x47\xc2\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\x8f\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7" "\x3f\x19\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\x8d\xfe\x7f" "\x71\x3b\xfd\xff\xf2\xd3\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xba\xaa\xd7\xfa\xff\x31\xf7\xcf\x84\x99\x54\x24\xff\x03\x00\x00" "\x40\x15\xc4\xdc\xff\xb9\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xcf" "\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x1f\x0b\x33\xa9\x48\xfe\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xaf\x46\xff\xdf\xef\xff\xaf\x0a\xfd\xff\xf6" "\xf4\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73" "\xff\xf1\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x4f\x84\x99\xc8" "\xff\x00\x00\x00\x50\x1a\x31\xf7\x9f\x0c\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\x3f\x15\x66\x52\x91\xfc\x5f\xf4\xff\x57\xa5\x8f\xf5\xff\xf5\xff" "\xfb\xa1\xff\x3f\xa8\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x08\xfd\xff\xf6\xf4" "\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73\xff" "\x53\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x9f\x0e\x33\x91\xff" "\x01\x00\x00\xa0\x34\x62\xee\x9f\x0d\x33\x91\xff\x01\x00\x00\xf8\x3f\xf6" "\xee\xb2\x49\x90\xf2\xea\xe3\xf0\x3c\x55\x3c\x09\x24\x95\xef\xc0\x17\xc8" "\xb7\x8b\x2b\x71\x77\x77\x27\xee\xae\xc4\xdd\xdd\x8d\xb8\x1b\x09\x91\x2a" "\x52\x19\xce\x39\x9b\x30\x9d\xee\x65\xb7\x37\x73\xf7\x7d\xae\xeb\xcd\xa9" "\x02\x86\x6e\x60\xd9\xaa\xff\x8b\x5f\x35\xd3\xc8\xdd\x7f\xb7\xb8\xa5\xc9" "\xfe\xf7\xfd\x7f\xfd\xff\x11\xfb\x7f\xdf\xff\x9f\xb8\xff\xbf\x46\xff\xaf" "\xff\xbf\x3c\xfa\xff\x75\xfa\xff\x0d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xae" "\x46\xeb\xff\x73\xf7\xdf\x3d\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\xf7\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x7b\xc6\x2d\xf6\x3f\x00" "\x00\x00\x4c\x23\x77\xff\xbd\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\x87\xea\xff\x7d\xff\x5f\xff\x7f\x99\xf4\xff\xeb\xce\xf6\xff\x57\x2d" "\xff\x85\xb7\xa7\xff\xcf\xff\x19\xf4\xff\x45\xff\xaf\xff\x1f\xa7\xff\xbf" "\xab\xfe\x9f\x73\x35\x5a\xff\x9f\xbb\xff\xde\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xdc\xba\xfb\x6f\x38\xb9\xcf\xe9\xb5\xff\x01\x00\x00\x60\x46\xb9" "\xfb\xef\x1b\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xf7\x8b\x5b\x9a\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x2f\x3f\x5f\xff\x7f\x4c\xfa\xff" "\x75\xbe\xff\xbf\x41\xff\xaf\xff\x9f\xae\xff\xf7\xfd\x7f\xce\xd7\x68\xfd" "\x7f\xee\xfe\xfb\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x01\x71" "\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xc0\xb8\xc5\xfe\x07\x00\x00\x80" "\x69\xe4\xee\xbf\x2e\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xbf\xfc\x7c\xfd\xff\x31\xe9\xff\xd7\xe9\xff\x37\xe8\xff\xf5\xff\xfa\x7f" "\xfd\x3f\xbb\x1a\xad\xff\xcf\xdd\xff\xa0\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\x3f\x38\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x1f\x12\xb7" "\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x0f\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\x2f\x3f\x5f\xff\x7f\x4c\xfa\xff\x75\x2d\xfa\xff" "\x9b\xee\xa4\xff\xbf\x44\xe7\xdd\xcf\x1f\xfd\xfd\xf5\xff\xfa\x7f\xce\x1a" "\xad\xff\xcf\xdd\xff\xb0\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f" "\x3c\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x1f\x11\xb7\xd8\xff\x00\x00" "\x00\x30\x8d\xdc\xfd\x8f\x8c\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x2f\x3f\x5f\xff\x7f\x4c\xfa\xff\x75\x2d\xfa\x7f\xdf\xff\xbf\x64" "\xe7\xdd\xcf\x1f\xfd\xfd\xf5\xff\xfa\x7f\xce\x1a\xad\xff\xcf\xdd\xff\xa8" "\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x3a\x6e\xb1\xff\x01\x00" "\x00\x60\x1a\xb9\xfb\x1f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x8f" "\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x2f\x3f\x5f\xff" "\x7f\x4c\xfa\xff\x75\x87\xea\xff\xaf\xbd\xf0\xc7\xf5\xff\xb7\xd2\xff\x8f" "\xfd\xfe\xfa\x7f\xfd\x3f\x67\x8d\xd6\xff\xe7\xee\x7f\x5c\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x1f\x1f\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc" "\xfd\x4f\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x27\xc6\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x97\x9f\xaf\xff\x3f\x26\xfd\xff" "\xba\x43\xf5\xff\x57\xe6\xfb\xff\xb7\xdc\xf6\xf7\x98\xff\xa0\xff\xd7\xff" "\xeb\xff\xf5\xff\xec\x6a\xb4\xfe\x3f\x77\xff\x93\xe2\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xe4\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f" "\x4a\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x35\x6e\x69\xb2\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfc\x7c\xfd\xff\x31\xe9\xff\xd7\xe9" "\xff\x37\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xbb\x1a\xad\xff\xcf\xdd\xff\xb4" "\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x3d\x6e\xb1\xff\x01\x00" "\x00\x60\x1a\xb9\xfb\x9f\x11\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xcf" "\x8c\x5b\x9a\xec\x7f\xfd\xff\x42\xff\xff\x7f\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x3f\x2a\xfd\xff\x3a\xfd\xff\x06\xfd\xbf\xfe\x5f\xff\xaf\xff\x67" "\x57\xa3\xf5\xff\xb9\xfb\x9f\x15\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\x67\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x73\xe2\x16\xfb\x1f" "\x00\x00\x00\xa6\x91\xbb\xff\xb9\x71\x4b\x93\xfd\xaf\xff\xf7\xfd\x7f\xfd" "\xbf\xfe\x5f\xff\xbf\xfc\x7c\xfd\xff\x31\xe9\xff\xd7\xe9\xff\x37\xe8\xff" "\xf5\xff\xfa\x7f\xfd\x3f\xbb\x1a\xad\xff\xcf\xdd\xff\xbc\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\x3f\x3f\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\x5f\x10\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x8c\x5b\x9a\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x2f\x3f\x5f\xff\x7f\x4c\xfa\xff" "\x75\xfa\xff\x0d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xae\x46\xeb\xff\x73\xf7" "\xbf\x28\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x2f\x8e\x5b\xec\x7f" "\x00\x00\x00\x98\x46\xee\xfe\x97\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\x4b\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x5b\xf4\xff\xd7" "\xe9\xff\xbb\xd0\xff\xaf\xd3\xff\x6f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x76" "\x35\x5a\xff\x9f\xbb\xff\x65\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee" "\xbf\x3e\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x1e\xb7\xd8\xff\x00" "\x00\x00\x30\x8d\xdc\xfd\xaf\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x6f\xd1\xff\xfb\xfe\x7f\x1b\xfa\xff\x75\x63\xf6\xff\x17\x7e\x17\xd1" "\xff\xeb\xff\x8f\xfc\xfe\xfa\x7f\xfd\x3f\x67\x8d\xd6\xff\xe7\xee\x7f\x65" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x15\xb7\xd8\xff\x00\x00" "\x00\x30\x8d\xdc\xfd\xaf\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xd7" "\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x97\x9f\xaf\xff" "\x3f\x26\xfd\xff\xba\x31\xfb\xff\x0b\xf4\xff\xfa\xff\x23\xbf\xbf\xfe\x5f" "\xff\xcf\x59\xa3\xf5\xff\xb9\xfb\x5f\x1b\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\xd7\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xeb\xe3\x16" "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x0d\x71\x4b\x93\xfd\xbf\x47\xff\xff" "\xef\xad\xae\xfe\xff\x02\xfd\xbf\xfe\xff\xb6\xbf\x3e\xf4\xff\xfa\x7f\xfd" "\xff\x95\xa7\xff\x5f\xa7\xff\xdf\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xec\x6a" "\xb4\xfe\x3f\x77\xff\x1b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x73\xdc\x62\xff\x03\x00" "\x00\xc0\x34\x72\xf7\xbf\x25\x6e\x69\xb2\xff\x7d\xff\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x97\x9f\x7f\x11\xfd\xff\xe9\x8f\xea\xff\xc7\xa2\xff\x5f\xa7" "\xff\xdf\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xec\x6a\xb4\xfe\x3f\x77\xff\x5b" "\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb6\xb8\xc5\xfe\x07\x00" "\x00\x80\x69\xe4\xee\x7f\x7b\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf" "\x23\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfc\x7c\xdf" "\xff\x3f\x26\xfd\xff\x3a\xfd\xff\x86\x9d\xfb\xff\xab\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\xbf\xb9\xd1\xfa\xff\xd3\xdd\x7f\xd5\xc9\xc9\x3b\x4f\x7f\xba\xdf" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x2b\x6e\xb1\xff\x01\x00\x00\x60\x1a" "\xb9\xfb\xdf\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xef\x89\x5b\x9a" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x2f\x3f\x5f\xff\x7f\x4c\xfa" "\xff\x75\xfa\xff\x0d\xbe\xff\xaf\xff\x9f\xb4\xff\xbf\x83\xfe\x9f\x73\x32" "\x5a\xff\x9f\xbb\xff\xbd\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f" "\x5f\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xdf\x10\xb7\xd8\xff\x00\x00" "\x00\x30\x8d\xdc\xfd\xef\x8f\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x2f\x3f\x5f\xff\x7f\x4c\xfa\xff\x75\xfa\xff\x0d\xfa\x7f\xfd\xff" "\xa4\xfd\xbf\xef\xff\x73\x5e\x46\xeb\xff\x73\xf7\x7f\x20\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\x1f\x8c\x5b\xec\x7f\x00\x00\x00\x98\x46\xee" "\xfe\x0f\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x87\xe3\x96\x26\xfb" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xcb\xcf\xd7\xff\x1f\x93\xfe\x7f" "\x9d\xfe\x7f\x83\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\xab\xd1\xfa\xff\xdc\xfd" "\x1f\x89\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x47\xe3\x16\xfb\x1f" "\x00\x00\x00\xa6\x91\xbb\xff\x63\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd" "\xff\xf1\xb8\xa5\xc9\xfe\xd7\xff\x1f\xad\xff\xbf\x25\xde\x5a\xff\xbf\xf4" "\xfe\xfa\x7f\xfd\xff\x89\xfe\xbf\x3d\xfd\xff\x3a\xfd\xff\x06\xfd\xbf\xfe" "\xbf\x49\xff\x7f\xc7\x85\x9f\xd7\xff\x73\x25\x8c\xd6\xff\xe7\xee\xff\x44" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x19\xb7\xd8\xff\x00\x00" "\x00\x30\x8d\xdc\xfd\x9f\x8a\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x4f" "\xc7\x2d\x4d\xf6\xbf\xfe\xff\x68\xfd\xbf\xef\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xff\x1a\xfd\xff\x3a\xfd\xff\x06\xfd\xbf\xfe\xbf\x49\xff\xbf\x44\xff" "\xcf\x95\x30\x5a\xff\x9f\xbb\xff\x33\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d" "\xe4\xee\xff\x6c\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x2e\x6e\xb1" "\xff\x01\x00\x00\x60\x1a\xb9\xfb\x3f\x1f\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x5f\x7e\xbe\xfe\xff\x98\xf4\xff\xeb\xf4\xff\x1b\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\x5d\x8d\xd6\xff\xe7\xee\xff\x42\xdc\xd2\x64" "\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x18\xb7\xd8\xff\x00\x00\x00\x30\x8d" "\xdc\xfd\x5f\x8a\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x2f\xc7\x2d\x4d" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x97\x9f\xaf\xff\x3f\x26\xfd" "\xff\xba\x73\xea\xff\xaf\xbe\xd8\xf7\xd3\xff\xeb\xff\x8f\xfc\xfe\xfa\x7f" "\xfd\x3f\x67\x8d\xd6\xff\xe7\xee\xff\x4a\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\xbf\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x5f\x8b\x5b" "\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xaf\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x77\xea\xff\xff\xf5\xdf\x4a\xff\x3f\x37\xfd\xff\x3a\xdf" "\xff\xdf\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xec\x6a\xb4\xfe\x3f\x77\xff\x37" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xcd\xb8\xc5\xfe\x07\x00" "\x00\x80\x69\xe4\xee\xff\x56\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f" "\x3b\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xbf\x53\xff\xef\xfb\xff" "\xf3\xd3\xff\xaf\xd3\xff\x6f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x76\x35\x5a" "\xff\x9f\xbb\xff\x3b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x6e" "\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x2f\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\xbf\x1f\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x5f\x7e\xbe\xfe\xff\x98\xf4\xff\xeb\xf4\xff\x1b\xf4\xff\xfa\x7f\xfd" "\xff\x69\xff\x7f\xfd\x5d\x4e\x4e\xf4\xff\xec\x61\xb4\xfe\x3f\x77\xff\x0f" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xc3\xb8\xc5\xfe\x07\x00" "\x00\x80\x69\xe4\xee\xbf\x31\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x7f" "\x14\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x7e\xbe\xfe" "\xff\x98\xf4\xff\xeb\xf4\xff\x1b\xf4\xff\xfa\x7f\xfd\xbf\xef\xff\xb3\xab" "\xd1\xfa\xff\xdc\xfd\x3f\x8e\x5b\x9a\xec\x7f\x00\x00\x00\x38\x98\x1b\x2f" "\xe5\x87\x72\xf7\xff\x24\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x7f\x1a" "\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x3f\x8b\x5b\x9a\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\x2f\x3f\x5f\xff\x7f\x4c\xfa\xff\x75\xfa\xff" "\x0d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xae\x46\xeb\xff\x73\xf7\xff\x3c\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xbf\x88\x5b\xec\x7f\x00\x00\x00" "\x98\x46\xee\xfe\x5f\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xaf\xe2" "\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xcb\xcf\xd7\xff\x1f" "\x93\xfe\x7f\x9d\xfe\x7f\x83\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\xab\xd1\xfa" "\xff\xdc\xfd\xbf\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x6f\xe2" "\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xb7\x71\x8b\xfd\x0f\x00\x00\x00" "\xd3\xc8\xdd\xff\xbb\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\xf2\xf3\xf5\xff\xc7\xa4\xff\x5f\xa7\xff\xdf\xa0\xff\xd7\xff\xeb\xff" "\xf5\xff\xec\x6a\xb4\xfe\x3f\x77\xff\xef\xe3\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\x87\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x63\xdc" "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x29\x6e\x69\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfc\x7c\xfd\xff\x31\xe9\xff\xd7\xe9\xff\x37" "\xe8\xff\xf5\xff\x07\xea\xff\x6f\xbe\xcd\xaf\x6e\xfd\x3f\x23\xba\xfd\xfd" "\xff\xff\xff\xb7\xbf\xd5\x2e\xfd\x7f\xee\xfe\x9b\xe2\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xe7\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff" "\x4b\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xdf\x1c\xb7\x34\xd9\xff\xfa" "\xff\xff\x75\xff\x7f\xed\x9d\x6f\xfd\xb3\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f" "\xe1\xdf\xaa\xfe\x7f\x3f\x07\xee\xff\x4f\x7f\x49\xe9\xff\xf5\xff\xfb\xf7" "\xff\xd7\x5c\xf4\x3f\xfe\x79\xf7\xf3\x97\xeb\xbc\xdf\xdf\xf7\xff\xf5\xff" "\x9c\x35\xda\xf7\xff\x73\xf7\xff\x35\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x7f\x8b\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xbf\xc7\x2d\xf6" "\x3f\x00\x00\x00\x4c\x23\x77\xff\x3f\xe2\x96\x26\xfb\x5f\xff\xef\xfb\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\xf9\xf9\xfa\xff\x63\x3a\x70\xff\x7f\x4a\xff\xaf" "\xff\xf7\xfd\xff\xe3\xbe\xbf\xfe\x5f\xff\xcf\x59\xa3\xf5\xff\xb9\xfb\xff" "\x19\x00\x00\xff\xff\xa4\xff\x79\x83", 24381); res = -1; res = syz_mount_image(/*fs=*/0x20000140, /*dir=*/0x20005e80, /*flags=MS_LAZYTIME|MS_NOSUID|MS_NODIRATIME*/ 0x2000802, /*opts=*/0x20000440, /*chdir=*/9, /*size=*/0x5f3d, /*img=*/0x20005ec0); if (res != -1) r[0] = res; memcpy((void*)0x20000080, "./file1\000", 8); res = syscall(__NR_creat, /*file=*/0x20000080ul, /*mode=*/0ul); if (res != -1) r[1] = res; memcpy((void*)0x20000440, "/dev/dma_heap/system\000", 21); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000440ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[2] = res; *(uint64_t*)0x20000100 = 0x101; *(uint32_t*)0x20000108 = r[0]; *(uint32_t*)0x2000010c = 0x80000; *(uint64_t*)0x20000110 = 0; res = syscall(__NR_ioctl, /*fd=*/r[2], /*cmd=*/0xc0184800, /*arg=*/0x20000100ul); if (res != -1) r[3] = *(uint32_t*)0x20000108; syscall(__NR_getsockopt, /*fd=*/r[1], /*level=*/0x29, /*optname=*/0x22, /*optval=*/0ul, /*optlen=*/0ul); memcpy((void*)0x20000000, "./file1\000", 8); memcpy((void*)0x200000c0, "9p\000", 3); memcpy((void*)0x200002c0, "trans=fd,", 9); memcpy((void*)0x200002c9, "rfdno", 5); *(uint8_t*)0x200002ce = 0x3d; sprintf((char*)0x200002cf, "0x%016llx", (long long)r[3]); *(uint8_t*)0x200002e1 = 0x2c; memcpy((void*)0x200002e2, "wfdno", 5); *(uint8_t*)0x200002e7 = 0x3d; sprintf((char*)0x200002e8, "0x%016llx", (long long)r[1]); *(uint8_t*)0x200002fa = 0x2c; memcpy((void*)0x200002fb, "debug", 5); *(uint8_t*)0x20000300 = 0x3d; sprintf((char*)0x20000301, "0x%016llx", (long long)7); *(uint8_t*)0x20000313 = 0x2c; memcpy((void*)0x20000314, "cache=none", 10); *(uint8_t*)0x2000031e = 0x2c; memcpy((void*)0x2000031f, "loose", 5); *(uint8_t*)0x20000324 = 0x2c; memcpy((void*)0x20000325, "mmap", 4); *(uint8_t*)0x20000329 = 0x2c; memcpy((void*)0x2000032a, "cache=loose", 11); *(uint8_t*)0x20000335 = 0x2c; memcpy((void*)0x20000336, "cache=loose", 11); *(uint8_t*)0x20000341 = 0x2c; memcpy((void*)0x20000342, "uname", 5); *(uint8_t*)0x20000347 = 0x3d; memcpy((void*)0x20000348, "jfs\000", 4); *(uint8_t*)0x2000034c = 0x2c; memcpy((void*)0x2000034d, "noextend", 8); *(uint8_t*)0x20000355 = 0x2c; memcpy((void*)0x20000356, "euid<", 5); sprintf((char*)0x2000035b, "%020llu", (long long)0); *(uint8_t*)0x2000036f = 0x2c; memcpy((void*)0x20000370, "lazytime", 8); *(uint8_t*)0x20000378 = 0x2c; memcpy((void*)0x20000379, "fsmagic", 7); *(uint8_t*)0x20000380 = 0x3d; sprintf((char*)0x20000381, "0x%016llx", (long long)0); *(uint8_t*)0x20000393 = 0x2c; memcpy((void*)0x20000394, "smackfshat", 10); *(uint8_t*)0x2000039e = 0x3d; memcpy((void*)0x2000039f, "jfs\000", 4); *(uint8_t*)0x200003a3 = 0x2c; memcpy((void*)0x200003a4, "pcr", 3); *(uint8_t*)0x200003a7 = 0x3d; sprintf((char*)0x200003a8, "%020llu", (long long)0x3c); *(uint8_t*)0x200003bc = 0x2c; memcpy((void*)0x200003bd, "obj_user", 8); *(uint8_t*)0x200003c5 = 0x3d; memset((void*)0x200003c6, 58, 1); *(uint8_t*)0x200003c7 = 0x2c; memcpy((void*)0x200003c8, "uid>", 4); sprintf((char*)0x200003cc, "%020llu", (long long)0); *(uint8_t*)0x200003e0 = 0x2c; memcpy((void*)0x200003e1, "fsuuid", 6); *(uint8_t*)0x200003e7 = 0x3d; *(uint8_t*)0x200003e8 = 0x77; *(uint8_t*)0x200003e9 = 0x61; *(uint8_t*)0x200003ea = 0x65; *(uint8_t*)0x200003eb = 0x33; *(uint8_t*)0x200003ec = 0x35; *(uint8_t*)0x200003ed = 0xcd; *(uint8_t*)0x200003ee = 0x61; *(uint8_t*)0x200003ef = 0x32; *(uint8_t*)0x200003f0 = 0x2d; *(uint8_t*)0x200003f1 = 0x65; *(uint8_t*)0x200003f2 = 0x62; *(uint8_t*)0x200003f3 = 0x61; *(uint8_t*)0x200003f4 = 0x65; *(uint8_t*)0x200003f5 = 0x2d; *(uint8_t*)0x200003f6 = 0x37; *(uint8_t*)0x200003f7 = 0x65; *(uint8_t*)0x200003f8 = 0x32; *(uint8_t*)0x200003f9 = 0x59; *(uint8_t*)0x200003fa = 0x2d; *(uint8_t*)0x200003fb = 0x55; *(uint8_t*)0x200003fc = 0x30; *(uint8_t*)0x200003fd = 0x39; *(uint8_t*)0x200003fe = 0x66; *(uint8_t*)0x200003ff = 0x2d; *(uint8_t*)0x20000400 = 0x33; *(uint8_t*)0x20000401 = 0x30; *(uint8_t*)0x20000402 = 0x61; *(uint8_t*)0x20000403 = 0; *(uint8_t*)0x20000404 = 0x38; *(uint8_t*)0x20000405 = 0x39; *(uint8_t*)0x20000406 = 0x62; *(uint8_t*)0x20000407 = 0x64; *(uint8_t*)0x20000408 = 0x2c; *(uint8_t*)0x20000409 = 0; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x20000000ul, /*type=*/0x200000c0ul, /*flags=MS_RELATIME*/ 0x200000ul, /*opts=*/0x200002c0ul); } 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); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }