// https://syzkaller.appspot.com/bug?id=13b76f78f2b724faf505a43fe03ea5298731a61c // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #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*)0x200000c0, "bcachefs\000", 9); memcpy((void*)0x20000000, "./file0\000", 8); memcpy((void*)0x20005bc0, "\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x63" "\x6f\x6d\x70\x72\x65\x73\x73\x69\x6f\x6e\x3d\x67\x7a\x69\x70\x2c\x76" "\x92\xa0\x73\x69\x6f\x6e\x5f\x75\x70\x67\x72\x61\x64\x65\x3d\x69\x6e" "\x63\x6f\x6d\x70\x61\x74\x69\x62\x6c\x65\x2c\x64\x65\x67\x72\x61\x64" "\x65\x64\x2c\x69\x6e\x6f\x64\x65\x73\x5f\x33\x32\x62\x69\x74\x2c\x6e" "\x6f\x72\x65\x63\x6f\x76\x65\x72\x79\x2c\x6a\x6f\x75\x72\x6e\x61\x6c" "\x5f\x74\x72\x61\x6e\x73\x61\x63\x74\x69\x6f\x6e\x5f\x6e\x61\x6d\x65" "\x73\x2c\x72\x65\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x5f\x61\x6c\x6c" "\x6f\x63\x2c\x6e\x6f\x5f\x64\x61\x74\x61\x5f\x69\x6f\x2c\x00", 151); memcpy( (void*)0x20005c80, "\x78\x9c\xec\xdd\x7f\x90\x5c\x55\xbd\x20\xf0\x73\xbb\x7b\x32\x9d\x99\xfc" "\x98\x04\x78\x44\x90\xc9\x10\xc8\x7b\x3c\x78\x9a\x09\xbf\x0a\xf5\xd5\x33" "\xbe\x7d\x4f\x2d\x40\x2a\x16\x96\x12\x36\x0a\x03\x99\x60\x74\x08\xa9\x24" "\x08\x09\x28\xc1\x05\x17\x0a\xb0\xd0\xd2\x52\xd4\x3f\xd0\x42\x6a\xd1\x68" "\x51\x05\x0a\x91\x12\xf9\xb1\x09\xab\x28\xc5\xea\x52\x5b\xc8\xae\xee\xa2" "\x7f\xb8\x85\x2c\x29\x81\x2c\x65\xb9\xce\xab\x99\xbe\xa7\xa7\xe7\x4e\xdf" "\xb9\x3d\x3d\x3d\x21\x81\xcf\xa7\x92\xb9\x7d\x4f\xdf\xfe\x9e\x73\xcf\x3d" "\x7d\xfb\x7e\x4f\xf7\x4c\x07\x00\x00\x00\xde\x14\xf6\xdd\xb8\xed\xc0\x79" "\xc7\xfc\xeb\xcf\x3e\x3b\xfc\xea\x75\xef\xff\xd1\xe5\xd7\x87\xde\xf2\x78" "\x79\x35\x6e\xd0\x97\x2e\xaf\x7e\xbd\x5a\xc8\xc1\xd4\x5d\x59\x36\xbe\xcc" "\x8e\x8b\xbf\xbb\xe6\x3b\xbf\x1f\xb8\xf4\x9f\x7f\x7a\x6f\xcf\xb7\x5f\xdb" "\xbb\xe1\xf8\x8d\xbf\xfe\x97\x23\x2e\x7d\xe8\x13\x67\xef\xb9\xe3\xeb\x8f" "\xbe\xb2\xf0\xfe\xbf\x3e\x5f\x14\x37\x8e\xa7\x93\x27\xd6\x93\x17\x93\x10" "\xaa\x3f\xde\xff\xe5\xcf\xed\x7d\xf2\xe8\xb1\xb2\x24\x84\x50\x4e\xfa\x76" "\x85\xb0\x24\x59\xfa\xe8\x92\x24\x13\x62\xf0\xcf\x21\x84\x0d\xe9\xca\xb2" "\xcc\x9d\xf7\xbd\x7a\xda\xc6\xb1\xe5\xf5\xb7\x74\x4f\x2a\x5f\x9c\xd9\xce" "\x78\x7f\x73\xab\xa6\xe3\x6c\xe7\x81\xab\x4e\x09\xbf\x79\xcf\xba\x1b\x7e" "\xb1\xfc\xfb\xdf\xeb\xda\xfd\xc2\xae\x89\x4d\x92\x6a\xc3\x78\x0a\x61\xd1" "\xc5\x8d\x8f\xef\x0a\x21\xcc\x4f\xff\x8f\x89\xa3\x2d\x8e\xc7\x38\x68\xd7" "\x86\x10\x7a\x1a\x1e\x77\x56\x41\xbb\x4e\x68\xb1\xfd\xab\x72\xd6\x8f\x4d" "\x97\xf3\xd2\x65\x6f\x41\x9c\x78\xff\x8a\xcc\x7a\x29\xb3\x5d\x76\x3d\xea" "\xca\x2c\x7b\x0a\xea\x9b\xad\xbc\x76\xb4\xbb\x5d\x91\x05\x99\xf5\xec\xc9" "\x68\xb6\xf2\xda\x19\xcb\x97\xa4\xcb\x07\xd2\xe5\xc9\x33\x8c\x5f\x8e\xff" "\x93\x50\x4a\x42\xa5\xde\xfc\x91\x64\x62\x8c\x84\x86\xe3\x96\x84\x64\xfc" "\x58\x56\xeb\xeb\xa5\xfa\xb1\x0d\xe9\xfe\x67\xd6\x93\xcc\x7a\x29\xb3\x5e" "\xee\xca\xec\xd7\x78\xbd\xe9\x40\x2b\x27\xc9\xe4\xf2\xb8\x5d\xa6\x3c\x9e" "\x8e\x2b\x69\xf9\xf1\x8d\xe7\xea\x26\xce\xcf\x29\x7f\x4b\xba\xac\xa6\x4f" "\xd4\xd7\xe2\x7a\xc8\xde\xa8\xe9\x9d\x72\xa3\xbe\x5f\xe3\x62\xbb\xf6\x4f" "\xd3\x96\x83\xa1\xd4\x70\x0e\x6a\x56\x5e\x3f\xf0\xe9\xc1\xe8\x4d\xcb\x7a" "\x93\xa5\x53\x1e\x33\xda\xe8\x81\xff\x31\xbe\x88\xf7\xed\x5d\x77\xeb\xca" "\xf2\xfa\xc7\xf6\xf5\xe5\xb4\x23\xb9\x37\x49\xe3\x27\xad\xc5\x4f\xc5\xfb" "\x76\xfe\x7c\xc9\x82\x8f\x7d\xf7\xe6\x2b\xb3\xaf\xeb\xf5\xf8\x17\x97\xd2" "\xf8\xa5\xb6\xe2\xff\xf6\x9c\xa7\x5e\xba\xf0\xe6\x6f\x7d\x2d\x37\xfe\xed" "\x31\x7e\xb9\xad\xf8\xa7\x3e\xdc\xf3\xe2\x39\x8f\xdf\xb8\x22\xb7\x7f\xf6" "\xc7\xfe\xa9\xb4\x15\x7f\xe8\xf9\x27\x6e\x5b\x7e\xe4\x25\xbb\x73\xdb\x7f" "\x67\x8c\x5f\x6d\x2b\xfe\x9a\x3d\x4f\x75\x2f\x3c\xf0\xf0\x23\xb9\xed\x1f" "\x8c\xfd\x33\xbf\xad\xf8\xcf\xbd\xeb\xbd\xbf\xbb\xe7\x99\x07\x5f\xc8\x8d" "\x1f\x62\xfc\x9e\xb6\xe2\xaf\xdf\xb3\xe5\xf3\xdd\xfd\x07\x4e\xca\x8d\xff" "\x48\xec\x9f\xde\xf6\xc6\xcf\xcb\xbb\xcf\x7c\xb6\xbf\xff\x0f\x03\x79\xf1" "\x9f\x8e\xf1\x17\xb6\x15\xff\xee\x5d\x77\xbc\xf3\xae\xc5\xb7\x9c\x9d\x7b" "\x7c\xd7\xc6\xfe\xe9\x6b\x2b\xfe\xb9\x27\x3e\x74\xc3\x82\x03\x0f\x1e\x97" "\x77\xee\x4c\xee\xec\xd4\x2b\x27\xc0\x9b\xd3\x11\xe9\x35\xd6\x4d\xe9\x7a" "\xbb\x79\xe6\x6c\x35\xe4\x0b\x5f\x1d\xa8\xd4\xae\xf9\x16\xa4\xff\x17\x76" "\xb2\xa2\xcc\xc5\xe7\x58\x3d\x8b\x3a\x19\x1f\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x42\x08\x47\x9d\xf2\x5f" "\xde\xf7\xbf\x3f\xdc\xf7\x62\x25\x5d\xef\x4e\x6f\x3c\x57\xaa\x2d\x63\xf9" "\xbc\x10\x92\xf9\x21\x84\x6d\xdb\x87\xb6\x6e\xdf\xb4\xf9\xb2\x81\x4f\x5c" "\x71\xe5\xd6\xcd\x43\x23\x03\x43\xdb\x07\x86\x37\x6f\xdf\xba\x63\xe0\xf4" "\x7f\x18\xd8\x3a\xbc\x65\x64\x68\xc7\xd8\xbd\x83\x6f\x3b\xad\xf6\xb8\xa5" "\x21\xa9\x2d\x93\xe3\xa6\xd4\xdd\x3d\x3a\x3a\x5a\xea\x9b\x5c\x16\xeb\xfb" "\x77\x27\xee\xfe\xcd\xca\xb3\xfe\xcf\x1f\x43\x18\x3c\xea\x57\xfd\x95\xdc" "\xf6\xaf\xba\xe3\xf2\xbb\x8e\x6c\xf2\x33\x23\x59\x33\xfa\xee\xcb\xaf\x3c" "\xef\x57\x67\x7c\x33\xdd\xaf\xbe\xb4\x5d\x7d\x4d\xda\x35\x3a\x3a\x3a\x1a" "\x72\xda\xf5\x7f\x2f\xf8\xcb\x5d\x5f\xdc\xff\xfb\x93\x42\x18\xfc\x9b\xe9" "\xda\xf5\xc4\x73\xff\xf4\x93\x49\x0d\x1a\x2f\x98\x88\x93\x2a\x75\x87\x5a" "\x83\xba\x93\x9e\xa6\xed\xa8\xb7\x3a\x6d\x4f\xec\xaf\xca\xc6\x4d\x23\xc3" "\x83\xd3\xf7\xef\xd8\xe3\xcb\x39\xfb\xf1\xef\xaf\x79\xe1\xcf\x1b\xaf\xfe" "\xc2\x5f\x6a\xfd\x5b\xcd\xdd\x8f\x16\xfb\x77\xfe\x9a\xd1\x91\xd2\x57\xd6" "\x9d\xfb\xff\xbf\x72\x6d\xad\xa0\xa8\x5d\xaf\xd7\x71\x2f\xea\xef\xb8\x17" "\xb1\x7d\xb1\xff\xaa\x69\x7f\x2f\x4a\xf7\x6b\x51\xce\x7e\x55\x72\xf6\xeb" "\xc6\x5f\x3c\xf2\xcc\x8f\x8f\xb9\xf9\x95\x5d\x61\xb0\xf2\xf2\xf2\xa9\x75" "\x17\xed\x57\x57\x3a\x00\xba\x92\xb7\xb4\x54\x6f\xac\xa1\x27\x59\x32\xa9" "\xbc\x9a\x6e\x1f\x8f\x78\x7c\xdc\xaa\xed\x97\x6f\x59\xb5\x6d\xc7\xce\xb7" "\x6d\xba\x7c\xe8\xb2\xe1\xcb\x86\x37\xbf\x63\xf5\xe9\xab\xcf\x1c\x3c\xe3" "\xcc\x33\x56\x8d\xef\xf9\xaa\x0e\xef\x7f\xac\xff\x6f\x5b\xdc\xff\x83\x33" "\x9e\x16\x7f\x6a\xd7\x03\xf1\x67\x6b\xe3\xa9\xa8\x5d\x45\xfd\x31\xd6\xae" "\xe2\xfe\x68\x6c\x51\xde\xf3\xaf\xe7\xfc\xcf\x7d\xe9\x1d\x77\x3c\x7e\x5e" "\xad\xa0\x68\x9c\xc7\xad\xeb\xe7\x93\x74\xd9\x33\x76\x9c\x57\x87\x86\xf1" "\x36\xb5\xaf\x9a\xed\x57\x51\x3f\x84\x10\x06\x9a\xf5\xc3\x4b\xaf\x9c\x1d" "\x8e\xfe\xef\x9b\x6e\x28\x3a\x0f\x35\x1e\x99\xc6\x9f\x19\xc9\x9a\xd1\x27" "\x57\xfc\xe9\x9b\x67\x7d\x63\xd9\x3f\xd6\x0a\x0e\xca\x79\xbe\xb1\x41\x6d" "\x9e\xe7\xeb\xad\x9e\x68\xcf\x78\x7f\x55\xd3\xe3\x31\x7a\x88\xf6\x6f\x77" "\x28\xa7\xfb\xd5\xdb\xb4\x5d\xab\x9f\x7c\xbc\xeb\xd6\x7d\x7f\xfc\x74\xbd" "\x7d\xf3\xe6\x85\xab\x87\xb6\x6f\xdf\xba\xba\xf6\x73\x41\xda\xd2\x05\xc9" "\xb1\x4d\xdb\x95\x2d\x8d\xfb\xb5\x7c\xfc\x67\x39\xa4\xdd\x12\xea\xc3\xb4" "\xc9\x78\x1d\xd3\x15\x6a\xed\xcb\x9e\x3f\xe3\xe6\xd9\x5e\xed\x4d\xef\xeb" "\x4d\x96\x36\xdd\xaf\xac\x78\xdf\xde\x75\xb7\xae\x2c\xaf\x7f\x6c\x5f\x5e" "\x4f\x27\xf7\xd6\x6a\x9c\x1f\x16\xd6\x96\xc9\x5b\x73\xb6\x1c\xc9\x3c\xb0" "\x5c\x6f\x70\xb3\xfa\x0f\xd5\xe7\x5f\xd1\xf8\xe8\x7f\xdf\x37\xee\xff\xf0" "\xfd\x3f\x3c\x7d\xca\xf8\x38\xb5\xf6\xb3\x68\xbf\x92\x9c\xfd\xfa\xfe\x33" "\x77\x7f\xe9\xdb\x5f\xf8\x8f\x3f\xec\xdc\x7e\xbd\xef\x9f\x9e\xea\xfb\xd3" "\xff\xfc\xf8\xca\x5a\xc1\xe1\x72\x5e\xa9\xb7\x3a\x6d\x4f\xd2\x78\x5e\x39" "\x35\x84\xa2\xe7\xdf\xf2\xd0\x7c\x3f\x72\x9f\x7f\xa5\xe6\xfb\x53\xf4\xfc" "\xcb\xd6\x33\xb1\x7d\xf3\x78\x03\x99\xf5\xde\x50\x6e\xeb\xf9\x7a\xea\xc3" "\x3d\x2f\x9e\xf3\xf8\x8d\x2b\x72\x9f\xaf\xfb\x5b\x7d\xbe\x5e\x3b\x69\xad" "\x5c\xf0\x7c\x3d\x54\xc6\x4f\xf6\xf9\x95\x54\x26\xb7\x63\xee\x9e\x5f\x93" "\x06\x4a\xb2\x66\xf4\xa7\x37\x1d\xb1\xeb\xd1\xeb\xd6\x1e\x53\x2b\x28\x1a" "\xd7\xf5\xad\x6b\xfd\xb4\x63\x74\x74\x74\x62\x5c\x9f\xd6\x42\xfe\x91\xb3" "\x5f\x3f\xb9\xf0\xd9\xfe\x2b\x06\xfe\xc3\x7f\xeb\xdc\x79\xe3\x3b\xff\x70" "\xdf\x45\xbf\x1e\x5a\xf3\x99\x5a\x41\xfb\xc7\x3d\xb6\xa5\x33\xc7\xbd\x9a" "\xf6\x6f\x35\xa7\x7f\xeb\xad\x8e\x79\x67\xe3\x79\xe3\xed\x97\x5e\x31\xb2" "\xa1\x56\x7e\xe8\x5e\xff\xa6\xcb\x82\xfc\x27\x9e\x4a\xb6\xed\xd8\xf9\xc9" "\xa1\x91\x91\xe1\xad\xdb\x5a\xdb\xaf\x56\x5f\x4f\x63\x3d\xd9\x5e\x6e\xf7" "\xf5\x34\x9e\xdd\x96\x16\xec\x57\x69\xca\x7e\xcd\xdd\x8d\x56\xfa\xab\xd5" "\xe7\x5b\x6c\xff\x86\xb6\xfb\x6b\xf2\xf3\xad\x37\x24\x6d\xbd\x2e\xec\xfc" "\xf9\x92\x05\x1f\xfb\xee\xcd\x57\xf6\x4d\x79\x54\x5a\xd1\xc5\xa5\x34\x7e" "\xa9\xad\xf8\xbf\x3d\xe7\xa9\x97\x2e\xbc\xf9\x5b\x5f\xcb\x8d\x7f\x7b\x8c" "\x5f\x69\x2b\xfe\xd0\xf3\x4f\xdc\xb6\xfc\xc8\x4b\x76\xe7\xc6\xbf\x33\x49" "\xe3\x57\xdb\x8a\xbf\x66\xcf\x53\xdd\x0b\x0f\x3c\xfc\x48\x6e\xfc\xc1\xd8" "\xfe\xf9\x6d\xc5\x7f\xee\x5d\xef\xfd\xdd\x3d\xcf\x3c\xf8\x42\x6e\xfc\x10" "\xe3\xf7\xb6\xd7\xff\x2f\xef\x3e\xf3\xd9\xfe\xfe\x3f\xe4\xc6\x7f\x3a\x49" "\xeb\x19\xbb\x46\x0a\xe1\xbe\x57\x4f\xdb\x58\x5b\x4f\x42\x57\xfa\x7c\x8b" "\xed\xe8\x9a\xd4\xae\x90\x5d\x4f\x32\xeb\xa5\xcc\x7a\xb9\x71\xbd\x54\x9b" "\x6b\xad\x57\x50\x4e\x92\xc9\xe5\x71\xbb\xb4\xfc\xf8\x86\xb6\x34\xf3\x91" "\x9c\xf2\x78\x15\x56\x5d\x56\x5b\xbe\x16\xd7\x43\xf6\xc6\xf4\xe5\x87\x9a" "\x52\xc3\xb9\xbf\x59\x79\xd1\x75\x2a\x00\xc0\x1b\x5d\x7c\xff\x3f\x5e\x83" "\xc6\xf7\xff\x87\xd3\x0b\xa5\xfc\x99\x06\x98\x30\xdb\x3c\x6c\x59\x4e\xdc" "\x98\x87\x4d\xcc\xe7\xcc\x9b\x74\xff\xb2\x34\x7e\x7c\x7c\x9c\xaf\xec\x7f" "\x7b\x18\x1c\x5b\x5e\x3f\x50\xbb\xd0\x9f\xe9\xfb\x08\xf1\xf9\x90\x9d\xe7" "\x8c\xf5\x9c\x74\xc2\xe4\x18\xed\xce\x73\x16\xcd\xbf\xaf\xc8\xac\xc7\x76" "\xd5\xe6\xcb\x2b\x0d\x79\x68\x6a\x6a\x5e\x53\x09\x2d\xcc\xbf\x4f\xad\x67" "\xfa\xf9\xf7\xcc\xee\x17\xcf\x8f\x0f\xdc\x34\xa5\x59\x03\x0d\xf3\x56\xd9" "\xe3\xd7\x95\xce\x98\x35\xfb\xbc\x43\xa6\xbd\x95\xb1\x08\x79\xe3\x23\x3b" "\x2f\x16\x3f\xcf\xd1\xbf\x28\xac\x1d\xaf\xaf\xc5\xf1\x91\xfd\x1c\x4d\x3c" "\x0e\xd9\xcf\xd1\xc4\x7a\x8e\xc9\x9c\x38\xdb\xfd\x1c\xcd\x6c\xc7\x47\x6c" "\xf6\x34\xe3\x63\xbc\xc9\xc5\xef\x6f\x4c\x3d\x7e\x61\x9a\xfe\x9d\x38\x7e" "\xcd\xa3\x65\x8f\xdf\x0c\x8e\x77\x75\x6c\xfb\xb9\x7e\x7f\xb6\x03\xf3\x86" "\x4d\x4f\x69\x07\x6f\xde\x70\x6e\xdf\x0f\x33\x2f\x99\x13\x3f\x7d\x82\x1d" "\xea\xf3\x86\xb1\x3c\xee\x47\xa5\xc5\xf9\xc4\x0f\xe7\x94\x77\x6a\x3e\x31" "\x9e\x2e\x62\xbb\xf6\x4f\xd3\x96\x83\xc1\x7c\x22\xf0\x46\x15\xf3\xff\xf8" "\x1a\x31\x96\xff\x8f\x5d\x80\xff\xbf\xcc\x76\x45\xd7\xa1\xd9\xab\xc6\x18" "\x2f\xf7\x73\x42\xe5\xe6\xed\x29\xca\x3b\xa6\x7e\x4e\xaf\xa7\xad\xd7\xf1" "\xf5\x7b\xb6\x7c\xbe\xbb\xff\xc0\x49\xb9\xd7\x39\x8f\xb4\xfa\xb9\x9f\x2d" "\x93\xd6\x7a\x0a\x3e\xf7\x53\xd4\x8f\x2b\x33\xeb\x85\xfd\x98\x33\x41\x53" "\x94\xef\x65\xeb\x29\xea\xf7\xec\xe7\x32\x7a\xc3\xc2\xb6\xfa\xfd\xee\x5d" "\x77\xbc\xf3\xae\xc5\xb7\x9c\x9d\xdb\xef\x6b\x6b\x2f\xa4\xc5\xfd\xfe\xa5" "\x49\x6b\x0b\x0b\xfa\xfd\x30\xc8\x17\x9a\xc7\x97\x2f\xbc\x29\xf2\x85\xb9" "\x9e\x3f\x7b\xdd\xf2\x91\xf4\x83\x4f\x73\x95\x8f\x7c\x28\xa7\x7c\xa6\xf9" "\x48\xcf\x94\x1b\xf5\xfd\x1a\x77\xd8\xe5\x23\x5d\x07\xb7\x5d\x00\xc0\xe1" "\x23\xe6\xff\xf5\xf7\xcf\xd2\xfc\xff\x7f\xc5\x0d\xd2\xeb\x88\xa2\xbc\xf5" "\xe4\xcc\x7a\x8c\x97\x9b\xb7\xe6\x5c\x9f\xe4\xe5\xad\x1f\x48\x97\x57\x67" "\xb6\xef\x4d\x7f\xa3\x62\xa6\xd7\xcd\xe7\x9e\xf8\xd0\x0d\x0b\x0e\x3c\x78" "\x5c\x6e\xde\x72\x67\xab\x79\xe8\x7f\x9a\xb4\xd6\x57\x98\x87\xce\x2e\x6f" "\xce\xcd\x23\xd6\x76\xe6\xf3\xe2\xb9\x79\x44\x3d\xcf\x9a\x5d\x9e\x98\xdb" "\xfe\x7a\x9e\x38\xbb\x3c\x3d\x37\x7e\x3d\x4f\x9f\x5d\x1e\x9d\xdb\x3f\xf5" "\x3c\x7a\x76\xf3\x00\xb9\xf1\xeb\xf3\x00\x87\x7b\x9e\x5b\x30\x5f\x97\xa9" "\x2c\xae\xb6\x3a\x5f\xf7\x86\xcd\xa3\xd3\x5f\x9f\x9d\xab\x3c\xfa\xfc\x9c" "\xf2\x99\xe6\xd1\xbd\x53\x6e\xd4\xf7\x6b\x9c\x3c\x1a\x00\xe0\xf5\x15\xf3" "\xff\x78\x19\x17\xf3\xff\xc7\x33\xdb\xcd\xf6\x7d\xf6\xdc\xbc\xa0\x43\xd7" "\xed\xd9\xbf\x07\x52\x8f\xff\xf4\xc1\xca\x2b\xe7\x3a\xef\x9b\xeb\xbc\x75" "\xae\xf3\xfa\xb9\x9e\x97\x38\xdc\xf3\xe2\xb9\x9e\x17\x9a\xdb\x79\xb2\x37" "\x7d\x5e\x9c\x56\x2a\x2f\x06\x00\xe0\x50\x16\xf3\xff\xf9\xe9\x7a\x7e\xfe" "\x3f\xbb\xfc\xa4\x59\xfe\xd6\x35\x29\x3f\x91\x9f\x37\x8d\x2f\x3f\x3f\x44" "\xf2\xf3\xc3\x7d\xfe\x4b\xfe\xef\x7d\xf1\x62\xf2\x7f\x00\x80\x37\xb6\x98" "\xff\xc7\x5f\x7b\x8c\x7f\xff\xef\x3f\xa7\xeb\xd9\xbf\x5b\x2f\x4f\xcf\x89" "\x2f\x4f\x97\xa7\x4f\x37\x7e\x5a\xce\xd3\x3b\x3f\xcf\x16\x7c\x0e\xe0\xf5" "\x9d\x07\x98\x3f\xb1\xbd\x79\x00\x00\x00\x5e\x0f\x5d\xe3\x99\xd2\xd4\xdf" "\xb3\xff\x68\xba\xcc\xfe\x9e\x7d\xde\xef\xe5\x5f\x98\xb3\x7d\xab\x2a\xe9" "\xe5\xf1\x25\xdb\xb7\x0e\x0f\x5f\x74\xe5\x96\x0d\x43\xdb\x87\x2f\xda\x7c" "\xc5\x86\xe1\x6d\x17\x5d\xb5\x75\xd3\xf6\xed\xc3\x9b\x6b\xdb\xcd\x36\x6f" "\xcc\xcd\x5b\xd2\xbc\xb1\x2b\x54\xd2\xfe\x68\xbe\x5d\x36\x6f\x5b\x9c\xfe" "\x3d\x84\xc5\x39\x7f\x0f\x21\xbb\x7d\x0c\x7b\xec\xf8\x8d\xa9\x7f\x0f\x21" "\x5b\xed\xfc\x82\xbf\x23\x30\x71\xfc\x5a\x6b\x6f\xde\xf1\x2b\x4d\xb3\x7d" "\xb3\xf1\x91\x77\xbc\xf3\xe2\x7f\x24\x67\xfb\xa8\x7e\xfc\x2f\xfd\xf8\xa9" "\x17\x6d\xdc\x76\xd1\xa6\xcd\x9b\xb6\x6f\x1a\x1a\xd9\xb4\x73\x78\xf2\x76" "\x63\x59\x6b\xcf\x0c\xbe\x37\x33\x76\xcb\x8c\xbe\x2f\x35\xf3\x63\xb2\x91" "\xf1\xce\x9a\xe9\xf7\x77\x36\xb6\xa3\x36\x06\xdb\x69\x47\xe6\x8f\x0b\x97" "\xc6\xfa\x3b\xc9\x3d\xfe\x63\xed\x48\x32\xed\x58\x92\xb6\x64\x49\xde\xf7" "\x1f\xe4\xb4\xfb\x67\xff\xf5\x8b\x9f\x3a\x71\xf4\x2f\xf7\x84\x30\x78\x54" "\xf9\xad\xb3\xe9\xbf\x90\xac\x19\xfd\xc1\x05\xc3\x1f\xd8\xbe\xef\x57\x5b" "\xc6\xda\x5f\x9a\xb6\xfd\x3f\x18\xeb\xac\xb1\x2d\xd3\x76\x15\x7d\x5f\x69" "\x3d\x72\xfc\x9e\xe3\xf8\xbd\xf6\x23\x57\x6c\xdb\x7e\xca\xc6\x2b\xae\xdc" "\x9c\xfd\x46\xc9\xf6\xc4\xf9\x8c\x52\x7d\x7d\x8e\xe6\x33\xd2\xa7\x7f\xb9" "\xc5\xf9\x89\xf5\x39\xe5\x33\xfd\x9c\x42\x79\xca\x8d\x43\x53\xcb\xf3\x13" "\x00\x00\x4c\x12\xdf\xff\x8f\xd7\xb3\xf1\xfd\xc3\x2f\xa4\x17\x50\xb1\xbc" "\xf5\x3c\x7d\x76\xef\x1f\xe7\xe6\xe9\x83\xad\xe5\xe9\xd9\xef\x25\x2b\xca" "\xd3\xb3\xdb\xc7\xfd\x6d\x35\x4f\xaf\xce\x32\x4f\xcf\xd6\x5f\x94\xa7\x37" "\xdb\xbe\x59\x9e\x9e\x97\x77\xe7\xc5\xff\x50\xce\xf6\x33\xd5\xfa\x38\x99" "\xdd\xe7\x3c\x72\xc7\xc9\xc5\xad\x8d\x93\xec\xf7\x19\x14\x8d\x93\xec\xf6" "\x33\x1d\x27\xc9\x2c\xc7\x49\xb6\xfe\xa2\x71\xd2\x6c\xfb\x66\xe3\x24\xef" "\xb8\xe7\xc5\xff\x60\xce\xf6\x79\x5a\x1f\x0f\xb3\xfb\x5c\x4e\xee\x78\xb8" "\xbd\xb5\xf1\xf0\xf7\x99\xf5\xa2\xf1\x90\xdd\x7e\xa6\xe3\xa1\x34\xcb\xf1" "\x90\xad\xbf\x68\x3c\x34\xdb\xbe\xd9\x78\xc8\x3b\xbe\x79\xf1\xcf\xcb\xd9" "\xbe\x55\x93\xc7\xc7\xd8\xc0\x18\x1f\x17\xc3\x17\x5d\x75\xc5\xd6\x4f\x36" "\x6c\x37\xd7\xdf\x7f\x51\xd4\xbe\x31\xd3\xb7\x6f\x6e\xbf\xff\xa3\x5d\xad" "\xf7\xef\xdc\x7e\xee\x6b\xee\xdb\x3f\xb7\x9f\x2b\x9b\xfb\xf6\xcf\xee\x73" "\x65\xb9\xed\x7f\x7a\x76\x33\x61\xad\xb7\x7f\x6e\xbf\xdf\xa5\x5d\x07\x6d" "\xbe\x36\xfd\xb0\x59\xd1\xe7\xcf\x8a\xe6\x71\xd7\xe5\x94\xcf\x74\x1e\x77" "\xde\x94\x1b\x87\x26\xf3\xb8\xf0\xfa\x89\xf9\x7f\x7c\xbb\x27\xe6\xff\xb7" "\xa4\xcb\x4e\xbf\x0d\x74\xf8\x7f\x4f\x9a\xef\x31\x6b\x1a\xbf\x43\xdf\x63" "\x56\x74\x1d\xe3\xf5\x7c\x9a\xca\x0e\x01\x5e\xcf\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\x5a\xd3\x5d\x59\x36" "\xbe\xdc\x77\xe3\xb6\x03\xe7\x1d\xf3\xaf\x3f\xfb\xec\xf0\xab\xd7\xbd\xff" "\x47\x97\x5f\xff\x77\xd7\x7c\xe7\xf7\x03\x97\xfe\xf3\x4f\xef\xed\xf9\xf6" "\x6b\x7b\x37\x1c\xbf\xf1\xd7\xff\x72\xc4\xa5\x0f\x7d\xe2\xec\x3d\x77\x7c" "\xfd\xd1\x57\x16\xde\xff\xd7\xe7\x0b\x03\xf7\x8d\xff\xac\x9c\x9c\xae\x56" "\x43\x48\x5e\x4c\x42\xa8\xfe\x78\xff\x97\x3f\xb7\xf7\xc9\xa3\xc7\xca\x92" "\x10\x42\x39\xe9\xdb\x15\xc2\x92\x64\xe9\xa3\x4b\x92\x4c\x84\xc1\x3f\x87" "\x10\x36\xd4\xdb\x39\xf9\xce\xfb\x5e\x3d\x6d\xe3\xd8\xf2\xfa\x5b\xba\x27" "\x95\x2f\xce\x04\xc9\xee\x57\xe8\x2d\xc7\xf6\x34\xb6\x33\x84\xab\x0b\xf7" "\x88\xc3\x50\x35\x1d\x67\x3b\x0f\x5c\x75\x4a\xf8\xcd\x7b\xd6\xdd\xf0\x8b" "\xe5\xdf\xff\x5e\xd7\xee\x17\x76\x4d\x6c\x92\x54\x1b\xc6\x53\x08\x8b\x2e" "\x6e\x7c\x7c\x57\x08\x61\x7e\xfa\x7f\x4c\x1c\x6d\xcb\xe2\x83\xd3\xe5\xda" "\x10\x42\x4f\xc3\xe3\xce\x2a\x68\xd7\x09\x2d\xb6\x7f\x55\xce\xfa\xb1\xe9" "\x72\x5e\xba\xec\x2d\x88\x13\xef\x5f\x91\x59\x2f\x65\xb6\xcb\xae\x47\x5d" "\x71\x99\x76\x44\x4f\x41\x7d\xb3\x95\xd7\x8e\x76\xb7\x2b\xb2\x20\xb3\x9e" "\x3d\x19\xcd\x56\x5e\x3b\x63\xf9\x92\x74\xf9\x40\xba\x3c\x79\x86\xf1\xcb" "\xf1\x7f\x12\x4a\x49\xa8\xd4\x9b\x3f\x92\x4c\x8c\x91\xd0\x70\xdc\x92\x90" "\x8c\x1f\xd3\x6a\x7d\xbd\x54\x3f\xc6\x21\xdd\xff\xcc\x7a\x92\x59\x2f\x65" "\xd6\xcb\x5d\x99\xfd\x1a\xaf\x37\x1d\x68\xe5\x24\x99\x5c\x1e\xb7\xcb\x94" "\xc7\xd3\x71\x25\x2d\x3f\xbe\xf1\x5c\xdd\xc4\xf9\x39\xe5\x6f\x49\x97\xd5" "\xf4\x89\xfa\x5a\x5c\x0f\xd9\x1b\x35\xbd\x53\x6e\xd4\xf7\x6b\x5c\x6c\xd7" "\xfe\x69\xda\x72\x30\x94\x1a\xce\x41\xcd\xca\xeb\x07\x3e\x3d\x18\xbd\x69" "\x59\x6f\xb2\x74\xca\x63\x46\x9b\x88\xf7\xed\x5d\x77\xeb\xca\xf2\xfa\xc7" "\xf6\xf5\xe5\xb4\x23\xb9\x37\x49\xe3\x27\x6d\xc5\xdf\xf9\xf3\x25\x0b\x3e" "\xf6\xdd\x9b\xaf\x5c\x96\x17\xff\xe2\x52\x1a\xbf\xd4\x56\xfc\xdf\x9e\xf3" "\xd4\x4b\x17\xde\xfc\xad\xaf\xe5\xc6\xbf\x3d\xc6\x2f\xb7\x15\xff\xd4\x87" "\x7b\x5e\x3c\xe7\xf1\x1b\x57\xe4\xf6\xcf\xfe\xd8\x3f\x95\xb6\xe2\x0f\x3d" "\xff\xc4\x6d\xcb\x8f\xbc\x64\x77\x6e\xfb\xef\x8c\xf1\xab\x6d\xc5\x5f\xb3" "\xe7\xa9\xee\x85\x07\x1e\x7e\x24\xb7\xfd\x83\xb1\x7f\xe6\xb7\x15\xff\xb9" "\x77\xbd\xf7\x77\xf7\x3c\xf3\xe0\x0b\xb9\xf1\x43\x8c\xdf\xd3\x56\xfc\xf5" "\x7b\xb6\x7c\xbe\xbb\xff\xc0\x49\xb9\xf1\x1f\x89\xfd\xd3\xdb\xde\xf8\x79" "\x79\xf7\x99\xcf\xf6\xf7\xff\x61\x20\x2f\xfe\xd3\x31\xfe\xc2\xb6\xe2\xdf" "\xbd\xeb\x8e\x77\xde\xb5\xf8\x96\xb3\x73\x8f\xef\xda\xd8\x3f\x7d\x6d\xc5" "\x3f\xf7\xc4\x87\x6e\x58\x70\xe0\xc1\xe3\xf2\xce\x9d\xc9\x9d\x9d\x7a\xe5" "\x04\x78\x73\x3a\x22\xbd\xc6\xba\x29\x5d\x6f\x37\xcf\x9c\xad\x86\x7c\xe1" "\xab\x03\x95\xda\x35\xdf\x82\xf4\xff\xc2\x4e\x56\x94\x31\x56\xcf\xa2\x39" "\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc0\x1b\xd3\x2f\xaf\x3d\xfd\xa3\x17\xbc\xfb\x83" "\xeb\x2a\x49\x08\x49\xce\x36\xa3\x4d\xc4\xfb\xca\xf3\xd6\xac\x19\x68\xa3" "\xde\xa1\xe7\x9f\xb8\x6d\xf9\x91\x97\xec\x6e\x2c\x5b\xd6\x46\x1c\x00\x00" "\x00\xa0\x58\xcc\xc3\x4b\xf5\x92\x6a\x58\x16\xae\x4a\xe6\x87\x63\x9b\x6e" "\x1f\xe7\x08\x8e\x8d\x6b\xc9\xe4\xf2\xec\x1c\x42\x8c\x93\x9d\x23\x68\x37" "\x4e\xa9\x43\x71\xca\x1d\x8a\x53\xe9\x50\x9c\xae\x0e\xc5\x99\xd7\xa1\x38" "\xdd\x1d\x8a\x53\x2d\x88\x53\x0d\xad\xc5\x99\x3f\x4d\x9c\xca\xd8\xa8\x68" "\xb1\x3d\x3d\xd3\xb6\xa7\xf5\x38\xbd\x1d\x8a\xb3\xa0\x43\x71\x16\x76\x28" "\xce\xa2\x0e\xc5\x59\xdc\xa1\x38\x7d\xd3\xc6\x69\x7d\x1c\x2e\xe9\x50\x9c" "\xa5\x1d\x8a\x73\x44\x87\xe2\x1c\xd9\xa1\x38\x47\xb5\x15\xa7\x3c\x25\xce" "\xdf\x74\xa8\x3d\x47\x77\x28\x4e\x76\x4e\x79\xa6\xe3\x70\x61\xba\xe5\x31" "\x79\x71\xc6\x6f\x94\x0b\xe3\x54\x92\x72\xfd\x8e\x66\xf3\xe9\x47\xa7\xf5" "\x1c\x37\xcb\x7a\x7a\x0b\xea\x59\x58\xf4\x7a\xdc\x62\x3d\xf3\x5b\xac\xe7" "\x84\xcc\xe3\x4a\x33\xac\xa7\xda\x62\x3d\x7f\x3b\xcb\x7a\x92\x16\xeb\xf9" "\xfb\x59\xd6\x53\x2a\xa8\x27\x8e\xdb\xab\xb3\xed\x8b\xf5\xc4\xb5\x16\xc7" "\xff\x8e\x0e\xc5\xd9\xd9\xa1\x38\xd7\x74\x28\xce\xb5\x1d\x8a\xf3\xe9\x0e" "\xc5\xf9\x4c\x87\xe2\x5c\x37\xcb\x38\x00\xad\x8a\xf9\xff\x44\xbe\xd7\x17" "\xba\x2b\xff\x18\x7a\xd2\x33\x4e\x76\x16\x20\xe6\xbb\xcb\xc7\x7f\x4e\x7d" "\xbd\xcb\x3b\x21\xc5\x78\x6f\xcd\x94\xcf\x6b\x16\xef\xa6\xd2\x44\x98\x6c" "\xa2\x9e\x89\xb7\x7c\xa6\xed\xcb\x4e\x20\x64\xe2\xad\xc8\x94\x77\x4d\x8a" "\x57\xa9\xe7\x23\xd3\xc4\xab\x36\xc6\x5b\x99\xb9\xb3\xe9\xfe\x36\xc6\xcb" "\x4e\x28\x64\xda\x77\x72\xa6\xbc\xbb\x28\x5e\x76\x62\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\xe6\xd0\x2f\xaf\x3d\xfd\xa3\x17\xbc\xfb\x83\xeb" "\x42\x12\xc6\xfe\x35\x35\xda\x44\xbc\xaf\x3c\x6f\xcd\x9a\x81\x36\xea\xdd" "\xbb\xee\xd6\x95\xe5\xf5\x8f\xed\x6b\x2c\xeb\xae\xb4\x11\x08\x00\x00\x00" "\x28\x14\xf3\xf0\xae\x7a\x49\x35\x74\x57\x56\x87\xee\x64\xde\xa4\xed\xaa" "\xe9\x3c\x40\x35\x5d\x2f\xf7\xd5\x96\xfd\x8b\xc2\xda\xb1\x65\x32\x50\x1a" "\x5f\xef\x49\x96\x4c\xfb\xb8\xca\xf8\xe3\xae\x7f\x4f\x6d\x6d\xc7\xce\xb7" "\x6d\xba\x7c\xe8\xb2\xe1\xcb\x86\x37\xbf\x63\xf5\xe9\xab\xcf\x1c\x3c\xe3" "\xcc\x33\x56\x6d\xdc\x34\x32\x3c\x58\xfb\x19\x42\x77\x41\xbc\x10\xc2\xf8" "\xf4\xc3\xb6\x1d\x3b\x3f\x39\x34\x32\x32\xbc\x75\x5b\xad\x30\xdb\xfe\x65" "\xe9\xe3\x96\xa5\xeb\x49\xfa\xb8\xfe\xb7\x87\xc1\xf1\x16\xa5\xed\x5f\x5a" "\x50\x5f\x69\x4a\x7d\x73\x77\xa3\xf0\xe0\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\xf0\x6f" "\xec\xda\x6d\xa8\x9b\x67\x19\x07\xf0\xfb\x49\x72\x92\xec\x6c\xdd\x22\x7b" "\xcb\xca\x7a\x16\xfa\x32\xaa\x0e\x6d\xeb\x99\x76\x3a\x76\x1e\x10\x9c\x6c" "\x6d\xe9\x61\x20\xc9\xf4\x38\x8a\x6b\x71\x78\xba\x96\xb5\x1d\x75\xc6\xad" "\xe0\x36\x5b\x14\x61\xa3\x50\x2a\xfd\x60\xa5\x0e\x37\x87\x08\x7b\x71\x43" "\xdc\x0b\x85\xca\xac\x16\x3c\xb5\xc8\x36\x74\x1f\xf4\x83\xb2\xe9\xa4\x1b" "\xfd\x20\x9d\x91\x9e\xe4\xc9\x49\x72\x92\xe6\x18\xc7\xfa\xe2\xef\xf7\x21" "\x4f\x72\xdf\xd7\x7d\x5f\xcf\x9d\x0f\x07\xfe\xcf\x09\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x1f\xb0\xa9\xea\xe8\x44\x79\x6c\xbc\x32\x1c\x85\x10\xf5\xa8" "\xa9\x75\x91\xcc\xa5\xb3\x71\x5c\x1a\xa0\xef\x97\x9e\xdf\xfc\xbd\xdc\xc8" "\x89\xa5\xad\x63\xb9\xcc\x00\x1b\x01\x00\x00\x00\x7d\x25\x39\x7c\xa8\x39" "\x92\x0f\xb9\x4c\x3a\xa4\xc3\x55\xd3\x9f\x16\xd6\x07\xff\xdd\x99\xfb\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\xff\x3f\x53\xd5" "\xd1\x89\xf2\xd8\x78\xe5\xc2\x28\x84\xa8\x47\x4d\xad\x8b\x64\x2e\x9d\x8d" "\xe3\xd2\x00\x7d\xdf\x78\xe7\xc9\x4f\xbe\x3a\x32\xf2\xd7\xd6\xb1\xe2\x00" "\xfb\x00\x00\x00\x00\xfd\x25\x39\x3c\xd5\x1c\xc9\x87\x62\x58\x14\x86\xa2" "\xab\xda\xea\x92\x67\x03\xf3\x3b\xd6\x77\xd6\x25\xfb\x2c\x98\x63\x5d\xe7" "\xb3\x83\x5e\x75\x8b\xe6\x58\x77\xed\x1c\xeb\x3e\xdc\xa7\x6e\x4d\xe3\xba" "\x3d\x00\x00\x00\xc0\xb9\x2f\xc9\xff\x99\xe6\x48\x21\xe4\x32\xf3\x7a\xe6" "\xff\x7e\xb9\x3e\xa9\xbb\xa6\xa3\x2e\xdd\xb8\x0e\xf2\x5b\x01\x00\x00\x00" "\xe0\x7f\x93\xe4\xff\x5c\x73\xa4\x18\x72\x99\x62\x33\xaf\xcf\x35\xef\x2f" "\xec\xa8\x4b\xd6\xf7\xfb\xbf\x7d\xb2\x7e\x49\x8f\xf5\xfd\xfe\x9f\xbf\xba" "\x71\xf5\x7f\x7a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38\x77\x4c\x55\x47\x27\xca" "\x63\xe3\x95\x74\x14\x42\xd4\xa3\xa6\xd6\x45\x32\x97\xce\xc6\x71\x69\x80" "\xbe\x2b\x5e\x18\xfe\xfb\xad\x07\x1f\x5a\xd8\x3a\x96\xcb\x0c\xb0\x11\x00" "\x00\x00\xd0\x57\x92\xc3\x67\xa2\x77\x3e\xe4\x32\xc3\x61\x28\x5c\x38\x9d" "\xfb\x47\x6e\xde\xf7\xf4\x17\x9e\x7e\x76\x34\x84\x50\x8f\xf9\xd9\x6c\xd8" "\xbe\x6e\xeb\xd6\x7b\x56\xd4\x5f\x93\xba\xe5\x87\x0f\x0e\x7d\xf7\xd0\x5b" "\xdf\x9c\x55\xb7\xbc\xfe\x7a\xc6\x0e\x08\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xbc\x6f\xa6\xaa\xa3\x13\xe5\xb1\xf1\xca\x05\x51" "\x08\x51\x8f\x9a\x5a\x17\xc9\x5c\x3a\x1b\xc7\xa5\x01\xfa\xbe\xfe\x99\xcf" "\xfd\xf9\xf1\x63\xcf\xbd\xd9\x3a\x56\x1c\x60\x1f\x00\x00\x00\xa0\xbf\x24" "\x87\xcf\x64\xff\x7c\x28\x86\x6c\xc8\x86\x2b\xa6\x3f\xb5\x66\xfd\x53\x52" "\x1d\xeb\x7b\x3d\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xce\x1f\x5b\xbe\x7e\xdf\xd7\xd6\x4d\x4e\xae\xbf\xe7\x1c\x7c" "\xf3\xf9\x8b\xeb\x67\x38\x5b\xee\xc7\x1b\x6f\xce\x9f\x37\x67\xfa\x2f\x13" "\x00\x00\xf0\x7e\xbb\x26\x44\xa1\xf6\x5f\xba\x72\xed\x99\xbe\x6b\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x6c\x30\x55\x1d\x9d" "\x28\x8f\x8d\x57\xf2\x51\x08\x51\x8f\x9a\x5a\x17\xc9\x5c\x3a\x1b\xc7\xa5" "\x01\xfa\xc6\xcf\x1f\xc9\xcd\x3b\xf1\xc2\x4b\xad\x63\xc5\x01\xf6\x01\x00" "\x00\x00\xfa\x4b\x72\xf8\x4c\xf6\xcf\x87\x62\x18\x0a\x43\xe1\xf2\xe9\x4f" "\xdd\x9e\x09\x4c\xe7\xff\xc2\x07\x78\x93\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\x59\x65\xaa\x3a\x3a\x51\x1e\x1b\xaf\xcc" "\x8b\x42\x88\x7a\xd4\xd4\xba\x48\xe6\xd2\xd9\x38\x2e\x0d\xd0\xf7\xb1\x1d" "\x7b\x3f\x7d\xe0\x92\xef\xdc\xd2\x3a\x96\xcb\x0c\xb0\x11\x00\x00\x00\xd0" "\x57\x92\xc3\xb3\xcd\x91\x7c\xc8\x65\x3e\x12\x72\xe1\xea\xc6\xe7\xc9\xf6" "\x05\x51\xba\x71\xed\xfe\x5c\x60\x66\xdd\xe6\xb6\x65\xc3\x73\x5e\x57\x6d" "\x5b\x97\xee\xba\xee\x53\x3f\x2b\x6c\x09\xd3\x4f\x26\x66\xd6\xed\xec\x38" "\x59\xa6\x71\x9a\xfa\xba\x7c\xb2\x5f\xa1\x7e\x6d\xae\x2b\xcd\x5e\x57\x6a" "\x59\x57\x0c\xcd\xf6\xa5\xb6\x75\x61\x77\xdb\xaa\x79\x7d\xce\x17\x00\x00" "\x00\xe0\x0c\x4a\xf2\x7f\xae\x39\x52\x08\xb9\x4c\xae\x25\xe7\xfe\xb8\xad" "\xbe\x20\xe7\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\x3d\x4c\x55\x47" "\x27\xca\x63\xe3\x95\x28\x0a\x21\xea\x51\x53\xeb\x22\x99\x4b\x67\xe3\xb8" "\x34\x40\xdf\xfb\x7e\xf3\xa1\x8b\xbe\xfc\x93\x5d\xdb\x5a\xc7\x8a\x03\xec" "\x03\x00\x00\x00\xf4\x97\xe4\xf0\x99\xec\x9f\x0f\xc5\xb0\x20\x5c\x1c\x16" "\x4c\xe7\xfe\x50\x68\xaf\x4f\xea\xfe\x51\x3e\x79\xe0\xd1\x7f\xfe\x65\x69" "\x08\xcb\xae\x38\x3a\x92\xe9\xdc\xf6\x07\xc9\x9b\x5f\xbd\x7e\xd3\x8b\x9d" "\x2f\x21\xa4\xda\xab\x53\x21\x5c\xd2\xe8\x17\xf5\xe8\xf7\xeb\xdf\x3d\x7a" "\xef\xe2\xda\xc9\xc7\x43\x58\x76\x79\xfa\xea\x59\xfd\xc2\xe9\xfb\xb5\x6f" "\x19\xd7\x9e\x29\xaf\x5f\xbd\xf5\xd0\xd1\xcd\x7d\xbe\x1c\x00\x00\x00\x38" "\x4f\x24\xf9\x7f\xa8\x39\x52\x08\xb9\xcc\xdd\x3d\xf3\x7f\x92\xbc\xfb\xe4" "\xff\xa6\xe9\x00\x7e\xc9\xbd\x3b\x7e\x7e\x59\xe3\xb5\x91\xc8\x3b\x56\xa4" "\x0a\x8d\x7e\xa9\x1e\xfd\x3e\xbb\xf8\xc9\x3f\x2d\x59\xf9\xb7\xb7\x4e\xe5" "\xff\xd3\xf5\xfb\xf8\xde\x8d\x07\x2e\x6b\x6b\x58\x1f\xe9\x10\xc5\xb5\xb1" "\x8d\xdb\xd6\x1c\xbd\x7e\x7f\x2a\x39\x75\xbd\x7f\xba\xa3\x7f\xf2\xbd\x7c" "\xf1\x1b\x6f\xfe\x6b\xc3\xf6\x47\x4e\xd6\xfb\xe7\x43\xbe\x31\x3e\x3f\xd3" "\xad\xff\xec\xd7\x0e\x17\xc4\xb5\xc9\xd4\x9e\xca\xaa\xf7\xf6\x54\xdb\xfb" "\x67\x7a\x9c\xff\xa1\xdf\xbe\x74\xec\x97\xf3\x77\xbd\x7b\xaa\xff\x3b\xd7" "\x0c\x37\xfb\x5f\x7b\x9a\xf3\x9f\xbe\xff\xf0\x6d\x0f\xef\xbe\x61\xef\xc1" "\x35\xed\xfd\x43\x08\xa5\x6e\xfd\xdf\x7e\xf7\x96\x70\xe5\x1f\xee\x7a\xb0" "\xf3\xfc\xc3\x1d\x1b\xb7\x7e\xf3\xad\xaf\x1d\xa2\xb8\x76\x78\xe1\xf1\xfd" "\x2b\xf7\x15\x6f\x6c\xef\x1f\x75\xf4\x4f\xbe\xff\x9f\x1e\x7b\x6c\xf7\x8f" "\x1e\xf9\xf6\xb3\x49\xff\xe4\xb7\x22\x4b\x17\xcd\xb5\x7f\xaa\xa3\xff\x2b" "\x3b\x2f\xdd\xf1\xf2\x03\x6b\xe7\xb7\xf7\x4f\xf5\x38\xff\x8b\xb7\xbf\x3a" "\xb2\xa9\xf4\xad\xdf\x77\x9e\xff\xce\xb6\x5d\x33\x3d\xef\x62\xf6\xf9\x9f" "\xb8\xee\xa9\x3b\x5e\x5b\x17\xdf\xdf\x39\x05\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x70\x7e\x99\xaa\x8e\x4e\x94\xc7\xc6\x2b\xa9\x28\x84\xa8" "\x47\x4d\xad\x8b\x64\x2e\x9d\x8d\xe3\xd2\x00\x7d\xdf\xb8\xf5\xc8\xdb\xb7" "\xef\xfa\xe1\xf7\x5b\xc7\x8a\x03\xec\x03\x00\x00\x00\xf4\x97\xe4\xf0\x99" "\xec\x9f\x0f\xc5\x90\x0d\xd9\x30\x3c\x9d\xfb\x9f\x29\xaf\x5f\xbd\xf5\xd0" "\xd1\xcd\xa1\x50\x9f\x8d\x1a\xd7\xcc\xe4\xa6\x2d\x5b\x3f\xba\x61\xd3\xb6" "\xbb\xef\x3c\x43\x77\x0e\x00\x00\x00\xcc\x55\x92\xff\x33\xcd\x91\x42\xc8" "\x65\x16\x87\xa1\x46\xfe\x1f\xdb\xb8\x6d\xcd\xd1\xeb\xf7\xa7\x92\xfc\x9f" "\x4a\xf2\xff\x86\xbb\x26\xd7\x2f\x0b\xcd\xba\x57\x76\x5e\xba\xe3\xe5\x07" "\xd6\xce\x6f\x3e\x27\x08\x61\xfa\x67\x01\xf9\x53\x75\x9f\x98\xa9\xbb\xf9" "\xa6\x23\x85\xe3\x7f\xfc\xea\x92\xae\x75\x2b\x66\xea\x0e\x2f\x3c\xbe\x7f" "\xe5\xbe\xe2\x8d\x49\x5d\x68\xad\x5b\x1e\x9a\xcf\x27\x9e\xb8\xee\xa9\x3b" "\x5e\x5b\x17\xdf\xdf\xbc\xbf\xd6\xba\x8f\x7d\x65\xd3\x64\xe3\xf1\x44\xb2" "\xef\xf0\x6d\x0f\xef\xbe\x61\xef\xc1\x35\xcd\x73\x34\xae\xc3\x8d\x7d\x93" "\xba\xc9\xd4\x9e\xca\xaa\xf7\xf6\x54\x93\xba\x74\xe3\x9a\x6f\x9c\x1b\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x98\x6d\xaa\x3a\x3a\x51\x1e\x1b\xaf" "\x84\x74\x08\x51\x8f\x9a\x5a\x17\xc9\x5c\x3a\x1b\xc7\xa5\x01\xfa\xae\x5a" "\xfc\x8b\x07\x2f\x3a\xf1\xdc\x82\xd6\xb1\x5c\x66\x80\x8d\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xf8\x0f\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda" "\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xaf\x9f\xd0\x38\xca\x3e" "\x0e\xe0\xcf\xb3\x9b\xbc\xd9\x66\x93\x36\x69\x5f\x30\x2a\xa6\x69\x55\x94" "\x7a\xb0\x28\x88\xe8\x45\x45\x45\x5a\x91\x82\xa7\x4a\x91\x6a\x6b\x0f\xa2" "\x20\x88\x28\xf5\x60\x2a\xad\x58\xaa\xe2\x45\xb0\x7a\x29\xa2\x82\x1a\xa5" "\xa0\x60\x63\xb1\xb4\x4a\x2a\xfe\x2b\x5e\x3c\xa8\xa0\x50\x3d\x08\xa5\x18" "\xd0\x2e\xc5\x83\x4a\x76\x9f\xd9\x6e\xa6\x3b\xae\x4e\xaa\xa0\x7e\x3e\x30" "\x3c\x79\x9e\x99\xf9\xce\x6f\xe6\x79\x76\x36\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\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x8f" "\x32\xd0\x37\xd6\x6c\x0f\xef\xb8\xbf\x71\xcb\x39\x37\x7c\xf4\xe8\x5d\x27" "\x1e\xb9\xe9\x9d\x7b\xb7\x5d\xf4\xf0\xab\xdf\x4d\x6c\xba\xee\xc3\xbd\x83" "\x2f\x9d\x9c\xd9\xbc\x62\xcb\x97\xd7\x2f\xdb\xb4\xff\xee\x35\xd3\xbb\x9f" "\x3f\xf4\xd3\xf0\x5b\xbf\x1c\xed\x19\xfc\x50\xab\x59\x95\xba\xb5\x10\xe2" "\xf1\x18\x42\xed\xdd\xd9\x67\x1e\x9b\xf9\xf8\xac\xb9\xb1\x18\x42\xa8\xc6" "\x91\xc9\x10\x46\xe3\xd2\x43\xa3\x31\x97\xb0\xfa\xe7\x10\xc2\xe6\x76\x9d" "\xf3\x77\xbe\x79\xe2\xf2\x2d\x73\xed\xb6\x5d\x03\xf3\xc6\x97\xe4\x42\xf2" "\xf7\x15\xea\xd5\xac\x9e\x96\x91\xf9\xf5\xf2\xef\x52\x4b\xeb\x6c\x6b\xe3" "\xc1\x4b\xc2\xd7\xd7\xae\xdf\xfe\xe9\xf2\x37\x5e\xef\x9f\x3a\x36\x79\xea" "\x90\x58\xeb\x58\x4f\x21\x2c\xde\xd8\x79\x7e\x7f\x08\x61\x51\xda\xe6\x64" "\xab\x6d\x2c\x3b\x39\xb5\xeb\x42\x08\x83\x1d\xe7\x5d\xd9\xa3\xae\xf3\xff" "\x60\xfd\x97\x16\xf4\xcf\x4d\xed\xff\x52\x5b\xef\x91\x93\xed\x5f\x99\xeb" "\x57\x72\xc7\xe5\xfb\x99\xfe\x5c\x3b\xd8\xe3\x7a\x0b\x55\x54\x47\xd9\xe3" "\x7a\x19\xca\xf5\xf3\x2f\xa3\x85\x2a\xaa\x33\x1b\x1f\x4d\xed\xdb\xa9\x5d" "\xf5\x27\xf3\xab\xd9\x16\x43\x25\x86\xbe\x76\xf9\xf7\xc4\x53\x6b\x24\x74" "\xcc\x5b\x0c\xb1\x39\x97\xb5\x76\xbf\xd2\x9e\xdb\x90\xee\x3f\xd7\x8f\xb9" "\x7e\x25\xd7\xaf\xf6\xe7\xee\xab\x79\xdd\xb4\xd0\xaa\x31\xce\x1f\xcf\x8e" "\xcb\x8d\x67\xaf\xe3\xbe\x34\xbe\xa2\xf3\x5d\xdd\xc5\xad\x05\xe3\x67\xa7" "\xb6\x96\x3e\xa8\x27\xb3\x7e\xc8\xff\xd1\x52\x3f\xed\x8f\xf6\x7d\x35\x65" "\x75\xcd\xfe\x4e\x2d\x7f\x87\x4a\xc7\x3b\xa8\xdb\x78\x7b\xe2\xd3\x64\xd4" "\xd3\x58\x3d\x2e\x3d\xed\x9c\x5f\xbb\xc8\xf6\xcd\xac\x7f\xe2\xc2\xea\x86" "\xf7\x0e\x8f\x14\xd4\x11\xf7\xc6\x94\x1f\x4b\xe5\x6f\xfd\x64\x74\xe8\xf6" "\xd7\x76\x3e\x30\x56\x94\xbf\xb1\x92\xf2\x2b\xa5\xf2\xbf\x59\x7b\xe4\x87" "\xdb\x76\xbe\xf0\x5c\x61\xfe\xd3\x59\x7e\xb5\x54\xfe\x65\x07\x06\x8f\xaf" "\x7d\x7f\xc7\xca\xc2\xe7\x33\x9b\x3d\x9f\xbe\x52\xf9\x77\x1c\xfd\xe0\xc9" "\xe5\xff\xbf\x73\xaa\xdb\x5c\x37\xf3\xf7\x64\xf9\xb5\x52\xf9\xd7\x4c\x1f" "\x19\x18\x6e\x1c\x38\x58\x58\xff\xea\xec\xf9\x2c\x2a\x95\xff\xd5\xd5\x37" "\x7e\xfb\xca\xe7\xfb\x8e\x15\xe6\x87\x2c\x7f\xb0\x54\xfe\x86\xe9\xfb\x9e" "\x1a\x18\x6f\x5c\x5c\x98\x7f\xb0\xf5\x51\xa8\x37\x57\x68\x89\xf5\xf3\xe3" "\xd4\x15\x5f\x8c\x8f\x7f\x3f\x51\x94\xff\x59\xf6\xfc\x87\xbb\xe4\xc7\x9e" "\xf9\x2f\x4f\xee\xbe\xea\xc5\x25\xbb\xd6\x14\xae\xcf\x75\xd9\xf3\x19\x29" "\x55\xff\xcd\x17\xec\xdf\x3e\xd4\xd8\x77\x5e\xd1\xbb\x33\xee\x39\x53\xdf" "\x9c\x00\xff\x4d\xcb\xd2\xff\x58\x8f\xa7\x7e\xd9\xdf\x99\x0b\xd5\xf1\x7b" "\xe1\xd9\x89\xbe\xd6\x37\xd0\x50\xda\x86\xcf\xe4\x85\x72\xe6\xae\xb3\xf8" "\x2f\xcc\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe0\x37\x76\xe0\x80\x04\x00\x00\x00\x40\xd0\xff\xd7\xed\x08\x14\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xe0\xa9\x00\x00\x00\xff\xff\x1d\x80\x22\x84", 22855); syz_mount_image(/*fs=*/0x200000c0, /*dir=*/0x20000000, /*flags=MS_I_VERSION*/ 0x800000, /*opts=*/0x20005bc0, /*chdir=*/1, /*size=*/0x5947, /*img=*/0x20005c80); } 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; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }