// https://syzkaller.appspot.com/bug?id=e7ac1d7eb1160f9fd9c543082e954cdaebfac7d8 // 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 (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x200000000040, "bcachefs\000", 9); memcpy((void*)0x200000000000, "./file0\000", 8); memcpy( (void*)0x200000005c80, "\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x63\x6f" "\x6d\x70\x72\x65\x73\x73\x69\x6f\x6e\x3d\x67\x7a\x69\x70\x2c\x76\x92\xa0" "\x73\x69\x6f\x6e\x5f\x75\x70\x67\x72\x61\x64\x65\x3d\x69\x6e\x63\x6f\x6d" "\x70\x61\x74\x69\x62\x6c\x65\x2c\x64\x65\x67\x72\x61\x64\x65\x64\x2c\x69" "\x6e\x6f\x64\x65\x73\x5f\x33\x32\x62\x69\x74\x2c\x6e\x6f\x72\x25\x63\x6f" "\x76\x65\x72\x79\x2c\x6a\x6f\x75\x72\x6e\x61\x6c\x5f\x74\x72\x61\x6e\x73" "\xe1\x63\x74\x69\x6f\x74\x72\x75\x63\x74\x5f\x61\x6c\x6c\x6f\x63\x2c\x6e" "\x6f\x5f\x64\x61\x74\x61\x5f\x69\x6f\x2c\x00", 137); sprintf((char*)0x200000005d09, "0x%016llx", (long long)0); memcpy( (void*)0x200000000080, "\x78\x9c\xec\xdd\x7f\x90\x1c\xd5\x7d\x20\xf0\xd7\x33\xb3\xda\xd9\x5d\xfd" "\x58\xf1\x23\xc8\x60\xa4\x45\x86\x84\xe0\xc4\x2c\x3f\xcb\x3f\x52\xb6\x9c" "\x4b\xec\x14\x38\x14\x2e\x52\x8e\xc5\xc9\x86\x05\xad\x1c\xd9\x8b\xa0\xa4" "\x25\x80\x4c\x82\x94\x03\x1f\x14\xd8\x65\xbb\x9c\x4a\xe4\xf8\x0f\xec\xc2" "\x54\xb0\x15\x17\x55\x76\x62\x14\xca\x18\xc3\x49\xc4\xbf\x28\x2e\x3e\xea" "\xca\xe6\xce\xbe\xc3\xfe\xc3\x57\x84\xb3\x2e\x06\x1d\xe7\x72\x3c\x57\x33" "\xd3\x6f\x76\xa6\x77\x7a\x7b\x76\x76\x56\x48\xf0\xf9\x14\x6c\xef\x7b\xd3" "\xf3\xed\x6f\xbf\x7e\xd3\xd3\xef\x4d\x6b\x27\x00\x00\x00\xf0\xaa\x70\xe8" "\x8e\x5d\x47\x2e\x3b\xf5\xf7\xbf\xf5\x17\xd3\x2f\xde\xf6\x07\xff\x78\xdd" "\xde\x30\x56\x6e\xd4\x57\xe3\x0a\xe3\xe9\xf2\xe6\x97\x2b\x43\x8e\xa6\xe1" "\xca\xba\xc6\x32\xdb\x2f\x7e\xe3\xc3\x5f\xf8\xc9\xc4\xb5\xbf\xfb\xcd\x07" "\x47\x3f\xff\xd2\xc1\xad\x67\x6c\xfb\xc1\xef\x9d\x78\xed\xc3\x1f\xbc\xe4" "\xc0\xbe\xbf\xf9\xc6\x0b\xab\xbe\xf2\xab\x67\x8b\xe2\xc6\xfe\x74\xce\x5c" "\x39\x79\x3e\x09\xa1\xfa\xb5\xc3\x7f\xf9\x91\x83\xdf\x3e\xa5\x5e\x97\x84" "\x10\xca\xc9\xf8\x9e\x10\xd6\x26\x27\x7c\x63\x6d\x92\x09\x31\xf9\x8b\x10" "\xc2\xd6\xb4\xb0\x2e\xf3\xe0\x97\x5f\xbc\x60\x5b\x7d\xb9\xf7\xee\xe1\x8e" "\xfa\x35\x99\xf5\xf4\xf7\x57\xb7\x6a\xda\xcf\x76\x1f\xb9\xe9\xf5\xe1\x87" "\x6f\xdf\x7c\xfb\x77\x37\x7c\xe9\xef\x86\xf6\x3f\xb7\x67\x6e\x95\xa4\xda" "\xd6\x9f\x42\x58\x7d\x75\xfb\xf3\x87\x42\x08\x23\xe9\xff\x75\xb1\xb7\xc5" "\xfe\x18\x3b\xed\xe5\x21\x84\xd1\xb6\xe7\xbd\xb1\x20\xaf\xd7\xf5\x98\xff" "\xb9\x39\xe5\xd3\xd2\xe5\x8a\x74\x39\x56\x10\x27\x3e\xbe\x31\x53\x2e\x65" "\xd6\xcb\x96\xa3\xa1\xcc\x72\xb4\x60\x7b\x8b\x53\x9b\x57\x93\x97\x47\xbf" "\xeb\x15\x59\x99\x29\x67\x4f\x46\x4b\x95\x97\x67\xac\x5f\x9b\x2e\xbf\x9a" "\x2e\xcf\x59\x64\xfc\x72\xfc\x3f\x09\xa5\x24\x54\x5a\xe9\xcf\x24\x73\x7d" "\x24\xb4\x1d\xb7\x24\x24\x8d\x63\x59\x6d\x95\x4b\xad\x63\x1b\xd2\xfd\xcf" "\x94\x93\x4c\xb9\x94\x29\x97\x87\x32\xfb\xd5\xd8\x6e\xda\xd1\xca\x49\xd2" "\x59\x1f\xd7\xcb\xd4\xc7\xd3\x71\x25\xad\x3f\xa3\xfd\x5c\xdd\xc5\x15\x39" "\xf5\xaf\x49\x97\xd5\xf4\x85\xfa\x52\x2c\x87\xec\x2f\x4d\x63\xf3\x7e\x69" "\xed\x57\x43\xcc\xeb\xf0\x02\xb9\x1c\x0d\xa5\xb6\x73\x50\xb7\xfa\xd6\x81" "\x4f\x0f\xc6\x58\x5a\x37\x96\x9c\x30\xef\x39\xb5\x76\x5f\xfd\x6f\x8d\x45" "\x7c\xec\xe0\xe6\x7b\xce\x2a\x6f\x79\xec\xd0\x78\x4e\x1e\xc9\x83\x49\x1a" "\x3f\xe9\x2d\x7e\x2a\x3e\xb6\xfb\x3b\x6b\x57\xbe\xff\x8b\x77\xdd\x98\x7d" "\x5f\x6f\xc5\xbf\xba\x94\xc6\x2f\xf5\x15\xff\x47\x97\x3e\xf9\xb3\x2b\xef" "\xfa\xdc\xa7\x73\xe3\x7f\x3c\xc6\x2f\xf7\x15\xff\xfc\x47\x46\x9f\xbf\xf4" "\xf1\x3b\x36\xe6\xb6\xcf\xe1\xd8\x3e\x95\xbe\xe2\x4f\x3d\xfb\xc4\x47\x37" "\x9c\x74\xcd\xfe\xdc\xfc\xef\x8d\xf1\xab\x7d\xc5\xdf\x74\xe0\xc9\xe1\x55" "\x47\x1e\x79\x34\x37\xff\xc9\xd8\x3e\x23\x7d\xc5\x7f\xe6\x2d\xef\xf8\xf1" "\x03\x4f\x3f\xf4\x5c\x6e\xfc\x10\xe3\x8f\xf6\x15\x7f\xcb\x81\x1b\x3e\x36" "\xbc\xfe\xc8\xd9\xb9\xf1\x1f\x8d\xed\x33\xd6\x5f\xff\xf9\xf9\xfe\x8b\xbf" "\xbf\x7e\xfd\x4f\x27\xf2\xe2\x3f\x15\xe3\xaf\xea\x2b\xfe\xfd\x7b\xf6\xbd" "\xf9\xbe\x35\x77\x5f\x92\x7b\x7c\x2f\x8f\xed\x33\xde\x63\xfc\xff\xd7\xb1" "\x85\x77\x9d\xf9\xf0\xed\x2b\x8f\x3c\x74\x7a\xfb\x36\x3b\xe2\xdf\xdb\xc3" "\x3b\xe7\xd6\xa1\xe2\x75\x00\x5e\xa5\x4e\x4c\xaf\xb1\xee\x4c\xcb\xfd\x8e" "\x33\x97\xaa\x6d\xbc\xf0\xd7\x13\x95\xe6\x35\xdf\xca\xf4\xff\x55\x83\xdc" "\x50\xe6\xe2\xb3\xbe\x9d\xd5\x83\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x21\x84\x93\x5f\xff\x4f\xef" "\xfc\x9f\xef\x19\x7f\xbe\x92\x96\x87\xd3\x5f\x9e\x29\x35\x97\xb1\x7e\x45" "\x08\xc9\x48\x08\x61\xd7\xec\xd4\xce\xd9\xed\x3b\x3e\x30\xf1\xc1\xeb\x6f" "\xdc\xb9\x63\x6a\x66\x62\x6a\x76\x62\x7a\xc7\xec\xce\x5b\x26\x2e\xfc\xad" "\x89\x9d\xd3\x37\xcc\x4c\xdd\x52\x7f\x74\xf2\xb7\x2f\x68\x3e\xef\x84\x90" "\x34\x97\xc9\xe9\xf3\xb6\x3d\x5c\xab\xd5\x4a\xe3\x9d\x75\x71\x7b\xff\xee" "\xcc\xfd\x3f\x3c\xeb\x8d\xff\xeb\x5f\x42\x98\x3c\xf9\x7b\xeb\x2b\xb9\xf9" "\x9f\xbb\xef\xba\xfb\x4e\xea\xf2\x33\x23\x59\x11\x42\xb8\xf1\xb2\xef\x5d" "\xf4\xd9\x74\xbf\xc6\xd3\xbc\xc6\xbb\xe4\x55\xab\xd5\x6a\x21\x27\xaf\xff" "\xfd\xde\x5f\xde\xf7\xc9\xc3\x3f\x39\x3b\x84\xc9\x5f\x5b\x28\xaf\x27\x9e" "\x79\xeb\xd7\x3b\x12\x6a\x54\xcc\xc5\x49\x95\x86\x43\x33\xa1\xe1\x64\xb4" "\x6b\x1e\x6f\xbb\x2e\xcd\x3a\xcd\x27\xb6\x57\x65\xdb\xf6\x99\xe9\xc9\x85" "\xdb\xb7\xfe\xfc\x72\xce\x7e\xfc\xfb\x0f\x3f\xf7\x8b\x6d\x37\x7f\xe2\x97" "\xcd\xf6\xad\xe6\xee\x47\x8f\xed\x3b\xb2\xa9\x36\x53\xfa\xab\xcd\xef\xfa" "\xb7\xbf\xba\xb5\x59\xd1\xcc\xeb\x33\xe5\x10\xba\xe7\xb5\xdc\xc7\xfd\x87" "\xd7\x34\x97\x9b\xe6\x5a\xb0\xa1\xa8\xbd\xe3\x5e\xc4\xfc\x62\xfb\x55\xd3" "\xf6\x5e\x9d\xb6\xf7\xea\x9c\xf6\xae\x74\xd9\xaf\xda\x6d\x21\xdc\xf1\xdd" "\x47\x9f\xfe\xda\xa9\x77\xbd\xb0\x27\x4c\x56\x7e\xbe\x61\xfe\xb6\x8b\xf6" "\x6b\x28\xed\x00\x43\xc9\x6b\xb2\x4f\xd9\x13\xba\x6c\x37\x6e\x61\x34\x59" "\xdb\x51\x5f\x4d\xf3\x8c\x47\x3c\x3e\xef\xdc\xd9\xeb\x92\xb4\x6a\x2a\x99" "\xfe\xc0\xf4\x8e\x37\x9d\x77\xe1\x79\x17\x4f\x5e\x74\xf1\x45\xe7\x36\xf6" "\xfc\xdc\x25\xec\x7f\x5d\x76\xff\xe3\xf6\x7f\xbd\xc7\xfd\x2f\xea\xe7\x83" "\xe9\x4f\x6b\xfe\x74\xcf\x57\xe3\xcf\xee\xe7\x91\x6c\x7f\x2a\xca\xab\xa8" "\x3d\xea\x79\x15\xb7\x47\x7b\x46\x1d\x79\xfd\x5b\xad\x69\x64\x53\x6d\xf4" "\x8a\x8f\x7c\xea\x4d\xfb\x1e\xbf\xac\xf9\x40\x51\x3f\x8f\x6b\xb7\xce\x27" "\xe9\x72\xb4\x7e\x9c\xcf\x0b\x6d\xfd\x6d\x7e\x5b\x75\xdb\xaf\xa2\x76\x08" "\x21\x4c\x74\x6b\x87\x9f\xbd\x70\x49\x38\xe5\xbf\x6e\xbf\xbd\xe8\x3c\xd4" "\x7e\x64\xda\x7f\x66\x24\x9b\x6a\xdf\xde\xf8\xaf\x9f\x7d\xe3\x67\xd6\xfd" "\x4e\xb3\xe2\xa8\x9c\xe7\xdb\x13\x4a\xcf\xf3\xe5\xce\xd5\x0a\xcf\xf3\xad" "\xac\xe7\xf2\x69\xb4\x57\x35\x3d\x1e\xb5\x63\xb4\x7d\x87\xd3\x3d\x1d\x4e" "\xc6\xba\xe6\x75\xde\xb7\x1f\x1f\xba\xe7\xd0\xbf\xfc\x59\x2b\xbf\x15\x2b" "\xc2\xcd\x53\xb3\xb3\x3b\xcf\x6b\xfe\x5c\x99\x66\xba\x32\x39\xad\x6b\x5e" "\xd9\xda\xb8\x5f\x1b\x1a\x3f\xcb\x21\x6d\x96\xd0\xea\xa6\x5d\xfa\x6b\xdd" "\x50\x68\xe6\x97\x3d\x7f\xc6\xd5\xb3\xad\x3a\x96\x3e\x36\x96\x9c\xd0\x75" "\xbf\xb2\xe2\x63\x07\x37\xdf\x73\x56\x79\xcb\x63\x87\xf2\x5a\x3a\x79\xb0" "\xb9\xc5\x91\xb0\xaa\xb9\x4c\x5e\x1b\x42\xb8\xe2\x7f\xcc\x5f\x73\x26\xf3" "\xc4\x72\x2b\xe1\x6e\xdb\x3f\x56\x5f\x7f\x45\xfd\x63\xfd\x3b\x3f\xf3\x95" "\xf7\x7c\xe5\x1f\x2e\xcc\xf6\x8f\xfa\xde\xcc\xce\xee\x3c\xbf\x68\xbf\x92" "\x9c\xfd\xfa\xd2\xd3\xf7\x7f\xea\xf3\x9f\xf8\x8f\xff\x30\xb8\xfd\x7a\xe7" "\x5b\x9f\x1c\xff\xd7\xff\xfe\x27\x67\x35\x2b\x7a\x3c\xaf\x94\xb3\x79\x2d" "\xf5\xbc\xb2\xd8\xeb\xc7\x56\xd6\xe9\x79\x25\x69\x3f\xaf\x9c\x1f\x42\xd1" "\xeb\x6f\x43\xa6\x5c\xf8\xfa\x2b\x75\xdf\x9f\xa2\xd7\x5f\x76\x3b\x73\xeb" "\x77\x8f\x37\x91\x29\x8f\x85\x72\x5f\xaf\xd7\xf3\x1f\x19\x7d\xfe\xd2\xc7" "\xef\xd8\x98\xfb\x7a\x3d\xdc\xed\xf5\xda\xcd\xad\x1d\xa5\x72\xc1\xeb\xf5" "\xe5\x7a\x5f\xca\xf6\x9f\xec\xeb\x2b\xa9\x74\xe6\xb1\xe4\xd7\xd7\x48\xfa" "\xcb\xbc\xd7\x57\x47\x47\x49\x36\xd5\xbe\x79\xe7\x89\x7b\xbe\x71\xdb\xe5" "\xa7\x36\x2b\x8a\xfa\x75\x6b\xed\x66\x3b\xdd\x52\xab\xd5\xe6\xfa\xf5\x05" "\xc5\xd7\x23\xa5\x9c\xfd\xfa\xfa\x95\xdf\x5f\x7f\xfd\xc4\x7f\xf8\x2f\x83" "\x3b\x6f\x7c\xe1\xb7\xbe\x7c\xd5\x0f\xa6\x36\xfd\x79\xb3\xa2\xff\xe3\x1e" "\x73\x69\x1c\xf7\xfd\x7f\xfb\xda\x93\xbb\xe6\xd5\xeb\x71\xaf\xa6\xed\x5b" "\xcd\x69\xdf\x56\xd6\x71\xdc\xd9\x7e\xde\x78\xc3\xb5\xd7\xcf\x6c\x6d\xd6" "\xbf\xcc\xd7\xbf\x51\x97\xeb\xdf\x74\x59\x30\xfe\x89\xa7\x92\x5d\xb7\xec" "\xfe\xd0\xd4\xcc\xcc\xf4\xce\x5d\xbd\xed\x57\xaf\xef\xa7\x71\x3b\xd9\x56" "\xee\xf7\xfd\x34\x9e\xdd\x4e\x28\xd8\xaf\xd2\xbc\xfd\x2a\xfc\xe5\x48\xad" "\x56\xeb\x79\xe5\xf6\x5f\x7a\x69\xaf\x5e\x5f\x6f\x31\xff\xad\x7d\xb7\x57" "\xe7\xeb\x6d\x2c\x24\x7d\xbd\x2f\xec\xfe\xce\xda\x95\xef\xff\xe2\x5d\x37" "\x8e\xcf\x7b\x56\xba\xa1\xab\x4b\x69\xfc\x52\x5f\xf1\x7f\x74\xe9\x93\x3f" "\xbb\xf2\xae\xcf\x7d\x3a\x37\xfe\xc7\x63\xfc\x4a\x5f\xf1\xa7\x9e\x7d\xe2" "\xa3\x1b\x4e\xba\x66\x7f\x6e\xfc\x7b\x93\x34\x7e\xb5\xaf\xf8\x9b\x0e\x3c" "\x39\xbc\xea\xc8\x23\x8f\xb6\xc5\x6f\x7f\xeb\x08\xc9\x64\xcc\x7f\xa4\xaf" "\xf8\xcf\xbc\xe5\x1d\x3f\x7e\xe0\xe9\x87\x9e\xcb\xcd\x3f\xc4\xf8\x63\xfd" "\xb5\xff\xcf\xf7\x5f\xfc\xfd\xf5\xeb\x7f\x9a\x1b\xff\xa9\x24\xdd\x4e\xfd" "\x1a\x29\x84\x2f\xbf\x78\xc1\xb6\x66\x39\x09\x43\xe9\xeb\x2d\xe6\x31\xd4" "\x91\x57\xc8\x96\x93\x4c\xb9\x94\x29\x97\xdb\xcb\xa5\xe6\x5c\x6b\x6b\x03" "\xe5\x24\xe9\xac\x7f\x20\x5d\x2f\xad\x3f\xa3\x2d\x97\x6e\xfe\x38\xa7\x3e" "\x5e\x85\x55\xd7\x35\x97\x2f\xc5\x72\xc8\xfc\x32\x94\x79\xe2\x42\x1b\x3b" "\x06\x94\xda\xce\xfd\xdd\xea\x8b\xae\x53\x01\x00\x5e\xe9\xe2\xe7\xff\xf1" "\x32\x2f\x7e\xfe\x3f\x9d\x5e\x28\xe5\xcf\x30\xc1\x9c\xa5\x8e\xc3\xd6\xe5" "\xc4\x8d\xe3\xb0\xb9\xf9\x9c\x15\x1d\x8f\xaf\x4b\xe3\xc7\xe7\xc7\xf9\xca" "\xf5\x6f\x08\x93\xf5\xe5\xde\x89\xe6\x85\xfe\x22\x3f\x47\x58\x1d\x5f\x0f" "\xd9\x79\xce\xb8\x9d\xb3\x5f\xd7\x19\x23\x7f\x7e\x62\xe1\x79\xce\xa2\xf9" "\xf7\x8d\xcd\xc5\x9e\x58\x8e\x79\x35\xe7\xcb\x2b\x6d\xe3\xd0\xd4\xfc\x71" "\x4d\x25\xf4\x30\xff\xbe\x31\xf3\xa4\xa2\xf9\xf7\xcc\xee\x17\xcf\x8f\x4f" "\xdc\x39\x2f\xad\x89\xb6\x79\xab\xec\xf1\x1b\x4a\x67\xcc\xba\xdc\xef\x90" "\xcd\xb7\x52\x8f\x90\xd7\x3f\xb2\xf3\x62\xcd\xfb\x39\xe6\x06\xb5\x49\x8f" "\xfd\x23\x7b\x1f\x4d\x8c\x90\xbd\x8f\x26\x6e\xe7\xd4\xcc\x89\xb3\xdf\xfb" "\x68\x7a\xec\x1f\xf3\xf2\x8a\xfd\x23\xa6\xbd\x40\xff\x68\xa4\x5c\xfc\xf9" "\xc6\xfc\xe3\x17\x72\xdb\xb7\xfd\xf8\x75\x8f\x96\x3d\x7e\x8b\x38\xde\xd5" "\xfa\xfa\xcb\xfd\xf9\xec\x00\xe6\x0d\xbb\x9e\xd2\x92\xab\xcf\x48\xe3\x2f" "\xf7\xbc\xe1\xf2\x7e\x1e\x76\x1c\xcd\x4b\x76\xc6\x3f\x4a\xf3\x92\xc7\xdc" "\xbc\x61\x5c\x2f\x53\x1f\xf7\xa3\xd2\xe3\x7c\xe2\x7b\x72\xea\x7b\x9e\x4f" "\x2c\xa8\x8f\xa7\x8b\x98\xd7\xe1\x05\x72\x39\x1a\xcc\x27\x02\xaf\x54\x71" "\xfc\x1f\xdf\x23\xea\xe3\xff\xfa\x05\xf8\xff\xcd\xac\x57\x74\x1d\x9a\xbd" "\x6a\x8c\xf1\x72\xef\x13\x2a\x77\xcf\xa7\x68\xdc\x31\xff\x3e\xbd\xd1\xbe" "\xde\xc7\xb7\x1c\xb8\xe1\x63\xc3\xeb\x8f\x9c\x9d\x7b\x9d\xf3\x68\xaf\xf7" "\xfd\xdc\xd0\x51\x1a\x2d\xb8\xef\xa7\xa8\x1d\xcf\xca\x94\x0b\xdb\x31\x67" "\x82\xa6\x68\xbc\x97\xdd\x4e\x51\xbb\x67\xef\xcb\x18\x0b\xab\xfa\x6a\xf7" "\xfb\xf7\xec\x7b\xf3\x7d\x6b\xee\xbe\x24\xb7\xdd\x2f\x6f\xbe\x91\x16\xb7" "\xfb\xa7\x3a\x4a\xab\x0a\xda\xfd\x38\x18\x2f\x74\x8f\x7f\xd4\xee\x33\x38" "\xd6\xc6\x0b\xcd\x1b\xc7\x7a\x1d\x2f\x7c\x27\x2d\xf7\x16\xbf\x7c\xcc\x8d" "\x17\x96\x7b\xfe\xec\x65\x1b\x8f\xa4\x37\x3e\x2d\xd7\x78\xe4\x8f\x72\xea" "\x17\x3b\x1e\x19\x9d\xf7\x4b\x6b\xbf\x1a\x8e\xbb\xf1\x48\xf6\xbe\x0d\x00" "\x80\x54\x1c\xff\xb7\x3e\x3f\x4b\xc7\xff\xad\x7f\x90\x96\x5e\x47\x14\x8d" "\x5b\xcf\xc9\x94\x63\xbc\xdc\x71\x6b\xce\xf5\x49\xde\xb8\xf5\x0f\xd3\xe5" "\xcd\x99\xf5\xc7\xd2\x7f\x51\xb1\xd8\xeb\xe6\x77\x9d\xf9\xf0\xed\x2b\x8f" "\x3c\x74\x7a\xee\xb8\xe5\xde\x5e\xc7\xa1\x7f\xdb\x51\x1a\x2f\x1c\x87\xce" "\x1f\x37\xaf\xec\x21\xdf\x38\x6e\xce\x1d\x47\x5c\x3e\x98\xfb\xc5\x73\xc7" "\x11\xad\xcf\x65\x96\x36\x4e\xcc\xcd\xbf\x35\x4e\x5c\xda\x38\x3d\x37\x7e" "\x6b\x9c\xbe\xb4\x71\x74\x6e\xfb\xb4\xc6\xd1\x4b\x9b\x07\xc8\x8d\xdf\x9a" "\x07\x38\xbe\x3f\x17\x2b\x9c\xaf\xcb\x6c\x2c\x16\x7b\x9d\xaf\x7b\xc5\x8e" "\xa3\xd3\x7f\x3e\xbb\x5c\xe3\xe8\x2b\x72\xea\x17\x3b\x8e\x1e\x9b\xf7\x4b" "\x6b\xbf\x1a\x8e\x99\x71\x74\xd5\x38\x1a\x00\x78\x75\x8a\xe3\xff\x78\x19" "\x17\xc7\xff\x8f\x67\xd6\x5b\xea\xe7\xec\xb9\xe3\x82\x01\x5d\xb7\x67\xff" "\x1e\x48\x2b\xfe\x53\x6d\xe3\xca\x4f\xd6\xaf\xbe\x97\x6b\x5c\xb9\xdc\xe3" "\xbe\xe5\x1e\xb7\x2e\xf7\xb8\x7e\xb9\xe7\x25\x7a\x1a\x17\x0f\x1d\x4a\xab" "\xe2\x63\xc7\xce\xb8\x78\x69\xf7\x53\x14\xcf\x0b\x2d\xef\x3c\xd9\xab\x7e" "\x5c\x9c\x6e\xf4\xb8\x1f\x17\xfb\x7c\x19\x00\xe0\x15\x2d\x8e\xff\xe3\x9f" "\x69\xcc\x1f\xff\x2f\x30\x3e\x49\xe6\x0f\x22\xe2\x63\x71\x7c\xd2\x6d\xfc" "\x36\xd4\x31\x3e\x69\xff\xdc\x77\xa4\x33\xfe\x02\xe3\x13\xe3\xf3\xe3\x79" "\x7c\x5e\x2d\x8c\x7f\xec\x8c\xcf\x8f\xf7\xf9\x2f\xe3\x7f\x9f\x8b\x2f\xa8" "\xd5\x6c\x03\x19\xff\xe7\xfc\x3b\x22\x00\x00\x5e\x5e\x71\xfc\x1f\xff\xd9" "\x63\xfc\xfb\x7f\xff\x29\x2d\x67\xff\x6e\xfd\xf2\xdf\x9f\x6d\x9c\xde\x35" "\xfe\xb1\xf5\x39\xfa\xbc\xf8\xc7\xf3\x38\xbd\x56\xab\xdd\x56\x5f\x1e\x1b" "\xe3\xf4\xa5\xdd\x07\x90\x7b\x7c\xdd\x07\x90\x2e\x9b\xe5\xa3\x3a\x0f\xd0" "\x36\x9d\x79\x1c\xcc\x03\x34\x2c\xed\x3e\x80\xbd\xcb\x9a\x1b\x00\x00\x8b" "\x37\xd4\x18\x29\xcd\xff\x77\xf6\xef\x4b\x97\xd9\x7f\x67\x9f\xf7\xef\xf2" "\xaf\xcc\x59\xbf\x57\x95\xf4\xf2\xf8\x9a\xd9\x9d\xd3\xd3\x57\xdd\x78\xc3" "\xd6\xa9\xd9\xe9\xab\x76\x5c\xbf\x75\x7a\xd7\x55\x37\xed\xdc\x3e\x3b\x3b" "\xbd\xa3\xb9\xde\x52\xc7\x8d\xb9\xe3\x96\x74\xdc\x38\x14\x2a\x69\x7b\x74" "\x5f\x2f\x3b\x6e\x5b\x93\xfe\x3d\x84\x35\x39\x7f\x0f\x21\xbb\x7e\x0c\x7b" "\x5a\xe3\x97\xf9\x7f\x0f\x21\xbb\xd9\x91\x82\xbf\x23\x30\x77\xfc\x7a\xcb" "\x37\xef\xf8\x95\x16\x58\xbf\x5b\xff\xc8\x3b\xde\x79\xf1\xff\x38\x67\xfd" "\xa8\x75\xfc\xaf\xfd\x93\xf3\xaf\xda\xb6\xeb\xaa\xed\x3b\xb6\xcf\x6e\x9f" "\x9a\xd9\xbe\x7b\xba\x73\xbd\xfa\xa8\x75\x74\x11\xdf\x9b\x19\x9b\x65\x51" "\xdf\x97\x9a\xfe\x18\xf9\x7a\xfc\xd6\xcc\x76\x33\x8d\xc6\x5a\xec\xf7\x77" "\xb6\xe7\xd1\xec\x83\xbd\xe7\xf1\xd6\x56\x1e\x99\x3f\x2e\x5c\xaa\xb7\x77" "\x92\x7b\xfc\xeb\x79\x24\x99\x3c\xd6\xa6\x99\xac\xcd\xfb\xfe\x83\x9c\xbc" "\xbf\xf5\x9f\x3f\xf9\xa7\x67\xd6\x7e\xf9\x40\x08\x93\x27\x97\x5f\xdb\x5b" "\xde\xb1\x98\x91\x6c\xaa\xfd\xfd\x7b\xa7\xff\x70\xf6\xd0\xf7\x6e\xa8\xe7" "\x5f\x5a\x30\xff\xbf\xaf\x37\x56\x7d\xcd\x34\xaf\xa2\xef\x2b\x6d\x45\x8e" "\xdf\x73\x1c\xbf\xd7\x7e\xe6\xfa\x5d\xb3\xaf\xdf\x76\xfd\x8d\x3b\xb2\xdf" "\x28\xd9\x9f\x38\x9f\x51\x6a\x95\x97\x69\x3e\x23\x7d\xf9\x97\x7b\x9c\x9f" "\xd8\x92\x53\xbf\xd8\xfb\x14\xca\xf3\x7e\x39\x36\xf5\x3c\x3f\x01\x00\x40" "\x87\xf8\xf9\x7f\xbc\x9e\x8d\x9f\x1f\x7e\x22\xbd\x80\x8a\xf5\xbd\x8f\xd3" "\x97\xf6\xf9\x71\xee\x38\x7d\xb2\xb7\x71\x7a\xf6\x7b\xc9\x8a\xc6\xe9\xd9" "\xf5\xe3\xfe\xf6\x3a\x4e\xaf\x2e\x71\x9c\x9e\xdd\x7e\xd1\x38\xbd\xdb\xfa" "\xdd\xc6\xe9\x79\xe3\xee\xbc\xf8\x7f\x94\xb3\xfe\x62\xf5\xde\x4f\x0a\xef" "\xf3\xa8\x84\x2e\xfd\x24\xde\xe7\x91\xdb\x4f\xae\x2e\xed\x0b\x3d\xf4\x93" "\xec\xf7\x19\x14\xf5\x93\xec\xfa\x8b\xed\x27\xc9\x12\xfb\x49\x76\xfb\x45" "\xfd\xa4\xdb\xfa\xdd\xfa\x49\xde\x71\xcf\x8b\xff\xee\x9c\xf5\xf3\xf4\xde" "\x1f\x96\x76\x5f\x4e\x6e\x7f\xf8\x78\x6f\xe7\x8d\xdf\xcc\x94\x8b\xfa\x43" "\x76\xfd\xc5\xf6\x87\xd2\x12\xfb\x43\xfb\xf6\xdb\x87\xea\x79\xfd\x21\x9b" "\x6f\x5e\x7f\xc8\x3b\xbe\x79\xfd\xe1\xb2\x9c\xf5\xbb\xe9\xb6\x2b\x9d\xfd" "\xa3\xde\x31\x1a\xfd\x62\xfa\xaa\x9b\xae\xdf\xf9\xa1\xb6\xf5\x96\xfb\xfb" "\x2f\xf2\x54\xda\x6e\xdf\x58\x38\xbf\xe5\xfd\xfe\x8f\x7e\xf5\xde\xbe\xcb" "\x7b\xdf\x57\x47\x5d\xdb\xf7\x99\x0e\x2e\xff\xe5\xbd\xaf\xac\x5f\xbd\xe7" "\xbf\xb4\xfb\xca\x72\xf3\x7f\x6a\x69\x33\x61\xbd\xe7\xbf\xbc\xdf\x07\xd9" "\xaf\x25\xcf\xd7\xd6\x7a\x9c\xaf\x4d\x6f\x36\x2b\xba\xff\xac\x68\x1e\x77" "\x73\x4e\xfd\x62\xe7\x71\x57\xcc\xfb\xe5\xd8\x64\x1e\x17\x5e\x3e\x71\xfc" "\x1f\xaf\x21\xe3\xf8\xff\xee\x74\x39\xe8\x8f\x81\x0a\xaf\x93\x92\xf6\xc2" "\x31\xf1\x3d\x69\x9f\xed\xcc\xff\x58\xfd\xde\xe3\x85\x8f\xd4\xf1\xf2\x3d" "\x66\x45\xd7\x31\x47\xed\xf3\xd7\x57\xcc\xfb\xf9\xd1\x7d\x07\xf5\x7e\x0e" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xd0\x9b\xe1\xca\xba\xc6\xf2\xd0\x1d\xbb\x8e\x5c\x76\xea\xef\x7f\xeb\x2f" "\xa6\x5f\xbc\xed\x0f\xfe\xf1\xba\xbd\xbf\xf1\xe1\x2f\xfc\x64\xe2\xda\xdf" "\xfd\xe6\x83\xa3\x9f\x7f\xe9\xe0\xd6\x33\xb6\xfd\xe0\xf7\x4e\xbc\xf6\xe1" "\x0f\x5e\x72\x60\xdf\xdf\x7c\xe3\x85\x55\x5f\xf9\xd5\xb3\x85\x81\xc7\x1b" "\x3f\x2b\xe7\xa4\xc5\x6a\x08\xc9\xf3\x49\x08\xd5\xaf\x1d\xfe\xcb\x8f\x1c" "\xfc\xf6\x29\xf5\xba\x24\x84\x50\x4e\xc6\xf7\x84\xb0\x76\xa8\x4b\x84\xc9" "\x5f\x84\x10\xb6\xb6\xf2\xec\x7c\xf0\xcb\x2f\x5e\xb0\xad\xbe\xdc\x7b\xf7" "\x70\x47\xfd\x9a\x4c\x90\xec\x7e\x85\xb1\x72\xcc\xa7\x3d\xcf\x10\x6e\x2e" "\xdc\x23\x8e\x43\xd5\xb4\x9f\xed\x3e\x72\xd3\xeb\xc3\x0f\xdf\xbe\xf9\xf6" "\xef\x6e\xf8\xd2\xdf\x0d\xed\x7f\x6e\xcf\xdc\x2a\x49\xb5\xad\x3f\x85\xb0" "\xfa\xea\xf6\xe7\xd7\x3b\xe6\x48\xfa\x7f\x5d\xec\x6d\xeb\xe2\x93\xd3\xe5" "\xe5\x21\x84\xd1\xb6\xe7\xbd\xb1\x20\xaf\xd7\xf5\x98\xff\xb9\x39\xe5\xd3" "\xd2\xe5\x8a\x74\x39\x56\x10\x27\x3e\xbe\x31\x53\x2e\x65\xd6\xcb\x96\xa3" "\xf8\x02\x1d\x4a\x1b\x62\xb4\x60\x7b\x4b\x95\x97\x47\xbf\xeb\x15\x59\x99" "\x29\x27\x03\x8a\x1b\xe5\xe5\x19\xeb\xd7\xa6\xcb\xaf\xa6\xcb\x73\x16\x19" "\xbf\x1c\xff\x4f\x42\x29\x09\x95\x56\xfa\x33\xc9\x5c\x1f\x09\x6d\xc7\x2d" "\x09\x49\xe3\x98\x56\x5b\xe5\x52\x68\x3f\x09\x27\x6d\xc7\x3c\x2d\x27\x99" "\x72\x29\x53\x2e\x0f\x65\xf6\xab\xb1\xdd\xb4\xa3\x95\x93\xa4\xb3\x3e\xae" "\x97\xa9\x8f\xa7\xe3\x4a\x5a\x7f\x46\xfb\xb9\xba\x8b\x2b\x72\xea\x5f\x93" "\x2e\xab\xe9\x0b\xf5\xa5\x58\x0e\xd9\x5f\x9a\xc6\xe6\xfd\xd2\xda\xaf\x86" "\x98\xd7\xe1\x05\x72\x39\x1a\x4a\x6d\xe7\xa0\x6e\xf5\xad\x03\x9f\x1e\x8c" "\xb1\xb4\x6e\x2c\x39\x61\xde\x73\x6a\x5d\xc4\xc7\x0e\x6e\xbe\xe7\xac\xf2" "\x96\xc7\x0e\x8d\xe7\xe4\x91\x3c\x98\xfc\xd3\xff\x69\xc4\x4f\xfa\x8a\xbf" "\xfb\x3b\x6b\x57\xbe\xff\x8b\x77\xdd\xb8\x2e\x2f\xfe\xd5\xa5\x34\xff\x52" "\x5e\xfc\x5a\xb7\x0d\xc4\x07\x7f\x74\xe9\x93\x3f\xbb\xf2\xae\xcf\x7d\x3a" "\x37\xfe\xc7\x63\xfc\x72\x5f\xf9\x9f\xff\xc8\xe8\xf3\x97\x3e\x7e\xc7\xc6" "\xdc\xf6\x39\x9c\xa4\xf1\x2b\x0b\xc6\xbf\x3f\xb3\x9d\xf8\xd8\xd4\xb3\x4f" "\x7c\x74\xc3\x49\xd7\xec\xcf\xcd\xff\xde\x18\xbf\xda\x57\xfe\x9b\x0e\x3c" "\x39\xbc\xea\xc8\x23\x8f\xe6\xe6\x3f\x19\xdb\x67\xa4\xaf\xf8\xcf\xbc\xe5" "\x1d\x3f\x7e\xe0\xe9\x87\x9e\xcb\x8d\x1f\x62\xfc\xd1\xbe\xe2\x6f\x39\x70" "\xc3\xc7\x86\xd7\x1f\x39\x3b\x37\xfe\xa3\xb1\x7d\xc6\xfa\x8a\xff\xa3\x9f" "\xef\xbf\xf8\xfb\xeb\xd7\xff\x74\x22\x2f\xfe\x53\x31\xfe\xaa\xbe\xe2\xdf" "\xbf\x67\xdf\x9b\xef\x5b\x73\xf7\x25\xb9\xc7\xf7\xf2\xd8\x3e\xe3\x7d\xc5" "\x7f\xd7\x99\x0f\xdf\xbe\xf2\xc8\x43\xa7\xe7\x9d\x3b\x93\x7b\x07\xf5\xce" "\x09\xf0\xea\x74\x62\x7a\x8d\x75\x67\x5a\xee\x77\x9c\xb9\x54\x6d\xe3\x85" "\xbf\x9e\xa8\x34\xaf\xf9\x56\xa6\xff\xaf\x1a\xe4\x86\x32\xea\xdb\x59\xbd" "\x8c\xf1\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x78\x65\xfa\xe7\x5b\x2f\x7c\xdf\x7b\xdf\xf6" "\xee\xcd\xa1\x14\x42\x92\xb3\x4e\xad\x69\xa4\xbd\x18\x1f\x2b\xaf\xd8\xb4" "\x69\xa2\x8f\xed\x4e\x3d\xfb\xc4\x47\x37\x9c\x74\xcd\xfe\xf6\xba\x75\x7d" "\xc4\x01\x00\x00\x00\x8a\xc5\x71\x78\xa9\x55\x53\x0d\xeb\xc2\x4d\xc9\x48" "\x38\xad\xeb\xfa\x71\x8e\xe0\xb4\x58\x4a\x3a\xeb\xb3\x73\x08\x31\x4e\x76" "\x8e\xa0\xdf\x38\xa5\x01\xc5\x29\x0f\x28\x4e\x65\x40\x71\x86\x06\x14\x67" "\xc5\x80\xe2\x0c\x0f\x28\x4e\xb5\x20\x4e\x35\xf4\x16\x67\x64\x81\x38\x95" "\xb6\xc9\xab\xa2\x38\xa3\x0b\xe6\xd3\x7b\x9c\xb1\x01\xc5\x59\x39\xa0\x38" "\xab\x06\x14\x67\xf5\x80\xe2\xac\x19\x50\x9c\xf1\x05\xe3\xe4\xf6\xc3\x52" "\x36\xce\xda\xfe\xe2\xcc\xcb\xe7\x84\x01\xc5\x39\x71\x40\x71\x4e\x1a\x50" "\x9c\x93\xfb\x8a\x53\x9e\x17\xe7\xd7\x06\x94\xcf\x29\x03\x8a\x93\x9d\x53" "\x5e\x6c\x3f\x5c\x95\xae\x79\x6a\x5e\x9c\xc6\x09\xac\x5c\x18\xa7\x92\x94" "\x5b\x0f\xd4\xba\x38\x25\xdd\xce\xe9\x79\xdb\x49\x7a\xdb\xce\x58\x66\x3b" "\xa5\xd0\xb9\xbd\x55\x45\xef\xc7\x3d\x6e\x67\xa4\x60\x7f\xe2\x76\x5e\x97" "\x79\x5e\x69\x91\xdb\xa9\xf6\xb8\x9d\x5f\x5f\xe2\x76\x92\x1e\xb7\xf3\x9b" "\x4b\xdc\x4e\xa9\x60\x3b\xb1\xdf\xde\x9c\xcd\x2f\x6e\x27\x96\x7a\xec\xff" "\xb7\x0c\x28\xce\xee\x01\xc5\xf9\xf0\x80\xe2\xdc\xba\x60\x9c\xea\xbc\xfa" "\xbc\x38\x7f\x36\xa0\x7c\xfe\x7c\x40\x71\x6e\x5b\x62\x1c\x80\x5e\xc5\xf1" "\xff\xdc\x78\x6f\x3c\x0c\x57\x7e\x27\x8c\xa6\x67\x9c\xec\x2c\x40\x1c\xef" "\x6e\x68\xfc\x9c\xff\x7e\x97\x77\x42\x8a\xf1\x5e\x9b\xa9\x5f\xd1\x2d\xde" "\x9d\xa5\xb9\x30\xd9\x81\x7a\x26\xde\x86\xc5\xe6\x97\x9d\x40\xc8\xc4\xdb" "\x98\xa9\x1f\xea\x88\x57\x69\x8d\x47\x16\x88\x57\x6d\x8f\x77\x56\xe6\xc1" "\xae\xfb\xdb\x1e\x2f\x3b\xa1\x90\xc9\xef\x9c\x4c\xfd\x70\x51\xbc\xb6\x89" "\x85\x5a\x76\x50\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\xf6\xcf" "\xb7\x5e\xf8\xbe\xf7\xbe\xed\xdd\x9b\x43\x12\xea\xff\x75\xf3\x58\xba\xac" "\xb5\x8b\x0f\x96\x57\x6c\xda\x34\xd1\xc7\x76\x0f\x6e\xbe\xe7\xac\xf2\x96" "\xc7\x0e\xb5\xd7\x0d\x57\xfa\x08\x04\x00\x00\x00\x14\x8a\xe3\xf0\xa1\x56" "\x4d\x35\x0c\x57\xce\x0b\xc3\xc9\x8a\x8e\xf5\xaa\xe9\x04\x40\x35\x94\x1b" "\xe5\xf2\x78\xb3\x7e\xfd\xea\x70\x79\x7d\x99\x4c\x94\x1a\xe5\xd1\x64\x6d" "\xce\xf3\x9a\x2a\x8d\xe7\xed\x7d\x7b\xb3\x74\xcb\xee\xdf\xde\x7e\xdd\xd4" "\x07\xa6\x3f\x30\xbd\xe3\x4d\xe7\x5d\x78\xde\xc5\x93\x17\x5d\x7c\xd1\xb9" "\xdb\xb6\xcf\x4c\x4f\x36\x7f\x86\x30\x5c\x10\x2f\x84\xd0\x98\x7e\xd8\x75" "\xcb\xee\x0f\x4d\xcd\xcc\x4c\xef\xdc\xd5\xac\xcc\xe6\xbf\x2e\x7d\xde\xde" "\x74\xe6\x22\x49\x9f\xb7\xfe\x0d\x61\xb2\x91\x51\x9a\xff\xff\x67\xd7\x6e" "\x63\xe4\xaa\xca\x00\x00\x9f\x3b\x33\x3b\x33\x2c\x14\x46\xf9\x1a\x1a\xba" "\x4c\x4a\x21\xa8\x44\x69\x5d\xb4\x28\x61\x6f\x62\x22\x06\xda\xa6\x1b\x12" "\x9d\x45\x57\xd2\x48\x1b\x89\x5b\xda\xd0\x96\x54\x1c\x69\x13\x01\xdb\x68" "\x4c\x20\x4d\x9a\x9a\xfe\xb0\xa6\xa2\x20\x7e\x24\x7c\x08\x31\xf2\x91\x26" "\x35\x58\x6d\xe2\xd6\x46\x81\x28\x3f\xf4\x87\x06\x14\x53\x48\x7f\x98\xd6" "\x31\xbb\x33\x77\x76\x66\x76\x76\x67\x19\x6d\xb7\xe0\xf3\x84\xdc\x7b\xe7" "\xbd\xef\x39\xef\x39\x4b\xd2\xe4\x3d\x33\xef\xed\x52\x2f\x35\xad\xde\xa9" "\x7b\x98\xcb\xff\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x38\x9d\xc6\x2b\x83\xa3\xe5\xa1\xe1\x91\xfe\x28\x84\x68\x86\x9c\x6a" "\x07\xc9\xbb\x74\x36\x8e\x4b\x3d\xd4\xfd\xdc\x33\x1b\xbf\x95\x1b\x38\x7e" "\x55\x73\x2c\x97\xe9\x61\x22\x00\x00\x00\xa0\xab\xa4\x0f\xef\x6b\x44\xf2" "\x21\x97\x49\x87\x74\xb8\x64\xf2\xd3\xe2\x5a\xf0\xdf\xed\x7d\x3f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xff\x67\xbc\x32\x38" "\x5a\x1e\x1a\x1e\x39\x3b\x0a\x21\x9a\x21\xa7\xda\x41\xf2\x2e\x9d\x8d\xe3" "\x52\x0f\x75\x5f\x7d\xf3\xb1\x8f\xbc\x34\x30\xf0\xd7\xe6\x58\xb1\x87\x79" "\x00\x00\x00\x80\xee\x92\x3e\x3c\xd5\x88\xe4\x43\x31\x5c\x1e\xfa\xa2\x4b" "\x5a\xf2\x92\xb3\x81\x85\x6d\xe3\xdb\xf3\x92\xb3\x81\x45\xb3\xe7\x9d\x95" "\x3c\xb4\x9f\x1d\xb4\xcf\x97\xac\xeb\xf2\x39\xe6\x5d\x39\xc7\xbc\xf7\x85" "\xf0\x99\xf4\x2c\x79\xab\xea\xf7\xad\x01\x00\x00\x00\xde\xf9\x92\xfe\x3f" "\xd3\x88\x14\x42\x2e\xb3\x60\xc6\xfe\xbf\x4b\x5f\xdf\xc8\xbb\xac\x2d\x2f" "\xe9\xb5\x7b\xf9\xad\x00\x00\x00\x00\xf0\xdf\x49\xfa\xff\x5c\x23\x52\x0c" "\xb9\x4c\xb1\xd1\xaf\xcf\xb5\xdf\x5f\x3c\x15\x3a\x19\x9a\xfa\xfd\x6e\xdf" "\xdb\x27\xe3\xaf\x68\xcb\x4b\xc6\x77\xfb\x3e\x7f\x65\xfd\xee\x7b\x7a\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x78\xe7\x18\xaf\x0c\x8e\x96\x87\x86\x47\xd2\x51" "\x08\xd1\x0c\x39\xd5\x0e\x92\x77\xe9\x6c\x1c\x97\x7a\xa8\xbb\xec\xd9\xfe" "\xbf\xdf\x7c\xe0\xfe\xc5\xcd\xb1\x5c\xa6\x87\x89\x00\x00\x00\x80\xae\x92" "\x3e\x7c\xaa\xf5\xce\x87\x5c\xa6\x3f\xf4\x85\xfc\x64\xe7\x3f\x70\xe3\xde" "\x27\x3e\xfd\xc4\x53\x83\x21\x84\x5a\x9b\x9f\xcd\x86\xad\x6b\x36\x6f\xbe" "\x6b\xd9\xc4\xb5\x9a\xee\x0b\x67\x4f\x9e\x0f\x2c\x3d\x74\xa0\xef\x9b\x07" "\x5f\xff\xea\xb4\xbc\xa5\xb5\xeb\xbc\x6d\x10\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf8\x9f\x19\xaf\x0c\x8e\x96\x87\x86\x47\xce" "\x8a\x42\x88\x1a\xd1\x74\x4b\x4e\xb5\x83\x46\x66\x36\x8e\x4b\x3d\xd4\x7d" "\xe5\xe3\x9f\xfc\xf3\x23\x47\x9f\x7e\xad\x39\x56\xec\x69\x07\x00\x00\x00" "\x40\x37\x49\x1f\x3e\xd5\xfb\xe7\x43\x31\x64\x43\x36\x5c\x34\xf9\xa9\xb9" "\xd7\x9f\x90\x6a\x1b\x1f\x9d\x9e\x65\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\xf3\x68\xd3\x97\xef\xf9\xd2\x9a\xb1\xb1\xb5" "\x77\x9d\x9a\x87\x28\x53\x2b\x73\x4a\x4a\x7c\xea\xdc\xda\xe4\xb3\x26\x87" "\x70\x4a\x37\xf8\xf6\x1e\xbe\xff\x93\x10\xce\x80\x65\x78\xf0\xd0\xf5\x61" "\x5e\xff\x59\x02\x00\x00\x4e\x81\xcb\x42\x14\xaa\x6f\xd3\xc5\xab\xe7\x7b" "\xd5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x99\x60" "\xbc\x32\x38\x5a\x1e\x1a\x1e\xc9\x47\x21\x44\x33\xe4\x54\x3b\x48\xde\xa5" "\xb3\x71\x5c\xea\xa1\x6e\xfc\xcc\xe1\xdc\x82\xe3\xcf\x3e\xdf\x1c\x2b\xf6" "\x30\x0f\x00\x00\x00\xd0\x5d\xd2\x87\x4f\xf5\xfe\xf9\x50\x0c\x7d\xa1\x2f" "\x5c\x38\xf9\xa9\xd3\x99\xc0\x64\xff\x5f\x38\x8d\x8b\x04\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xce\x28\xe3\x95\xc1\xd1\xf2" "\xd0\xf0\xc8\x82\x28\x84\xa8\x11\xad\x3f\x6d\xaf\xdd\xaa\x1d\x24\x99\xe9" "\x6c\x1c\x97\x7a\xa8\xfb\xf0\xf6\x3d\x1f\xdb\x7f\xde\x37\x6e\x6a\x8e\xe5" "\x32\x3d\x6f\x03\x00\x00\x00\x98\x45\xd2\x87\x67\x1b\x91\x7c\xc8\x65\xde" "\x1f\x72\xe1\xd2\xfa\xe7\xb1\xd6\x01\x51\xba\x7e\xef\x7c\x2e\x30\x35\x6e" "\x63\xcb\xb0\xfe\x39\x8f\xab\xb4\x8c\x4b\x77\x1c\xf7\xd1\x9f\x16\x36\x85" "\xc9\x93\x89\xa9\x71\x3b\xda\x76\x96\xa9\xef\xa6\x36\x2e\x9f\xcc\x57\xa8" "\xdd\x1b\xe3\x4a\xd3\xc7\x95\x9a\xc6\x15\x43\xa3\x7c\xa9\x65\x5c\xd8\xd5" "\x32\x6a\x41\xcb\x3a\xff\x50\x3f\xc9\x98\x7e\x5e\x02\x00\x00\x00\xf3\x21" "\xe9\xff\x73\x8d\x48\x21\xe4\x32\xb9\xa6\x3e\xf7\x07\x2d\xf9\x85\x2e\x7d" "\xfc\xe9\x5c\x3b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x66\x19\xaf" "\x0c\x8e\x96\x87\x86\x47\xa2\x28\x84\x68\x86\x9c\x6a\x07\xc9\xbb\x74\x36" "\x8e\x4b\x3d\xd4\xbd\xe7\xd7\xef\x39\xe7\xf3\x3f\xdc\xb9\xa5\x39\x56\xec" "\x61\x1e\x00\x00\x00\xa0\xbb\xa4\x0f\x9f\xea\xfd\xf3\xa1\x18\x16\x85\x73" "\xc3\xa2\xc9\xbe\x3f\x14\x5a\xf3\x93\xbc\x7f\x94\x4f\xec\x7f\xe8\x9f\x7f" "\xb9\x2a\x84\x6b\x2e\x3a\x32\x90\x69\x9f\xf6\x3b\xc9\xc3\x2f\x5f\xb9\xe1" "\xb9\xf6\x4b\x08\xa9\xd6\xec\x54\x08\xe7\xd5\xeb\x45\x33\xd4\xfb\xd5\x6f" "\x1f\xba\x7b\x49\xf5\xc4\x23\x21\x5c\x73\x61\xfa\xd2\x69\xf5\xc2\xec\xf5" "\x5a\xa7\x8c\xab\x4f\x96\xd7\xae\xdc\x7c\xf0\xc8\xc6\x2e\x7f\x1c\x00\x00" "\x00\x78\x97\x48\xfa\xff\xbe\x46\xa4\x10\x72\x99\x3b\x5b\xfb\xff\xa9\x97" "\x21\xe9\xbc\xbb\xf4\xff\x0d\x93\x0d\xf8\x79\x77\x6f\xff\xd9\x05\xf5\x6b" "\xbd\x23\x6f\x1e\x51\xad\x1e\xff\x51\xa1\x5e\x2f\xd5\xd6\xff\x27\x79\x9f" "\x58\xf2\xd8\x9f\xae\x58\xfe\xb7\xd7\x27\xfa\xff\xd9\xea\x7d\x68\xcf\xfa" "\xfd\x17\xb4\x14\xac\x45\xda\x44\x71\x75\x68\xfd\x96\x55\x47\xae\xdd\x97" "\x4a\x76\x5d\xab\x9f\x6e\xab\x9f\x6c\xfd\xb3\x5f\x79\xed\x5f\xeb\xb6\x3e" "\x78\xa2\x56\x3f\x1f\xf2\xf5\xf8\xc2\x4c\xa7\xfa\xd3\xaf\x6d\xce\x8a\xab" "\x63\xa9\xdd\x23\x2b\x4e\xee\xae\xb4\xd6\xcf\xcc\xb0\xff\xfb\x7f\xf3\xfc" "\xd1\x5f\x2c\xdc\xf9\xd6\x44\xfd\x37\x2f\xeb\x6f\xd4\xbf\x72\x96\xfd\x37" "\xd5\xaf\x4e\xaf\xdf\x7f\xcb\x03\xbb\xae\xdb\x73\x60\x55\x6b\xfd\x10\x42" "\xa9\x53\xfd\x37\xde\xba\x29\x5c\xfc\xfb\x3b\xee\x6b\xdf\x7f\x7f\xdb\xc4" "\xcd\x7f\xf9\xe6\x6b\x9b\x28\xae\x1e\x5a\x7c\x6c\xdf\xf2\xbd\xc5\xeb\x5b" "\xeb\x47\x6d\xf5\x93\xbf\xff\x8f\x8f\x3e\xbc\xeb\x7b\x0f\x7e\xfd\xa9\xa4" "\x7e\xf2\x5b\x91\xab\x2e\x9f\x6b\xfd\x54\x5b\xfd\x17\x77\x9c\xbf\xfd\x85" "\x6d\xab\x17\xb6\xd6\x4f\xcd\xb0\xff\xe7\x6e\x7d\x69\x60\x43\xe9\x6b\xbf" "\x6b\xdf\xff\xed\x2d\xb3\x66\x66\x5c\xc5\xf4\xfd\x3f\x7a\xf5\xe3\xb7\xbd" "\xbc\x26\xbe\xb7\xfd\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0" "\xbb\xcb\x78\x65\x70\xb4\x3c\x34\x3c\x92\x8a\x42\x88\x66\xc8\xa9\x76\xb0" "\xad\xfe\x2e\x9d\x8d\xe3\x52\x0f\x75\x5f\xbd\xf9\xf0\x1b\xb7\xee\xfc\xee" "\xb7\x9b\x63\xc5\x1e\xe6\x01\x00\x00\x00\xba\x4b\xfa\xf0\xa9\xde\x3f\x1f" "\x8a\x21\x1b\xb2\xa1\x7f\xb2\xef\x7f\xb2\xbc\x76\xe5\xe6\x83\x47\x36\x86" "\x42\xed\x6d\x54\xbf\x67\xc6\x36\x6c\xda\xfc\x81\x75\x1b\xb6\xdc\x79\xfb" "\x3c\xad\x1c\x00\x00\x00\x98\xab\xa4\xff\xcf\x34\x22\x85\x90\xcb\x2c\x09" "\x7d\xf5\xfe\x7f\x68\xfd\x96\x55\x47\xae\xdd\x97\x4a\xfa\xff\x54\xd2\xff" "\xaf\xbb\x63\x6c\xed\x35\xa1\x91\xf7\xe2\x8e\xf3\xb7\xbf\xb0\x6d\xf5\xc2" "\xc6\x39\x41\x08\x93\x3f\x0b\xc8\x4f\xe4\x7d\x78\x2a\xef\xc6\x1b\x0e\x17" "\x8e\xfd\xf1\x8b\x57\x74\xcc\x5b\x36\x95\x77\x68\xf1\xb1\x7d\xcb\xf7\x16" "\xaf\x4f\xf2\x42\x73\xde\xd2\xd0\x38\x9f\x78\xf4\xea\xc7\x6f\x7b\x79\x4d" "\x7c\x6f\x63\x7d\xcd\x79\x1f\xfc\xc2\x86\xb1\xfa\xf1\x44\x32\x6f\xff\x2d" "\x0f\xec\xba\x6e\xcf\x81\x55\x8d\x7d\xd4\xef\xfd\xf5\x79\x93\xbc\xb1\xd4" "\xee\x91\x15\x27\x77\x57\x92\xbc\x74\xfd\x9e\xaf\xef\x1b\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x98\x6e\xbc\x32\x38\x5a\x1e\x1a\x1e\x09\xe9\x30" "\xf1\x5f\x47\xd5\x68\xe2\xd2\x2a\x79\x97\xce\xc6\x71\xa9\x87\xba\x2b\x96" "\xfc\xfc\xbe\x73\x8e\x3f\xbd\xa8\x39\x96\xcb\xf4\x30\x11\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xff\x61\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\xfb\xf5\x17\x62\x45\x15\xc7\x01" "\xfc\xcc\xbd\xfb\xe7\x7a\xef\xae\xee\x6a\x90\x14\xad\xab\x15\x85\x3d\x24" "\x05\x11\xf5\x52\x51\x11\x1a\x21\xf4\x64\x48\x58\x9a\x0f\x41\x10\x44\x14" "\xf6\xd0\x1a\x1a\x89\x15\xbd\x04\x59\x2f\x12\x15\x54\x5b\x08\x05\xb9\x49" "\xa2\xc5\x1a\xfd\x93\x5e\x7a\xa8\x20\xc1\x7a\x08\x44\x5a\x28\x2f\xd2\x43" "\xc5\xbd\x7b\x66\x77\xee\x78\xa7\x9b\xb3\x16\x54\x9f\x0f\x5c\xce\x9c\x33" "\x33\xdf\xf9\xcd\xcc\x99\x99\x5d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x7f\x8f\xfe\xf9" "\xc5\x23\x3b\x1f\x6a\xde\x71\xc1\x2d\x9f\x3e\x71\xdf\xa9\xc7\x6f\x7b\xff" "\x81\xed\x97\x3d\xf6\xc6\x0f\xe3\x9b\x6f\xfa\x64\x5f\xfd\xd5\xd3\xd3\x5b" "\x56\x6e\xfd\xe6\xe6\x65\x9b\x0f\xdc\xbf\x76\x6a\xcf\x4b\x87\x7f\x19\x7e" "\xf7\xb7\xe3\x3d\xb3\x1f\x9d\x6d\x56\xc7\x6e\x2d\x84\xe4\x64\x12\x42\xed" "\x83\x99\xe7\x9f\x9c\xfe\xec\xfc\xd6\x58\x12\x42\xa8\x26\x23\x13\x21\x8c" "\x26\x4b\x0f\x8f\x26\xb9\x84\x35\xbf\x86\x10\xb6\xc4\xce\x60\x5f\xe7\xca" "\x77\x4e\x5d\xbd\xb5\xd5\x6e\xdf\x3d\xd8\x31\xbe\x24\x17\x92\x3f\xaf\xd0" "\xa8\xa6\xf5\xcc\x1a\xe9\xac\x97\xff\x96\x5a\x9c\x67\xdb\x9a\x8f\x5c\x11" "\xbe\xbb\x71\xc3\x8e\x2f\x56\xbc\xfd\x56\xff\xe4\x89\x89\xf9\x4d\x92\x5a" "\x66\x3e\x85\xb0\x78\x53\x76\xff\xd6\x23\xb2\x28\xfe\x5a\xd2\xd9\xb6\x3c" "\xdd\x39\xb6\xeb\x43\x08\xf5\xcc\x7e\xd7\xf6\xa8\xeb\xe2\xbf\x58\xff\x95" "\x05\xfd\x0b\x63\x3b\x10\xdb\x46\x8f\x9c\x74\xfd\xaa\x5c\xbf\x32\xbf\xc9" "\x40\xae\xdf\xa1\x3f\xd7\xd6\x7b\x1c\x6f\xa1\x8a\xea\x28\xbb\x5d\x2f\x43" "\xb9\x7e\xfe\x65\xb4\x50\x45\x75\xa6\xe3\xa3\xb1\x7d\x2f\xb6\xab\xcf\x32" "\xbf\x9a\xf9\xe5\x0d\x64\x96\xd3\xfb\x96\x84\xa4\x7d\x2f\x6b\x73\xfd\x4a" "\xf6\x73\xd0\x3e\xff\x5c\x3f\xc9\xf5\x2b\xb9\x7e\xb5\x3f\x77\x5e\xed\xe3" "\xc6\x89\x56\x4d\x92\xce\xf1\x74\xbb\xdc\x78\xfa\x3a\xee\x8b\xe3\x2b\xb3" "\xef\xea\x2e\xee\x2c\x18\x4f\xf7\xa9\xc5\x07\xf5\x74\x6e\x3c\x1f\xda\x38" "\x63\x61\xee\xbc\xda\xd2\xba\x66\xfe\xa4\x96\x7f\x42\x25\xf3\x0e\xea\x36" "\x3e\x37\x6f\xe3\xcd\x68\xc4\xb1\x46\xb2\xf4\x8c\x7d\x7e\xef\x22\x5d\x37" "\xbd\xe1\xe9\x4b\xab\x1b\x3f\x3c\x32\x52\x50\x47\xb2\x2f\x89\xf9\x49\xa9" "\xfc\x6d\x9f\x8f\x0e\xdd\xfd\xe6\xae\x87\x97\x17\xe5\x6f\xaa\xc4\xfc\x4a" "\xa9\xfc\x63\xeb\x8e\xfe\x74\xd7\xae\x97\x5f\x2c\xcc\x7f\x2e\xcd\xaf\x96" "\xca\xbf\xea\x60\xfd\xe4\xba\x8f\x76\xae\x2a\xbc\x3e\x33\xe9\xf5\xe9\x2b" "\x95\x7f\xcf\xf1\x8f\x9f\x59\x71\xde\xbd\x93\xdd\xee\x75\x3b\x7f\x6f\x9a" "\x5f\x2b\x95\x7f\xc3\xd4\xd1\xc1\xe1\xe6\xc1\x43\x85\xf5\xaf\x49\xaf\xcf" "\xa2\x52\xf9\xdf\x5e\x7f\xeb\xf7\xaf\x7f\xb5\xff\x44\x61\x7e\x48\xf3\xeb" "\x67\x91\x7f\x6c\x6e\xdd\xc6\xa9\x07\x9f\x1d\x1c\x6b\x5e\x5e\x98\x7f\x68" "\xf6\x51\x68\xb4\x67\x68\x89\xf9\xf3\xf3\xe4\x35\x5f\x8f\x8d\xfd\x38\x5e" "\x94\xff\x65\x7a\xfd\x87\xbb\xe4\x27\x3d\xf3\x5f\x9b\xd8\x73\xdd\x2b\x4b" "\x76\xaf\x2d\x9c\x9f\xeb\xd3\xeb\x33\x52\xaa\xfe\xdb\x2f\x39\xb0\x63\xa8" "\xb9\xff\xa2\xa2\x77\x67\xb2\xf7\x5c\x7d\x39\x01\xfe\x9f\x96\xc5\xbf\xb1" "\x9e\x8a\xfd\xb2\xff\x67\x2e\x54\xe6\xff\x85\x17\xc6\xfb\x66\xbf\x40\x43" "\xf1\x37\x7c\x2e\x0f\x94\xd3\x3a\xce\xe2\xbf\x31\x1f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x3f\xd8\x81\x03\x12" "\x00\x00\x00\x00\x41\xff\x5f\xb7\x23\x50\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xa7\x02\x00\x00\xff" "\xff\x38\x9c\x01\x42", 23261); syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x200000000000, /*flags=MS_I_VERSION*/ 0x800000, /*opts=*/0x200000005c80, /*chdir=*/1, /*size=*/0x5ad9, /*img=*/0x200000000080); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }