// https://syzkaller.appspot.com/bug?id=6cc491be132cfdce3fd4c75357d4606bed322b31 // 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"); } 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 < 6; 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[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x20000580, "./file0\000", 8); *(uint8_t*)0x20002ac0 = 0; memcpy( (void*)0x2000ee40, "\x78\x9c\xec\xdd\xcf\x6f\x1c\x67\xfd\x07\xf0\xcf\xec\x2f\xff\xc8\xb7" "\xa9\xd5\x43\xd5\x6f\x84\x90\x9b\x96\x1f\xa5\x34\x89\x93\x12\x02\x05" "\xda\x1e\xe0\xc0\xa5\x07\x94\x2b\x4a\xe4\xba\x55\x44\x0a\x28\x09\x28" "\xad\x2c\xe2\xca\x42\xe2\xc0\x89\xbf\x00\x84\xc4\x11\x21\x8e\x88\x03" "\x7f\x40\x0f\x5c\xb9\x71\xe2\x44\x24\x1b\x09\xd4\x13\x83\xc6\x7e\x9e" "\x78\xbc\xd9\xed\x3a\xb5\xbd\xb3\xf6\xbc\x5e\x92\x33\xf3\x99\x67\x76" "\xfd\x8c\xdf\x3b\xfb\x23\x33\xb3\x4f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf1\xdd\xef\x7c\x6f\xa5\x88\x88\x1b\x3f" "\x4d\x0b\x96\x22\xfe\x2f\xba\x11\x9d\x88\x85\xaa\x5e\x8e\x88\x85\xe5" "\xa5\xbc\x7e\x2f\x22\x9e\x8b\x9d\xe6\x78\x36\x22\xfa\x73\x11\xd5\xed" "\x77\xfe\x79\x3a\xe2\xd5\x88\xf8\xe8\x6c\xc4\xd6\xf6\xfa\x6a\xb5\xf8" "\xf2\x01\xfb\xf1\xed\x3f\xfc\xed\xb7\xdf\x3f\xf3\xd6\x5f\x7f\xdf\xbf" "\xf8\x9f\x3f\xde\xeb\xbe\x36\x6e\xbd\xfb\xf7\x7f\xf9\xef\x3f\x3d\x38" "\xdc\x36\x03\x00\x00\x40\xdb\x94\x65\x59\x16\xe9\x63\xfe\xb9\xf4\xf9" "\xbe\xd3\x74\xa7\x00\x80\xa9\xc8\xaf\xff\x65\x92\x97\x9f\xfa\xfa\x57" "\xff\x78\xeb\xcf\xb3\xd4\x1f\xb5\x5a\xad\x56\xab\xa7\x50\xd7\x95\xa3" "\x3d\xa8\x17\x11\xb1\x51\xbf\x4d\xf5\x9e\xc1\xe1\x78\x00\x38\x61\x36" "\xe2\xe3\xa6\xbb\x40\x83\xe4\xdf\x6a\xbd\x88\x38\xd3\x74\x27\x80\x99" "\x56\x34\xdd\x01\x8e\xc5\xd6\xf6\xfa\x6a\x91\xf2\x2d\xea\xaf\x07\xcb" "\xbb\xed\xf9\x5c\x90\x7d\xf9\x6f\x14\x8f\xae\xef\x18\x37\x9d\x64\xf8" "\x1c\x93\x69\x3d\xbe\x36\xa3\x1b\xcf\x8c\xe9\xcf\xc2\x94\xfa\x30\x4b" "\x72\xfe\x9d\xe1\xfc\x6f\xec\xb6\x0f\xd2\x7a\xc7\x9d\xff\xb4\x8c\xcb" "\x7f\xb0\x7b\xe9\x53\xeb\xe4\xfc\xbb\xc3\xf9\x0f\x39\x3d\xf9\x77\x46" "\xe6\xdf\x56\x39\xff\xde\x13\xe5\xdf\x95\x3f\x00\x00\x00\x00\x00\xcc" "\xb0\xfc\xff\xff\x4b\x0d\x1f\xff\x9d\x3b\xfc\xa6\x1c\xc8\x27\x1d\xff" "\x5d\x9e\x52\x1f\x00\x00\x00\x00\x00\x00\x00\xe0\xa8\x1d\x76\xfc\xbf" "\x47\x8c\xff\x07\x00\x00\x00\x33\xab\xfa\xac\x5e\xf9\xf5\xd9\xbd\x65" "\xe3\xbe\x8b\xad\x5a\x7e\xbd\x88\x78\x6a\x68\x7d\xa0\x65\xd2\xc5\x32" "\x8b\x4d\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xda\xa4\xb7" "\x7b\x0e\xef\xf5\x22\xa2\x1f\x11\x4f\x2d\x2e\x96\x65\x59\xfd\xd4\x0d" "\xd7\x4f\xea\xb0\xb7\x3f\xe9\xda\xbe\xfd\xd0\x66\x4d\x3f\xc9\x03\x00" "\xc0\xae\x8f\xce\xe6\x6b\xf9\xfb\xbb\x0b\x8a\x88\xf9\x88\xb8\x9e\xbe" "\xeb\xaf\xbf\xb8\xb8\x58\x96\xf3\x0b\x8b\xe5\x62\xb9\x30\x97\xdf\xcf" "\x0e\xe6\xe6\xcb\x85\xda\xe7\xda\x3c\xad\x96\xcd\x0d\x0e\xf0\x86\xb8" "\x37\x28\xab\x3b\x9b\xaf\xdd\xae\x6e\xd2\xe7\xe5\x49\xed\xc3\xf7\x57" "\xfd\xae\x41\xd9\x3d\x40\xc7\x8e\x48\xfa\x63\xc6\x98\xe6\x06\x03\x07" "\x80\xf4\x02\x15\xb1\xe5\x15\xe9\x94\x29\xcb\xa7\xc7\xbd\xf9\x80\x7d" "\xec\xff\xa7\xd0\x52\x2c\x35\xfd\xb8\x62\xf6\x35\xfd\x30\x05\x00\x00" "\x00\x8e\x5f\x59\x96\x65\x91\xbe\xce\xfb\x5c\x3a\xe6\xdf\x69\xba\x53" "\x00\xc0\x54\xe4\xd7\xff\xe1\xe3\x02\x87\xaa\x3b\x63\xda\x23\x8e\xe6" "\xfe\xd5\x6a\xb5\x5a\xad\x56\x7f\xaa\xba\xae\x1c\xed\x41\xbd\x88\x88" "\x8d\xfa\x6d\xaa\xf7\x0c\x86\xe3\x07\x80\x13\x66\x23\x3e\x6e\xba\x0b" "\x34\x48\xfe\xad\xd6\x8b\x88\xe7\x9a\xee\x04\x30\xd3\x8a\xa6\x3b\xc0" "\xb1\xd8\xda\x5e\x5f\x2d\x52\xbe\x45\xfd\xf5\x20\x8d\xef\x9e\xcf\x05" "\xd9\x97\xff\x46\xb1\x73\xbb\x7c\xfb\x51\xd3\x49\x86\xcf\x31\x99\xd6" "\xe3\x6b\x33\xba\xf1\xcc\x98\xfe\x3c\x3b\xa5\x3e\xcc\x92\x9c\x7f\x67" "\x38\xff\x1b\xbb\xed\x83\xb4\xde\x71\xe7\x3f\x2d\xe3\xf2\x1f\xec\x5c" "\x32\xd7\x3e\x39\xff\xee\x70\xfe\x43\x4e\x4f\xfe\x9d\x91\xf9\xb7\x55" "\xce\xbf\xf7\x44\xf9\x77\xe5\x0f\x00\x00\x00\x00\x00\x33\x2c\xff\xff" "\xff\x92\xe3\xbf\x79\x93\x01\x00\x00\x00\x00\x00\x00\xe0\xc4\xd9\xda" "\x5e\x5f\xcd\xd7\xbd\xe6\xe3\xff\x9f\x19\xb1\x9e\xeb\x3f\x4f\xa7\x9c" "\x7f\xf1\xa4\xf9\x2f\xa4\x79\xf9\x9f\x68\x39\xff\xce\x50\xfe\x5f\x1c" "\x5a\xaf\x5b\x9b\x7f\xf8\xe6\xde\xfe\xff\xaf\xed\xf5\xd5\xdf\xdd\xfb" "\xe7\xff\xe7\xe9\x41\xf3\x9f\xcb\x33\x45\x7a\x64\x15\xe9\x11\x51\xa4" "\xdf\x54\xf4\xd2\xf4\x30\x5b\xf7\xb8\xcd\x7e\x77\x50\xfd\xa6\x7e\xd1" "\xe9\xf6\xd2\x39\x3f\x65\xff\x9d\xb8\x15\xb7\x63\x2d\x2e\xed\x5b\xb7" "\x93\xfe\x1e\x7b\xed\x2b\xfb\xda\xab\x9e\xf6\xf7\xb5\x5f\xde\xd7\xde" "\x7b\xac\xfd\xca\xbe\xf6\x7e\xfa\xde\x81\x72\x21\xb7\x5f\x88\xd5\xf8" "\x51\xdc\x8e\xb7\x77\xda\xab\xb6\xb9\x09\xdb\x3f\x3f\xa1\xbd\x9c\xd0" "\x9e\xf3\xef\x7a\xfe\x6f\xa5\x9c\x7f\xaf\xf6\x53\xe5\xbf\x98\xda\x8b" "\xa1\x69\xe5\xe1\x87\x9d\xc7\xf6\xfb\xfa\x74\xd4\xef\x79\xe3\xd6\x67" "\x7f\x71\xe9\xf8\x37\x67\xa2\xcd\xe8\x3e\xda\xb6\xba\x6a\xfb\xce\x37" "\xd0\x9f\x9d\xbf\xc9\x99\x41\xfc\xe4\xee\xda\x9d\x0b\xf7\x6f\xde\xbb" "\x77\x67\x25\xd2\x64\xdf\xd2\xcb\x91\x26\x47\x2c\xe7\xdf\xdf\xf9\x99" "\xdb\x7b\xfe\x7f\x61\xb7\x3d\x3f\xef\xd7\xf7\xd7\x87\x1f\x0e\x9e\x38" "\xff\x59\xb1\x19\xbd\xb1\xf9\xbf\x50\x9b\xaf\xb6\xf7\xa5\x29\xf7\xad" "\x09\x39\xff\x41\xfa\xc9\xf9\xbf\x9d\xda\x47\xef\xff\x27\x39\xff\xf1" "\xfb\xff\xcb\x0d\xf4\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x3e\x49\x59\x96\x3b\x97\x88\xbe\x11\x11\x57\xd3\xf5\x3f\x4d\x5d" "\x9b\x09\x00\x4c\x57\x7e\xfd\x2f\x93\xbc\x5c\xad\x56\xab\xd5\x6a\xf5" "\xe9\xab\xeb\xca\xd1\x5e\xaf\x17\x11\xf1\x97\xfa\x6d\xaa\xf7\x0c\x3f" "\x1b\x75\x67\x00\xc0\x2c\xfb\x6f\x44\xfc\xbd\xe9\x4e\xd0\x18\xf9\xb7" "\x58\xfe\xbe\xbf\x6a\xfa\x62\xd3\x9d\x01\xa6\xea\xee\xfb\x1f\xfc\xe0" "\xe6\xed\xdb\x6b\x77\xee\x36\xdd\x13\x00\x00\x00\x00\x00\x00\x00\xe0" "\xd3\xca\xe3\x7f\x2e\xd7\xc6\x7f\x7e\x31\x22\x96\x86\xd6\xdb\x37\xfe" "\xeb\x9b\xb1\x7c\xd8\xf1\x3f\x7b\x79\xe6\xd1\x00\xa3\x47\x3c\xd0\xf7" "\x18\x9b\x9d\x41\xb7\x53\x1b\x6e\xfc\xf9\xd8\x19\x9f\xfb\xc2\xb8\xf1" "\xbf\xcf\xc7\xe3\xe3\x7f\xe7\x31\x71\xbb\xf5\xed\x18\xa3\x3f\xa1\x7d" "\x30\xa1\x7d\x6e\x42\xfb\xfc\xc8\xa5\x7b\x69\x8d\xbc\xd0\xa3\x26\xe7" "\xff\x7c\x6d\xbc\xf3\x2a\xff\x73\x43\xc3\xaf\xb7\x61\xfc\xd7\xe1\x31" "\xef\xdb\x20\xe7\x7f\xbe\xf6\x78\xae\xf2\xff\xc2\xd0\x7a\xf5\xfc\xcb" "\xdf\xcc\x5c\xfe\x1b\x07\x5d\x71\x33\x3a\xfb\xf2\xbf\x78\xef\xbd\x1f" "\x5f\xbc\xfb\xfe\x07\xaf\xdc\x7a\xef\xe6\xbb\x6b\xef\xae\xfd\xf0\xca" "\xca\xca\xa5\x2b\x57\xaf\x5e\xbb\x76\xed\xe2\x3b\xb7\x6e\xaf\x5d\xda" "\xfd\xf7\x78\x7a\x3d\x03\x72\xfe\x79\xec\x6b\xe7\x81\xb6\x4b\xce\x3f" "\x67\x2e\xff\x76\xc9\xf9\x7f\x2e\xd5\xf2\x6f\x97\x9c\xff\xe7\x53\x2d" "\xff\x76\xc9\xf9\xe7\xf7\x7b\xf2\x6f\x97\x9c\x7f\xfe\xec\x23\xff\x76" "\xc9\xf9\xbf\x94\x6a\xf9\xb7\x4b\xce\xff\x4b\xa9\x96\x7f\xbb\x6c\x6d" "\xaf\xcf\x55\xf9\xbf\x9c\x6a\xf9\xb7\x4b\xde\xff\xbf\x9c\x6a\xf9\xb7" "\x4b\xce\xff\x95\x54\xcb\xbf\x5d\x72\xfe\x17\x52\x2d\xff\x76\xc9\xf9" "\x5f\x4c\xf5\x01\xf2\xf7\xf5\xf0\xa7\x48\xce\x3f\x1f\xe1\xb2\xff\xb7" "\x4b\xce\x7f\x25\xd5\xf2\x6f\x97\x9c\xff\xe5\x54\xcb\xbf\x5d\x72\xfe" "\x57\x52\x2d\xff\x76\xc9\xf9\xbf\x9a\x6a\xf9\xb7\x4b\xce\xff\x2b\xa9" "\x96\x7f\xbb\xe4\xfc\xaf\xa6\x5a\xfe\xed\x92\xf3\xff\x6a\xaa\xe5\xdf" "\x2e\x39\xff\x6b\xa9\x96\x7f\xbb\xe4\xfc\xbf\x96\x6a\xf9\xb7\x4b\xce" "\xff\xeb\xa9\x96\x7f\xbb\xe4\xfc\x5f\x4b\xb5\xfc\xdb\x25\xe7\xff\x8d" "\x54\xcb\xbf\x5d\x72\xfe\xdf\x4c\xb5\xfc\xdb\x25\xe7\xff\xad\x54\xcb" "\xbf\x5d\x72\xfe\xaf\xa7\x5a\xfe\xed\xb2\xf7\xfd\xff\x66\xcc\xcc\xc2" "\xcc\xcf\x8f\xf6\x0e\xbb\x31\x23\xdb\x75\xd2\x66\x9a\x7e\x66\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x86\x4d\xe3\x74\xe2\xa6\xb7\x11" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xc7\x0e\x1c\x08\x00" "\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x15\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\x77\x6f\x31\x72\xdd\xf5\x1d\xc0\xcf\xec\xcd\x6b\x87\x10\x03" "\x21\x38\xa9\x81\xb5\x63\x8c\x71\x96\xec\xfa\x12\x5f\x68\x5d\x4c\xb8" "\x36\x40\xb9\x25\x14\x7a\xc1\x76\xbd\x6b\xb3\xe0\x1b\x5e\xbb\x04\x8a" "\x64\xd3\x40\x89\x84\x51\x51\x05\x6a\xfa\xd0\x16\x10\x6a\x23\x55\x15" "\x56\xc5\x03\xad\x28\xcd\x43\xd5\xcb\x53\x69\x1f\xe8\x4b\x45\x55\x09" "\xa9\x51\x15\xa2\x80\x8a\xd4\x56\x34\x5b\xcd\x9c\xff\xff\xef\x99\xd9" "\xd9\x99\x5d\x7b\xbc\x9e\x3d\xff\xcf\x47\xb2\x7f\xbb\x33\x67\xe6\x9c" "\x39\x73\x66\x76\xbf\x6b\x7f\xf7\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\x2d\x6f\x9c\xfd\x5c" "\xad\x28\x8a\xfa\x9f\xc6\x5f\x1b\x8b\xe2\x05\xf5\x8f\xd7\x4f\x6c\x6c" "\x5c\xf6\xba\x5b\xbd\x85\x00\x00\x00\xc0\x8d\xfa\xbf\xc6\xdf\xcf\xdd" "\x91\x2e\x38\xbc\x8c\x1b\x35\x2d\xf3\x77\xaf\xf8\xc7\x6f\x2e\x2c\x2c" "\x2c\x14\x1f\x18\xfe\xf2\xe8\x97\x16\x16\xd2\x15\x13\x45\x31\xba\xae" "\x28\x1a\xd7\x45\x57\xff\xfd\x83\xb5\xe6\x65\x82\xc7\x8a\xf1\xda\x50" "\xd3\xe7\x43\x3d\x56\x3f\xdc\xe3\xfa\x91\x1e\xd7\x8f\xf6\xb8\x7e\xac" "\xc7\xf5\xeb\x7a\x5c\x3f\xde\xe3\xfa\x45\x3b\x60\x91\xf5\xe5\xcf\x63" "\x1a\x77\xb6\xad\xf1\xe1\xc6\x72\x97\x16\x77\x16\xa3\x8d\xeb\xb6\x75" "\xb8\xd5\x63\xb5\x75\x43\x43\xf1\x67\x39\x0d\xb5\xc6\x6d\x16\x46\x4f" "\x14\x73\xc5\xa9\x62\xb6\x98\x6e\x59\xbe\x5c\xb6\xd6\x58\xfe\xdb\x5b" "\xea\xeb\x7a\x5b\x11\xd7\x35\xd4\xb4\xae\xcd\xf5\x23\xe4\x47\x9f\x3a" "\x1e\xb7\xa1\x16\xf6\xf1\xb6\x96\x75\x5d\xbb\xcf\xe8\x87\x6f\x28\x26" "\x7e\xfc\xa3\x4f\x1d\xff\xe3\x0b\xcf\xdc\xdd\x69\xf6\xdc\x0d\x2d\xf7" "\x57\x6e\xe7\x8e\xad\xf5\xed\xfc\x4c\xb8\xa4\xdc\xd6\x5a\xb1\x2e\xed" "\x93\xb8\x9d\x43\x4d\xdb\xb9\xb9\xc3\x73\x32\xdc\xb2\x9d\xb5\xc6\xed" "\xea\x1f\xb7\x6f\xe7\x73\xcb\xdc\xce\xe1\x6b\x9b\xb9\xaa\xda\x9f\xf3" "\xf1\x62\xa8\xf1\xf1\x77\x1b\xfb\x69\xa4\xf9\xc7\x7a\x69\x3f\x6d\x0e" "\x97\xfd\xf7\xbd\x45\x51\x5c\xbe\xb6\xd9\xed\xcb\x2c\x5a\x57\x31\x54" "\x6c\x68\xb9\x64\xe8\xda\xf3\x33\x5e\x1e\x91\xf5\xfb\xa8\x1f\x4a\x2f" "\x2e\x46\x56\x74\x9c\x6e\x59\xc6\x71\x5a\x9f\x33\xdb\x5a\x8f\xd3\xf6" "\xd7\x44\x7c\xfe\xb7\x84\xdb\x8d\x2c\xb1\x0d\xcd\x4f\xd3\x0f\x3f\x3d" "\xb6\xe8\x79\x5f\xe9\x71\x1a\xd5\x1f\xf5\x52\xaf\x95\xf6\x63\xb0\xdf" "\xaf\x95\x41\x39\x06\xe3\x71\xf1\xdd\xc6\x83\x7e\xbc\xe3\x31\xb8\x2d" "\x3c\xfe\x4f\x6d\x5f\xfa\x18\xec\x78\xec\x74\x38\x06\xd3\xe3\x6e\x3a" "\x06\xb7\xf6\x3a\x06\x87\xc6\x86\x1b\xdb\x9c\x9e\x84\x5a\xe3\x36\xd7" "\x8e\xc1\x5d\x2d\xcb\x0f\x37\xd6\x54\x6b\xcc\xa7\xb7\x77\x3f\x06\xa7" "\x2e\x9c\x3e\x37\x35\xff\x89\x4f\xbe\x76\xee\xf4\xb1\x93\xb3\x27\x67" "\xcf\xec\xd9\xb5\x6b\x7a\xcf\xbe\x7d\x07\x0e\x1c\x98\x3a\x31\x77\x6a" "\x76\xba\xfc\xfb\x3a\xf7\xf6\xe0\xdb\x50\x0c\xa5\xd7\xc0\xd6\xb0\xef" "\xe2\x6b\xe0\xd5\x6d\xcb\x36\x1f\xaa\x0b\x5f\xed\xdf\xeb\x70\xbc\xcb" "\xeb\x70\x63\xdb\xb2\xfd\x7e\x1d\x8e\xb4\x3f\xb8\xda\xea\xbc\x20\x17" "\x1f\xd3\xe5\x6b\xe3\xe1\xfa\x4e\x1f\xbf\x32\x54\x2c\xf1\x1a\x6b\x3c" "\x3f\x3b\x6f\xfc\x75\x98\x1e\x77\xd3\xeb\x70\xa4\xe9\x75\xd8\xf1\x6b" "\x4a\x87\xd7\xe1\xc8\x32\x5e\x87\xf5\x65\xce\xed\x5c\xde\xf7\x2c\x23" "\x4d\x7f\x3a\x6d\xc3\xcd\xfa\x5a\xb0\xb1\xe9\x18\x6c\xff\x7e\xa4\xfd" "\x18\xec\xf7\xf7\x23\x83\x72\x0c\x8e\x87\xe3\xe2\x5f\x77\x2e\xfd\xb5" "\x60\x73\xd8\xde\xc7\x27\x57\xfa\xfd\xc8\xf0\xa2\x63\x30\x3d\xdc\xf0" "\xde\x53\xbf\x24\x7d\xbf\x3f\x7e\xa0\x31\x3a\x1d\x97\xf7\xd4\xaf\xb8" "\x6d\xac\xb8\x38\x3f\x7b\xfe\xfe\x47\x8f\x5d\xb8\x70\x7e\x57\x11\xc6" "\xaa\x78\x49\xd3\xb1\xd2\x7e\xbc\x6e\x68\x7a\x4c\xc5\xa2\xe3\x75\x68" "\xc5\xc7\xeb\xe1\xb9\x57\x3c\x7e\x4f\x87\xcb\x37\x86\x7d\x35\xfe\xda" "\xfa\x5f\xe3\x4b\x3e\x57\xf5\x65\xf6\xde\xdf\xfd\xb9\x6a\x7c\x75\xeb" "\xbc\x3f\x5b\x2e\xdd\x5d\x84\xd1\x67\xab\xbd\x3f\x3b\x7d\x35\xaf\xef" "\xcf\x94\x25\xbb\xec\xcf\xfa\x32\x9f\x99\xba\xf1\xef\xc5\x53\x2e\x6d" "\x7a\xff\x1d\x5d\xe2\xfd\x37\xe6\xfe\xe7\xcb\xf5\xa5\xbb\x7a\x6c\x78" "\x74\xa4\x7c\xfd\x0e\xa7\xbd\x33\xda\xf2\x7e\xdc\xfa\x54\x8d\x34\xde" "\xbb\x6a\x8d\x75\x3f\x37\xb5\xbc\xf7\xe3\xd1\xf0\x67\xb5\xdf\x8f\xef" "\xec\xf2\x7e\xbc\xa9\x6d\xd9\x7e\xbf\x1f\x8f\xb6\x3f\xb8\xf8\x7e\x5c" "\xeb\xf5\xd3\x8e\x1b\xd3\xfe\x7c\x8e\x87\xe3\xe4\xd4\x74\xf7\xf7\xe3" "\xfa\x32\x9b\x76\xaf\xf4\x98\x1c\xe9\xfa\x7e\x7c\x6f\x98\xb5\xb0\xff" "\x5f\x13\x92\x42\xca\x45\x4d\xc7\xce\x52\xc7\x6d\x5a\xd7\xc8\xc8\x68" "\x78\x5c\x23\x71\x0d\xad\xc7\xe9\x9e\x96\xe5\x47\x43\x36\xab\xaf\xeb" "\xc9\xdd\xd7\x77\x9c\xee\xb8\xb7\xbc\xaf\xe1\xf4\xe8\xae\x59\xad\xe3" "\x74\xa2\x6d\xd9\x7e\x1f\xa7\xe9\xfd\x6a\xa9\xe3\xb4\xd6\xeb\xa7\x6f" "\xd7\xa7\xfd\xf9\x1c\x0f\xc7\xc5\x9d\x7b\xba\x1f\xa7\xf5\x65\x9e\xda" "\x7b\xe3\xef\x9d\xeb\xe3\x87\x4d\xef\x9d\x63\xbd\x8e\xc1\xd1\xe1\xb1" "\xfa\x36\x8f\xa6\x83\xb0\x7c\xbf\x5f\x58\x1f\x8f\xc1\xfb\x8b\xe3\xc5" "\xd9\xe2\x54\x31\xd3\xb8\x76\xac\x71\x3c\xd5\x1a\xeb\x9a\x7c\x60\x79" "\xc7\xe0\x58\xf8\xb3\xda\xef\x95\x9b\xba\x1c\x83\x3b\xda\x96\xed\xf7" "\x31\x98\xbe\x8e\x2d\x75\xec\xd5\x46\x16\x3f\xf8\x3e\x68\x7f\x3e\xc7" "\xc3\x71\xf1\xc4\x03\xdd\x8f\xc1\xfa\x32\x6f\xda\xdf\xdf\xef\x5d\x77" "\x84\x4b\xd2\x32\x4d\xdf\xbb\xb6\xff\x7c\x6d\xa9\x9f\x79\xdd\xd3\xb6" "\x9b\x6e\xe6\xcf\xbc\xea\xdb\xf9\x37\xfb\xbb\xff\x6c\xb6\xbe\xcc\xa9" "\x03\x2b\xcd\x99\xdd\xf7\xd3\x7d\xe1\x92\xdb\x3a\xec\xa7\xf6\xd7\xef" "\x52\xaf\xa9\x99\x62\x75\xf6\xd3\xa6\xb0\x9d\xcf\x1c\x58\x7a\x3f\xd5" "\xb7\xa7\xbe\xcc\x97\x0e\x2e\xf3\x78\x3a\x5c\x14\xc5\xa5\x8f\x3d\xd8" "\xf8\x79\x6f\xf8\xf7\x95\x3f\xbf\xf8\xbd\x6f\xb6\xfc\xbb\x4b\xa7\x7f" "\xd3\xb9\xf4\xb1\x07\x9f\xbd\xfd\xc4\xdf\xae\x64\xfb\x01\x58\xfb\x9e" "\x2f\xc7\x86\xf2\x6b\x5d\xd3\xbf\x4c\x2d\xe7\xdf\xff\x01\x00\x00\x80" "\x35\x21\xe6\xfe\xa1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf8" "\xbf\xc2\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x91\x30\x93\x4c\xf2" "\xff\xa6\x37\x3d\x33\xf7\xfc\xa5\x22\x35\xf3\x17\x82\x78\x7d\xda\x0d" "\x0f\x95\xcb\xc5\x8e\xeb\x74\xf8\x7c\x62\xe1\x9a\xfa\xe5\x0f\x7e\x7d" "\xf6\x27\x7f\x79\x69\x79\xeb\x1e\x2a\x8a\xe2\xa7\x0f\xfd\x66\xc7\xe5" "\x37\x3d\x14\xb7\xab\x34\x11\xb6\xf3\xea\x9b\x5b\x2f\x5f\x7c\xc3\x4b" "\xcb\x5a\xff\xd1\x47\xae\x2d\xd7\xdc\x5f\xff\x4a\xb8\xff\xf8\x78\x96" "\x7b\x18\x74\xaa\xe0\x4e\x17\x45\xf1\xed\x3b\xbe\xd0\x58\xcf\xc4\x07" "\xaf\x34\xe6\x53\x0f\x1d\x6d\xcc\xf7\x5e\x7e\xfc\xb1\xfa\x32\xcf\x1d" "\x2c\x3f\x8f\xb7\x7f\xfa\x25\xe5\xf2\x7f\x10\xca\xbf\x87\x4f\x1c\x6b" "\xb9\xfd\xd3\x61\x3f\xfc\x20\xcc\xe9\xb7\x77\xde\x1f\xf1\x76\xdf\xb8" "\xf2\x9a\xcd\xfb\xdf\x7f\x6d\x7d\xf1\x76\xb5\xad\x2f\x6c\x3c\xec\x27" "\x3e\x54\xde\x6f\xfc\x3d\x39\x5f\x7c\xac\x5c\x3e\xee\xe7\xa5\xb6\xff" "\xaf\x3e\xff\xe4\x37\xea\xcb\x3f\xfa\xaa\xce\xdb\x7f\x69\xa8\xf3\xf6" "\x3f\x19\xee\xf7\xeb\x61\xfe\xcf\xcb\xcb\xe5\x9b\x9f\x83\xfa\xe7\xf1" "\x76\x9f\x0d\xdb\x1f\xd7\x17\x6f\x77\xff\xd7\xbe\xd3\x71\xfb\xaf\x7e" "\xae\x5c\xfe\xdc\x5b\xca\xe5\x8e\x86\x19\xd7\xbf\x23\x7c\xbe\xed\x2d" "\xcf\xcc\x35\xef\xaf\x47\x6b\xc7\x5a\x1e\x57\xf1\xd6\x72\xb9\xb8\xfe" "\xe9\xef\xfd\x4e\xe3\xfa\x78\x7f\xf1\xfe\xdb\xb7\x7f\xfc\xc8\x95\x96" "\xfd\xd1\x7e\x7c\x3c\xf5\xcf\xe5\xfd\x4c\xb5\x2d\x1f\x2f\x8f\xeb\x89" "\xfe\xa2\x6d\xfd\xf5\xfb\x69\x3e\x3e\xe3\xfa\x9f\xfc\xed\xa3\x2d\xfb" "\xb9\xd7\xfa\xaf\xbe\xf7\xe9\x97\xd7\xef\xb7\x7d\xfd\xf7\xb5\x2d\x37" "\xdc\x76\xfb\xf6\xdf\xd8\xf4\x87\x9f\xfd\x42\xc7\xf5\xc5\xed\x39\xfc" "\x67\xe7\x5a\x1e\xcf\xe1\xf7\x84\xd7\x71\x58\xff\x13\x1f\x0a\xc7\x63" "\xb8\xfe\x7f\xaf\x7e\xa1\x65\xbd\xd1\xd1\xf7\xb4\xbe\xff\xc4\xe5\xbf" "\xb2\xf1\x52\xcb\xe3\x89\xde\xf6\xe3\x72\xfd\x57\x5f\x7f\xb2\x31\xff" "\x63\xe2\x27\xbf\x7f\xdb\x0b\x6e\x7f\xe1\xe5\x57\xd6\xf7\x5d\x51\x7c" "\xf7\x7d\xe5\xfd\xf5\x5a\xff\xc9\x3f\x3a\xdb\xb2\xfd\x5f\xbd\x6b\x67" "\xe3\xf9\x88\xd7\xc7\x8e\x7e\xfb\xfa\x97\x12\xd7\x7f\xfe\xe3\x93\x67" "\xce\xce\x5f\x9c\x9b\x69\xda\xab\x8d\xdf\x9d\xf3\x8e\x72\x7b\xd6\x8d" "\xaf\xdf\x50\xdf\xde\x3b\xc2\x7b\x6b\xfb\xe7\x47\xce\x5e\xf8\xf0\xec" "\xf9\x89\xe9\x89\xe9\xa2\x98\xa8\xee\xaf\xd0\xbb\x6e\x5f\x0b\xf3\xd9" "\x72\x5c\x5e\xe9\xed\x77\x3e\x12\x9e\xcf\x7b\x7e\xef\xdb\x1b\xb6\xff" "\xd3\xe7\xe3\xe5\xff\xf2\x70\x79\xf9\x95\xb7\x97\x5f\xb7\x5e\x1d\x96" "\xfb\x62\xb8\x7c\x63\xf9\xfc\x2d\xd4\x6e\x70\xfd\x4f\x6c\xb9\xab\xf1" "\xfa\xae\x3d\x55\x7e\xde\xd2\x63\xef\x83\xcd\xdb\xfe\xf3\xc0\xb2\x16" "\x0c\x8f\xbf\xfd\xfb\x82\x78\xbc\x9f\x7b\xe9\x87\x1b\xfb\xa1\x7e\x5d" "\xe3\xeb\x46\x7c\x5d\xdf\xe0\xf6\x7f\x7f\xa6\xbc\x9f\x6f\x85\xfd\xba" "\x10\x7e\x33\xf3\xd6\xbb\xae\xad\xaf\x79\xf9\xf8\xbb\x11\xae\xbc\xaf" "\x7c\xbd\xdf\xf0\xfe\x0b\x6f\x73\xf1\x79\xfd\x93\xf0\x7c\xbf\xf3\x07" "\xe5\xfd\xc7\xed\x8a\x8f\xf7\xfb\xe1\xfb\x98\xef\x6c\x6a\x7d\xbf\x8b" "\xc7\xc7\xb7\x2e\x0d\xb5\xdf\x7f\xe3\xb7\x78\x5c\x0e\xef\x27\xc5\xe5" "\xf2\xfa\xb8\x54\xdc\xdf\x57\x9e\xbb\xab\xe3\xe6\xc5\xdf\x43\x52\x5c" "\xbe\xbb\xf1\xf9\xef\xa6\xfb\xb9\x7b\x45\x0f\x73\x29\xf3\x9f\x98\x9f" "\x3a\x35\x77\xe6\xe2\xa3\x53\x17\x66\xe7\x2f\x4c\xcd\x7f\xe2\x93\x47" "\x4e\x9f\xbd\x78\xe6\xc2\x91\xc6\xef\xf2\x3c\xf2\x91\x5e\xb7\xbf\xf6" "\xfe\xb4\xa1\xf1\xfe\x34\x33\xbb\x6f\x6f\x31\xbd\xbe\x28\x8a\xb3\xc5" "\xf4\x2a\xbc\x61\xdd\x9c\xed\xaf\x7f\xb4\xbc\xed\x3f\xf7\xc8\xf1\x99" "\xfd\xd3\xdb\x67\x66\x4f\x1c\xbb\x78\xe2\xc2\x23\xe7\x66\xcf\x9f\x3c" "\x3e\x3f\x7f\x7c\x76\x66\x7e\xfb\xb1\x13\x27\x66\x3f\xde\xeb\xf6\x73" "\x33\x87\x76\xed\x3e\xb8\x67\xff\xee\xc9\x93\x73\x33\x87\x0e\x1c\x3c" "\xb8\xe7\xe0\xe4\xdc\x99\xb3\xf5\xcd\x28\x37\xaa\x87\x7d\xd3\x1f\x9d" "\x3c\x73\xfe\x48\xe3\x26\xf3\x87\xf6\x1e\xdc\xf5\xc0\x03\x7b\xa7\x27" "\x4f\x9f\x9d\x99\x3d\xb4\x7f\x7a\x7a\xf2\x62\xaf\xdb\x37\xbe\x36\x4d" "\xd6\x6f\xfd\x1b\x93\xe7\x67\x4f\x1d\xbb\x30\x77\x7a\x76\x72\x7e\xee" "\x93\xb3\x87\x76\x1d\xdc\xb7\x6f\x77\xcf\xdf\x06\x78\xfa\xdc\x89\xf9" "\x89\xa9\xf3\x17\xcf\x4c\x5d\x9c\x9f\x3d\x3f\x55\x3e\x96\x89\x0b\x8d" "\x8b\xeb\x5f\xfb\x7a\xdd\x9e\x6a\x9a\xff\xb7\xf2\xfb\xd9\x76\xb5\xf2" "\x17\xf1\x15\xef\xba\x6f\x5f\xfa\xfd\xac\x75\x5f\xff\xf4\x92\x77\x55" "\x2e\xd2\xf6\x0b\x44\x9f\x09\xbf\x8b\xe6\x1f\x5e\x74\xee\xc0\x72\x3e" "\x8f\xb9\x7f\x34\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\x7f\x2c" "\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x5d\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\x78\x98\x49\x26\xf9\x5f\xff\x5f\xff\x7f\x79" "\xfd\xff\xf2\x7a\xfd\xff\xbc\xfa\xff\xe7\x3e\x56\xf6\x4a\xd7\x7a\xff" "\x3f\xf6\xe7\xf5\xff\xf3\x70\x8b\xfb\xff\x37\xbc\x7e\xfd\x7f\xfd\xff" "\xea\xf5\xff\x97\xdf\x9f\x5f\xeb\xdb\xaf\xff\xaf\xff\xcf\x62\x83\xd6" "\xff\x8f\xb9\x7f\x7d\x51\x64\x99\xff\x01\x00\x00\x20\x07\x31\xf7\x6f" "\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x2d\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\xff\x05\x61\x26\x99\xe4\xff\x1c\xfa\xff\xef" "\xee\xb0\xd8\x0a\xfb\xff\xbb\x7b\x15\xae\xaa\xdf\xff\x5f\x33\xe7\xff" "\x5f\x5f\xe8\xff\xeb\xff\x37\xf7\xff\xe3\x93\xa3\xff\x9f\x8d\x15\xf7" "\xef\xdf\xff\x70\xcb\xa7\xfa\xff\x81\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x3f\x37\x6c\x74\xc9\x6b\x6e\x55\xff\x3f\xe6\xfe\xdb\xc3\x4c\x32" "\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x5f\x18\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\xc6\x30\x93\x4c\xf2\x7f\x0e\xfd\xff\x4e\x9c\xff\xbf\xb2\xfd\x7f\xe7" "\xff\xd7\xff\xef\xef\xf9\xff\x9b\x36\x46\xff\x7f\x6d\x70\xfe\xff\xee" "\x3a\xf7\xff\xc7\x6e\x5b\x74\x91\xfe\xff\x0a\xfb\xff\xe3\xfa\xff\x6b" "\xb1\xff\x3f\xda\xdf\xed\x1f\xec\xfe\x7f\xcf\xcd\xd7\xff\xe7\xa6\x18" "\xb4\xf3\xff\xc7\xdc\xff\xa2\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\x17\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x24\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xce\x30\x93\x4c\xf2\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xf5\xf7\x3e\xff\x7f\xf9\x91" "\xfe\xff\x60\xd1\xff\xef\xce\xf9\xff\x7b\x70\xfe\xff\xbc\xfa\xff\x7d" "\xde\xfe\xc1\xee\xff\xf7\xfb\xfc\xff\xa3\x6f\x6e\xbf\xbd\xfe\x3f\x9d" "\x0c\x5a\xff\x3f\xe6\xfe\x97\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07" "\x31\xf7\xdf\x15\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xb2\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4d\x61\x26\x99\xe4\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xce\xeb\xef\xdd\xff\x2f\xe9\xff" "\x0f\x16\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\x5f\x5e\xff" "\xbf\xc3\x37\xbf\xfa\xff\x74\x32\x68\xfd\xff\x98\xfb\xef\x0e\x33\xc9" "\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xbf\x27\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x67\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\x37\x87\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf3\xea\xff\xdf\x37" "\xa6\xff\xaf\xff\x5f\x6d\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf" "\xff\xbf\xcc\xf3\xff\x2f\xb6\x92\xfe\xff\xba\x5e\x77\x46\x65\x0c\x5a" "\xff\x3f\xe6\xfe\x97\x87\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7" "\xbf\x22\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x95\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x13\x61\x26\x99\xe4\x7f\xfd\xff\x6a" "\xf5\xff\xff\xf4\xaf\x9f\x78\x65\xa1\xff\xaf\xff\xdf\x63\xfd\x15\xed" "\xff\xc7\xc3\x40\xff\x3f\x73\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff" "\xaf\xff\xbf\x2a\xfd\x7f\xf2\x31\x68\xfd\xff\x98\xfb\xb7\x84\x99\x64" "\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x6f\x0d\x33\x91\xff\x01\x00\x00" "\xa0\x32\x62\xee\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f" "\x5b\x98\x49\x26\xf9\x5f\xff\xbf\x5a\xfd\xff\x48\xff\x5f\xff\xbf\xdb" "\xfa\x2b\xda\xff\x4f\xf4\xff\xf3\xa6\xff\xdf\x41\xd3\x8b\x54\xff\xbf" "\x07\xfd\x7f\xfd\xff\xec\xfb\xff\xf1\xbb\x5f\xfd\x7f\xfa\x63\xd0\xfa" "\xff\x31\xf7\xbf\x2a\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\x7f" "\x7b\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xab\xc3\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\x77\x84\x99\x64\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x3b\xaf\x5f\xff\x7f\x6d\xd2\xff\xef\x6e\xa5" "\xfd\xff\x31\xfd\x7f\xfd\x7f\xfd\xff\xcc\xfa\xff\xce\xff\x4f\x7f\x0d" "\x5a\xff\x3f\xe6\xfe\xd7\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31" "\xf7\xef\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\xe2\xff\xdf\x2c\xff\xdf" "\xab\xfc\x0f\x00\x00\x00\x55\x14\x73\xff\x64\x98\x49\x26\xf9\x5f\xff" "\x5f\xff\x3f\xa7\xfe\x7f\x4d\xff\x5f\xff\x5f\xff\xbf\xf2\xf4\xff\xbb" "\x73\xfe\xff\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xab\x41\xeb\xff" "\xc7\xdc\xff\xda\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xfb" "\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xa7\xc2\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\xa7\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\x39" "\xf5\xff\x9d\xff\x5f\xff\x5f\xff\xbf\xfa\xf4\xff\xbb\xd3\xff\xef\x41" "\xff\x5f\xff\xbf\x6a\xfd\xff\xa2\xd0\xff\xe7\x96\x1a\xb4\xfe\x7f\xcc" "\xfd\xbb\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x77\x87\x99" "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x09\x33\x91\xff\x01\x00\x00" "\xa0\x32\x62\xee\xdf\x1b\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\xef\xbc\x7e\xfd\xff\xb5\xa9\x5b\xff\xfe\xcb\xcb\xb8\xbd" "\xfe\x7f\xa0\xff\xaf\xff\xaf\xff\x5f\x8d\xfe\xbf\xf3\xff\x73\x8b\x0d" "\x5a\xff\x3f\xe6\xfe\x07\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98" "\xfb\xf7\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0f\x33\x09" "\xf9\xbf\xd3\xff\xeb\x06\x00\x00\x00\xd6\x96\x98\xfb\x0f\x84\x99\x64" "\xf2\xef\xff\xfa\xff\x15\xe9\xff\xff\xd6\xdf\xb7\xac\x5b\xff\x5f\xff" "\xbf\xdb\xfa\xfb\xd3\xff\x5f\xaf\xff\x1f\xa6\xfe\xff\x60\xa9\xe8\xf9" "\xff\xdb\x5f\x16\xd7\x6d\x6d\xf6\xff\x9f\x4f\x8f\x5f\xff\x5f\xff\x7f" "\x90\xb7\x5f\xff\x5f\xff\x9f\xc5\x06\xad\xff\x1f\x73\xff\xc1\x30\x93" "\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xd7\x85\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\xff\x6c\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\xcf\x85\x99\x64\x92\xff\xf5\xff\x2b\xd2\xff\x6f\xa3\xff\xaf\xff" "\xdf\x6d\xfd\xce\xff\xaf\xff\x5f\x65\x15\xed\xff\xf7\xcd\xda\xec\xff" "\x2f\x71\xfe\xff\x21\xfd\x7f\xfd\xff\xc1\xda\x7e\xfd\xff\xe5\xf4\xff" "\xd7\xf5\xba\x1b\x2a\xe6\xe6\xf7\xff\xe3\x47\xcb\xeb\xff\xc7\xdc\x7f" "\x28\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xe7\xc3\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x5f\x1f\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x7f\x38\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\x7f\x73\xfa\xff\xaf\x2f\xda\x0d\x62\xff\xbf\x7e\xf0\xe8\xff\x57\x8b" "\xfe\x7f\x77\x95\xea\xff\x3b\xff\xbf\xfe\xff\x80\x6d\xbf\xfe\xbf\xf3" "\xff\xb3\xd8\xa0\x9d\xff\x3f\xe6\xfe\x37\x84\x99\x64\x92\xff\x01\x00" "\x00\x20\x07\x31\xf7\x3f\x18\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\xff\xc6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x37\x85\x99\x64" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x9d\xff\xbf\xf3\xfa\xf5\xff" "\xd7\x26\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7" "\xaf\x6e\x5d\xff\x7f\x5d\xc7\xeb\x63\xee\x7f\x73\x98\x49\x26\xf9\x1f" "\x00\x00\x00\x72\x10\x73\xff\x5b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\xdf\x1a\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xb6\x30" "\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xf5\xeb" "\xff\xaf\x4d\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff" "\x4f\x5f\x0d\xda\xf9\xff\x63\xee\xff\x85\x30\x93\x4c\xf2\x3f\x00\x00" "\x00\xe4\x20\xe6\xfe\x87\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb" "\xdf\x1e\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x8e\x30\x93\x4c" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xf5\xeb\xff\xaf" "\x4d\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f" "\x0d\x5a\xff\x3f\xe6\xfe\x77\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07" "\x31\xf7\xff\x62\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xbb\xc2" "\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x1d\x66\x92\x49\xfe\xd7" "\xff\xd7\xff\x1f\xac\xfe\xff\xc2\xa5\xe6\xdb\xe9\xff\xeb\xff\x17\xfd" "\xea\xff\xd7\x6f\xa4\xff\x9f\x05\xfd\xff\xee\xf4\xff\x7b\xe8\xd0\xff" "\x5f\xa7\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x75\x1b\xb4\xfe\x7f\xcc\xfd" "\xef\x09\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f\x6f\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xfb\xc2\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8c\x98\xfb\x1f\x0e\x33\xc9\x24\xff\xeb\xff\x67\xd9\xff\x4f\x0f" "\x79\xf0\xfa\xff\xce\xff\xaf\xff\xef\xfc\xff\xfa\xff\x37\x46\xff\xbf" "\x3b\xfd\xff\x1e\x9c\xff\x5f\xff\x7f\x4d\xf6\xff\x47\xc3\xfc\xe8\x64" "\xfc\xda\xa4\xff\xcf\xa0\x18\xb4\xfe\x7f\xcc\xfd\x8f\x84\x99\x64\x92" "\xff\x01\x00\x00\x20\x07\x31\xf7\xbf\x3f\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\xff\x97\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x3f" "\x10\x66\x92\x49\xfe\xd7\xff\xcf\xb2\xff\x3f\xc0\xe7\xff\xaf\x5a\xff" "\x7f\xa4\xe5\xf8\xc8\xa9\xff\x3f\xde\xf4\x7c\xa6\xe3\x52\xff\x5f\xff" "\x7f\x15\xe8\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xff\x20\xf7\xff\xc3" "\xd1\xbc\x7e\x89\xdb\x3b\xff\x3f\x83\x68\xd0\xfa\xff\x31\xf7\x7f\x30" "\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x97\xc3\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x25\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\x57\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xce\xff" "\xef\xfc\xff\x9d\xd7\xaf\xff\xbf\x36\xe9\xff\x77\xa7\xff\xdf\x83\xfe" "\x7f\x3e\xfd\xff\x91\xfe\x6f\xff\xad\x3b\xff\x7f\x49\xff\x9f\x41\x34" "\x68\xfd\xff\x98\xfb\x7f\x2d\xcc\x64\xc9\xe0\xf7\xec\x7f\x2d\xe3\x61" "\x02\x00\x00\x00\x03\x24\xe6\xfe\x0f\x85\x99\x64\xf2\xef\xff\x00\x00" "\x00\x90\x83\x98\xfb\x8f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\x1f\x0d\x33\xc9\x24\xff\xeb\xff\xb7\xf7\xff\xe3\x19\x55\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xd7\xa2\xfe\xf5\xff\x5f\x76\x7b\x51\xe8" "\xff\xeb\xff\xeb\xff\x57\xb6\xff\x7f\x13\xb6\x5f\xff\x5f\xff\x9f\xc5" "\x06\xad\xff\x1f\x73\xff\xb1\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\x5f\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x1e\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x13\x66\x92\x49\xfe\x5f\xed" "\xfe\x7f\x53\xaf\x77\x74\x30\xfb\xff\xce\xff\x7f\xbd\xfd\xff\x9f\xea" "\xff\xeb\xff\x07\xfa\xff\x9d\xe9\xff\xaf\x0e\xe7\xff\xef\x4e\xff\xbf" "\x07\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfa\x6a\xd0\xfa\xff\x31\xf7\xcf" "\x86\x99\x64\x92\xff\x01\x00\x00\xa0\xc2\xd2\x8f\x83\x63\xee\x3f\x11" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x32\xcc\x44\xfe\x07\x00" "\x00\x80\xca\x88\xb9\xff\xc3\x61\x26\x99\xe4\x7f\xe7\xff\xd7\xff\x77" "\xfe\xff\x5b\xd1\xff\x1f\x69\x59\x5e\xff\xbf\xa4\xff\xaf\xff\xdf\x0f" "\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x0d" "\x5a\xff\x3f\xe6\xfe\xb9\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\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\x54\x98\x49\x26\xf9\x5f\xff\x5f" "\xff\x3f\xf7\xfe\x7f\xad\x28\x2e\x3b\xff\xbf\xfe\x7f\xa7\xf5\xeb\xff" "\xaf\x4d\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f" "\x5f\x0d\x5a\xff\x3f\xe6\xfe\xd3\x61\x26\x99\xe4\x7f\x00\x00\x00\xfe" "\x9f\xbd\xfb\x68\xb2\xeb\xaa\xfa\x38\x7c\xb1\x95\x7a\x04\x1f\x81\x31" "\x23\x86\x66\x64\x0f\xf8\x00\x4c\x99\x51\xc5\x98\x6c\x72\xb0\x4d\xce" "\x60\xa2\xc9\x60\xc0\xe4\x9c\xb3\xc9\x39\xe7\x6c\x72\x8e\x26\x18\x43" "\x55\x53\x6e\xaf\xb5\xa4\xd6\xbd\x7d\x8e\xa4\x3e\xea\x7b\xce\xde\xcf" "\x33\x59\xaf\x54\x16\x7d\x85\x1b\xbb\xfe\xaf\xea\x57\x9b\x1e\xe4\xee" "\xbf\x6f\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x2f\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xef\x1f\xb7\x74\xb2\xff\xf5\xff\xfa\xff" "\xde\xfb\xff\xd5\x56\xde\xff\xdf\xff\xd7\xb7\xdf\xff\xdf\xfe\x77\x48" "\xff\xaf\xff\x3f\x0a\x6b\xfd\xfd\xb1\xcd\x7f\xdd\x41\x51\xf8\x81\xfd" "\xff\x5d\x2f\xbb\xf2\x5e\xfa\x7f\xfd\xbf\xfe\x7f\x90\xfe\x5f\xff\xaf" "\xff\xe7\x6c\x73\xeb\xff\x73\xf7\x3f\x20\x6e\xe9\x64\xff\x03\x00\x00" "\x40\x0f\x72\xf7\x3f\x30\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f" "\x14\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x57\xc6\x2d\x9d\xec\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xd7\xff\xdf\xe8\xfd\x7f\xfd\xff\xb2" "\x79\xff\x7f\xd8\x32\xfa\xff\xcb\x76\x77\x77\xf5\xff\x9b\xe8\xff\xe7" "\xfd\xf9\xf5\xff\xfa\x7f\xd6\xcd\xad\xff\xcf\xdd\xff\xe0\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x90\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\x7f\x68\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x2c" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\xff\xa5\xf4\xff\x27\x16\xfc\xfe" "\x7f\x7c\x3f\xe8\xff\xf5\xff\x47\x40\xff\x3f\x6c\x19\xfd\xbf\xf7\xff" "\xf5\xff\xcb\xfc\xfc\xfa\x7f\xfd\x3f\xeb\xce\xbf\xff\x3f\xf0\x1f\xdb" "\x93\xf4\xff\xb9\xfb\x1f\x1e\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9" "\xfb\x1f\x11\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x8f\x8c\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x47\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe" "\x5f\xff\xbf\x94\xfe\xff\x88\xde\xff\xd7\xff\xeb\xff\x17\xee\xfa\xd5" "\xe9\x7f\x26\xe8\xff\xd7\xe9\xff\x47\x8c\xf4\xff\xab\x95\xfe\x7f\xc8" "\x39\xf7\xf3\x9b\x7f\x7b\xcb\xf9\xfc\x07\xd0\xff\xeb\xff\x59\x77\xfe" "\xfd\xff\x81\xff\x51\x93\xf4\xff\xb9\xfb\x1f\x1d\xb7\x5c\xb1\x5a\x9d" "\xb8\xd0\xdf\x24\x00\x00\x00\x30\x2b\xb9\xfb\x1f\x13\xb7\x74\xf2\xe7" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\x57\xc5\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xd5\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\x9b\xbf\xbe\xfe\x7f\x99\xbc\xff\x3f\xec\xf0\xfd\xff\x5d\xee\x74" "\x9f\x7b\xf7\xdb\xff\x7b\xff\x7f\x98\xf7\xff\xa7\xee\xff\x6f\xfb\xce" "\x68\xb2\xff\x97\x59\x77\x64\x6e\xfd\x7f\xee\xfe\x6b\xe2\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\x63\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x71\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xf8\xb8" "\xa5\x93\xfd\xaf\xff\x6f\xad\xff\xbf\x74\xdf\xaf\x3b\xa3\xff\xdf\xab" "\x5d\xf4\xff\x4b\xef\xff\xef\xae\xff\xd7\xff\xeb\xff\x47\xe8\xff\x87" "\x79\xff\x7f\xc4\xde\x3f\xe6\x76\xea\x87\xfa\x7f\xfd\xbf\xf7\xff\xbd" "\xff\xcf\xe1\xcc\xad\xff\xcf\xdd\xff\x84\xb8\xa5\x93\xfd\x0f\x00\x00" "\x00\x3d\xc8\xdd\xff\xc4\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f" "\x52\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x39\x6e\xe9\x64\xff" "\xeb\xff\x5b\xeb\xff\xf7\xff\x3a\xef\xff\xb7\xd6\xff\x7b\xff\x7f\xa5" "\xff\xd7\xff\x8f\xd0\xff\x0f\xd3\xff\x8f\x68\xe5\xfd\xff\x0b\xfc\xae" "\xd9\x76\x3f\x7f\x58\xdb\xfe\xfc\xfa\x7f\xfd\x3f\xeb\xe6\xd6\xff\xe7" "\xee\x7f\x4a\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x6a\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x2d\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x9f\x1e\xb7\x74\xb2\xff\xf5\xff\xfa\xff\x65\xf4\xff" "\xf9\x15\xf4\xff\xfa\xff\x8b\xdf\xff\x27\xfd\xff\x32\xe9\xff\x87\xe9" "\xff\x47\xb4\xd2\xff\x5f\xa0\x6d\xf7\xf3\x4b\xff\xfc\xfa\x7f\xfd\x3f" "\xeb\xe6\xd6\xff\xe7\xee\x7f\x46\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e" "\xe4\xee\x7f\x66\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x2b\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x1d\xb7\x74\xb2\xff\xf5\xff" "\xfa\xff\x65\xf4\xff\xde\xff\xd7\xff\x7b\xff\x5f\xff\x7f\x6e\xf4\xff" "\xc3\xf4\xff\x23\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x49\xcd\xad\xff\xcf" "\xdd\x7f\x6d\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x4e\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x37\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x9f\x17\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xbf\xf9\xeb\xeb\xff\x97\x49\xff\x3f\x4c\xff\x3f\x42\xff\xaf" "\xff\xd7\xff\xeb\xff\x99\xd4\x8c\xfa\xff\x33\x7e\xd5\xa9\xd5\xf3\xe3" "\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x0b\xe2\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x85\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\x7f\x5d\xdc\xd2\xc9\xfe\xd7\xff\xcf\xa6\xff\xdf\xcb\xf9\xda\xea\xff" "\x77\x56\xab\x95\xfe\x7f\xd5\x69\xff\xbf\x73\xc6\xdf\xcf\xfa\xbe\xd4" "\xff\xeb\xff\x8f\x80\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xaf\xff\xd7" "\xff\x33\xa9\x19\xf5\xff\x7b\x3f\xce\xdd\xff\xa2\xb8\xa5\x93\xfd\x0f" "\x00\x00\x00\x3d\xc8\xdd\xff\xe2\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x49\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x34\x6e\xe9" "\x64\xff\xeb\xff\x67\xd3\xff\xef\x69\xab\xff\xf7\xfe\xff\xd9\xdf\x1f" "\x3d\xf5\xff\xde\xff\x5f\xa7\xff\x3f\x1a\xfa\xff\x61\xfa\xff\x11\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa4\xe6\xd6\xff\xe7\xee\x7f\x59\xdc\x74" "\xe2\xf8\x05\xff\x16\x01\x00\x00\x80\x99\xc9\xdd\xff\xf2\xb8\xa5\x93" "\x3f\xff\x07\x00\x00\x80\x1e\xe4\xee\x7f\x45\xdc\x62\xff\x03\x00\x00" "\xc0\x42\x5d\xbb\xf6\x33\xb9\xfb\x5f\x19\xb7\x74\xb2\xff\xf5\xff\xd3" "\xf6\xff\x27\xce\xf8\x39\xfd\xbf\xfe\xff\xec\xef\x0f\xfd\xbf\xfe\x5f" "\xff\x7f\xf1\xe9\xff\x87\xe9\xff\x47\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\x93\x9a\x5b\xff\x9f\xbb\xff\x55\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a" "\x90\xbb\xff\xfa\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x75\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x26\x6e\xe9\x64\xff\xeb\xff" "\xbd\xff\xaf\xff\xd7\xff\xeb\xff\x37\x7f\x7d\xfd\xff\x32\xe9\xff\x87" "\xe9\xff\x47\xe8\xff\x0f\xec\xe7\xcf\xe5\x69\x6c\xfd\xff\xa1\xfb\xff" "\x93\xa7\xff\x4f\xfd\x3f\x6d\x38\x8f\xfe\x7f\x77\x77\xf7\xaa\x8b\xde" "\xff\xe7\xee\x7f\x6d\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf" "\x21\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x17\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\xaf\x8f\x5b\x3a\xd9\xff\xfa\xff\x4e\xfb\xff" "\xfc\x56\x5f\x56\xff\x7f\xf5\x6a\xa5\xff\xd7\xff\xeb\xff\xf5\xff\xc3" "\xf4\xff\xc3\xf4\xff\x23\xf4\xff\xde\xff\xf7\xfe\xbf\xfe\x9f\x49\xcd" "\xed\xfd\xff\xdc\xfd\x6f\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc" "\xfd\x6f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x37\xc5\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\x9b\xe3\x96\x4e\xf6\xbf\xfe\xbf\xd3" "\xfe\xdf\xfb\xff\xfa\x7f\xfd\xff\x51\xf7\xff\xb7\xae\xf4\xff\x47\x62" "\x11\xfd\xff\xce\xc1\x5f\x7f\xee\xfd\xff\x35\xfa\x7f\xfd\xff\x80\xee" "\xfa\xff\x7b\xdc\x6d\xdf\x0f\xf5\xff\xfa\x7f\xd6\xcd\xad\xff\xcf\xdd" "\xff\x96\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xd6\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x5b\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xbf\x3d\x6e\x3a\xd6\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\xe6\xaf\x7f\xc4\xef\xff\x9f\x58\xad\x56\xfa\xff\x09\x2c" "\xa2\xff\x1f\x30\xf7\xfe\x7f\x9a\xf7\xff\xcf\xfe\x5f\xf9\x69\xfa\x7f" "\xfd\xff\x92\x3f\xbf\xfe\x5f\xff\xcf\xba\xb9\xf5\xff\xb9\xfb\xdf\x11" "\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xdf\x19\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\xef\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x77\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x6f\xbe\xff" "\xbf\x66\x11\xfd\xbf\xf7\xff\x27\xa2\xff\x1f\x36\x8f\xfe\xff\x60\xfa" "\x7f\xfd\xff\x92\x3f\xbf\xfe\x5f\xff\xcf\xb9\xdb\x56\xff\x9f\xbb\xff" "\x3d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xbd\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xbe\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\x7f\x7f\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xcf\xa7\xff\xcf\xcf" "\xa9\xff\x6f\xab\xff\x3f\x39\xbb\xfe\xff\xd4\xbe\xff\xbc\x4e\xde\xff" "\xd7\xff\x4f\x44\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\x5f\xab" "\xff\x67\x4a\x73\x7b\xff\x3f\x77\xff\x07\xe2\x96\x4e\xf6\x3f\x00\x00" "\x00\xf4\x20\x77\xff\x07\xe3\xd6\xff\xeb\xd6\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xff\x50\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x38\x6e" "\xe9\x64\xff\xeb\xff\xf5\xff\xde\xff\xd7\xff\x37\xff\xfe\xbf\xfe\xbf" "\x2b\xfa\xff\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe\xdf\xfb\xff\x4c\x6a" "\x6e\xfd\x7f\xee\xfe\x8f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee" "\xfe\x8f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xc7\xe2\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\xc6\xb8\xa5\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xdb\xff\x1e\xea\xff\xdb\xa0\xff\x1f\x76\x34" "\xfd\xff\x8e\xfe\x5f\xff\x5f\xfd\xfc\x1d\xe2\x7f\x05\xfa\x7f\xfd\xff" "\xd8\xaf\xa7\x4d\x73\xeb\xff\x73\xf7\x7f\x3c\x6e\xe9\x64\xff\x03\x00" "\x00\x40\x6b\x8e\x6f\xf8\xb9\xdc\xfd\x9f\x88\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x4f\xc6\x2d\xf6\x3f\x00\x00\x00\x2c\xd2\xb1\x0d\x3f" "\x97\xbb\xff\x53\x71\xcb\x22\xf7\xff\xa6\x0a\x7d\x98\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x37\x7f\x7d\xfd\xff\x32\x6d\xa5\xff\xcf\x6f\x0a" "\xfd\xbf\xf7\xff\x43\x3f\xfd\xff\x9d\xf7\xfd\x68\x69\xef\xff\x9f\xfd" "\xef\xaf\x4b\x57\xfa\x7f\xfd\x3f\x53\x9b\x5b\xff\x9f\xbb\xff\xd3\x71" "\xcb\x22\xf7\x3f\x00\x00\x00\xb0\x49\xee\xfe\xcf\xc4\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\x67\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\x73\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x9b" "\xbf\xbe\xfe\x7f\x99\xbc\xff\x3f\x4c\xff\x3f\x42\xff\xbf\xd5\xf7\xf3" "\x97\xfe\xf9\xf5\xff\xfa\x7f\xd6\xcd\xad\xff\xcf\xdd\xff\xf9\xb8\xa5" "\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x85\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\xff\x62\xdc\x62\xff\x03\x00\x00\x40\x33\xf6\x76\x7f" "\xc6\x65\x1d\xee\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\xfe\xfa" "\xfa\xff\x65\xd2\xff\x0f\xd3\xff\x8f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\x26\x35\xb7\xfe\xff\x4b\x7b\xbf\xea\xd4\xea\xcb\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\x2b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xd5\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x5a\xdc\xd2" "\xc9\xfe\xd7\xff\xeb\xff\x97\xd1\xff\xef\xee\xee\x5e\xa5\xff\xd7\xff" "\xef\xff\xfd\x9c\xee\xff\x6f\x5a\x70\xff\x7f\x9d\xfe\x7f\x62\xfa\xff" "\x61\xfa\xff\x11\xfa\x7f\xfd\xff\xec\xfb\xff\xb3\xff\x2d\x79\x9a\xfe" "\x9f\x39\x9a\x5b\xff\x9f\xbb\xff\xeb\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\x1b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xcd" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x56\xdc\xd2\xc9\xfe\xd7" "\xff\xcf\xa0\xff\x3f\xa5\xff\xf7\xfe\xbf\xfe\x7f\xe5\xfd\x7f\xfd\xff" "\x44\xf4\xff\xc3\xf4\xff\x23\x5a\xec\xff\x4f\x9d\xfb\x6f\x7f\xdb\xfd" "\xfc\x61\x6d\xfb\xf3\x7b\xff\x5f\xff\xcf\xba\xb9\xf5\xff\xb9\xfb\xbf" "\x1d\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x13\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xdf\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\xef\xc5\x2d\x9d\xec\x7f\xfd\xff\xd1\xf5\xff\xb7\xfd\x77\xd7" "\xcb\xfb\xff\x3b\xab\xcd\x9f\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x2f\x36" "\xfd\xff\x30\xfd\xff\x88\x16\xfb\xff\xf3\xb0\xed\x7e\x7e\xe9\x9f\x5f" "\xff\xaf\xff\x67\xdd\xdc\xfa\xff\xdc\xfd\xdf\x8f\x5b\xf6\x0f\xbf\xe3" "\xe7\xf7\xbb\x04\x00\x00\x00\xe6\x24\x77\xff\x0f\xe2\x96\x4e\xfe\xfc" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\x87\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xa3\xb8\xa5\x93\xfd\xaf\xff\x9f\xc1\xfb\xff\x0d\xf6\xff" "\xde\xff\xdf\xfc\xfd\xa1\xff\x9f\x75\xff\x7f\x89\xfe\xbf\x0d\xfa\xff" "\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe\x7f\xa2\xfe\x3f\xbf\x9b\xf5\xff" "\xbd\x9b\x5b\xff\x9f\xbb\xff\xc7\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a" "\x90\xbb\xff\x27\x71\xcb\x15\x3b\xdb\xfa\x48\x00\x00\x00\xc0\xc4\x72" "\xf7\xff\x34\x6e\xf1\xe7\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x37\xc5\x2d" "\x67\xec\xff\x4d\x6d\x77\x2b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf" "\xf9\xeb\xeb\xff\x97\x49\xff\x3f\xec\x5c\xfb\xff\x93\xab\xc3\xf5\xff" "\x49\xff\xaf\xff\xd7\xff\xf7\xda\xff\x7b\xff\x9f\xdb\x1d\x71\xff\x7f" "\xf5\x58\xff\x9f\xbb\xff\x67\x71\x8b\x3f\xff\x07\x00\x00\x80\xc5\x39" "\x7e\xc0\xcf\xe7\xee\xff\x79\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\xff\x22\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x19\xb7\xdc\x7c" "\xc9\xb6\x3e\xd2\x91\xd2\xff\xeb\xff\xf5\xff\x23\xfd\xff\x2d\xf1\x0d" "\xae\xff\xd7\xff\xeb\xff\x17\x41\xff\x3f\xcc\xfb\xff\x23\xf4\xff\x53" "\xf4\xf3\x97\xeb\xff\xdb\xe8\xff\x57\x2b\xfd\x3f\x87\x77\xc4\xfd\xff" "\xe8\x8f\x73\xf7\xff\x2a\x6e\xf1\xe7\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\xbf\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xdf\xc4\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\x6f\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\x7f" "\xc8\xfe\x7f\x2f\xcd\x6c\xba\xff\xf7\xfe\xbf\xfe\x3f\xe8\xff\x97\x41" "\xff\x3f\x6c\xfb\xfd\xff\x0d\x83\x5f\x56\xff\xdf\x44\xff\xef\xfd\xff" "\x46\xfa\x7f\xef\xff\x33\x85\xb9\xf5\xff\xb9\xfb\x7f\x17\xb7\x74\xb2" "\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x1f\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x7f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x3f\xc6" "\x2d\x9d\xec\xff\xad\xf5\xff\xf1\x5f\xb5\xfe\x7f\xf1\xfd\x7f\xfb\xef" "\xff\x0f\xf6\xff\xbb\x2b\xfd\xbf\xfe\x5f\xff\x3f\x2f\xfa\xff\x61\xdb" "\xef\xff\x87\xe9\xff\xf5\xff\x4b\xfe\xfc\xfa\x7f\xfd\x3f\xeb\xe6\xd6" "\xff\xe7\xee\xff\x53\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff" "\x73\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x25\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\xff\x1a\xb7\x74\xb2\xff\xbd\xff\xaf\xff\xd7" "\xff\x7b\xff\x5f\xff\xbf\xf9\xeb\xeb\xff\x97\x49\xff\x3f\x4c\xff\xbf" "\x59\xfd\x8d\xd2\xff\xeb\xff\xf5\xff\xfa\x7f\x26\x35\xb7\xfe\x3f\x77" "\xff\xdf\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xdf\xe3\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xe6\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xff\x47\xdc\xd2\xc4\xfe\x3f\x36\xfa\x57\xe8\xff\x17\xd9" "\xff\x57\x1e\xad\xff\xd7\xff\xeb\xff\xf5\xff\xec\xa7\xff\x1f\xb6\xcd" "\xfe\xff\x9e\x77\x1c\xff\xb2\xde\xff\xdf\x7a\xff\x9f\x1f\x41\xff\xaf" "\xff\xd7\xff\x33\x89\xb9\xf5\xff\xb9\xfb\xff\x19\xb7\x34\xb1\xff\x01" "\x00\x00\x80\xdb\xe4\xee\xff\x57\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\xff\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x6f\x89\x5b\x3a" "\xd9\xff\x23\xfd\xff\xc9\xfa\x0b\xf5\xff\x83\xbc\xff\xbf\xff\xf3\xeb" "\xff\x37\x7f\x7f\xe8\xff\xf5\xff\xfa\xff\x8b\x4f\xff\x3f\xcc\xfb\xff" "\x23\xf4\xff\xde\xff\xd7\xff\xeb\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\xff" "\x89\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xb7\xc6\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\x7f\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\x7f\x71\x4b\x27\xfb\xdf\xfb\xff\x4b\xea\xff\x2f\xd7\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xff\x08\xfd\xff\x30\xfd\xff\x08\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x73\xf7\xff\x3f\x00\x00\xff\xff" "\xf6\x9e\x52\x4f", 25062); syz_mount_image( /*fs=*/0x20000000, /*dir=*/0x20000580, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x20108c0, /*opts=*/0x20002ac0, /*chdir=*/0xfe, /*size=*/0x61e6, /*img=*/0x2000ee40); break; case 1: memcpy((void*)0x20000040, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=O_SYNC|O_CREAT|O_RDWR*/ 0x101042ul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 2: memset((void*)0x20000140, 50, 1); syscall(__NR_pwrite64, /*fd=*/r[0], /*buf=*/0x20000140ul, /*count=*/0xfdeful, /*pos=*/0xfeccul); break; case 3: memcpy((void*)0x20000100, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000100ul, /*flags=O_SYNC|O_CREAT|FASYNC|O_RDWR*/ 0x103042ul, /*mode=S_IXOTH*/ 1ul); if (res != -1) r[1] = res; break; case 4: memcpy((void*)0x20000040, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[2] = res; break; case 5: syscall(__NR_sendfile, /*fdout=*/r[1], /*fdin=*/r[2], /*off=*/0ul, /*count=*/0xd612ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }