// https://syzkaller.appspot.com/bug?id=8ddfd9363c0b29693bd928b821ae2b41cdaae6f4 // 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 #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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")) { } } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 4; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } 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); } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x4000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x5ee7 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5ee7) // } // ] // returns fd_dir memcpy((void*)0x200000000140, "jfs\000", 4); memcpy((void*)0x200000000080, "./file0\000", 8); *(uint64_t*)0x2000000000c0 = 0; memcpy( (void*)0x200000006580, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\x2f\xd3\x73\x49\xe2" "\x58\x11\x8a\x8c\xc5\x62\xe2\x40\x48\x08\xf1\xdd\x86\x70\x8b\xc3\x82" "\x05\x2c\x40\x42\x59\x63\x6b\x32\x89\x0c\x0e\x20\xdb\x20\x12\x59\x78" "\x22\x2f\x10\x1b\xe0\x11\x60\x93\x0d\x8b\xbc\x02\x0f\x90\x67\x40\x3c" "\x00\x96\xec\xac\xb2\x20\x14\xaa\x99\x73\xec\x9a\x72\x8f\x7b\x06\xcf" "\x74\x75\xcf\xf9\xfd\xa4\x71\xd5\x57\xa7\x6b\xfa\x94\xff\x53\x53\xdd" "\x53\x55\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\xfe\xe0\xa7\x67\x7a\x11\x71\xf9\xb7\x69\xc1\xd1\x88\xa7" "\x63\x10\xd1\x8f\x58\xae\xeb\xd5\xa8\x67\x2e\xe5\xc7\x0f\x23\xe2\x58" "\x6c\x36\xc7\xf3\x11\x31\x58\x8c\xa8\xd7\xdf\xfc\xe7\xd9\x88\xf3\x11" "\xf1\xc9\x91\x88\x7b\xf7\x6f\xad\xd5\x8b\xcf\xee\xb2\x1f\x17\x4e\xdf" "\xbc\xfe\xf9\x8f\xbe\xff\xcf\x3f\xfc\xf9\xce\xb1\x9f\xbf\xfd\xb3\x8f" "\xda\xed\x3f\xf9\xc2\xb9\x8f\xff\x78\x3b\xe2\xe8\x8f\x5f\xff\xf8\xf3" "\xdb\xfb\xb3\xed\x00\x00\x00\x50\x8a\xaa\xaa\xaa\x5e\x7a\x9b\x7f\x3c" "\xbd\xbf\xef\x77\xdd\x29\x00\x60\x2a\xf2\xf1\xbf\x4a\xf2\x72\xb5\x5a" "\xad\x56\xef\x6b\xfd\xa7\xfe\x5e\x1e\xff\xf4\x53\x5d\xf7\x57\x7d\x48" "\xeb\xa6\x6a\xbc\xdb\xcd\x22\x22\x36\x9a\xeb\xd4\xaf\x19\x9c\x8e\x07" "\x80\x39\xb3\x11\x9f\x75\xdd\x05\x3a\x24\xff\xa2\x0d\x23\xe2\xa9\xae" "\x3b\x01\xcc\xb4\x5e\xd7\x1d\xe0\x40\xdc\xbb\x7f\x6b\xad\x97\xf2\xed" "\x35\x8f\x07\xab\x5b\xed\xf9\xef\x94\xdb\xf2\xdf\xe8\x3d\xb8\xbf\x63" "\xa7\xe9\x24\xed\x6b\x4c\xa6\xf5\xf3\x75\x27\x06\xf1\xdc\x0e\xfd\x59" "\x9e\x52\x1f\x66\x49\xce\xbf\xdf\xce\xff\xf2\x56\xfb\x28\x3d\xee\xa0" "\xf3\x9f\x96\x9d\xf2\x1f\x6d\xdd\xfa\x54\x9c\x9c\xff\xa0\x9d\x7f\xcb" "\xb6\xfc\xff\x12\x11\x73\x9b\x7f\x7f\x6c\xfe\xa5\xca\xf9\x0f\xf7\x92" "\xff\xc6\x60\x8e\xf7\x7f\xf9\x03\x00\x00\x00\x00\x70\xf8\xe5\xbf\xff" "\x1f\xed\xf8\xfc\xef\xe2\x93\x6f\xca\xae\x3c\xee\xfc\xef\xea\x94\xfa" "\x00\x00\x00\x00\x00\x00\x00\x00\xfb\xed\x49\xc7\xff\x7b\xc0\xf8\x7f" "\x00\x00\x00\x30\xb3\xea\xf7\xea\xb5\xbf\x1e\x79\xb8\x6c\xa7\xcf\x62" "\xab\x97\xbf\xd5\x8b\x78\xa6\xf5\x78\xa0\x30\xab\x8d\x0f\x07\x04\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6\x63\x18\xb1\x92\xae\xeb\x5f" "\x88\x88\x67\x56\x56\xaa\xaa\xaa\xbf\x9a\xda\xf5\x5e\x3d\xe9\xfa\xf3" "\xae\xf4\xed\x87\x92\x75\xfd\x4b\x1e\x00\x00\xb6\x7c\x72\xa4\x75\x2f" "\x7f\x2f\x62\x29\x22\xde\x4a\x9f\xf5\xb7\xb0\xb2\xb2\x52\x55\x4b\xcb" "\x2b\xd5\x4a\xb5\xbc\x98\x5f\xcf\x8e\x16\x97\xaa\xe5\xc6\xfb\xda\x3c" "\xad\x97\x2d\x8e\x76\xf1\x82\x78\x38\xaa\xea\x6f\xb6\xd4\x58\xaf\x69" "\xd2\xfb\xe5\x49\xed\xed\xef\x57\x3f\xd7\xa8\x1a\xec\xa2\x63\xd3\xd1" "\x61\xe0\x00\x10\x11\x5b\x47\xa3\x7b\x8e\x48\x87\x4c\x55\x3d\x1b\x5d" "\xbf\xca\x61\x3e\xd8\xff\x0f\x1f\xfb\x3f\xbb\xd1\xf5\xcf\x29\x00\x00" "\x00\x70\xf0\xaa\xaa\xaa\x7a\xe9\xe3\xbc\x8f\xa7\x73\xfe\xfd\xae\x3b" "\x05\x00\x4c\x45\x3e\xfe\xb7\xcf\x0b\xa8\xd5\x6a\x75\x31\xf5\xa7\x5b" "\x0b\x67\xa6\x3f\x6a\xf5\x01\xd6\x4d\xd5\x78\xb7\x9b\x45\x44\x6c\x34" "\xd7\xa9\x5f\x33\x18\x8e\x1f\x00\xe6\xcc\x46\x7c\xd6\x75\x17\xe8\x90" "\xfc\x8b\x36\x8c\x88\x63\x5d\x77\x02\x98\x69\xbd\xae\x3b\xc0\x81\xb8" "\x77\xff\xd6\x5a\x2f\xe5\xdb\x6b\x1e\x0f\x56\xb7\xda\xf3\xb5\x20\xdb" "\xf2\xdf\xe8\x6d\xae\x97\xd7\x1f\x37\x9d\xa4\x7d\x8d\xc9\xb4\x7e\xbe" "\xee\xc4\x20\x9e\xdb\xa1\x3f\xcf\x4f\xa9\x0f\xb3\x24\xe7\xdf\x6f\xe7" "\x7f\x79\xab\x3d\x0f\xf1\x7f\xd0\xf9\x4f\xcb\x4e\xf9\xd7\xdb\x79\xb4" "\x83\xfe\x74\x2d\xe7\x3f\x68\xe7\xdf\x72\x78\xf2\xef\x8f\xcd\xbf\x54" "\x39\xff\xe1\x9e\xf2\x1f\xc8\x1f\x00\x00\x00\x00\x00\x66\x58\xfe\xfb" "\xff\x51\xe7\x7f\xf3\x26\x03\x00\x00\x00\x00\x00\x00\xc0\xdc\xb9\x77" "\xff\xd6\x5a\xbe\xef\x35\x9f\xff\xff\xd2\x98\xc7\xf5\x9a\x73\xee\xff" "\x3c\x34\x72\xfe\xbd\x5d\xe7\xef\xfe\xdf\xc3\x24\xe7\xdf\x6f\xe7\xdf" "\xba\x20\x67\xd0\x98\xbf\xfb\xe6\xc3\xfc\x3f\xbd\x7f\x6b\xed\xa3\x9b" "\xff\xfe\x62\x9e\xce\x7c\xfe\x0b\x83\x51\xfd\xdc\x0b\xbd\xfe\x60\x98" "\xae\xf9\xa9\x16\xde\x89\xab\x71\x2d\xd6\xe3\xf4\x23\x8f\x1f\x6e\x6b" "\x3f\xf3\x48\xfb\xc2\xb6\xf6\xb3\x13\xda\xcf\x3d\xd2\x3e\xaa\xdb\x97" "\x73\xfb\xc9\x58\x8b\x5f\xc5\xb5\x78\xfb\x41\xfb\xe2\x84\x0b\xa3\x96" "\x26\xb4\x57\x13\xda\x73\xfe\x03\xfb\x7f\x91\x72\xfe\xc3\xc6\x57\x9d" "\xff\x4a\x6a\xef\xb5\xa6\xb5\xbb\x1f\xf6\x1f\xd9\xef\x9b\xd3\x71\xcf" "\x73\xe9\xef\xff\x79\xe9\xd1\xbd\x6b\xfa\xee\xc4\xe0\xc1\xb6\x35\xd5" "\xdb\x77\xa2\x83\xfe\x6c\xfe\x9f\x3c\x35\x8a\xdf\xdc\x58\xbf\x7e\xf2" "\x77\x57\x6e\xde\xbc\x7e\x26\xd2\x64\xdb\xd2\xb3\x91\x26\xfb\x2c\xe7" "\xbf\x90\xbe\x72\xfe\x2f\xbf\xb8\xd5\x9e\x7f\xef\x37\xf7\xd7\xbb\x1f" "\x8e\xf6\x9c\xff\xac\xb8\x13\xc3\x1d\xf3\x7f\xb1\x31\x5f\x6f\xef\x2b" "\x53\xee\x5b\x17\x72\xfe\xa3\xf4\x95\xf3\xcf\x47\xa0\xf1\xfb\xff\x3c" "\xe7\xbf\xf3\xfe\xff\x6a\x07\xfd\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x80\xc7\xa9\xaa\x6a\xf3\x16\xd1\x4b\x11\x71\x31\xdd\xff" "\xd3\xd5\xbd\x99\x00\xc0\x74\xe5\xe3\x7f\x95\xe4\xe5\x6a\xb5\x5a\xad" "\x56\xab\x0f\x5f\xdd\x54\x8d\xf7\x46\xb3\x88\x88\x7f\x34\xd7\xa9\x5f" "\x33\xfc\x7e\xdc\x37\x03\x00\x66\xd9\x7f\x23\xe2\x5f\x5d\x77\x82\xce" "\xc8\xbf\x60\xf9\xf3\xfe\xea\xe9\x97\xbb\xee\x0c\x30\x55\x37\xde\xff" "\xe0\x17\x57\xae\x5d\x5b\xbf\x7e\xa3\xeb\x9e\x00\x00\x00\x00\x00\x00" "\x00\x00\xff\xaf\x3c\xfe\xe7\x6a\x63\xfc\xe7\xcd\xeb\x80\x5a\xe3\x46" "\x6f\x1b\xff\xf5\xcd\x58\x9d\xdb\xf1\x3f\xfb\xa3\xc1\xe6\x58\xe7\x69" "\x83\x5e\x88\xc7\x8f\xff\x7d\x22\x1e\x3f\xfe\xf7\x70\xc2\xf3\x2d\x4c" "\x68\x1f\x4d\x68\x5f\x9c\xd0\xbe\x34\xa1\x7d\xec\x8d\x1e\x0d\x39\xff" "\x17\x52\xc6\x39\xff\xe3\x69\xc3\x4a\x1a\xff\xf5\xe5\x0e\xfa\xd3\xb5" "\x9c\xff\x89\x34\xd6\x73\xce\xff\xab\xad\xc7\x35\xf3\xaf\xfe\x36\xcf" "\xf9\xf7\xb7\xe5\x7f\xea\xe6\x7b\xbf\x3e\x75\xe3\xfd\x0f\x5e\xbb\xfa" "\xde\x95\x77\xd7\xdf\x5d\xff\xe5\x99\xd3\x17\xcf\x9f\xbb\x70\xfe\xdc" "\x85\x0b\xa7\xde\xb9\x7a\x6d\xfd\xf4\xd6\xbf\x1d\xf6\xf8\x60\xe5\xfc" "\xf3\xd8\xd7\xae\x03\x2d\x4b\xce\x3f\x67\x2e\xff\xb2\xe4\xfc\xbf\x92" "\x6a\xf9\x97\x25\xe7\xff\x52\xaa\xe5\x5f\x96\x9c\x7f\x7e\xbd\x27\xff" "\xb2\xe4\xfc\xf3\x7b\x1f\xf9\x97\x25\xe7\xff\x4a\xaa\xe5\x5f\x96\x9c" "\xff\xd7\x52\x2d\xff\xb2\xe4\xfc\x5f\x4d\xb5\xfc\xcb\x92\xf3\xff\x7a" "\xaa\xe5\x5f\x96\x9c\xff\x6b\xa9\x96\x7f\x59\x72\xfe\x27\x53\x2d\xff" "\xb2\xe4\xfc\x4f\xa5\x5a\xfe\x65\xc9\xf9\xe7\x33\x5c\xf2\x2f\x4b\xce" "\x3f\x5f\xd9\x20\xff\xb2\xe4\xfc\xcf\xa6\x5a\xfe\x65\xc9\xf9\x9f\x4b" "\xb5\xfc\xcb\x92\xf3\x3f\x9f\x6a\xf9\x97\x25\xe7\x7f\x21\xd5\xf2\x2f" "\x4b\xce\xff\x62\xaa\xe5\x5f\x96\x9c\xff\x37\x52\x2d\xff\xb2\xe4\xfc" "\xbf\x99\x6a\xf9\x97\x25\xe7\xff\x7a\xaa\xe5\x5f\x96\x9c\xff\xb7\x52" "\x2d\xff\xb2\xe4\xfc\xbf\x9d\x6a\xf9\x97\x25\xe7\xff\x9d\x54\xcb\xbf" "\x2c\x39\xff\xef\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2f\xd5\xf2\x2f\x4b\xce" "\xff\x8d\x54\xcb\xbf\x2c\x0f\x3f\xff\xdf\xcc\x9e\x67\x56\x66\xa3\x1b" "\x66\xcc\xec\xff\x4c\xd7\xbf\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x80\xb6\x69\x5c\x4e\xdc\xf5\x36\x02\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x3f" "\x76\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x03\x07\x02\x00\x00" "\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x85\xbd\x7b\x8b\x91\xab\xbe\xef\x00\x7e\xf6\x66" "\xaf\x0d\x01\x37\xdc\x89\x03\xb6\xb9\x19\x58\xd8\x5d\xdf\xc0\x21\x06" "\x93\x84\x94\x92\x5e\x28\x09\x69\xd3\x92\x1a\xc7\x5e\x1b\x27\xbe\xd5" "\xbb\x26\x80\x50\xd9\x14\xda\x12\x05\xa9\x48\xed\x03\x7d\x68\x9a\x44" "\x69\x14\xa9\xad\x40\x55\xa4\xa6\x12\x8d\x90\x1a\xa9\x7d\x6b\x9e\x1a" "\xf1\x12\xb5\x52\x1e\x5c\x09\x2a\x07\x25\x95\x52\x05\x36\x3a\x73\xfe" "\xff\xbf\x67\x66\x67\x67\xd6\x6b\xaf\xf7\xcc\x39\x9f\x0f\xb2\x7f\xde" "\x9d\x33\x33\xff\x39\x73\x66\x76\xbe\x8b\xbe\x33\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\xb3\x8d\x1f\x9d\xfa\xb3\x81\x2c\xcb\xf2\x3f\x8d\xbf\xd6" "\x65\xd9\xc5\xf9\xbf\xd7\x64\xbb\xf3\x2f\x67\x77\xac\xf4\x0a\x01\x00" "\x00\x80\x73\xf5\x6e\xe3\xef\xbf\xbf\x34\x7d\x63\xf7\x22\xce\xd4\xb4" "\xcd\xbf\x5d\xf7\x1f\xdf\x99\x9b\x9b\x9b\xcb\x3e\xf7\xce\xa9\xf7\xfe" "\x62\x6e\x2e\x9d\xb0\x21\xcb\x86\x56\x67\x59\xe3\xb4\xe8\xdf\x7f\xfe" "\xb3\xb9\xe6\x6d\x82\xe7\xb3\xd1\x81\xc1\xa6\xaf\x07\x7b\x5c\xfd\x50" "\x8f\xd3\x87\x7b\x9c\x3e\xd2\xe3\xf4\x55\x3d\x4e\x5f\xdd\xe3\xf4\xd1" "\x1e\xa7\xcf\xdb\x01\xf3\xac\x29\x7e\x1f\xd3\xb8\xb0\x1b\x1b\xff\x5c" "\x57\xec\xd2\xec\xf2\x6c\xa4\x71\xda\x8d\x1d\xce\xf5\xfc\xc0\xea\xc1" "\xc1\xf8\xbb\x9c\x86\x81\xc6\x79\xe6\x46\x0e\x64\x87\xb2\xc3\xd9\x54" "\x36\x31\xef\x3c\x03\x8d\xff\xb2\xec\xf5\x8d\xf9\x75\x3d\x98\xc5\xeb" "\x1a\x6c\xba\xae\xf5\x59\x96\x9d\xfe\xc9\xb3\xfb\xe2\x1a\x06\xc2\x3e" "\xbe\x31\x6b\xb9\xb2\x86\xe6\xfb\xee\xed\xfb\xb3\x0d\xef\xfc\xe4\xd9" "\x7d\xdf\x9a\x79\xeb\x9a\x4e\xb3\xe7\x6e\x98\xb7\xd2\x2c\xdb\xbc\x29" "\x5f\xe7\x0b\x59\x76\xe6\xd7\x55\xd9\x40\xb6\x3a\xed\x93\xb8\xce\xc1" "\xa6\x75\xae\xef\xb0\xce\xa1\x96\x75\x0e\x34\xce\x97\xff\xbb\x7d\x9d" "\xa7\x17\xb9\xce\x78\xbb\x47\xc3\x3a\x7f\xd0\x65\x9d\xeb\xc3\xf7\x9e" "\xba\x21\xcb\xb2\xd9\x6c\xc1\x6d\xda\x3d\x9f\x0d\x66\x6b\xdb\xae\x35" "\xed\xef\xd1\xe2\x88\xc8\x2f\x23\xbf\x2b\xdf\x9f\x0d\x9f\xd5\x71\xb2" "\x71\x11\xc7\x49\x7e\x9e\x1f\xdf\xd0\x7a\x9c\xb4\x1f\x93\x71\xff\x6f" "\x0c\xfb\x64\x78\x81\x35\x34\xdf\x1d\x6f\x7f\x69\xd5\xbc\xfd\xbe\xd4" "\xe3\x24\xbf\xd5\x65\x38\x56\xf3\xcb\x7e\x38\xbf\xd2\xd1\xd1\xe6\x5f" "\xad\xb6\x1c\xab\xf9\x36\xcf\xde\xb4\xf0\x31\xd0\xf1\xbe\xeb\x70\x0c" "\xa4\x63\xb9\xe9\x18\xd8\xd4\xeb\x18\x18\x5c\x35\xd4\x38\x06\x06\xcf" "\xac\x79\x53\xcb\x31\x30\x39\xef\x3c\x83\xd9\x40\xe3\xba\x4e\xdd\xd4" "\xfd\x18\x18\x9f\x39\x72\x7c\x7c\xfa\xe9\x67\xee\x38\x74\x64\xef\xc1" "\xa9\x83\x53\x47\x27\x27\x76\x6c\xdb\xba\x7d\xdb\xd6\xed\xdb\xc7\x0f" "\x1c\x3a\x3c\x35\x51\xfc\x7d\x76\xbb\xb4\x8f\xac\xcd\x06\xd3\x31\xb8" "\x29\x3c\xd7\xc4\x63\xf0\x96\xb6\x6d\x9b\x0f\xc9\xb9\xaf\x9f\xbf\xc7" "\xc1\x68\x49\x1e\x07\xf9\x6d\xff\xd4\xcd\xf9\x82\x2e\x1e\xcc\x16\x38" "\xc6\xf3\x6d\x5e\xd8\x7c\xee\x8f\x83\xf4\x73\xbf\xe9\x71\x30\xdc\xf4" "\x38\xe8\xf8\x9c\xda\xe1\x71\x30\xbc\x88\xc7\x41\xbe\xcd\xe9\xcd\x8b" "\xfb\x99\x39\xdc\xf4\xa7\xd3\x1a\x96\xeb\xb9\x70\x5d\xd3\x31\xb0\x92" "\x3f\x0f\xf3\xeb\x7c\xec\xd6\x85\x9f\x0b\xd7\x87\x75\xbd\x78\xdb\xd9" "\xfe\x3c\x1c\x9a\x77\x0c\xc4\x9b\x35\x10\x1e\x7b\xf9\x77\xd2\xeb\xbd" "\xd1\xbb\xc3\x7e\x99\x7f\x5c\x5c\x9b\x9f\x70\xd1\xaa\xec\xe4\xf4\xd4" "\x89\x3b\x9f\xda\x3b\x33\x73\x62\x32\x0b\xe3\x82\xb8\xac\xe9\xbe\x6a" "\x3f\x5e\xd6\x36\xdd\xa6\x6c\xde\xf1\x32\x78\xd6\xc7\xcb\xee\xbf\xfb" "\xc5\xcd\xd7\x76\xf8\xfe\xba\xb0\xaf\x46\x6f\xef\x7e\x5f\xe5\xdb\x6c" "\x1b\xeb\x7e\x5f\x35\x9e\xdd\x3b\xef\xcf\x96\xef\x6e\xc9\xc2\x38\xcf" "\x2e\xf4\xfe\xec\xf4\xd3\x2c\xdf\x9f\x29\x4b\x74\xd9\x9f\xf9\x36\x2f" "\xdc\x71\xee\xaf\x05\x53\x2e\x69\x7a\xfe\x1b\xe9\xf5\xfc\x37\x34\x32" "\x5c\x3c\xff\x0d\xa5\xbd\x31\xd2\xf2\xfc\x37\xff\xae\x19\x6a\xac\x2c" "\xcb\x4e\xdf\xb1\xb8\xe7\xbf\x91\xf0\xe7\x42\x3f\xff\x5d\x5e\x92\xe7" "\xbf\x7c\x5f\x3d\x76\x67\xf7\x63\x20\xdf\xe6\xc5\xf1\xb3\x3d\x06\x86" "\xbb\x3e\xff\xdd\x10\xe6\x40\x58\xcf\xad\x21\x31\x8c\x36\xe5\xfe\xf7" "\x1a\xa7\xcf\x16\x87\x69\xd3\x7d\xd9\xf3\xb8\x19\x1e\x1e\x09\xc7\xcd" "\x70\xbc\xc6\xd6\xe3\x66\xeb\xbc\xf3\xe4\x97\x96\x5f\xf7\xe6\x89\xa5" "\x1d\x37\x9b\x6f\x68\xbd\xaf\x5a\x5e\xb7\x54\xf0\xb8\xc9\xf7\xd5\x5f" "\x4e\x74\x3f\x6e\xf2\x6d\xde\x98\x3c\xf7\xe7\x8e\x35\xf1\x9f\x4d\xcf" "\x1d\xab\x7a\x1d\x03\x23\x43\xab\xf2\xf5\x8e\xa4\x83\xa0\x78\xbe\x9b" "\x5b\x13\x8f\x81\x3b\xb3\x7d\xd9\xb1\xec\x70\xb6\x3f\x9d\x27\xbf\x97" "\xf3\xeb\x1a\xdb\xb2\xb8\x63\x60\x55\xf8\x73\xa1\x9f\x3b\xae\x2e\xc9" "\x31\x90\xef\xab\x57\xb6\x74\x3f\x06\xf2\x6d\xbe\xbf\xf5\xfc\xbe\x76" "\xda\x1c\xbe\x93\xb6\x69\x7a\xed\xd4\xfe\xfb\x85\x85\x32\xff\xb5\xc3" "\x67\x2e\xaf\x7d\xb7\x9d\xef\xcc\x9f\xaf\xf3\x63\xdb\xba\xff\x6e\x28" "\xdf\xe6\xad\x6d\x67\x9b\x33\xba\xef\xa7\xdb\xc3\x77\x2e\xea\xb0\x9f" "\xda\x1f\x3f\x0b\x1d\xd3\xfb\xb3\x0b\xb3\x9f\xae\x0e\xeb\x3c\xbc\xbd" "\xfb\xef\xa6\xf2\x6d\x2e\xdf\xb1\xc8\xe3\x69\x77\x96\x65\x6f\x4e\xbe" "\xd9\xf8\x7d\x57\xf8\xfd\xee\x3f\x9e\xfc\xcf\xef\xb4\xfc\xde\xb7\xd3" "\xef\x94\xdf\x9c\x7c\xf3\xa1\xf1\x47\x7e\x78\x36\xeb\x07\x00\x60\xe9" "\xde\x6b\xfc\x3d\xbb\xaa\x78\xad\xd9\xf4\x7f\xac\x17\xf3\xff\xff\x01" "\x00\x00\x80\xbe\x10\x73\xff\x60\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x50\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x70\x98\x49" "\x4d\xf2\xff\x13\x77\xef\x7c\xf5\xdd\xe7\xb2\xf4\x6e\x80\x73\x41\x3c" "\x3d\xee\x86\x87\xef\x2d\xb6\x8b\x1d\xef\xd9\xf0\xf5\x86\xb9\x33\xf2" "\xef\x7f\xe4\x9b\x23\xaf\x7e\xf9\xb9\xc5\x5d\xf7\x60\x96\x65\xbf\x78" "\xe8\x03\x1d\xb7\x7f\xe2\xde\xb8\xae\xc2\xf1\xb8\xce\x0f\xb5\x7e\x7f" "\x9e\xab\xaf\x5f\xd4\xf5\x3f\xfe\xe8\x99\xed\x9a\xdf\x3f\xe1\xf4\xce" "\xe2\xf2\xe3\xed\x59\xec\x61\x10\xbb\xca\xaf\x8f\x6f\x69\x5c\xee\x86" "\xa7\x27\x1b\xf3\x8d\x87\xb2\xc6\x7c\x64\xf6\xc5\xe7\x8b\xcb\x2f\xbe" "\x8e\xdb\x9f\xda\x5a\x6c\xff\xd7\xe1\x4d\x4b\x76\x1f\x18\x68\x39\xff" "\xe6\xb0\x9e\x1b\xc3\xdc\x10\xde\x53\xe6\xe1\xdd\x67\xf6\x43\x3e\xe3" "\xf9\x5e\x5d\x7f\xdd\xbf\x5e\xf6\xe9\x33\xd7\x17\xcf\x37\xb0\xe9\x92" "\xc6\xcd\x7c\xe5\x8f\x8a\xcb\x8d\xef\x11\xf5\xf2\x65\xc5\xf6\xf1\x76" "\x2f\xb4\xfe\x7f\xf9\xca\xb7\x5f\xcd\xb7\x7f\xea\xa6\xce\xeb\x7f\x6e" "\xb0\xf3\xfa\x4f\x85\xcb\xfd\x71\x98\x3f\xdf\x55\x6c\xdf\xbc\xcf\xbf" "\xdc\xb4\xfe\x3f\x09\xeb\x8f\xd7\x17\xcf\x77\xe7\x37\xbe\xd7\x71\xfd" "\xaf\x5d\x55\x6c\xff\x5a\x38\x2e\xbe\x16\x66\xfb\xfa\xef\xff\xf3\x0f" "\xbe\xdb\xe9\xfe\x8a\xd7\xb3\xfb\x9e\xe2\x7c\xf1\xfa\x27\xfe\x6f\x5b" "\xe3\x7c\xf1\xf2\xe2\xe5\xb7\xaf\x7f\xf4\xb9\xc9\x96\xfd\xd1\x7e\xf9" "\x6f\xbc\x53\x5c\xce\xae\x27\x7f\x3a\xd4\xbc\x7d\xfc\x7e\xbc\x9e\xe8" "\xf1\x7b\x5a\x8f\xef\x81\x70\xff\xb6\xf4\xc8\xb3\x2c\xfb\xf6\x9f\x66" "\x2d\xfb\x39\xfb\x70\x71\xbe\x7f\x6e\x5b\x7f\xbc\xbc\xe3\xf7\x74\x5e" "\xff\xed\x6d\xeb\x3c\x3e\x70\x7d\xe3\xfc\x67\x6e\xcf\xba\x96\xdb\xf5" "\xd5\xbf\xdd\xd2\xf1\xf6\xc6\xf5\xec\xfe\x87\x75\x2d\xb7\xe7\xe5\x07" "\xc2\xfe\x7b\x67\xfc\xfb\xf9\xe5\x9e\x7a\x24\x1c\x8f\xe1\xf4\xff\xff" "\x41\x71\x79\xed\xef\x65\xfa\xda\x03\xad\xcf\x37\x71\xfb\xaf\xad\x2b" "\x1e\xb7\xf1\xf2\xc6\xdb\xd6\xff\x72\xdb\xfa\x67\xaf\xcf\xf7\x5d\xef" "\xf5\x3f\xf8\x4e\xb1\xfe\xd7\xee\x5b\xdd\xb2\xfe\xdd\x1f\x0f\xc7\xd3" "\x83\xc5\xec\xb5\xfe\x83\x7f\x73\x69\xcb\xf9\xbf\xfe\xad\xe2\xfe\x38" "\xf1\xc5\xb1\xa3\xc7\xa6\x4f\x1e\xda\xdf\xb4\x57\x9b\x1f\xc7\xab\x47" "\xd7\xac\xbd\xe8\xe2\xf7\x5d\x72\x69\x78\x2e\x6d\xff\x7a\xcf\xb1\x99" "\x27\xa6\x4e\x6c\x98\xd8\x30\x91\x65\x1b\xfa\xf0\x2d\x03\x97\x7b\xfd" "\xdf\x08\xf3\x7f\x8b\x31\x7b\xfe\xaf\xa1\xf0\xc3\x9f\x16\xc7\xdd\x4b" "\x9f\x28\x7e\x6e\xdd\xf2\xb3\xe2\xeb\x97\xc3\xf7\x1f\x0f\xf7\x67\xfc" "\xf9\xf8\xd5\xbf\x1a\x69\x39\x5e\xdb\xef\xf7\xd9\xfb\x8a\x79\xae\xeb" "\xbf\x2d\xac\x63\xb1\xae\xfa\xca\x7f\x5f\xbf\xa8\x0d\x4f\x7d\xf6\xf5" "\x93\xff\xf4\xc7\x6f\xb5\xbf\x2e\x88\xb7\xe7\xf8\x15\xa3\x8d\xdb\xf7" "\xca\xc6\x2b\x1b\xa7\x0d\xbc\x51\x9c\xde\xfe\x7c\xd5\xcb\x7f\x5d\xd1" "\xfa\xb8\xfe\xd1\xf0\x44\x63\x7e\x37\xec\xd7\xb9\xf0\xce\xcc\x9b\xae" "\x2c\xae\xaf\xfd\xf2\xe3\x7b\x93\xbc\xf4\xc9\xe2\xf1\x1b\x5f\xc9\xc5" "\xf3\x67\x6d\xef\x27\xb2\x6e\xa8\xf5\x76\x9c\xeb\xfa\x7f\x14\x5e\xc7" "\x7c\xef\xea\xd6\xe7\xbf\x78\x7c\x7c\xf7\xb9\xb6\x77\x73\x5e\x97\x0d" "\xe4\x4b\x98\x0d\xcf\x0f\xd9\x6c\x71\x7a\xdc\x2a\xee\xef\x97\x4e\x5f" "\xd9\xf1\xfa\xe2\xfb\xf0\x64\xb3\xd7\x9c\xcd\x32\x17\x34\xfd\xf4\xf4" "\xf8\xe1\x43\x47\x4f\x3e\x35\x3e\x33\x35\x3d\x33\x3e\xfd\xf4\x33\x7b" "\x8e\x1c\x3b\x79\x74\x66\x4f\xe3\xbd\x4b\xf7\x7c\xbe\xd7\xf9\xcf\x3c" "\xbe\xd7\x36\x1e\xdf\xfb\xa7\x76\x6c\xcb\x1a\x8f\xf6\x63\xc5\x58\x66" "\x2b\xbd\xfe\xe3\x8f\xee\xdb\x7f\xd7\xc4\xcd\xfb\xa7\x0e\xec\x3d\x79" "\x60\xe6\xd1\xe3\x53\x27\x0e\xee\x9b\x9e\xde\x37\xb5\x7f\xfa\xe6\xbd" "\x07\x0e\x4c\x7d\xb1\xd7\xf9\x0f\xed\xdf\x35\xb9\x65\xe7\xd6\xbb\xb6" "\x8c\x1d\x3c\xb4\x7f\xd7\xdd\x3b\x77\x6e\xdd\x39\x76\xe8\xe8\xb1\x7c" "\x19\xc5\xa2\x7a\xd8\x31\xf1\x85\xb1\xa3\x27\xf6\x34\xce\x32\xbd\x6b" "\xdb\xce\xc9\xed\xdb\xb7\x4d\x8c\x1d\x39\xb6\x7f\x6a\xd7\x5d\x13\x13" "\x63\x27\x7b\x9d\xbf\xf1\xb3\x69\x2c\x3f\xf7\x93\x63\x27\xa6\x0e\xef" "\x9d\x39\x74\x64\x6a\x6c\xfa\xd0\x33\x53\xbb\x26\x77\xee\xd8\xb1\xa5" "\xe7\xbb\x3f\x1e\x39\x7e\x60\x7a\xc3\xf8\x89\x93\x47\xc7\x4f\x4e\x4f" "\x9d\x18\x2f\x6e\xcb\x86\x99\xc6\xb7\xf3\x9f\x7d\xbd\xce\x4f\x3d\x4c" "\x1f\x0b\xcf\x77\x6d\x06\xc2\xab\xf3\xcf\xdc\xbe\x23\xbd\x3f\x6e\xee" "\x9b\x5f\x5a\xf0\xa2\x8a\x4d\x5a\x5f\x9e\x66\x6f\x87\xf7\x82\x8a\x3f" "\xdf\x7a\x7d\x1d\x73\xff\x48\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41" "\xcc\xfd\xe1\x8d\xff\xcf\x9c\x20\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf" "\x3a\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x34\xcc\xa4\x26\xf9" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x39\xe9\xff\xeb" "\xff\x77\xa3\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\xb7\xb2\xf5" "\xff\x63\xee\x5f\x93\x65\xb5\xcc\xff\x00\x00\x00\x50\x07\x31\xf7\xaf" "\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x28\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\xff\xe2\x30\x93\x7a\xe4\xff\x91\xf6\x7f\xea" "\xff\xeb\xff\xeb\xff\x37\xf7\xff\xe3\xb6\xfa\xff\x99\xfe\xbf\xfe\xff" "\x12\xe9\xff\xeb\xff\x77\xa3\xff\xaf\xff\xdf\xcf\xeb\x2f\x61\xff\x7f" "\x8d\xfe\x3f\x65\x53\xb6\xfe\x7f\xcc\xfd\xef\x0b\x33\xa9\x47\xfe\x07" "\x00\x00\x80\x5a\x88\xb9\xff\x92\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\x4b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xd7\x85\x99" "\xd4\x24\xff\xfb\xfc\x7f\xfd\x7f\xfd\x7f\x9f\xff\xaf\xff\xaf\xff\xbf" "\x9c\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\xef\xe7\xf5\x97\xb0\xff\xef" "\xf3\xff\x29\x9d\xb2\xf5\xff\x63\xee\xff\x95\x30\x93\x9a\xe4\x7f\x00" "\x00\x00\xa8\x83\x98\xfb\xdf\x1f\x66\x22\xff\x03\x00\x00\x40\x65\xc4" "\xdc\x7f\x59\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xe5\x61\x26" "\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xcb\x49" "\xff\xbf\x0f\xfa\xff\x9d\xba\x96\xfa\xff\x8b\xa2\xff\xaf\xff\xaf\xff" "\xaf\xff\x4f\x77\x65\xeb\xff\xc7\xdc\x7f\x45\x98\x49\x4d\xf2\x3f\x00" "\x00\x00\xd4\x41\xcc\xfd\x57\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\x5f\x15\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x75\x98\x49" "\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x72\xd2" "\xff\xef\x83\xfe\x7f\x27\xfa\xff\x8b\xa2\xff\xaf\xff\xaf\xff\xaf\xff" "\x4f\x77\x65\xeb\xff\xc7\xdc\x7f\x4d\x98\x49\x4d\xf2\x3f\x00\x00\x00" "\xd4\x41\xcc\xfd\xd7\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f" "\x20\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x7d\x98\x49\x4d\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xb5\xfa\xff\x83\xfa\xff\xfa\xff\x25\xd3" "\x5f\xfd\xff\xc1\x05\x4f\xd1\xff\x2f\xe8\xff\xb7\xd2\xff\xd7\xff\xd7" "\xff\xd7\xff\xa7\xbb\xb2\xf5\xff\x63\xee\xff\x60\x98\x49\x4d\xf2\x3f" "\x00\x00\x00\xd4\x41\xcc\xfd\xd7\x85\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\x5f\x1f\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x21\xcc" "\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\x5a\xfd\x7f\x9f\xff\xaf\xff" "\x5f\x36\xfd\xd5\xff\x5f\x98\xfe\x7f\x41\xff\xbf\x95\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\x3f\xdd\x95\xad\xff\x1f\x73\xff\xc6\x30\x93\x9a\xe4\x7f" "\x00\x00\x00\xa8\x83\x98\xfb\x37\x85\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\xdf\x10\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x63\x98" "\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x72" "\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\xbf\x9f\xd7\xaf\xff\xbf\xb8\xfe" "\xff\xaa\x5e\x17\x44\xa5\x95\xad\xff\x1f\x73\xff\x4d\x61\x26\x35\xc9" "\xff\x00\x00\x00\x50\x07\x31\xf7\xdf\x1c\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x7f\x4b\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xe6" "\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\xe5\xa4\xff\xbf\xe8\xfe\xff\x9a\xa5\xac\x4b\xff\xbf\xa0\xff\xbf\x34" "\x2b\xdd\x9f\xef\xf7\xf5\xeb\xff\xfb\xfc\x7f\x7a\x2b\x5b\xff\x3f\xe6" "\xfe\x5b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xbf\x2d\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xf6\x30\x13\xf9\x1f\x00\x00" "\x00\x2a\x23\xe6\xfe\xb1\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\xe5\x54\xd5\xfe\x7f\x7a\x1e\xf5\xf9\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x2c\xa8\x6c\xfd\xff\x98\xfb\xef" "\x08\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xce\x30\x13\xf9" "\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf1\x30\x13\xf9\x1f\x00\x00\x00\x2a" "\x23\xe6\xfe\x89\x30\x93\x9a\xe4\xff\xd4\xff\xff\x1f\xfd\xff\x4c\xff" "\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xff\xbc\xab\x6a\xff\x7f\x19\x3e\xff" "\x7f\x49\xeb\xd7\xff\x2f\xe8\xff\x2f\xcd\x4a\xf7\xe7\xfb\x7d\xfd\xfa" "\xff\xfa\xff\xf4\x56\xb6\xfe\x7f\xcc\xfd\x93\x61\x26\x35\xc9\xff\x00" "\x00\x00\x50\x07\x31\xf7\x6f\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x2d\xcc\xa4" "\x26\xf9\xdf\xe7\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x2f\x27" "\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\xb4" "\x1a\xec\xf0\xbd\xb2\xf5\xff\x63\xee\xdf\x1e\x66\x52\x93\xfc\x0f\x00" "\x00\x00\x75\x10\x73\xff\x8e\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6" "\xfe\xbb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xef\x0e\x33\xa9" "\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\x6f\xff\xbf\xf5\xfa\xf5" "\xff\xf5\xff\x3b\xd1\xff\xd7\xff\xcf\xf4\xff\x97\x6c\xa5\xfb\xf3\xfd" "\xbe\x7e\xfd\x7f\xfd\x7f\x7a\x3b\xbf\xfd\xff\x4b\xcf\xb9\xff\x1f\x73" "\xff\xce\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f\x14\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x4f\x98\x89\xfc\x0f\x00\x00" "\x00\x7d\xa5\xd3\xe7\x10\x46\x31\xf7\x7f\x38\xcc\xa4\x26\xf9\x5f\xff" "\xbf\xea\xfd\xff\xb9\xd5\xfa\xff\xfa\xff\xfd\xdb\xff\x6f\xdd\x9f\xfa" "\xff\xfa\xff\x9d\xe8\xff\xeb\xff\x67\xfa\xff\x4b\xb6\xd2\xfd\xf9\x7e" "\x5f\xbf\xfe\xbf\xfe\x3f\xbd\x9d\xdf\xfe\xff\xbc\x97\xa7\x67\xdd\xff" "\x8f\xb9\x7f\x57\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xf7" "\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x17\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\xbf\x3b\xcc\xa4\x26\xf9\x5f\xff\xbf\xea\xfd" "\xff\xf2\x7d\xfe\xff\x40\xa6\xff\xaf\xff\x5f\xd0\xff\xd7\xff\x3f\x1f" "\xf4\xff\xf5\xff\x33\xfd\xff\x25\x5b\x6a\x7f\x3e\xbc\x6c\xd1\xff\x2f" "\x51\xff\x3f\x3f\x86\xf4\xff\x29\xa3\xb2\xf5\xff\x63\xee\xbf\x3f\xcc" "\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x8f\x84\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\x7f\x34\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\x63\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\x3e\xff\x5f\xff\x5f" "\xff\x5f\xff\x7f\x39\xe9\xff\xeb\xff\x77\xa3\xff\xdf\x9f\xfd\xff\x48" "\xff\xbf\x3c\xfd\x7f\x9f\xff\x4f\x59\x95\xad\xff\x1f\x73\xff\x03\x61" "\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x7f\x3c\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\xff\x57\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\x1f\x0c\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\x5f\x4e\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\xf7\xf3\xfa" "\xf5\xff\xf5\xff\xe9\xad\x6c\xfd\xff\x98\xfb\x7f\x2d\xcc\xa4\x26\xf9" "\x1f\x00\x00\x00\xea\x20\xe6\xfe\x87\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\x3f\x11\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xeb" "\x61\x26\x35\xc9\xff\xfa\xff\x17\xa6\xff\x3f\x98\x2e\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x5f\xff\xff\x7c\xd2\xff\xd7\xff\xcf\xf4\xff\x97\x6c" "\xa5\xfb\xf3\xfd\xbe\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff\x3f\xe6\xfe" "\xdf\x08\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x37\xc3\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x2b\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\xe1\x30\x93\x9a\xe4\x7f\xfd\x7f\x9f\xff\xaf\xff" "\xaf\xff\x5f\xda\xfe\xff\x70\xeb\xfe\xd4\xff\xd7\xff\xef\x44\xff\x5f" "\xff\x3f\xd3\xff\x5f\xb2\x95\xee\xcf\xf7\xfb\xfa\xf5\xff\xf5\xff\xe9" "\xad\x6c\xfd\xff\x98\xfb\x7f\x3b\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea" "\x20\xe6\xfe\x47\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x3f\x19" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xa9\x30\x93\x9a\xe4\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xd2\xf6\xff\xdb\xf6\xa7\xfe\xbf\xfe" "\x7f\x27\xfa\xff\xfa\xff\x99\xfe\xff\x92\xad\x74\x7f\xbe\xdf\xd7\xaf" "\xff\xaf\xff\x4f\x6f\x65\xeb\xff\xc7\xdc\xff\x68\x98\x49\x4d\xf2\x3f" "\x00\x00\x00\xd4\x41\xcc\xfd\x9f\x0e\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\xff\x9d\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xdf\x0d" "\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f" "\x4e\xfa\xff\xf3\xfb\xff\xf9\x73\xd8\x4a\xf6\xff\x57\x2d\x66\x43\xfd" "\xff\x45\xd1\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xbb\xb2\xf5\xff\x63\xee" "\xff\x4c\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xbf\x17\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xfb\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x8f\x85\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\x2f\x27\xfd\x7f\x9f\xff\xdf\x8d\xfe\xbf\xfe" "\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\xde\xca\xd6\xff\x8f\xb9\xff\xb3\x61" "\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xff\x41\x98\x89\xfc\x0f" "\x00\x00\x00\x95\x11\x73\xff\x9e\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\xc7\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x97\x93\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\xfd\xbc\x7e" "\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff\x3f\xe6\xfe\xbd\x61\x26\x35\xc9\xff" "\x00\x00\x00\x50\x07\x31\xf7\x7f\x2e\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xfe\x30" "\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe5" "\xa4\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f" "\xde\xca\xd6\xff\x8f\xb9\x7f\x2a\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea" "\x20\xe6\xfe\x03\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x07\xc3" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x9f\x08\x33\xa9\x49\xfe\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x4e\xfa\xff\xfa\xff" "\xdd\xe8\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\x6c\xfd\xff" "\x98\xfb\x0f\x85\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xf9" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x2f\x84\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\x1f\x0e\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7" "\xff\xaf\x60\xff\x7f\x58\xff\x3f\xd3\xff\x2f\x0d\xfd\x7f\xfd\xff\x6e" "\xf4\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\xf4\x56\x8e\xfe\xff\x6c" "\xfa\x3a\xe6\xfe\x23\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7" "\x1f\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x16\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\x7f\x3c\xcc\xa4\x26\xf9\x5f\xff\x5f\xff" "\x5f\xff\xbf\x82\xfd\x7f\x9f\xff\xdf\xa0\xff\x5f\x0e\xfa\xff\xfa\xff" "\xdd\xe8\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\x1c\xfd\xff" "\x33\x5f\xc7\xdc\xff\x87\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31" "\xf7\x9f\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x9f\x0e\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\x9f\x09\x33\xa9\x49\xfe\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x4e\xfa\xff\xfa\xff\xdd\xe8" "\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\x6c\xfd\xff\x98\xfb" "\x4f\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\x64\x98\x89" "\xfc\x0f\x00\x00\xfc\x92\xbd\xfb\xcc\xd1\xe4\xac\xfa\x38\xfc\xcc\x6b" "\xbd\x18\x84\x10\x6b\x61\x05\x2c\x81\x35\xf0\x85\x2d\x90\x73\x34\x39" "\xe7\x9c\x93\xc9\x39\xe7\x9c\x73\xce\x19\x0c\x26\x83\x41\x32\xc2\x7d" "\xce\x19\xf0\xf4\x54\xf5\x8c\x9f\xa2\xef\xba\xcf\x75\x7d\x39\xb2\x31" "\xcc\xad\x69\x69\xd0\x5f\xd6\x4f\x05\x4c\x23\x77\xff\x3d\xe3\x16\xfb" "\x1f\x00\x00\x00\xa6\x91\xbb\xff\x5e\x71\x4b\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\x87\xe9\xff\x4f\x3a\x3f\xfd\xbf\xfe\x5f\xff\x7f\x45\xf4\xff" "\xfa\xff\x83\xfe\xff\xaa\x9d\x77\x3f\xbf\xf7\xf7\xeb\xff\xf5\xff\xac" "\x1b\xad\xff\xcf\xdd\x7f\xef\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72" "\xf7\xdf\x27\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xef\x1b\xb7\xd8" "\xff\x00\x00\x00\x30\x8d\xdc\xfd\xf7\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe" "\x5f\xff\x3f\x4c\xff\xef\xfb\xff\xf9\x73\x9d\xb1\xff\xbf\x70\xf1\x97" "\xd5\xff\x1f\x97\xfe\x5f\xff\x7f\xd0\xff\x5f\xb5\xf3\xee\xe7\xf7\xfe" "\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xef\x1f\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x07\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23" "\x77\xff\x03\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x41\x71\x4b" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xdf\xff\xdf\x92\xfe" "\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf3\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6" "\xff\xe7\xee\x7f\x70\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f" "\x12\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x0f\x8d\x5b\xec\x7f\x00" "\x00\x00\x98\x46\xee\xfe\x87\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\x5b\xd2\xff\xeb\xff\x97\xe8\xff\xf5\xff\x7b" "\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x0f\x8f\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\x23\xe2\x16\xfb\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\x91\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xa8\xb8" "\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x4b\xfa" "\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcf\xef\x9f\xb7\xff\xbf\x5e\xff\xcf" "\xd1\x6c\xde\xff\xdf\xed\xba\x5b\xee\x59\xfb\xff\xdc\xfd\xd7\xc5\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xd1\x71\x8b\xfd\x0f\x00\x00" "\x00\xd3\xc8\xdd\xff\x98\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f" "\x6c\xdc\xd2\x64\xff\x9f\xd2\xff\x5f\x73\xd0\xff\x37\xed\xff\x6f\xbe" "\xa0\xff\xd7\xff\x8f\xd9\xff\xdf\x14\x7f\xca\xe8\xff\xf5\xff\x97\xd2" "\xff\xeb\xff\x0f\xfa\xff\xab\x76\xf9\x7e\xfe\x6c\xbf\x13\xfa\xff\x59" "\xfb\x7f\xdf\xff\xe7\x78\x36\xef\xff\x57\x7a\xff\x5b\xff\x75\xee\xfe" "\xc7\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xf1\x71\x8b\xfd" "\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x84\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\x7f\x62\xdc\xd2\x64\xff\xfb\xfe\xbf\xfe\xff\x98\xdf\xff\xcf" "\xff\x5d\xfd\xff\x09\xfd\xbf\xef\xff\xeb\xff\xf5\xff\xfa\xff\x65\x1b" "\xf6\xff\xf7\xc8\xdf\xcc\x33\xf4\xff\xb7\x3b\xe8\xff\x7d\xff\xff\xc8" "\xfd\xff\x5d\xcf\xf0\x7e\xfd\x3f\x1d\x8c\xd6\xff\xe7\xee\x7f\x52\xdc" "\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x9f\x1c\xb7\xd8\xff\x00\x00" "\x00\x30\x8d\xdc\xfd\x4f\x89\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe" "\xa7\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\x7f\xcc\xfe\xbf\xcd\xf7\xff\xef" "\x70\xf2\xdf\xd7\xff\xff\xf7\x7b\xf4\xff\xfa\xff\xd3\xe8\xff\xf5\xff" "\x4b\x7c\xff\x5f\xff\xbf\xe7\xf7\xfb\xfe\xbf\xfe\x9f\x75\xa3\xf5\xff" "\xb9\xfb\x9f\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xa7\xc7" "\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x33\xe2\x16\xfb\x1f\x00\x00" "\x00\xa6\x91\xbb\xff\x99\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x7d" "\xff\xff\x36\xf5\xff\xd7\xe8\xff\xf5\xff\xcb\xf4\xff\xfa\xff\x25\xfa" "\x7f\xfd\xff\x9e\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\xb3" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xec\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\x7f\x4e\xdc\x62\xff\x03\x00\x00\xc0\x34\x72" "\xf7\x3f\x37\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xdf\xf7\xff" "\xf5\xff\x5b\xd2\xff\x4f\xd7\xff\x5f\xd0\xff\x5f\xa4\xff\xd7\xff\xeb" "\xff\xf5\xff\x2c\x1b\xad\xff\xcf\xdd\xff\xbc\xb8\xa5\xc9\xfe\x07\x00" "\x00\x80\x0e\x72\xf7\x3f\x3f\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\x5f\x10\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x8c\x5b\x9a\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xa4\xff\x9f\xae" "\xff\xf7\xfd\xff\xff\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x2c\x1b\xad\xff" "\xcf\xdd\xff\xa2\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x38" "\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x12\xb7\xd8\xff\x00\x00" "\x00\x30\x8d\xdc\xfd\x2f\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xb7\xa4\xff\xd7\xff\x2f\x99\xba\xff\xbf\xf5\x1f" "\x6e\x87\xb3\xf7\xff\xb7\xbf\xcc\xaf\xa7\xff\x1f\xeb\xfd\xc7\xe9\xff" "\xf3\xa7\xaf\xff\x67\x4e\xa3\xf5\xff\xb9\xfb\x5f\x16\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x97\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23" "\x77\xff\x2b\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x95\x71\x4b" "\x93\xfd\x7f\xb9\xfe\xff\xc6\x3b\x9e\xfc\xe7\xfa\xff\xb3\xd1\xff\x9f" "\xfe\x7e\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x97\x4c\xdd\xff" "\xfb\xfe\xff\x51\xde\x38\xf2\xfb\x7d\xff\x5f\xff\xcf\xba\xd1\xfa\xff" "\xdc\xfd\xaf\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xab\xe3" "\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x35\x71\x8b\xfd\x0f\x00\x00" "\x00\xd3\xc8\xdd\xff\xda\xb8\xa5\xc9\xfe\xf7\xfd\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\x6f\x49\xff\xaf\xff\x5f\xb2\xa3\xfe\xff\xda\xd3" "\xfe\xa6\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x6c\xb4\xfe\x3f\x77\xff\xf5" "\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x5d\xdc\x62\xff\x03" "\x00\x00\xc0\x34\x72\xf7\xbf\x3e\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\xdf\x10\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\xb9\xf7\xff\xff\xa7\xff" "\x4f\xfa\xff\xf8\xb9\xea\xff\xf5\xff\x57\x40\xff\xaf\xff\x3f\xf8\xfe" "\xff\x55\x3b\xef\x7e\x7e\xef\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f" "\xbb\xff\x8d\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x53\xdc" "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x39\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\xdf\x12\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\xb9\xf7\xff" "\xbe\xff\x5f\xf4\xff\xf1\x73\xd5\xff\xeb\xff\xaf\x80\xfe\x5f\xff\x7f" "\xd0\xff\x5f\xb5\xf3\xee\xe7\xf7\xfe\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5" "\xff\xb9\xfb\xdf\x1a\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xb7" "\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xdb\xe3\x16\xfb\x1f\x00" "\x00\x00\xa6\x91\xbb\xff\x1d\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\x96\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e" "\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x3b\xe3\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xae\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\x7f\x77\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x27\x6e" "\x69\xb2\xff\xf5\xff\x7b\xef\xff\xef\x7e\x43\xbc\x40\xff\xaf\xff\xd7" "\xff\xeb\xff\x87\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xf7\xfc\x7e\xfd" "\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xdf\x1b\xb7\x34\xd9\xff\x00\x00" "\x00\xd0\x41\xee\xfe\xf7\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff" "\xfb\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x03\x71\x4b\x93\xfd" "\xdf\xa3\xff\xff\xff\x4b\xfe\xb1\x79\xfa\x7f\xdf\xff\xd7\xff\xeb\xff" "\xf5\xff\x63\xd3\xff\xeb\xff\x97\xe8\xff\xf5\xff\x7b\x7e\xbf\xfe\x5f" "\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x1f\x8c\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x87\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xc3" "\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x91\xb8\xa5\xc9\xfe\xef" "\xd1\xff\x5f\x4a\xff\x7f\xe2\xe8\xfd\xff\xcd\x77\xd6\xff\xeb\xff\x8b" "\xfe\x5f\xff\x7f\xd0\xff\xeb\xff\x57\xe8\xff\xf5\xff\x7b\x7e\xff\xd4" "\xfd\xff\x85\x83\xfe\x9f\xa3\x18\xad\xff\xcf\xdd\xff\xd1\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x2c\x6e\xb1\xff\x01\x00\x00\x60" "\x06\xb7\x8c\xfd\xdc\xfd\x1f\xbf\xf8\xb7\x4e\xd8\xff\x00\x00\x00\x30" "\x8d\xdc\xfd\x9f\x88\x1b\xee\x72\xa7\xf3\x7b\xd2\xff\x94\xfe\x5f\xff" "\xef\xfb\xff\xfa\x7f\xfd\xbf\xfe\x7f\x4b\xfa\x7f\xfd\xff\x12\xfd\xbf" "\xfe\x7f\xcf\xef\x9f\xba\xff\xf7\xfd\x7f\x8e\x64\xb4\xfe\x3f\x77\xff" "\x27\xe3\x16\xff\xfe\x1f\x00\x00\x00\xa6\x91\xbb\xff\x53\x71\x8b\xfd" "\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xe9\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\xff\x4c\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xbf\x25\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe7\xf7\xeb\xff" "\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xd9\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\x0e\x72\xf7\x7f\x2e\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x3f" "\x1f\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x5f\x88\x5b\x9a\xec\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xa4\xff\xd7\xff\x2f" "\xd1\xff\xeb\xff\xf7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb" "\xbf\x18\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x2f\xc5\x2d\xf6" "\x3f\x00\x00\x00\x4c\x23\x77\xff\x97\xe3\x16\xfb\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\x2b\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\x96\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x9e\xdf\xaf\xff" "\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x57\xe3\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\xb5\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff" "\x7a\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x23\x6e\x69\xb2\xff" "\x67\xee\xff\x97\xfe\x31\xfd\xff\x09\xfd\xbf\xfe\xff\xa0\xff\xd7\xff" "\x6f\x4c\xff\xaf\xff\x5f\xa2\xff\xd7\xff\xef\xf9\xfd\xfa\x7f\xfd\x3f" "\xeb\x46\xeb\xff\x73\xf7\x7f\x33\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\xdf\x8a\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x6f\xc7\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x77\xe2\x96\x26\xfb\x7f\xe6\xfe" "\x7f\x89\xfe\xff\x84\xfe\x5f\xff\x7f\xd0\xff\xeb\xff\x37\xa6\xff\xd7" "\xff\x2f\xd1\xff\xeb\xff\xf7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff" "\xb9\xfb\xbf\x1b\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xef\xc5" "\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xf7\xe3\x16\xfb\x1f\x00\x00" "\x00\xa6\x91\xbb\xff\x07\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\x0d\xfb\xff\xfc\x0b\xfd\xbf\xfe\x5f\xff\x7f\x2a\xfd\xbf" "\xfe\x7f\xcf\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\x87\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x51\xdc\x62\xff\x03\x00" "\x00\xc0\x34\x72\xf7\xff\x38\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\x7f\x12\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xf7\xfd" "\xff\x2d\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x3d\xbf\x5f\xff\xaf\xff" "\x67\xdd\x68\xfd\x7f\xee\xfe\x9f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x67\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xf3\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x45\xdc\xd2\x64\xff\xdf\xa6" "\xfe\xff\x5a\xfd\x7f\xd2\xff\x9f\xfe\x7e\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x6f\xdb\xff\xff\xfb\xff\x56\xf5\xff\xab\xf4\xff\xfa\xff\x3d\xbf\x5f" "\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x5f\xc6\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x57\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd" "\xff\xeb\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x4d\xdc\xd2\x64" "\xff\xfb\xfe\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xd4\xb6\xff" "\xf7\xfd\xff\x33\xd1\xff\xeb\xff\xf7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3" "\xf5\xff\xb9\xfb\x6f\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\x6f\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x77\x71\x8b\xfd\x0f" "\x00\x00\x00\xd3\xc8\xdd\x7f\x63\xdc\xd2\x64\xff\xeb\xff\xf5\xff\x53" "\xf6\xff\xd7\xea\xff\xf5\xff\xfa\xff\x51\xe8\xff\xf5\xff\x4b\xf4\xff" "\xfa\xff\x3d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\xdf\xc7" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x0f\x71\x8b\xfd\x0f\x00" "\x00\x00\xd3\xc8\xdd\xff\xc7\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee" "\xff\x53\xdc\xd2\x64\xff\xeb\xff\xf5\xff\x53\xf6\xff\xbe\xff\xaf\xff" "\xd7\xff\x0f\x43\xff\xaf\xff\x5f\xa2\xff\xd7\xff\xef\xf9\xfd\xfa\x7f" "\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\xff\x39\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\x7f\x89\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xbf" "\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xdf\xe2\x96\x26\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d\xe9\xff\xf5\xff\x4b" "\xf4\xff\xfa\xff\x3d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe" "\xbf\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xa6\xb8\xc5\xfe" "\x07\x00\x00\x80\x69\xe4\xee\xff\x47\xdc\x62\xff\x03\x00\x00\xc0\x34" "\x72\xf7\xff\x33\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xdf\x92\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf3\xfb\xf5\xff" "\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x57\x00\x00\x00\xff\xff\x6f\x23" "\x24\x95", 24295); syz_mount_image(/*fs=*/0x200000000140, /*dir=*/0x200000000080, /*flags=MS_REC*/ 0x4000, /*opts=*/0x2000000000c0, /*chdir=*/1, /*size=*/0x5ee7, /*img=*/0x200000006580); break; case 1: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0xc4042 (4 bytes) // mode: open_mode = 0x1ff (2 bytes) // ] // returns fd memcpy((void*)0x200000000300, "./file1\000", 8); res = syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000300ul, /*flags=O_NOATIME|O_DIRECT|O_CREAT|O_CLOEXEC|0x2*/ 0xc4042, /*mode=S_IXOTH|S_IWOTH|S_IROTH|S_IXGRP|S_IWGRP|S_IRGRP|S_IXUSR|S_IWUSR|0x100*/ 0x1ff); if (res != -1) r[0] = res; break; case 2: // openat$nullb arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 6e 75 6c 6c 62 30 00} (length 0xc) // } // flags: open_flags = 0x0 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_block memcpy((void*)0x200000000040, "/dev/nullb0\000", 12); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000040ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[1] = res; break; case 3: // sendfile arguments: [ // fdout: fd (resource) // fdin: fd (resource) // off: nil // count: intptr = 0xfffe82 (8 bytes) // ] syscall(__NR_sendfile, /*fdout=*/r[0], /*fdin=*/r[1], /*off=*/0ul, /*count=*/0xfffe82ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }