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