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