// https://syzkaller.appspot.com/bug?id=5d745d691f199cac6bfcfaf0b47ce55937c500a9 // 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 __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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)) { } NONFAILING(memcpy((void*)0x20000700, "jfs\000", 4)); NONFAILING( memcpy((void*)0x20001f80, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 253)); NONFAILING(memcpy( (void*)0x20013900, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\xae\xd7\x2f\xa5\xad" "\xd5\x43\x55\x2a\x84\xdc\x94\xb7\x52\x9a\xd7\x12\x02\x05\x9a\x1e\xe0\xc0" "\x85\x03\xca\x15\x25\x72\xdd\x2a\xc2\x05\x94\x04\x94\x56\x11\x71\xe5\x0b" "\x07\xfe\x08\x10\x12\x47\x84\x38\x72\xe2\x0f\xe8\x81\x2b\x37\xfe\x00\x22" "\x25\x48\xa0\x9e\x18\x34\xde\xe7\x89\x67\x27\xbb\x59\x07\xc7\x3b\x6b\xcf" "\xe7\x23\x39\xb3\xbf\x79\x66\xd6\xcf\xe4\xbb\xb3\x2f\x9e\x99\x7d\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x1f\x7c\xff\x47\xe7" "\x8a\x88\xb8\xfa\xcb\x34\x63\x3d\xe2\x33\xd1\x8f\xe8\x45\xac\x56\xf5\x46" "\x44\xac\x6e\xac\xe7\xe5\x07\x11\xf1\x52\xec\x35\xc7\x8b\x11\xb1\xb4\x1c" "\x51\xad\xbf\xf7\xcf\xf3\x11\x6f\x46\xc4\x27\xcf\x45\xdc\x7f\x70\x67\xb3" "\x9a\x7d\xfe\x80\xfd\xf8\xde\x9f\xfe\xfe\xfb\x1f\x3f\xf3\xc3\xbf\xfd\x71" "\xe9\xcc\x7f\xfe\x7c\xab\xff\xd6\xb4\xe5\x6e\xdf\xfe\xcd\xbf\xff\x72\xf7" "\x70\xdb\x0c\x00\x00\x00\x5d\x53\x96\x65\x59\xa4\x8f\xf9\x2f\xa7\xcf\xf7" "\xbd\xb6\x3b\x05\x00\xcc\x45\x7e\xfd\x2f\x93\x3c\xff\x38\xd4\xc3\xda\x76" "\x2c\x42\x7f\xd4\xea\xbd\x62\xb8\x3f\x63\x21\xfa\xa3\x9e\x63\xbd\xbd\x52" "\x9f\xd3\x7e\x7f\x8e\x57\x3d\x58\xb0\xfe\x9c\xd4\xba\xae\x9c\xec\x6e\xbd" "\x88\x88\x9d\xfa\x3a\xd5\x7b\x06\x87\xe3\x01\xe0\x98\xd9\x89\x4f\xdb\xee" "\x02\x2d\x92\x7f\xa7\x55\x9f\xb3\x9e\x69\xbb\x13\xc0\x42\x2b\xda\xee\x00" "\x47\xe2\xfe\x83\x3b\x9b\x45\xca\xb7\xa8\xbf\x1e\x6c\x8c\xda\xf3\xb9\x20" "\x63\xf9\xef\x14\x0f\xaf\xef\x98\x36\x9d\xa5\x79\x8e\xc9\xbc\x1e\x5f\xbb" "\xd1\x8f\x17\xa6\xf4\x67\x75\x4e\x7d\x58\x24\x39\xff\x5e\x33\xff\xab\xa3" "\xf6\x7c\x6c\xed\xa8\xf3\x9f\x97\x69\xf9\x0f\x47\x97\x3e\x75\x4e\xce\xbf" "\xdf\xcc\xbf\xe1\xe4\xe4\xdf\x9b\x98\x7f\x57\xe5\xfc\x07\x4f\x94\x7f\x5f" "\xfe\x00\x00\x00\x00\x00\xb0\xc0\xf2\xdf\xff\xd7\x5b\x3e\xfe\xbb\x7c\xf8" "\x4d\x39\x90\xc7\x1d\xff\xdd\x38\xd8\x5d\x5c\x7e\xda\x7d\x02\x00\x00\x00" "\x00\x00\x00\x80\xc3\x3a\xec\xf8\x7f\x0f\x19\xff\x0f\x00\x00\x00\x16\x56" "\xf5\x59\xbd\xf2\xdb\xe7\xf6\xe7\x4d\xfb\x2e\xb6\x6a\xfe\x95\x22\xe2\xd9" "\xc6\xf2\x40\xc7\xa4\x8b\x65\xd6\xda\xee\x07\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x74\xc9\x60\x74\x0e\xef\x95\x22\x62\x29\x22\x9e\x5d\x5b\x2b" "\xcb\xb2\xfa\xa9\x6b\xd6\x4f\xea\xb0\xeb\x1f\x77\x5d\xdf\x7e\xe8\xb2\xb6" "\x9f\xe4\x01\x00\x60\xe4\x93\xe7\x1a\xd7\xf2\x17\x11\x2b\x11\x71\x25\x7d" "\xd7\xdf\xd2\xda\xda\x5a\x59\xae\xac\xae\x95\x6b\xe5\xea\x72\x7e\x3f\x3b" "\x5c\x5e\x29\x57\x6b\x9f\x6b\xf3\xb4\x9a\xb7\x3c\x3c\xc0\x1b\xe2\xc1\xb0" "\xac\xee\x6c\xa5\xb6\x5e\xdd\xac\xcf\xcb\xb3\xda\x9b\xf7\x57\xfd\xae\x61" "\xd9\x3f\x40\xc7\xe6\xa3\xc5\xc0\x01\x20\x22\x46\xaf\x46\xf7\xbd\x22\x9d" "\x30\x65\xf9\x7c\xb4\xfd\x2e\x87\xe3\xc1\xfe\x7f\xf2\xd8\xff\x39\x88\xb6" "\x1f\xa7\x00\x00\x00\xc0\xd1\x2b\xcb\xb2\x2c\xd2\xd7\x79\xbf\x9c\x8e\xf9" "\xf7\xda\xee\x14\x00\x30\x17\xf9\xf5\xbf\x79\x5c\x40\xad\x56\xab\xd5\x6a" "\xf5\xc9\xab\xeb\xca\xc9\xee\xd6\x8b\x88\xd8\xa9\xaf\x53\xbd\x67\x30\x1c" "\x3f\x00\x1c\x33\x3b\xf1\x69\xdb\x5d\xa0\x45\xf2\xef\xb4\x41\x44\xbc\xd4" "\x76\x27\x80\x85\x56\xb4\xdd\x01\x8e\xc4\xfd\x07\x77\x36\x8b\x94\x6f\x51" "\x7f\x3d\x48\xe3\xbb\xe7\x73\x41\xc6\xf2\xdf\x29\xf6\xd6\xcb\xeb\x4f\x9a" "\xce\xd2\x3c\xc7\x64\x5e\x8f\xaf\xdd\xe8\xc7\x0b\x53\xfa\xf3\xe2\x9c\xfa" "\xb0\x48\x72\xfe\xbd\x66\xfe\x57\x47\xed\xc3\xb4\xdc\x58\x3e\xc5\xf4\xdc" "\x0f\x98\x7f\xd1\xf8\x33\xe2\xdc\x4c\xcb\xbf\xda\xce\xf5\x16\xfa\xd3\xb6" "\x9c\x7f\xbf\x99\x7f\xc3\x51\xef\xff\xf3\xb2\x1b\xbd\x89\xf9\x77\x55\xce" "\x7f\xf0\x44\xf9\xf7\xe5\x0f\x00\x00\x00\x00\x00\x0b\x2c\xff\xfd\x7f\xdd" "\xf1\xdf\xbc\xc9\x00\x00\x00\x00\x00\x00\x00\x70\xec\xdc\x7f\x70\x67\x33" "\x5f\xf7\x9a\x8f\xff\x7f\x6e\xc2\x72\xae\xff\x3c\x99\x72\xfe\x85\xfc\x3b" "\x29\xe7\xdf\x6b\xe4\xff\x95\xc6\x72\xfd\xda\xed\x7b\xef\xec\xe7\xff\xaf" "\x07\x77\x36\xff\x70\xeb\x9f\x9f\xcd\xd3\x83\xe6\xbf\x9c\x6f\x14\xe9\x91" "\x55\xa4\x47\x44\x91\x7e\x53\x31\x48\xd3\xc3\x6c\xdd\xa3\x76\x97\xfa\xc3" "\xd1\xb6\x8e\xee\x78\x23\x22\xca\xa5\xf7\xe2\x7a\x6c\xc7\x56\x9c\x1d\x5b" "\xb6\x97\xfe\x3f\xf6\xdb\xcf\x8d\xb5\x57\x3d\x5d\x1a\x6b\x3f\x3f\xd6\x3e" "\x78\xa4\xfd\xc2\x58\xfb\x52\xfa\xde\x81\x72\x35\xb7\x9f\x8e\xcd\xf8\x59" "\x6c\xc7\xbb\x7b\xed\x55\xdb\xf2\x8c\xed\x5f\x99\xd1\x5e\xce\x68\xcf\xf9" "\xf7\xed\xff\x9d\x94\xf3\x1f\xd4\x7e\xaa\xfc\xd7\x52\x7b\xd1\x98\x56\xee" "\x7d\xdc\x7b\x64\xbf\xaf\x4f\x27\xfd\x9e\xcb\xd7\x3f\xff\xeb\xb3\x47\xbf" "\x39\x33\xed\x46\xff\xe1\xb6\xd5\x55\xdb\x77\xaa\x85\xfe\xec\xfd\x9f\x3c" "\x33\x8c\x5f\xdc\xdc\xba\x71\xfa\xf6\xb5\x5b\xb7\x6e\x9c\x8b\x34\x19\x9b" "\x7b\x3e\xd2\xe4\x29\xcb\xf9\x2f\xa5\x9f\x87\xcf\xff\xaf\x8e\xda\xf3\xf3" "\x7e\x7d\x7f\xbd\xf7\xf1\xf0\x89\xf3\x5f\x14\xbb\x31\x98\x9a\xff\xab\xb5" "\xdb\xd5\xf6\xbe\x36\xe7\xbe\xb5\x21\xe7\x3f\x4c\x3f\x39\xff\x77\x53\xfb" "\xe4\xfd\xff\x38\xe7\x3f\x7d\xff\x7f\xbd\x85\xfe\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc0\xe3\x94\x65\xb9\x77\x89\xe8\xe5\x88\xb8\x98" "\xae\xff\x69\xeb\xda\x4c\x00\x60\xbe\xf2\xeb\x7f\x99\xe4\xf9\x6a\xb5\x5a" "\xad\x56\xab\x4f\x5e\x5d\x57\x4e\xf6\x76\xbd\x88\x88\xbf\xd6\xd7\xa9\xde" "\x33\xfc\x6a\xd2\x9d\x01\x00\x8b\xec\xbf\x11\xf1\x8f\xb6\x3b\x41\x6b\xe4" "\xdf\x61\xf9\xfb\xfe\x06\xfb\xdf\xc8\x0b\x74\xc4\xcd\x0f\x3f\xfa\xc9\xb5" "\xed\xed\xad\x1b\x37\x23\x56\xda\xee\x0c\x00\x00\x00\x00\x00\x00\x00\xf0" "\x7f\xc9\xe3\x7f\x6e\xd4\xc6\x7f\xfe\x42\x44\xac\x37\x96\x1b\x1b\xff\xf5" "\x9d\xd8\x38\xec\xf8\x9f\x83\x7c\xe3\xe1\x00\xa3\x4f\x79\xa0\xef\x29\x76" "\x7b\xc3\x7e\xaf\x36\xdc\xf8\x2b\xf1\xf8\xf1\xbf\x4f\xc5\xe3\xc7\xff\x1e" "\xcc\xf8\x7d\x4b\x33\xda\x87\x33\xda\x67\x9d\x95\x35\xeb\x9c\x8d\x89\x17" "\x7a\xd4\xe4\xfc\x5f\xa9\x8d\x77\x5e\xe5\xff\x72\x63\xf8\xf5\x2e\x8c\xff" "\xda\x1c\xf3\xbe\x0b\x72\xfe\xa7\x6a\x8f\xe7\x2a\xff\x2f\x37\x96\xab\xe7" "\x5f\xfe\xee\x38\xe7\xdf\x1b\xcb\xff\xcc\xad\x0f\x7e\x7e\xe6\xe6\x87\x1f" "\xbd\x71\xfd\x83\x6b\xef\x6f\xbd\xbf\xf5\xd3\x0b\xe7\xce\x9d\xbd\x70\xf1" "\xe2\xa5\x4b\x97\xce\xbc\x77\x7d\x7b\xeb\xec\xe8\xdf\x16\x7b\x7c\xb4\x72" "\xfe\x79\xec\xeb\x9c\x3f\xdd\x90\xf3\xcf\x99\xcb\xbf\x5b\x72\xfe\x5f\x4c" "\xb5\xfc\xbb\x25\xe7\xff\xa5\x54\xcb\xbf\x5b\x72\xfe\xf9\xfd\x9e\xfc\xbb" "\x25\xe7\x9f\x3f\xfb\xc8\xbf\x5b\x72\xfe\xaf\xa5\x5a\xfe\xdd\x92\xf3\xff" "\x6a\xaa\xe5\xdf\x2d\x39\xff\xd7\x53\x2d\xff\x6e\xc9\xf9\x7f\x2d\xd5\xf2" "\xef\x96\x9c\xff\x1b\xa9\x3e\x58\xfe\xfd\x23\xef\x17\xf3\x91\xf3\x3f\x9d" "\x6a\xfb\x7f\xb7\xe4\xfc\xcf\xa4\x5a\xfe\xdd\x92\xf3\xcf\x47\xb8\xe4\xdf" "\x2d\x39\xff\x7c\x66\x83\xfc\xbb\x25\xe7\x7f\x3e\xd5\xf2\xef\x96\x9c\xff" "\x85\x54\xcb\xbf\x5b\x72\xfe\x6f\xa6\x5a\xfe\xdd\x92\xf3\xff\x7a\xaa\xe5" "\xdf\x2d\x39\xff\x8b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x91\x6a\xf9\x77\x4b\xce" "\xff\x52\xaa\xe5\xdf\x2d\x39\xff\x6f\xa6\x5a\xfe\xdd\x92\xf3\xff\x56\xaa" "\xe5\xdf\x2d\x39\xff\xb7\x52\x2d\xff\x6e\xc9\xf9\x7f\x3b\xd5\xf2\xef\x96" "\x9c\xff\x77\x52\x3d\x21\x7f\x07\xfb\x4f\xb0\x9c\xff\x77\x53\x6d\xff\xef" "\x96\x9c\xff\xdb\xa9\x96\x7f\xb7\xec\x7f\xff\xbf\x1b\x6e\x1c\x97\x1b\x11" "\xb1\xb3\x00\xdd\x38\xd1\x37\xda\x7e\x66\x02\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x9a\xe6\x74\xb6\x36\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xff\x63\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20\x00\x00\x00\x00\x00\xe4" "\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xbb\xd7\x18\xb9" "\xca\xfb\x7e\xe0\x67\xd7\xbb\xf6\xda\x84\xe0\x04\xc2\xdf\xf0\x37\x64\x6d" "\x1c\x63\xcc\xc2\xae\x2f\xf8\x92\xd6\xc5\x21\x84\x50\xc8\xa5\xdc\xd2\x90" "\xb6\xd8\xae\x77\x6d\x36\xf1\x65\xf1\xda\x0d\x50\x24\x3b\x22\x69\x90\xe2" "\xa8\x51\x95\xb6\xbc\x69\x73\x11\x6a\x79\x53\xc5\xaa\xf2\x22\xad\x68\xc4" "\x8b\x5e\x14\xa9\x52\x68\x5f\xa4\x6f\xa2\x54\x95\xf2\x02\x55\x24\x22\x91" "\x2a\xa5\x51\xcb\x56\x73\xe6\x79\x9e\x9d\x99\x9d\xcb\x2e\x9e\x5d\xcf\x9c" "\xf3\xf9\x48\xf0\xc3\x33\x67\xe6\x9c\x39\xf3\xcc\xec\x7e\xd7\x7c\x77\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\x9e\xb1\xe9\x83\x53\x5f\x1c\xc8" "\xb2\xac\xf2\x4f\xfe\xaf\xf5\x59\xf6\x8e\xca\x7f\xaf\x1d\x5d\x9f\x5f\xf6" "\xfe\x2b\x7d\x84\x00\x00\x00\xc0\xe5\xfa\xdf\xfc\xdf\x6f\x5e\x93\x2e\x38" "\xb8\x88\x1b\xd5\x6c\xf3\x4f\x37\x7f\xff\xdb\x73\x73\x73\x73\xd9\x27\x57" "\xfd\xf1\xf0\x57\xe7\xe6\xd2\x15\xa3\x59\x36\xbc\x26\xcb\xf2\xeb\xa2\x4b" "\xff\xf1\xf8\x40\xed\x36\xc1\xf3\xd9\xc8\xc0\x60\xcd\x9f\x07\x3b\xec\x7e" "\x55\x87\xeb\x87\x3a\x5c\x3f\xdc\xe1\xfa\xd5\x1d\xae\x5f\xd3\xe1\xfa\x91" "\x0e\xd7\x2f\x38\x01\x0b\xac\xad\xfe\x3c\x26\xbf\xb3\x2d\xf9\x7f\xae\xaf" "\x9e\xd2\xec\xba\x6c\x38\xbf\x6e\x4b\x93\x5b\x3d\x3f\xb0\x66\x70\x30\xfe" "\x2c\x27\x37\x90\xdf\x66\x6e\xf8\x58\x36\x9d\x9d\xc8\xa6\xb2\x89\xba\xed" "\xab\xdb\x0e\xe4\xdb\xbf\xb2\xa9\xb2\xaf\xfb\xb3\xb8\xaf\xc1\x9a\x7d\x6d" "\xac\xac\x90\x9f\x3d\x77\x34\x1e\xc3\x40\x38\xc7\x5b\xea\xf6\x35\x7f\x9f" "\xd1\x4f\x3e\x90\x8d\xfe\xfc\x67\xcf\x1d\xfd\x8b\xb3\x6f\xdc\xd0\x6c\x76" "\x3c\x0d\x75\xf7\x57\x3d\xce\x6d\x9b\x2b\xc7\xf9\xf9\x70\x49\xf5\x58\x07" "\xb2\x35\xe9\x9c\xc4\xe3\x1c\xac\x39\xce\x8d\x4d\x9e\x93\x55\x75\xc7\x39" "\x90\xdf\xae\xf2\xdf\x8d\xc7\xf9\xe6\x22\x8f\x73\xd5\xfc\x61\xae\xa8\xc6" "\xe7\x7c\x24\x1b\xcc\xff\xfb\xb5\xfc\x3c\x0d\xd5\xfe\x58\x2f\x9d\xa7\x8d" "\xe1\xb2\x5f\xdc\x92\x65\xd9\x85\xf9\xc3\x6e\xdc\x66\xc1\xbe\xb2\xc1\x6c" "\x5d\xdd\x25\x83\xf3\xcf\xcf\x48\x75\x45\x56\xee\xa3\xb2\x94\xde\x9d\x0d" "\x2d\x69\x9d\x6e\x5a\xc4\x3a\xad\xcc\xc9\x2d\xf5\xeb\xb4\xf1\x35\x11\x9f" "\xff\x4d\xe1\x76\x43\x2d\x8e\xa1\xf6\x69\xfa\xc9\xe7\x56\x2f\x78\xde\x97" "\xba\x4e\xa3\xca\xa3\x6e\xf5\x5a\x69\x5c\x83\xdd\x7e\xad\xf4\xca\x1a\x8c" "\xeb\xe2\xb5\xfc\x41\xbf\xd0\x74\x0d\x6e\x09\x8f\xff\xb9\xad\xad\xd7\x60" "\xd3\xb5\xd3\x64\x0d\xa6\xc7\x5d\xb3\x06\x37\xa7\x35\xb8\xb6\xf9\x31\x0f" "\xae\x5e\x95\x1f\x73\x7a\x12\x06\xf2\xdb\xcc\xaf\xc1\x1d\x75\xdb\xaf\xca" "\xf7\x34\x90\xcf\xd7\xb7\xb6\x5f\x83\xe3\x67\x4f\xce\x8c\xcf\x3e\xf3\xec" "\x1d\xd3\x27\x8f\x1c\x9f\x3a\x3e\x75\x6a\xd7\x8e\x1d\x13\xbb\xf6\xec\xd9" "\xb7\x6f\xdf\xf8\xb1\xe9\x13\x53\x13\xd5\x7f\xbf\xad\x73\xdd\x0f\xd6\x65" "\x83\xe9\x35\xb0\x39\x9c\xbb\xf8\x1a\xb8\xb5\x61\xdb\xda\xa5\x3a\xf7\x8d" "\xee\xbd\x0e\x47\xda\xbc\x0e\xd7\x37\x6c\xdb\xed\xd7\xe1\x50\xe3\x83\x1b" "\x58\x99\x17\xe4\xc2\x35\x5d\x7d\x6d\x3c\x5a\x39\xe9\x23\x17\x07\xb3\x16" "\xaf\xb1\xfc\xf9\xd9\x7e\xf9\xaf\xc3\xf4\xb8\x6b\x5e\x87\x43\x35\x5f\x0b" "\x9a\x7e\x4d\x69\xf2\x3a\x1c\x5a\xc4\xeb\xb0\xb2\xcd\xcc\xf6\xc5\x7d\xcf" "\x32\x54\xf3\x4f\xb3\x63\x58\xae\xaf\x05\xeb\x6b\xd6\x60\xe3\xf7\x23\x8d" "\x6b\xb0\xdb\xdf\x8f\xf4\xca\x1a\x1c\x09\xeb\xe2\x87\xdb\x5b\x7f\x2d\xd8" "\x18\x8e\xf7\x85\xb1\xa5\x7e\x3f\xb2\x6a\xc1\x1a\x4c\x0f\x37\xbc\xf7\x54" "\x2e\x49\xdf\xef\x8f\xec\xcb\x47\xb3\x75\x79\x63\xe5\x8a\xab\x56\x67\xe7" "\x66\xa7\xce\xdc\xf9\xf4\x91\xb3\x67\xcf\xec\xc8\xc2\x58\x11\xd7\xd6\xac" "\x95\xc6\xf5\xba\xae\xe6\x31\x65\x0b\xd6\xeb\xe0\x92\xd7\xeb\xc1\xe9\x9b" "\x5f\xb8\xb1\xc9\xe5\xeb\xc3\xb9\x1a\xb9\xa3\xf2\xaf\x91\x96\xcf\x55\x65" "\x9b\xdd\x77\xb6\x7f\xae\xf2\xaf\x6e\xcd\xcf\x67\xdd\xa5\x3b\xb3\x30\xba" "\x6c\xa5\xcf\x67\xb3\xaf\xe6\x95\xf3\x99\xb2\x64\x9b\xf3\x59\xd9\xe6\xf3" "\xe3\x97\xff\xbd\x78\xca\xa5\x35\xef\xbf\xc3\x2d\xde\x7f\x63\xee\x7f\xab" "\xba\xbf\x74\x57\xcf\xaf\x1a\x1e\xaa\xbe\x7e\x57\xa5\xb3\x33\x5c\xf7\x7e" "\x5c\xff\x54\x0d\xe5\xef\x5d\x03\xf9\xbe\xdf\x1c\x5f\xdc\xfb\xf1\x70\xf8" "\x67\xa5\xdf\x8f\xaf\x6b\xf3\x7e\xbc\xa1\x61\xdb\x6e\xbf\x1f\x0f\x37\x3e" "\xb8\xf8\x7e\x3c\xd0\xe9\xa7\x1d\x97\xa7\xf1\xf9\x1c\x09\xeb\xe4\xc4\x44" "\xfb\xf7\xe3\xca\x36\x1b\x76\x2e\x75\x4d\x0e\xb5\x7d\x3f\xbe\x25\xcc\x81" "\x70\xfe\x6f\x0b\x49\x21\xe5\xa2\x9a\xb5\xd3\x6a\xdd\xa6\x7d\x0d\x0d\x0d" "\x87\xc7\x35\x14\xf7\x50\xbf\x4e\x77\xd5\x6d\x3f\x1c\xb2\x59\x65\x5f\x2f" "\xef\x7c\x7b\xeb\x74\xdb\x2d\xd5\xfb\x5a\x95\x1e\xdd\xbc\x95\x5a\xa7\xa3" "\x0d\xdb\x76\x7b\x9d\xa6\xf7\xab\x56\xeb\x74\xa0\xd3\x4f\xdf\xde\x9e\xc6" "\xe7\x73\x24\xac\x8b\xeb\x76\xb5\x5f\xa7\x95\x6d\x5e\xdd\x7d\xf9\xef\x9d" "\x29\x25\xd6\xbc\x77\xae\xee\xb4\x06\x87\x57\xad\xae\x1c\xf3\x70\x5a\x84" "\xd5\xf7\xfb\xb9\xb5\x71\x0d\xde\x99\x1d\xcd\x4e\x67\x27\xb2\xc9\xfc\xda" "\xd5\xf9\x7a\xaa\x26\xd2\xb1\xbb\x16\xb7\x06\x57\x87\x7f\x56\xfa\xbd\x72" "\x43\x9b\x35\xb8\xad\x61\xdb\x6e\xaf\xc1\xf4\x75\xac\xd5\xda\x1b\x18\x5a" "\xf8\xe0\xbb\xa0\xf1\xf9\x1c\x09\xeb\xe2\xc5\xbb\xda\xaf\xc1\xca\x36\xf7" "\xee\xed\xee\xf7\xae\xdb\xc2\x25\x69\x9b\x9a\xef\x5d\x1b\x7f\xbe\xd6\xea" "\x67\x5e\x37\x36\x9c\xa6\xe5\xfc\x99\x57\xe5\x38\xff\x7e\x6f\xfb\x9f\xcd" "\x56\xb6\x39\xb1\x6f\xa9\x39\xb3\xfd\x79\xba\x3d\x5c\x72\x55\x93\xf3\xd4" "\xf8\xfa\x6d\xf5\x9a\x9a\xcc\x56\xe6\x3c\x6d\x08\xc7\xf9\xc6\xbe\xd6\xe7" "\xa9\x72\x3c\x95\x6d\xbe\xba\x7f\x91\xeb\xe9\x60\x96\x65\xe7\x9f\xba\x27" "\xff\x79\x6f\xf8\xfb\x95\xbf\x3e\xf7\x83\x6f\xd7\xfd\xbd\x4b\xb3\xbf\xd3" "\x39\xff\xd4\x3d\x3f\xbd\xfa\xd8\x3f\x2e\xe5\xf8\x01\xe8\x7f\x6f\x55\xc7" "\xba\xea\xd7\xba\x9a\xbf\x99\x5a\xcc\xdf\xff\x03\x00\x00\x00\x7d\x21\xe6" "\xfe\xc1\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\xf8\x7f\x85\x27\xf2" "\x3f\x00\x00\x00\x14\x46\xcc\xfd\x43\x61\x26\x25\xc9\xff\x1b\xee\x7d\x63" "\xfa\xad\xf3\x59\x6a\xe6\xcf\x05\xf1\xfa\x74\x1a\x1e\xa8\x6e\x17\x3b\xae" "\x13\xe1\xcf\xa3\x73\xf3\x2a\x97\xdf\xf3\xd2\xd4\x7f\xfd\xed\xf9\xc5\xed" "\x7b\x30\xcb\xb2\xff\x79\xe0\xf7\x9b\x6e\xbf\xe1\x81\x78\x5c\x55\xa3\xe1" "\x38\x2f\x7d\xa8\xfe\xf2\x85\x37\x3c\xbf\xa8\xfd\x1f\x7e\x6c\x7e\xbb\xda" "\xfe\xfa\xd7\xc3\xfd\xc7\xc7\xb3\xd8\x65\xd0\xac\x82\x3b\x91\x65\xd9\x2b" "\xd7\x7c\x39\xdf\xcf\xe8\xe3\x17\xf3\xf9\xea\x03\x87\xf3\xf9\xf0\x85\x17" "\x9e\xaf\x6c\xf3\xe6\xfe\xea\x9f\xe3\xed\x5f\xbf\xb6\xba\xfd\x9f\x85\xf2" "\xef\xc1\x63\x47\xea\x6e\xff\x7a\x38\x0f\x3f\x0e\x73\xe2\xc1\xe6\xe7\x23" "\xde\xee\x5b\x17\x6f\xdb\xb8\xf7\x13\xf3\xfb\x8b\xb7\x1b\xd8\xfc\xce\xfc" "\x61\xbf\xf8\x44\xf5\x7e\xe3\xef\xc9\xf9\xca\xf3\xd5\xed\xe3\x79\x6e\x75" "\xfc\x7f\xf7\xa5\x97\xbf\x55\xd9\xfe\xe9\xf7\x35\x3f\xfe\xf3\x83\xcd\x8f" "\xff\xe5\x70\xbf\x2f\x85\xf9\xdf\x37\x55\xb7\xaf\x7d\x0e\x2a\x7f\x8e\xb7" "\xfb\x42\x38\xfe\xb8\xbf\x78\xbb\x3b\xbf\xf9\xdd\xa6\xc7\x7f\xe9\x8b\xd5" "\xed\x67\xee\x7b\x63\xba\xf2\x72\x3e\x7c\x5f\x58\xa7\x61\xff\xdb\xc2\x9f" "\xb7\x54\xae\xaf\xf1\xf4\xc0\x91\xba\xc7\x95\x7d\xb8\xba\x5d\xdc\xff\xc4" "\x0f\xfe\x30\xbf\x3e\xde\xdf\xcc\x7d\xcd\x8f\x7f\xe4\xd0\xc5\xba\xf3\xd1" "\xb8\x3e\x5e\xfd\xd7\xea\xfd\x8c\x37\x6c\x1f\x2f\x8f\xfb\x89\xfe\xa6\x61" "\xff\x95\xfb\xa9\x5d\x9f\x71\xff\x2f\xff\xc1\xe1\xba\xf3\xdc\x69\xff\x97" "\x1e\x7e\xfd\xa6\xca\xfd\x36\xee\xff\xf6\x86\xed\x66\x9e\xda\x9e\xef\x7f" "\xfe\xfe\xea\x7f\x63\xd3\x9f\x7f\xe1\xcb\x4d\xf7\x17\x8f\xe7\xe0\x5f\xcd" "\xd4\x3d\x9e\x83\x0f\x85\xd7\x71\xd8\xff\x8b\x4f\x84\xf5\x18\xae\xff\xe5" "\xa5\xea\xfd\x35\xfe\x76\x85\xc3\x0f\xd5\xbf\xff\xc4\xed\xbf\xbe\xfe\x7c" "\xdd\xe3\x89\xee\xff\x79\x75\xff\x97\xee\x3e\x9e\xcf\x35\x23\x6b\xd7\x5d" "\xf5\x8e\xab\xdf\x79\xe1\xbd\x95\x73\x97\x65\xaf\x3d\x52\xbd\xbf\x4e\xfb" "\x3f\xfe\xb5\xd3\x75\xc7\xff\x8d\xeb\xab\xe7\x23\x5e\x1f\x3b\xfa\x8d\xfb" "\x6f\x25\xee\xff\xcc\x67\xc7\x4e\x9d\x9e\x3d\x37\x3d\x59\x73\x56\xf3\xdf" "\x9d\xf3\x91\xea\xf1\xc4\xe3\xbd\x26\xbc\xb7\x36\xfe\xf9\xd0\xe9\xb3\x4f" "\x4e\x9d\x19\x9d\x18\x9d\xc8\xb2\xd1\xe2\xfe\x0a\xbd\xb7\xed\x9b\x61\xfe" "\xb4\x3a\x2e\x2c\xf5\xf6\xdb\x1f\x0b\xcf\xe7\x8d\x7f\xfa\xca\xba\xad\xff" "\xf2\xa5\x78\xf9\xbf\x3d\x5a\xbd\xfc\xe2\x83\xd5\xaf\x5b\xb7\x86\xed\xbe" "\x12\x2e\x5f\x1f\x9e\xbf\xcb\xdd\xff\x8b\x9b\xae\xcf\x5f\xdf\x03\xaf\xe6" "\x7f\x1c\xce\xe6\x16\xfe\xbe\xe0\xcb\xb1\x71\xcb\x7f\xee\x5b\xd4\x86\xe1" "\xf1\x37\x7e\x5f\x10\xd7\xfb\xcc\x7b\x9e\xcc\xcf\x43\xe5\xba\xfc\xeb\x46" "\x7c\x5d\xd7\x1f\x7f\xfd\xef\x3f\x5e\x84\x1f\x4d\x56\xef\xe7\x3b\xe1\xbc" "\xce\x85\xdf\xcc\xbc\xf9\xfa\xf9\xfd\xd5\x6e\x1f\x7f\x37\xc2\xc5\x47\xaa" "\xaf\xf7\xcb\xdd\x7f\x7c\x9b\x8b\xcf\xeb\x5f\x86\xe7\xfb\xa3\x3f\xae\xde" "\x7f\x3c\xae\xf8\x78\x7f\x14\xbe\x8f\xf9\xee\x86\xfa\xf7\xbb\xb8\x3e\xbe" "\x73\x7e\xb0\xf1\xfe\xf3\xdf\xe2\x71\x21\xbc\x9f\x64\x17\xaa\xd7\xc7\xad" "\xe2\xf9\xbe\xf8\xe6\xf5\x4d\x0f\x2f\xfe\x1e\x92\xec\xc2\x0d\xf9\x9f\xff" "\x28\xdd\xcf\x0d\x4b\x7a\x98\xad\xcc\x3e\x33\x3b\x7e\x62\xfa\xd4\xb9\xa7" "\xc7\xcf\x4e\xcd\x9e\x1d\x9f\x7d\xe6\xd9\x43\x27\x4f\x9f\x3b\x75\xf6\x50" "\xfe\xbb\x3c\x0f\x7d\xba\xd3\xed\xe7\xdf\x9f\xd6\xe5\xef\x4f\x93\x53\x7b" "\x76\x67\xf9\xbb\xd5\xe9\xea\x58\x66\x57\xfa\xf8\x67\x1e\xbb\x3b\xcb\xb2" "\xad\x93\x53\xc7\x8e\x9c\x3b\x76\xf6\xb1\x99\xa9\x33\xc7\x8f\xce\xce\x1e" "\x9d\x9a\x9c\xdd\x7a\xe4\xd8\xb1\xa9\xcf\x76\xba\xfd\xf4\xe4\x81\x1d\x3b" "\xf7\xef\xda\xbb\x73\xec\xf8\xf4\xe4\x81\x7d\xfb\xf7\xef\xda\x3f\x36\x7d" "\xea\x74\xe5\x30\xaa\x07\xd5\xc1\x9e\x89\xcf\x8c\x9d\x3a\x73\x28\xbf\xc9" "\xec\x81\xdd\xfb\x77\xdc\x75\xd7\xee\x89\xb1\x93\xa7\x27\xa7\x0e\xec\x9d" "\x98\x18\x3b\xd7\xe9\xf6\xf9\xd7\xa6\xb1\xca\xad\x7f\x6f\xec\xcc\xd4\x89" "\x23\x67\xa7\x4f\x4e\x8d\xcd\x4e\x3f\x3b\x75\x60\xc7\xfe\x3d\x7b\x76\x76" "\xfc\x6d\x80\x27\x67\x8e\xcd\x8e\x8e\x9f\x39\x77\x6a\xfc\xdc\xec\xd4\x99" "\xf1\xea\x63\x19\x3d\x9b\x5f\x5c\xf9\xda\xd7\xe9\xf6\x14\xd3\xec\xbf\x57" "\xbf\x9f\x6d\x34\x50\xfd\x45\x7c\xd9\xc7\x6f\xdf\x93\x7e\x3f\x6b\xc5\x4b" "\x9f\x6b\x79\x57\xd5\x4d\x1a\x7e\x81\xe8\x1b\xe1\x77\xd1\x7c\xef\x5d\x33" "\xfb\x16\xf3\xe7\x98\xfb\x87\xc3\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62" "\xee\x5f\x1d\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xbf\x26\xcc\x44\xfe" "\x07\x00\x00\x80\xc2\x88\xb9\x7f\x24\xcc\xa4\x24\xf9\x5f\xff\x5f\xff\xbf" "\xa8\xfd\xff\xb7\xce\xeb\xff\xb7\xda\xbf\xfe\xbf\xfe\x7f\x91\x15\xac\xff" "\xbf\xf4\xfe\x7a\x07\xfa\xff\x1d\xe8\xff\xeb\xff\x5f\x56\xff\xff\xe8\xe4" "\xde\x89\x9e\xec\xff\xcf\x35\x7e\x6d\x6d\x46\xff\x9f\xe5\xd0\x6b\xfd\xff" "\x98\xfb\xd7\x66\x59\x29\xf3\x3f\x00\x00\x00\x94\x41\xcc\xfd\xeb\xc2\x4c" "\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\xaf\x0a\x33\x91\xff\x01\x00\x00\xa0" "\x30\x62\xee\x7f\x47\x98\x49\x49\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x7f\xf3\xfd\xeb\xff\xf7\x27\xfd\xff\xf6\xf4\xff\x3b\xd0\xff\xd7\xff" "\x2f\x66\xff\xdf\xe7\xff\x73\xc5\xf4\x5a\xff\x3f\xe6\xfe\xab\xc3\x4c\x4a" "\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\x7f\x67\x98\x89\xfc\x0f\x00\x00\x00" "\x85\x11\x73\xff\x35\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\xeb\xc3" "\x4c\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xfb\xb2\xff\x9f\xff\xaf\x4b\xfa" "\xff\xfa\xff\xfa\xff\x0b\xbd\x8d\xfe\xfd\x2f\x6a\x2b\xe2\xbd\xdb\xff\x5f" "\xbb\xd4\xbb\x6a\x4a\xff\xbf\x03\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba\xaa" "\xd7\xfa\xff\x31\xf7\xbf\x2b\xcc\xa4\x24\xf9\x1f\x00\x00\x00\xca\x20\xe6" "\xfe\x77\x87\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x5f\x1b\x66\x22\xff" "\x03\x00\x00\x40\x61\xc4\xdc\x7f\x5d\x98\x49\x49\xf2\xbf\xfe\xbf\xfe\xbf" "\xfe\x7f\x5f\xf6\xff\x7d\xfe\xbf\xfe\xbf\xfe\x7f\x0b\x65\xfd\xfc\xff\xd5" "\x8b\xbc\x7f\xfd\xff\xd6\xf2\x0d\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xaa" "\x5e\xeb\xff\xc7\xdc\xff\x9e\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98" "\xfb\xaf\x0f\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff\x7f\x61\x26\xf2" "\x3f\x00\x00\x00\x14\x46\xcc\xfd\x1b\xc2\x4c\x4a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x9b\xef\x5f\xff\xbf\x3f\x2d\x63\xff\x3f\x6f\x24" "\xf6\x6a\xff\x7f\xb1\xf4\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab" "\x7a\xad\xff\x1f\x73\xff\x0d\x61\x26\x25\xc9\xff\x00\x00\x00\x50\x06\x31" "\xf7\xdf\x18\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xff\xff\xc3\x4c\xe4" "\x7f\x00\x00\x00\x28\x8c\x98\xfb\x37\x86\x99\x94\x24\xff\xeb\xff\x77\xb5" "\xff\x7f\x5b\x6d\x31\x4b\xff\x5f\xff\xbf\x61\x7d\xe8\xff\xeb\xff\xeb\xff" "\xaf\x80\xb2\x7e\xfe\xff\x62\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff" "\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\x9b\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0" "\x0c\x62\xee\xbf\x39\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\xbd\x61" "\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\xa3\x61\x66\xab\xc3\x15\x25\xc9" "\xff\xfa\xff\x3e\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xf9\xfe\xf5\xff\xfb\x93" "\xfe\x7f\x7b\xfa\xff\x1d\x2c\x77\xff\xbf\xfa\x8d\xa7\xfe\xff\x32\xb9\xd2" "\xc7\xaf\xff\xaf\xff\xcf\x42\xbd\xd6\xff\x8f\xb9\x7f\x53\x98\x49\x49\xf2" "\x3f\x00\x00\x00\x94\x41\xcc\xfd\x9b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8c" "\x98\xfb\x6f\x09\x33\xa9\xcd\xff\x23\x2b\x7d\x54\x00\x00\x00\x40\x37\xc4" "\x48\x1f\x73\xff\x96\xba\x4b\xcb\xf3\xf7\xff\x7d\xda\xff\x1f\x6c\xfd\x80" "\xf4\xff\x33\xfd\x7f\xfd\xff\x0e\xfb\xd7\xff\xd7\xff\x2f\xb2\xde\xed\xff" "\x37\xfb\x4a\xb1\x90\xfe\x7f\xc1\xfb\xff\x3e\xff\x7f\x59\x5d\xe9\xe3\x5f" "\xc6\xfe\xff\xf7\x6a\x96\x7b\x4b\xfa\xff\xf4\xa2\x5e\xeb\xff\xc7\xdc\xff" "\xbe\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\xb7\x86\x99\xc8\xff" "\x00\x00\x00\x50\x18\x31\xf7\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x61\xc4" "\xdc\xbf\x2d\xcc\xa4\x24\xf9\xbf\x4f\xfb\xff\x6d\x1e\x90\xfe\x7f\xa6\xff" "\xbf\xfc\xfd\xff\xed\x5f\xab\xde\x50\xff\x5f\xff\x5f\xff\xbf\xe7\xf4\x6e" "\xff\x7f\x71\xf4\xff\x8b\xda\xff\x1f\x8a\xf7\xaf\xff\xbf\x8c\xae\xf4\xf1" "\xfb\xfc\x7f\xfd\x7f\x16\xea\xb5\xfe\x7f\xcc\xfd\xb7\x85\x99\x94\x24\xff" "\x03\x00\x00\x40\x19\xc4\xdc\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88" "\xb9\xff\xf6\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\xb1\x30\x93\x92" "\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x9f\xff\xaf\xff\xdf\x7c\xff\xfa\xff\xfd" "\x49\xff\xbf\x3d\xfd\xff\x0e\x7c\xfe\xbf\xfe\x7f\xcb\xe3\xbf\xba\xe3\xfe" "\xf5\xff\xf5\xff\x59\xa8\xd7\xfa\xff\x31\xf7\xdf\x11\x66\x52\x92\xfc\x0f" "\x00\x00\x00\x65\x10\x73\xff\x9d\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc" "\xfd\xe3\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x13\x61\x26\x25\xc9" "\xff\x2b\xdd\xff\xaf\x39\xc3\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\x5d\xa7\xff\xdf\xde\x95\xeb\xff\x37\xfb\x4a\xb9\x90\xfe\xbf\xfe\x7f" "\x3f\x1f\xbf\xfe\xbf\xfe\x3f\x0b\xf5\x5a\xff\x3f\xe6\xfe\x1d\x61\xa6\xef" "\xe8\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\xdf\x19\x66\x22\xff\x03\x00" "\x00\x40\x61\xc4\xdc\xbf\x2b\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f" "\x77\x98\x49\x49\xf2\xbf\xcf\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x6f\xbe" "\x7f\xfd\xff\xfe\xd0\x58\xb0\xd7\xff\x6f\xcf\xe7\xff\x77\xa0\xff\xaf\xff" "\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\xbb\xc2\x4c\x4a\x92\xff" "\x01\x00\x00\xa0\x0c\x62\xee\xdf\x13\x66\x22\xff\x03\x00\x00\x40\x61\xc4" "\xdc\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x5f\x98\x49\x49" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf3\xfd\xeb\xff\xf7\x27" "\xfd\xff\xf6\xca\xd2\xff\x8f\xf4\xff\x97\xe6\x4a\xf7\xe7\xfb\xfd\xf8\xf5" "\xff\xf5\xff\x59\xa8\xd7\xfa\xff\x31\xf7\xef\x0f\x33\x29\x49\xfe\x07\x00" "\x00\x80\x32\x88\xb9\xff\xfd\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd" "\xbf\x12\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xff\xab\x61\x26\x25\xc9" "\xff\xfa\xff\xfa\xff\xfa\xff\x57\xb6\xff\x7f\x41\xff\x5f\xff\x5f\xff\xbf" "\xab\xf4\xff\xdb\x2b\x4b\xff\x7f\x79\x3e\xff\x7f\x44\xff\xbf\x03\xfd\x7f" "\xfd\x7f\xfd\x7f\x1a\xf5\x5a\xff\x3f\xe6\xfe\x03\x61\x26\x25\xc9\xff\x00" "\x00\x00\x50\x06\x31\xf7\xff\x5a\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73" "\xff\xdd\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x07\xc3\x4c\x8a\x9d" "\xff\xd3\x03\xd5\xff\xd7\xff\xd7\xff\xf7\xf9\xff\xfa\xff\xcd\xf7\xaf\xff" "\xdf\x9f\xf4\xff\xdb\xeb\xdd\xfe\x7f\x7c\x65\xf5\x72\xff\xdf\xe7\xff\x77" "\xba\xbd\xfe\xbf\xfe\xbf\xfe\x3f\x8d\x7a\xad\xff\x1f\x73\xff\x07\xc2\x4c" "\x8a\x9d\xff\x01\x00\x00\xa0\x54\x62\xee\xbf\x27\xcc\x64\x61\xfe\x1f\x5c" "\xb9\xa3\x02\x00\x00\x00\xba\x29\xe6\xfe\x0f\x86\x99\xf8\xfb\x7f\x00\x00" "\x00\x28\x8c\x98\xfb\xef\x0d\x33\x29\x49\xfe\xd7\xff\xd7\xff\x6f\xd9\xff" "\xaf\x3c\xd9\xfa\xff\xfa\xff\xfa\xff\x89\xfe\x7f\x7f\xd0\xff\x6f\xaf\x77" "\xfb\xff\x55\xbd\xfd\xf9\xff\xfa\xff\x9d\x6e\xaf\xff\xaf\xff\xaf\xff\x4f" "\xa3\x5e\xeb\xff\xc7\xdc\xff\xa1\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83" "\x98\xfb\xef\x0b\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff\x70\x98\x89" "\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xfd\x61\x26\x25\xc9\xff\xfa\xff\xfa" "\xff\x3e\xff\x7f\xc5\xfa\xff\x13\x99\xfe\x7f\xe1\xfb\xff\x8d\xef\xa1\xb5" "\xf4\xff\x57\x86\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\xeb\xff\xeb\xff\xeb\xff" "\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\xd7\xc3\x4c\x4a\x92\xff\x01\x00\x00\xa0" "\x0c\x62\xee\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\xc1\x30" "\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x8f\x84\x99\x94\x24\xff\xeb\xff" "\xeb\xff\xeb\xff\xfb\xfc\x7f\xfd\xff\xe6\xfb\xf7\xf9\xff\xfd\x49\xff\xbf" "\x3d\xfd\xff\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xaa\x5e\xeb\xff\xc7" "\xdc\xff\xd1\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\x3f\x16\x66" "\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xff\xf1\x30\x13\xf9\x1f\x00\x00\x00" "\x0a\x23\xe6\xfe\xdf\x08\x33\x29\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\x6f\xbe\x7f\xfd\xff\xfe\xa4\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\x74\x55\x57\xfb\xff\x43\x97\xdf\xff\x8f\xb9\xff\xa1" "\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\x1f\x0e\x33\x91\xff\x01" "\x00\x00\xa0\x30\x62\xee\x7f\x24\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9" "\xff\xd1\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe6" "\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xd5\xf5\xff\x7f\x39\xd2\x7a\x43\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba\xa0\xab\xfd\xff\xec\xf2\xfb\xff\x31" "\xf7\x3f\x16\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\x27\xc2\x4c" "\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x7f\x33\xcc\x44\xfe\x07\x00\x00\x80" "\xc2\x88\xb9\xff\x93\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xcd\xf7\xaf\xff\xdf\x9f\xae\x6c\xff\xff\x53\xfd\xd5\xff\x6f\x47" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x2e\xe8\xb5\xfe\x7f\xcc\xfd\x8f" "\x87\x99\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\xff\xa9\x30\x13\xf9\x1f" "\x00\x00\x00\x0a\x23\xe6\xfe\xdf\x0a\x33\x91\xff\x01\x00\x00\xa0\x30\x62" "\xee\xff\xed\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\xe6\xfb\xd7\xff\xef\x4f\x3e\xff\xbf\x3d\xfd\xff\x0e\xf4\xff\xf5\xff\xf5" "\xff\xf5\xff\xe9\xaa\x5e\xeb\xff\xc7\xdc\xff\x3b\x61\x26\x25\xc9\xff\x00" "\x00\x00\x50\x06\x31\xf7\x3f\x11\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc" "\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\x70\x98\x49\x49\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x8f\xf6\xff\xff\x64\xf3\x3f\xff\xf0\xfb\x1f" "\x3b\xbc\x43\xff\x5f\xff\x5f\xff\x7f\x49\xf4\xff\xdb\xd3\xff\xef\xa0\x07" "\xfa\xff\x23\xfa\xff\x7d\x7b\xfc\xfa\xff\xfa\xff\x2c\xd4\x6b\xfd\xff\x98" "\xfb\x8f\x84\x99\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\xff\xbb\x61\x26" "\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x47\xc3\x4c\xe4\x7f\x00\x00\x00\x28" "\x8c\x98\xfb\x27\xc3\x4c\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x7b\xb4\xff" "\xef\xf3\xff\x13\xfd\x7f\xfd\xff\xa5\xd0\xff\x6f\x4f\xff\xbf\x83\x1e\xe8" "\xff\xfb\xfc\xff\xfe\x3d\x7e\xfd\x7f\xfd\x7f\x16\x5a\x72\xff\x7f\xb4\xe5" "\x5d\x75\xa5\xff\x1f\x73\xff\x54\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41" "\xcc\xfd\xc7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x8f\x87\x99\xc8" "\xff\x00\x00\x00\x50\x18\x31\xf7\x3f\x19\x66\x52\x92\xfc\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xdf\x7c\xff\xfa\xff\xfd\x49\xff\xbf\x3d\xfd\xff" "\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xaa\x5e\xfb\xfc\xff\x98\xfb\xa7" "\xc3\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\xff\x74\x98\x89\xfc\x0f" "\x00\x00\x00\x85\x11\x73\xff\x67\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98" "\xfb\x4f\x84\x99\x94\x24\xff\xeb\xff\xeb\xff\xeb\xff\x2f\x43\xff\xff\x1f" "\x9a\xaf\x0f\xfd\x7f\xfd\x7f\xfd\xff\xe5\xa7\xff\xdf\x9e\xfe\x7f\x07\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x74\x55\x77\xfa\xff\x73\x59\xb7\xfa\xff\x31" "\xf7\x9f\x0c\x33\x29\x49\xfe\x07\x00\x00\x80\x32\x88\xb9\xff\x54\x98\x89" "\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xe9\x30\x13\xf9\x1f\x00\x00\x00\x0a" "\x23\xe6\xfe\x99\x30\x93\xff\x63\xef\x4e\x7e\x2c\xaf\xab\x3e\x8e\x57\x3f" "\x0f\x0d\x18\x62\x4c\xdc\xb8\x70\xe1\xc6\x3f\xc0\x3d\x1b\x56\x26\x98\xf8" "\x17\x18\x97\xba\xd3\xa8\xe0\x3c\x80\xf3\x3c\xcf\xf3\x3c\x8b\x28\x28\xe2" "\x3c\x4f\x38\xa2\x38\xcf\x38\xa0\xa8\xa8\x38\xa0\xc2\xc2\x74\xf7\x39\xa7" "\xa9\xaa\xdb\xf7\x76\x57\xff\xaa\xea\xf7\xfb\x9e\xd7\x6b\x73\xf2\x84\xa7" "\xb8\x17\x68\x3a\x7e\x42\xde\xf9\x36\xd9\xff\xfa\x7f\xfd\xbf\xfe\xdf\xfb" "\xff\xfa\xff\xd5\x9f\xaf\xff\x5f\x26\xfd\xff\x7a\xfa\xff\x0d\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x9f\x49\xcd\xed\xfd\xff\xdc\xfd\x0f\x8f\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\x23\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\x92\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x34\x6e\x69\xb2\xff" "\xf5\xff\xfa\xff\xc3\xeb\xff\x8f\x9c\xa3\xff\xd7\xff\xeb\xff\xf5\xff\x53" "\x1b\xb6\xff\xdf\xf9\x2f\xc6\x1e\xe9\xff\x37\xd0\xff\x37\xe8\xff\x4f\xfd" "\x2f\x93\xfe\x5f\xff\xcf\xf4\xe6\xd6\xff\xe7\xee\x7f\x64\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x1f\x15\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x8f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xc7\xc4\x2d\x4d\xf6" "\xff\x2c\xfa\xff\xa3\x2b\xbe\x97\xfe\xff\xb8\xb1\xfb\x7f\xef\xff\xeb\xff" "\xf5\xff\x5b\xfa\xff\xc9\x0d\xdb\xff\x4f\xa4\x53\xff\x7f\xc9\x0d\x17\x3c" "\xf4\xd6\x6b\xee\x79\xed\x99\x7c\xbe\xfe\xbf\x43\xff\xbf\x7f\xdf\x5f\xff" "\xaf\xff\x67\xb7\xb9\xf5\xff\xb9\xfb\x1f\x1b\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\xc7\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xe3\xe3" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x09\x71\x4b\x93\xfd\x3f\x8b\xfe" "\xdf\xfb\xff\xfa\xff\x3b\x7d\x77\xfd\xff\xc9\x9f\x3b\xc0\xfe\xff\xf8\x1f" "\xd7\xff\xeb\xff\x47\xa0\xff\x5f\xaf\x53\xff\xbf\x97\xcf\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xa6\x35\xb7\xfe\x3f\x77\xff\x13\xe3\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xa4\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf" "\x2c\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x2f\x8f\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xf7\xfe\xff\xea\xcf\xd7\xff\x2f\xd3\x8c\xfa\xff" "\xa3\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xbf\xf4\x21\x0f\x7b\xf0\x79\xfa" "\xff\xc6\xe6\xd6\xff\xe7\xee\x7f\x72\xdc\x3a\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x29\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd4\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x5a\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\xf5\xe7\xeb\xff\x97\x69\x73\xff\x7f\xf7\x8b\xd7" "\xfd\xbc\xf7\xff\x83\xfe\x5f\xff\xaf\xff\xd7\xff\x7b\xff\x9f\x09\xcc\xad" "\xff\xcf\xdd\xff\xf4\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x23" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x19\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\xcf\x8a\x5b\x9a\xec\x7f\xfd\xff\xfe\xf4\xff\xd9\x2b\xea" "\xff\xf5\xff\x5b\xfa\xff\x93\xbf\x2e\xf5\xff\xfa\xff\x03\x30\xa3\xf7\xff" "\xf7\xf4\xf9\xfa\x7f\xfd\xbf\xfe\x7f\xb9\xdf\x5f\xff\xaf\xff\x67\xb7\xb9" "\xf5\xff\xb9\xfb\x9f\x1d\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xe7" "\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x73\xe3\x16\xfb\x1f\x00\x00" "\x00\x86\x91\xbb\xff\x79\x71\x4b\x93\xfd\xaf\xff\xf7\xfe\xbf\xfe\x5f\xff" "\xaf\xff\x5f\xfd\xf9\xfa\xff\x65\xd2\xff\xaf\xa7\xff\xdf\x40\xff\xaf\xff" "\xd7\xff\xeb\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\xcf\x8f\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\x0b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\x85\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa2\xb8\xa5\xc9\xfe\x9f" "\xa2\xff\xbf\x5c\xff\xaf\xff\xdf\xf1\xfd\xf5\xff\xab\x7f\x7d\xe8\xff\xf5" "\xff\xfa\xff\xfd\xa7\xff\x5f\x4f\xff\xbf\x81\xfe\x5f\xff\xaf\xff\xd7\xff" "\x33\xa9\xb9\xf5\xff\xb9\xfb\x5f\x1c\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x97\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x4b\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x65\x71\xcb\xc6\xfd\x7f\xdb\xc4\x45\xde" "\xe1\xd8\xde\xff\x1f\xf1\xfe\xbf\xfe\x5f\xff\xbf\xa5\xff\xd7\xff\x9f\xa0" "\xff\x5f\x26\xfd\xff\x7a\xfa\xff\x0d\xf4\xff\xfa\xff\x59\xf4\xff\x57\xea" "\xff\x19\xc6\xdc\xfa\xff\xdc\xfd\x2f\x8f\x5b\xfc\xf7\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x57\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x2b\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x55\x71\x4b\x93\xfd\x3f\xc5\xfb\xff" "\x03\xf7\xff\xe7\xeb\xff\xf5\xff\x2d\xfa\xff\x63\x7f\x01\xfa\x7f\xfd\xff" "\x20\xa6\xeb\xff\xef\x7d\xb7\x3d\xf4\xff\xe7\x6e\x9d\xe5\xe7\xeb\xff\xe7" "\xdd\xff\x1f\xdd\xf1\xf7\x41\xff\xbf\x9d\xfe\xdf\xfb\xff\xa7\xd5\xff\x9f" "\xb3\xe9\xcf\xc4\x48\xe6\xd6\xff\xe7\xee\x7f\x75\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\x5f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf" "\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xd7\xc5\x2d\x4d\xf6\xbf\xfe" "\xdf\xfb\xff\xfa\xff\x79\xf6\xff\x97\x79\xff\xbf\xe8\xff\xf5\xff\x67\xc2" "\xfb\xff\xeb\xed\xa9\xff\xdf\xd2\xff\x7b\xff\x5f\xff\xaf\xff\xf7\xfe\x3f" "\x7b\x33\xb7\xfe\x3f\x77\xff\xeb\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8" "\xdd\xff\x86\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x63\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xbf\x29\x6e\x69\xb2\xff\x27\xed\xff\x8f\xfd" "\x94\xfe\xbf\xe8\xff\xf5\xff\x3b\x7f\x7d\xcc\xf6\xfd\x7f\xfd\xff\xca\xcf" "\xd7\xff\x2f\x93\xfe\x7f\x3d\xef\xff\x6f\xa0\xff\xd7\xff\xeb\xff\xf5\xff" "\x4c\x6a\x6e\xfd\x7f\xee\xfe\x37\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90" "\xbb\xff\x2d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd6\xb8\xc5\xfe" "\x07\x00\x00\x80\x61\xe4\xee\x7f\x5b\xdc\xd2\x64\xff\x7b\xff\x7f\xeb\x5e" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xea\xf3\xf5\xff\xcb\xa4\xff\x5f\x4f\xff" "\xbf\x81\xfe\x5f\xff\x7f\xd0\xfd\xff\x9d\x7e\x89\xe8\xff\x19\xd1\xdc\xfa" "\xff\xdc\xfd\x6f\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x3b\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x9d\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xae\xb8\xa5\xc9\xfe\xd7\xff\x9f\xf5\xfb\xff\xc7\x13\x60" "\xfd\xff\xf6\xef\x7f\x8a\xfe\xbf\xfe\x36\xe9\xff\xb7\xff\xff\xeb\xff\x4f" "\xd0\xff\xeb\xff\xa7\xa0\xff\x5f\x4f\xff\xbf\x81\xfe\x5f\xff\xef\xfd\x7f" "\xfd\x3f\x93\x9a\x5b\xff\x9f\xbb\xff\xdd\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\x7f\x4f\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x37\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x17\xb7\x34\xd9\xff\xfa\xff\xb3" "\xee\xff\x8f\x1b\xad\xff\xff\xff\xe8\xcc\xbd\xff\xaf\xff\xd7\xff\x9f\xfc" "\xf3\xea\xff\x97\x41\xff\xbf\x9e\xfe\x7f\x03\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x67\x52\x73\xeb\xff\x73\xf7\x5f\x11\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\xf7\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x95\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x81\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\x0f" "\xf0\xfd\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x77\xfa\xff\xf5\xf4\xff\x5b" "\x5b\x5b\x57\xad\xf9\x02\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa4\xe6\xd6\xff" "\xe7\xee\xff\x60\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xaf\x8a\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xab\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x43\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\xd5\x9f\xaf\xff\x5f\xa6\xde\xfd\x7f\xd6\xf2\xa7\xa6\xff\xdf\x40\xff\xaf" "\xff\xd7\xff\xeb\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\x1f\x8e\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\x35\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\x91\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x36\x6e\x69\xb2\xff" "\xb7\xf5\xff\x19\xb5\xea\xff\xf5\xff\xfb\xd8\xff\xdf\xbe\x87\xfe\xff\x68" "\xfc\x31\xfd\xff\x74\xfd\xff\xc5\x2b\x3e\x5f\xff\xaf\xff\x1f\xc1\x6c\xfa" "\xff\x3b\x8e\xff\x8b\xea\xfd\xff\xe5\xf5\xff\xc7\x7f\x4b\xd0\xff\xeb\xff" "\xf5\xff\xfa\x7f\xa6\xb1\xb2\xff\x3f\xf6\x1b\xe1\x21\xf5\xff\xb9\xfb\x3f" "\x1a\xb7\x5c\xb4\x63\x18\x02\x00\x00\x00\x8b\x95\xbb\xff\x63\x71\x4b\x93" "\xff\xfe\x0f\x00\x00\x00\x1d\xe4\xee\xff\x78\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\x7f\x22\x6e\x69\xb2\xff\xbd\xff\xaf\xff\xf7\xfe\x7f\xcf\xfe" "\xdf\xfb\xff\xfa\xff\x51\xed\x77\xff\xbf\x35\xeb\xf7\xff\x37\xd3\xff\x6f" "\xe0\xfd\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa4\x56\xf6\xff\xc7\x7e\x3f\x3b\xa4" "\xfe\x3f\x77\xff\x27\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xa9" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x74\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\x7f\x26\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xbf\xfa\xf3\xf5\xff\xcb\x34\x9b\xf7\xff\xf7\xf8\xf9\xfa\x7f\xfd\xbf" "\xfe\x7f\xb9\xdf\x5f\xff\xaf\xff\x67\xb7\xb9\xf5\xff\xb9\xfb\x3f\x1b\xb7" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xcf\xc5\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\xe7\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x0b\x71" "\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xd5\x9f\xaf\xff\x5f" "\x26\xfd\xff\x7a\xfa\xff\x0d\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x49\xcd\xad" "\xff\xcf\xdd\xff\xc5\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x29" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x1c\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\x5f\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xaf\xfe\x7c\xfd\xff\x32\xe9\xff\xd7\xd3\xff\x6f\xa0\xff\xd7\xff\xeb" "\xff\xf5\xff\x4c\x6a\x6e\xfd\x7f\xee\xfe\xaf\xc6\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\xba\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x5a" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x3d\x6e\x69\xb2\xff\xf5\xff" "\xfa\xff\xbb\xde\xe9\xe7\xf4\xff\x23\xf5\xff\x77\x39\xe5\xe7\xeb\xff\xf5" "\xff\x23\x9b\x4b\xff\x7f\xe1\x85\xf7\xbb\x5e\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xee\xe6\xd6\xff\xe7\xee\xff\x46\xdc\x72\xca\xe1\x77\xdb" "\xfd\x4f\xe3\x2f\x13\x00\x00\x00\x98\x91\xdc\xfd\xdf\x8c\x5b\x9a\xfc\xf7" "\x7f\x00\x00\x00\xe8\x20\x77\xff\xb7\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\xdb\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x7b\xff\x7f\xd4\xfe\x7f\xfb" "\xe7\xdf\x57\xff\xaf\xff\x6f\x62\x2e\xfd\xbf\xf7\xff\xf7\xf6\xfd\xf5\xff" "\xfa\xff\x25\x7f\x7f\xfd\xbf\xfe\x9f\xdd\xe6\xd6\xff\xe7\xee\xbf\x3e\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xdf\x89\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\xef\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x0d\x71" "\x4b\x93\xfd\xaf\xff\x5f\xd7\xff\x9f\xab\xff\xd7\xff\x0f\xd3\xff\x6f\xe9" "\xff\xf5\xff\x4d\x2c\xba\xff\x3f\x5f\xff\xaf\xff\x3f\xcc\xfe\xff\xa2\x03" "\xec\xe7\x6f\x9a\xe0\xfb\xee\x92\xbf\x2d\xeb\xff\xf5\xff\xcc\xc8\xdc\xfa" "\xff\xdc\xfd\xdf\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xf7\xe3" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x07\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xc3\xb8\xa5\xc9\xfe\xd7\xff\x7b\xff\x5f\xff\xaf\xff\xd7" "\xff\xaf\xfe\x7c\xfd\xff\x32\x2d\xba\xff\xf7\xfe\xbf\xfe\xdf\xfb\xff\x8b" "\xfe\xfe\xfa\x7f\xfd\x3f\xbb\xcd\xad\xff\xcf\xdd\xff\xa3\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\xff\x38\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x7f\x12\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f\x8d\x5b\x9a\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xfe\x7c\xfd\xff\x32\xe9\xff" "\xd7\xd3\xff\x6f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e\xfd\x7f\xee" "\xfe\x9f\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xe7\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x8b\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\xff\x65\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf5" "\xe7\xeb\xff\x97\x49\xff\xbf\x9e\xfe\x7f\x03\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x67\x52\x73\xeb\xff\x73\xf7\xff\x2a\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x37\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xaf\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x37\x71\x4b\x93\xfd\xdf\xb2\xff\x3f\xa2" "\xff\x3f\x83\xfe\xff\xc6\x9b\x4f\xfc\xa1\xc6\xfd\xff\xc9\x7f\xba\xfa\x7f" "\xfd\xff\x41\xf4\xff\x47\xf4\xff\x67\x45\xff\xbf\x9e\xfe\x7f\x03\xfd\xbf" "\xfe\x7f\xc3\xf7\x3f\xba\xe6\xe7\x87\xef\xff\xcf\x59\xff\xf3\x9b\xfa\xff" "\x0d\x3f\xce\xa0\xe6\xd6\xff\xe7\xee\xff\x6d\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\x7f\x17\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x37\xc5" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xef\xe3\x96\x26\xfb\xbf\x65\xff" "\xef\xfd\x7f\xef\xff\x7b\xff\x5f\xff\x3f\xe3\xfe\xdf\xfb\xff\x67\x47\xff" "\xbf\xde\x61\xf6\xff\xb7\x9c\xc6\xc7\xea\xff\xf5\xff\x4b\xfe\xfe\xc3\xf7" "\xff\x1b\x78\xff\x9f\xed\x4e\xfc\x2f\xcb\xb9\xf5\xff\xb9\xfb\xff\x10\xb7" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x9b\xe3\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\x8f\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa7\xb8" "\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xea\xcf\xd7\xff\x2f" "\x93\xfe\x7f\x3d\xef\xff\x6f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e" "\xfd\x7f\xee\xfe\x3f\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x96" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x4b\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xff\x35\x6e\x69\xb2\xff\xf5\xff\x33\xe9\xff\xe3\x4b\xe8" "\xff\xf5\xff\xfa\xff\x33\xe9\xff\xef\x71\xc1\xe5\xd7\x3d\xe0\x41\x57\x5f" "\xa1\xff\xe7\x24\xfd\xff\x7a\xfa\xff\x0d\xa6\xeb\xff\x1f\x78\x1f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xe7\xa0\xfa\xff\xf3\x4f\xb7\xff\xcf\xdd\xff\xb7\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xdf\x1a\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\x7f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x7f\xc4" "\x2d\x4d\xf6\xbf\xfe\x7f\x26\xfd\x7f\xfc\x8c\xfe\x5f\xff\x3f\xeb\xfe\xff" "\xbc\xed\x7f\xde\xc3\xef\xff\xbd\xff\xaf\xff\xdf\x4d\xff\xbf\x9e\xfe\x7f" "\x83\xd3\xed\xff\x8f\xfd\xc6\xe1\xfd\xff\x5d\xf4\xff\xfa\x7f\xfd\x3f\x3b" "\x1d\x50\xff\x7f\xca\xde\x7f\xe7\xff\x9d\xbb\xff\x9f\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xff\x57\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\xdf\x16\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xff\x8e\x5b\x9a\xec\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xee\xfb\xff\xfb\xd6\xff\x1f\xff\x47\xaa" "\xff\x5f\x26\xfd\xff\x7a\xfa\xff\x0d\xa6\x7b\xff\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\x99\x61\xff\x9f\xbb\xff\x3f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d" "\xe4\xee\xff\x6f\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x1e\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\x77\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x57\x7f\xbe\xfe\x7f\x99\xa6\xe9\xff\xff\x4f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\x26\x30\xb7\xfe\x3f\x77\xff\xff\x02" "\x00\x00\xff\xff\x54\x69\x68\xb2", 24866)); NONFAILING(syz_mount_image(/*fs=*/0x20000700, /*dir=*/0x20001f80, /*flags=MS_STRICTATIME*/ 0x1000000, /*opts=*/0x20000100, /*chdir=*/0xfe, /*size=*/0x6122, /*img=*/0x20013900)); NONFAILING(memcpy((void*)0x20000540, "./file1\000", 8)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000540ul, /*flags=O_NONBLOCK|O_NOATIME|O_DIRECT|O_CREAT|FASYNC|0x2*/ 0x46842, /*mode=*/0); NONFAILING(memcpy((void*)0x20000000, "./file0\000", 8)); NONFAILING(syz_mount_image(/*fs=*/0, /*dir=*/0x20000000, /*flags=*/0, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0)); NONFAILING(memcpy((void*)0x20000140, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20000740, "binder\000", 7)); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x20000140ul, /*type=*/0x20000740ul, /*flags=*/0ul, /*data=*/0ul); NONFAILING(memcpy((void*)0x20000080, "./bus\000", 6)); syscall(__NR_mkdir, /*path=*/0x20000080ul, /*mode=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); use_temporary_dir(); loop(); return 0; }