// https://syzkaller.appspot.com/bug?id=662a04ae85ea6bf2ddac9be5575e8f2377eca6aa // 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 #ifndef __NR_copy_file_range #define __NR_copy_file_range 285 #endif #ifndef __NR_dup #define __NR_dup 23 #endif #ifndef __NR_fcntl #define __NR_fcntl 25 #endif #ifndef __NR_io_uring_setup #define __NR_io_uring_setup 425 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 287 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static 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; } } //% 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; } 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 loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 9; 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) + (call == 1 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: NONFAILING(memcpy((void*)0x20005d80, "bcachefs\000", 9)); NONFAILING(memcpy((void*)0x20000240, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x200003c0, "\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x69" "\x6e\x6f\x64\x65\x73\x5f\x33\x32\x62\x69\x74\x2c\x63\x6f\x6d\x70\x72" "\x65\x73\x73\x69\x6f\x6e\x3d\x7a\x73\x74\x64\x2c\x6e\x6f\x72\x65\x63" "\x6f\x76\x65\x72\x79\x2c\x76\x65\x72\x73\x69\x6f\x6e\x5f\x75\x70\x67" "\x72\x61\x64\x65\x3d\x6e\x6f\x6e\x65\x2c\x72\x65\x63\x6f\x76\x65\x72" "\x79\x5f\x70\x61\x73\x73\x5f\x6c\x61\x73\x74\x3d\x63\x68\x65\x63\x6b" "\x5f\x64\x69\x72\x65\x6e\x74\x73\x2c\x64\x65\x66\x63\x6f\x6e\x74\x65" "\x78\x74\x3d\x75\x73\x65\x72\x5f\x75\x2c\x66\x6f\x77\x6e\x65\x72\x3d" "\x12\x43\x35\xc5\x9a\xe9\x11\x8b\x87\x13\x72\x7f\xca\x2c\x98\x6c\x1c" "\x7c\xd9\x78\x66\x00\xd7\xbc\xc1\xc1\xb3\x6f\x05\xed\xea\x77\x24\x1a" "\xff\x6b\x2f\xd8\x72\xf8\xbc\x8b\x15\x5f\x68\xf1\x2e\xd8\x4c\x94\x99" "\x6a\x73\x25\x2d\x6b\x79\x9a\x8c\xd9\xc7\x49\xc5\x5a\x0c\x61\xef\xab" "\xdd\x6d\x6d\x26\x82\x6b\x9b\x07", 212)); NONFAILING(sprintf((char*)0x20000494, "%020llu", (long long)0)); NONFAILING(memcpy((void*)0x200004a8, ",\000", 2)); NONFAILING(memcpy( (void*)0x20005dc0, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\xac\x56" "\x82\x95\x2c\xcc\x0a\x09\xb1\x18\xd9\x8e\xb8\x60\x0b\x14\x88\xf1\x9d" "\xc3\xc6\x39\x3b\xb6\x83\x8d\x2c\x2c\xc0\xe2\x38\x49\x86\xc5\xd6\x59" "\x48\xb2\x3e\x10\x1f\x97\xf0\x95\xc3\x04\x3b\x29\x55\x41\x1d\x04\xe2" "\x84\x03\x97\x73\x95\xba\x4a\x70\xe9\x12\xe2\x3b\x52\x25\x63\x8c\x2f" "\xbe\x2a\x0a\xec\xf8\x0f\x1f\xf9\x3a\x2a\x76\xfe\x88\x8f\xa8\xce\x12" "\x47\x24\xc7\x7b\xb5\x3b\xdd\xbb\xd3\xbd\xfd\x4e\xcf\x4e\xcf\x0a\x61" "\xff\x7e\x55\xda\x99\xee\x7d\xe6\x79\x9f\xa7\xe7\x9d\x9e\xee\x5e\xed" "\x6c\x04\x00\x00\xc0\x2f\x85\x17\x7e\x67\xdf\xeb\x9f\x38\xe7\x43\xdf" "\xbd\x77\xe2\xf8\x5d\x1f\xf9\xa3\x5b\xee\x89\x86\xeb\xd3\xeb\x9b\x69" "\xc0\x48\x72\x7b\xdb\x9b\x55\x21\x0b\x69\xdd\xf7\x4e\x66\x9e\xd9\xc1" "\xc6\xe8\xf4\x6d\x7e\x5e\x9c\xfd\xc7\x2b\x5e\x1f\xb9\xef\xca\x8f\x3f" "\x78\xf9\x87\xbf\xb7\xed\x4f\x96\x8d\xaf\x59\x3b\x71\xd9\xd7\x0f\x5f" "\x75\xff\x7d\xcf\x7d\xe0\x67\xcf\x3d\xf2\xd8\x95\x65\xe3\xa4\xf3\xe9" "\xc2\xd9\xe5\xf8\x2f\xe2\x28\x5a\xf3\xa3\xc3\x8f\xdc\xff\xed\x3f\x3d" "\x7b\x6a\x5d\x3c\x35\x7e\x3c\x72\x77\xb4\x6c\x59\xbc\xfc\x9b\xcb\xe2" "\x5c\x8a\xf5\x27\xa2\x28\xba\x69\xa6\xce\xec\x37\x0f\x1f\xdf\x70\xf3" "\xd4\xed\x3d\x5f\x1a\xcc\xac\x3f\x33\x97\xc4\x7c\xff\xe5\xd6\x4c\xe6" "\xd9\x9d\x5b\x3f\xf3\xe4\x91\xcf\x8f\x7f\xfb\xf0\xd8\x9e\x0d\x3f\x39" "\x76\xe9\xee\xbb\x67\x43\xe2\x66\xdb\x7c\x8a\xa2\x33\xb6\xb5\x3f\x7e" "\x20\x8a\xa2\xa1\xe4\xdf\x94\x74\xb6\x8d\xa6\x0f\x4e\x6e\x37\x46\x51" "\xb4\xb8\xed\x71\xef\x2b\xa9\xeb\x82\x2e\xeb\xbf\x28\xb0\xbc\x3a\xb9" "\x5d\x94\xdc\x0e\x97\xe4\x49\xbf\x7f\x7e\x6e\xb9\xd1\x65\x1d\x8d\xdc" "\xed\x60\x97\x8f\xeb\x55\x6d\x81\xf3\xe7\xe5\xb7\x5f\x7e\x67\xb4\x50" "\xd2\x3e\xcf\x48\x6e\x9f\x49\x6e\x2f\x9c\x67\x9e\x7a\xfa\x2f\x8e\x6a" "\x71\xd4\x98\x29\x7f\x67\x3c\x3b\x47\xa2\xb6\xe7\x2d\x8e\xe2\xe9\xb9" "\xdd\x9c\x59\xae\x4d\x2f\x47\x33\xcb\x51\x7e\x39\xce\x2d\xd7\x72\xcb" "\xf5\x81\x5c\x5f\xd3\xe3\x26\x1b\xb6\x1e\xc7\xd9\xf5\x69\x5c\x6e\x7d" "\xba\x3b\x6e\x24\xeb\xcf\x6f\xdf\x57\x17\xd8\x14\x58\xbf\x32\xb9\x6d" "\x26\x2f\xd4\x37\xd2\xe5\x28\x7f\xa7\x65\x78\xce\x9d\xd9\x3e\xa2\xb6" "\xba\x8e\x9e\xaa\x89\x11\x50\x0b\xbc\xf6\xd2\xf5\x33\xe5\x25\x4f\xc6" "\x70\xb2\x6e\x38\x5e\x3e\xe7\x31\x93\x05\xd2\xef\x1d\xfd\xce\xf6\x2d" "\xaf\xfd\xf0\x8e\x67\x46\x02\x75\xc4\x4f\xc7\x49\xfe\xb8\xa7\xfc\xe3" "\x13\x8f\x1f\xf9\xda\x75\xcf\xae\x1c\x0d\xe5\xdf\x56\x4b\xf2\xd7\x7a" "\xca\xff\x42\xfd\xc5\x13\x5f\x3d\x36\xba\x24\x98\xff\x50\x9a\xbf\xde" "\x53\xfe\xcd\x3f\xff\xf1\x03\xf7\x5e\x7d\x70\x45\x70\xfb\x1c\x4d\xb7" "\x4f\xa3\xa7\xfc\x6b\xbf\xbc\xe4\xce\xe3\x07\x37\x0d\x8e\x85\xf2\x3f" "\x91\xe6\x6f\xf6\x94\xff\xb2\x1b\xd6\x5c\x7e\xee\xb1\x03\xb7\x06\xeb" "\x5f\x9f\x6e\x9f\xa1\x9e\xf2\xff\xe0\xa1\x75\x27\x6f\x38\xf4\x8d\x67" "\x83\xf9\xa3\x34\xff\xe2\x9e\xf2\xbf\xf2\xf8\x53\xab\xeb\x2b\x1f\x7e" "\x39\x98\xff\x48\xba\x7d\x86\x7b\xca\x7f\xcd\x86\x47\xaf\xf8\xd8\xaa" "\xfb\x1e\x0b\x6e\xff\x97\xd2\xfc\x4b\x7b\xca\xbf\xe5\xe5\xfb\xb7\xed" "\x79\xf2\xf9\x75\xc1\xf9\xb9\x31\xdd\x3e\x23\x3d\xe5\x3f\x71\xc5\xf7" "\x5f\x3d\x39\x72\xe5\x53\xa1\x7d\x67\xfc\xc4\xa9\x7e\x87\x05\xf8\xc5" "\xf2\xb6\xe4\x18\xeb\x81\x64\xb9\xd7\xf3\xcc\xaa\xda\xce\x17\x1e\x1d" "\x6b\xb4\x8e\xf9\x96\x24\xff\x96\xf6\x73\xa0\x9c\xb8\xed\xdc\x05\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x7a\xf5\xf0\x15\xff\xfe\x0b\xed\xcb\xef\xfc\x3f\xb7\x6e\x7e" "\xf9\x3f\xac\xd9\xd1\x48\x96\x07\x1b\x51\x14\x47\x51\xf4\x5a\xbd\xb5" "\x9c\xae\x5f\x14\x45\xf1\x50\x14\x45\xfb\xf6\x6f\xdf\xbb\x7f\xc7\xae" "\xcf\x8e\xfd\xd6\xee\x03\x7b\x77\x6d\xdf\x39\xb6\x7d\xff\xd8\xc4\xae" "\xfd\x7b\x6f\x1f\xfb\x5b\x7f\x73\x6c\xef\xc4\x9e\x9d\xdb\x6f\x9f\xfa" "\xee\xfa\x8b\x36\xb4\x1e\xb7\x7c\x3a\x5b\x14\x2d\x8f\xcf\x9d\x53\xcb" "\xe4\xe4\xe4\x64\x14\x45\x63\xed\xeb\xd2\xf1\x7e\xef\xa3\x4f\xff\xbf" "\xcd\x8f\xfd\xe5\xa7\xa3\x68\xfd\x59\xdf\x5f\xd3\x08\xf6\xf3\xde\xff" "\xfa\xea\x87\x56\x14\x7c\xcd\x89\xc7\x27\x37\xfe\x8b\x4b\x1f\xba\x63" "\xd1\xff\x3a\xb3\xb5\x62\x24\xa9\x6b\x24\x54\xd7\x48\x76\x5d\x5a\xc1" "\xf0\xf8\x4b\x7f\xf6\xc1\x67\x7e\x38\x55\xd7\xdb\x3b\xd5\xf5\xc8\x8b" "\xd7\xfe\xdf\x4c\x41\xd3\x2b\x66\xf3\x24\x6a\x83\x51\x6d\xfa\xce\x60" "\xbc\xb8\xb0\x8e\x99\xaa\x67\xeb\x99\xde\x5e\x8d\x9b\x77\xec\x9c\x58" "\x5f\xbe\x7d\xe3\xc0\xf6\x7d\xf7\xf3\x7f\x78\xec\xdf\xdd\xb6\xf9\x9f" "\xb6\xb6\x6f\x33\xd8\x47\x97\xdb\x77\x6a\xab\x36\x26\x1f\xfc\xe9\xbd" "\xef\xbe\xfb\x83\x13\xef\x3f\x8d\x9f\xf7\xb2\xed\xdd\xd6\xc2\x74\x7d" "\xe9\xf6\x6b\x26\xdb\xfb\x8c\xa4\xaf\x33\x02\x7d\xd5\x02\x7d\xdd\x3a" "\xf6\xca\xd1\x7f\xf6\x6f\xff\xd3\x57\xef\x8e\xd6\x37\x7e\x7a\xde\xdc" "\xb1\xcb\xfa\x1a\x48\x26\xc0\x40\xbc\xb2\xab\x71\xd3\x11\x16\xc7\xcb" "\x32\xb1\xcd\x24\x3e\x7d\xc6\xd3\xc7\xbd\x77\xff\x2d\x7b\xde\xbb\xef" "\xf6\x3b\x2e\xda\x71\xcb\xf6\xcf\x4e\x7c\x76\x62\xd7\x86\x0d\x97\x5e" "\x7e\xf1\x86\x8b\x2f\xb9\x7c\xc3\x7b\xa7\x5b\x6f\x7d\xed\x5b\xff\xe9" "\xf8\xef\xee\xb2\xff\x25\x49\xa6\x25\xf1\xaa\xc2\xed\x96\x5f\x9b\x8e" "\x7b\xde\xf4\xd7\x7a\x94\x94\x9d\xde\xb4\xdd\xc9\x1a\x88\x86\x5b\xb7" "\xb9\xed\x9c\x86\xe7\xbb\x1e\x4e\xbe\x37\x1c\x2f\x9f\x93\x6b\xb2\x40" "\xfa\xbd\xa3\xdf\xd9\xbe\xe5\xb5\x1f\xde\xf1\x4c\xe8\x95\x17\x3f\xdd" "\x1a\x71\x28\x5a\xda\xba\x8d\x57\x07\x22\x77\xe6\x1e\x58\x9f\x29\xb8" "\x68\xfc\x53\xf3\xba\xdc\xfd\xbb\xcd\x9d\xe9\xd7\xdc\xeb\x72\xa0\x55" "\x5d\xfe\x75\x59\x56\x57\xd9\xbc\x9a\xaa\xab\x7c\x5e\xb5\x57\xd4\x61" "\x3f\xf6\xe2\x05\x0f\xfc\xf4\xc9\x2f\xfe\xf3\xeb\xbb\xd8\x5f\xb4\x85" "\x4e\xd7\x97\xd6\xb9\x78\xea\xe5\x72\x71\xd4\xf6\xba\x9d\xbb\xad\x8a" "\xfa\xea\xe2\xf9\x19\x2f\xda\x0e\x37\x5e\xb4\xf7\x0f\x6f\xdf\xb1\xe5" "\x50\xd9\xfe\xbc\xfd\x99\x69\xff\x9a\x13\x8f\x4f\xfe\xcf\xd5\xf1\xc7" "\x0f\xec\xfb\xb3\xbd\xad\x15\xa7\xe4\xfd\xb2\xbd\xa0\x1e\xdf\x2f\x67" "\xaa\x9e\xad\x67\x7a\x7b\x35\x93\xe7\xe3\x74\xdd\xbe\x83\x51\x3d\xe9" "\x6b\xb8\xb0\xae\x4d\xf1\x93\x1f\x78\xf7\x2d\xcf\xfe\xca\x4c\x7d\x8b" "\x16\x45\xb7\x6d\xdf\xbf\x7f\xef\xc5\xad\xaf\x6f\xd5\xbe\xfe\x7c\xd1" "\x99\x2b\x76\xdc\xb3\xea\xdc\x39\x7d\x5d\xd2\xfa\x5a\xb6\xdf\x3f\x2f" "\xb7\x5c\xba\xdf\xaf\x15\xf7\x57\xb6\xdf\xcf\x8f\x33\x1b\x5f\x9c\x6f" "\x2c\xb7\x3c\x1c\xd5\x7b\x7a\x9f\xd8\xfc\xf3\x1f\x3f\x70\xef\xd5\x07" "\x57\x04\xdf\x27\x8e\x76\xfb\x3e\xf1\xdb\x99\xa5\x7a\xc5\xf7\x89\x5a" "\xe0\xf5\xfe\xe0\x5f\x7e\x65\xec\xf5\xeb\x3f\xf5\x7a\xd9\x7c\xba\x6a" "\xdf\xaa\xbb\x56\x14\x7c\xcd\xb7\x37\x3e\xf9\x8d\x3f\xf8\xd5\x8b\xdf" "\x7f\xed\xd5\x1f\x6e\xad\x38\x25\xfb\xa1\xf6\x82\x7a\xdc\x0f\xcd\x54" "\x9d\xd4\x93\x6e\xaf\xe9\xfd\xd0\x25\xa7\x4f\x1f\x6f\xde\xf3\x9c\x79" "\x21\xc6\xe3\x93\xe7\x7d\xfd\x5d\xd7\x9c\x3c\xfe\x85\x4f\xb6\x56\x94" "\x6d\xdf\x99\xe8\xa2\xed\xbb\xa1\x7c\x3f\x5f\x0f\xf4\x75\xfd\xc0\x3b" "\x96\x3d\xf4\x93\x55\xef\xe8\xdf\xfc\xdd\xb7\xf5\xaf\x2e\x78\xcf\xe2" "\x25\xa7\xd9\xfc\x6d\x26\xdb\xb7\x19\xd8\xbe\x33\x55\x27\xf5\xd4\xdb" "\xb7\xef\x7b\x6e\xdc\xbd\xf3\xa6\xd6\xf2\xe9\x7b\xdc\xd6\x32\x58\x72" "\xfe\x93\xbe\xef\xec\xbb\xfd\x8e\xcf\x6f\xdf\xb9\x73\x62\xef\xbe\xee" "\xfa\xea\xf6\xfd\x34\x1d\x27\xbf\x95\x7b\x7d\x3f\x4d\xdf\x3d\x96\x97" "\xf4\x95\x3e\x5f\xb3\x7d\x15\xdf\x19\x4a\xe2\x0b\xbe\xf5\x42\x14\x7c" "\x54\xf6\x4e\x37\xdb\xab\xdb\xd7\x5b\x5a\xff\x4d\xb9\x1c\xbd\xbe\xde" "\x00\x52\xb3\xef\x0b\x8b\x32\xeb\xf3\xfb\xcf\xf4\xba\xdf\x9a\x33\xa2" "\xcd\xef\xf9\xe2\xb7\x5e\x8c\xc7\x5a\xef\x97\xfd\xba\xde\x9a\x8e\x73" "\x4e\xee\x8d\xb9\xd7\xeb\xad\x65\xe7\x49\xef\xc8\x2d\x67\xcf\x93\x1a" "\x51\x5b\xdf\x2d\x73\xcf\x93\xa6\x1f\x52\x76\x9e\x94\x1f\xa7\xec\x3c" "\xe9\x82\xdc\x72\xf9\x79\xcc\x03\x85\x9d\x84\x9e\xbf\x81\xe4\x9d\xb7" "\xe8\xba\x69\xae\xde\xc6\x54\x86\xc2\xf9\x11\x47\xd1\x68\x92\x7f\x34" "\x59\x95\x1e\x6f\xae\x79\x4f\x74\x69\xfd\x99\x77\x7e\x34\x1e\xef\x6e" "\x7e\x74\x7b\x3c\x9d\x8e\xf3\x37\x72\x1b\xa8\xd7\xe3\xe9\xb2\xf9\xb1" "\x36\x2a\xae\xab\xdf\xf3\xe3\x5d\xb9\x07\x95\x3f\xdf\x87\x0a\x2b\x6b" "\x06\x9e\x8f\xb2\xe7\x7b\x6d\x26\xd1\xe4\x64\xd5\xf3\xf2\x91\x40\xd5" "\xe9\x79\xf9\x70\x14\xf7\x94\x7f\x7c\xe2\xf1\x23\x5f\xbb\xee\xd9\x95" "\xc1\xfc\xdb\x6a\x49\xfe\x5a\x4f\xf9\x5f\xa8\xbf\x78\xe2\xab\xc7\x46" "\x97\x04\xf3\x1f\x4a\xf3\x37\x7a\xca\xbf\xf6\xcb\x4b\xee\x3c\x7e\x70" "\xd3\x60\x30\xff\x13\xe9\xf6\x69\xf6\x94\xff\xb2\x1b\xd6\x5c\x7e\xee" "\xb1\x03\xb7\x06\xf3\xaf\x4f\xeb\x1f\xea\x29\xff\x0f\x1e\x5a\x77\xf2" "\x86\x43\xdf\x78\x36\x98\x3f\x4a\xf3\x0f\xf7\x94\xff\x9a\x0d\x8f\x5e" "\xf1\xb1\x55\xf7\x3d\x16\xcc\xff\x52\x9c\x8c\x33\xf5\xda\x8d\xa2\xc3" "\xc7\x37\xdc\xdc\x5a\x8e\xa7\x2f\xa1\x37\xdb\xea\x18\xc8\xd4\x15\xe5" "\x97\xe3\x99\xe5\x45\x45\x7d\x44\xf5\xf6\xf8\x5a\x1a\x96\x0c\x50\x8f" "\xe3\xec\xfa\x34\x2e\xb7\x3e\xed\xa3\x91\xac\x3f\xbf\xad\xc6\x22\x9b" "\x03\xeb\xd3\x57\x6d\x33\x79\x61\xbf\x91\x2e\x47\xf9\x3b\x9d\xd7\xa7" "\xbb\xa7\xb4\xae\xa3\x81\xf7\x9f\x53\xa5\xd6\x76\xec\x51\xb4\xbe\xec" "\xfa\x64\xbf\xbc\xf6\xa3\xd1\xdf\x6b\x5f\x4e\x7f\xfe\x9f\xce\x81\xc1" "\x46\xeb\xb9\xbb\x24\xb7\xbd\xca\xde\x3f\xf2\x7b\xef\x34\x5f\xf0\x3a" "\x6c\xe0\x12\x46\xd9\xf1\xc2\xdc\x9f\xbf\x2d\xee\xe9\xf5\xf7\xca\xe3" "\x4f\xad\xae\xaf\x7c\xf8\xe5\xe0\x75\xd5\x23\xdd\x5e\x57\xdd\x93\x59" "\x5a\x5c\x72\x5d\xb5\x6a\xbd\xc1\xfd\xc5\x91\x74\x7f\x5a\x6d\x7f\x34" "\x1a\xca\xff\xd2\x60\x92\xbf\xda\xfb\x41\x30\x7f\xf2\x7e\x50\x36\xcf" "\xde\x99\x5b\x2e\x9d\x67\x03\xc5\xe3\x95\xcd\xb3\xfc\x71\xca\x70\xb4" "\xb4\x53\xdf\x73\x7a\x4f\xbf\xb7\xe5\xe5\xfb\xb7\xed\x79\xf2\xf9\x75" "\xc1\x79\xb6\xb1\xf5\x82\x2f\x9f\x67\x0f\x67\x96\x96\x96\xce\xb3\x6a" "\x3f\x97\x0e\xce\xb3\xa7\xe3\x6e\xb6\x47\x30\x7f\xba\x3d\x82\xf9\x37" "\xf6\xe7\xb8\x26\x38\xcf\x92\xe3\x9a\xb2\x79\x76\x61\x6e\xb9\xfa\x3c" "\xcb\x1e\x8f\x7e\x3c\xb9\xbd\x2d\x17\x3f\x9c\x5c\x21\x9e\x6f\xdf\x27" "\xae\xf8\xfe\xab\x27\x47\xae\x7c\x2a\x38\xcf\x9e\xe8\x76\x9e\xfd\x7e" "\x66\x69\xa4\x74\x9e\xb5\x8e\x6f\x07\x7b\x3c\xbe\x0d\x3e\x4f\x33\xc7" "\xb7\x0b\x7d\x7c\xfe\xd6\x3e\xfe\xec\xeb\xf1\x61\x6b\xb9\x96\x5b\x2e" "\x3e\x3e\x4c\x7e\x9c\xbb\x50\xc7\x87\x9b\x02\xeb\xe7\x7b\x7c\x38\x3c" "\xe7\xce\x6c\x1f\xd1\x5b\xf1\xf8\x30\xb0\x9f\x01\x80\x4e\xbe\xfb\xe0" "\xed\xff\xbb\x7d\x39\x3d\xff\x4f\xdf\xbb\xd3\xf3\xff\x6f\xe5\x1e\x57" "\xf5\xbc\x32\xff\xff\xa1\x52\xe9\x75\xae\xaa\xe7\x95\xc1\xfc\x4f\xf4" "\xe7\x7c\x25\x78\x9c\x3a\x73\xbe\xb2\xd0\xe7\x5b\xd5\xae\x23\x97\x1f" "\x67\x2f\xd4\xf9\x56\x33\xc9\xef\x38\x7e\xd6\xd0\x6c\xfe\x99\xeb\xc8" "\x0b\x7d\x5d\x68\x61\xcf\x2b\x9d\x87\x24\xcb\x51\xfe\x4e\x8b\xf3\x10" "\x00\x00\xde\x0c\xe7\xff\xeb\xaf\xfc\x7a\xfb\x72\x7a\xfe\xdf\x7e\x6c" "\x37\x75\xfb\x7c\x72\x3f\x7f\x2c\xe8\x3c\x37\x90\xff\xd0\xa9\xfa\x79" "\xd5\x42\x5f\x27\x79\x2b\x9d\x47\xb7\xe5\x3f\x65\xe7\xd1\x0b\x7d\x1d" "\x6c\xa1\xaf\x53\xcd\xe7\x3a\xc0\x7f\x3e\x2b\xfd\x9e\xeb\x00\xc5\x5c" "\x07\x38\xb5\x75\x01\x00\x30\x3f\x5b\x6f\xde\x3b\x31\xb1\x6f\xcf\xf6" "\x1b\x27\xb6\xee\xd8\xb5\x63\xff\xcc\xfa\x81\xe9\x33\xa7\xb9\xff\x4f" "\xf5\x6f\x27\xb7\x1b\x73\x79\xca\xfe\xff\x74\x51\xfc\xe2\x0e\xf1\x9f" "\x0c\xe6\xcf\xd6\xf3\xbe\x40\x7c\x48\x23\xf9\x69\xeb\x67\x6e\xfc\xdc" "\x25\x5b\x6f\x9a\xb8\x75\xbe\xfd\x87\xc6\x2b\xeb\xbf\x28\xbe\x53\xff" "\xf9\xf3\x8b\x50\xff\x97\x07\xe2\x43\xaa\xf6\x1f\x1a\xaf\xac\xff\xa2" "\xf8\x4e\xfd\x5f\x1d\xcc\x9f\xad\xe7\xfd\x81\xf8\x90\xaa\xfd\x87\xc6" "\x2b\xeb\xbf\x28\xbe\x53\xff\x9f\x0a\xe6\xcf\xd6\xf3\xab\x81\xf8\x90" "\xaa\xfd\x87\xc6\x2b\xeb\xbf\x28\xbe\x53\xff\xf9\xdf\x07\x0b\xf5\xff" "\x6b\x81\xf8\x90\xaa\xfd\x87\xc6\x2b\xeb\xbf\x28\xbe\x53\xff\xd7\x04" "\xf3\x67\xeb\xf9\x40\x20\x3e\xa4\x6a\xff\xa1\xf1\xca\xfa\x2f\x8a\xef" "\xd4\xff\xb5\xc1\xfc\xd9\x7a\xfe\x4e\x20\x3e\xa4\x56\xb1\xff\xd0\x78" "\x65\xfd\x17\xc5\x77\xea\xff\xba\x60\xfe\x6c\x3d\x57\x04\xe2\x43\xaa" "\x3e\xff\xa1\xf1\xca\xfa\x2f\x8a\xef\xd4\xff\xa7\x83\xf9\xb3\xf5\x8c" "\x07\xe2\x43\xaa\xf6\x1f\x1a\xaf\xac\xff\xa2\xf8\x4e\xfd\x6f\x09\xe6" "\xcf\xd6\xf3\x77\x03\xf1\x21\x55\xfb\x0f\x8d\x57\xd6\x7f\x51\x7c\xa7" "\xfe\xaf\x0f\xe6\xcf\xd6\xf3\xc1\x40\x7c\x48\x51\xff\xd1\x78\xf7\xfd" "\x87\xc6\x2b\xeb\xbf\x28\xbe\x53\xff\xbf\x11\xcc\x9f\xad\xe7\xef\x05" "\xe2\x43\x3a\x3e\xff\x85\xf5\x75\x37\x5e\x59\xff\x45\xf1\x9d\xfa\xbf" "\x21\x98\x3f\x5b\xcf\xaf\x07\xe2\x43\xaa\xce\xff\xd0\x78\x65\xfd\x17" "\xc5\x77\xea\xff\x37\x83\xf9\xb3\xf5\x7c\x28\x10\x1f\x52\xb5\xff\xd0" "\x78\x65\xfd\x17\xc5\x77\xea\x7f\x6b\x30\x7f\xb6\x9e\x0f\x07\xe2\x43" "\xaa\xf6\x1f\x1a\xaf\xac\xff\xa2\xf8\x4e\xfd\x6f\x0b\xe6\xcf\xd6\xf3" "\xf7\x03\xf1\x21\x55\xfb\x0f\x8d\x57\xd6\x7f\x51\x7c\xa7\xfe\xb7\x07" "\xf3\x67\xeb\xf9\x48\x20\x3e\xa4\x6a\xff\xa1\xf1\xca\xfa\x2f\x8a\xef" "\xd4\xff\x67\x82\xf9\xb3\xf5\x7c\x34\x10\x1f\x52\xb5\xff\xd0\x78\x65" "\xfd\x17\xc5\x77\xea\xff\xc6\x60\xfe\x6c\x3d\x1f\x0b\xc4\x87\x54\xed" "\x3f\x34\x5e\x59\xff\x45\xf1\x9d\xfa\xcf\x7f\xde\x61\xa8\xff\x7f\x10" "\x88\x0f\xa9\xda\x7f\x68\xbc\xb2\xfe\x8b\xe2\x3b\xf5\x3f\x11\xcc\x9f" "\xad\xe7\xca\x40\x7c\x48\xd5\xfe\x43\xe3\x95\xf5\x5f\x14\xdf\xa9\xff" "\x9b\x83\xf9\x8b\x3f\x37\x20\x1f\x1f\x52\xb5\xff\xd0\x78\x65\xfd\x17" "\xc5\x77\xea\xff\xb3\xc1\xfc\xd9\x7a\x3e\x11\x88\x0f\xa9\xda\x7f\x68" "\xbc\xb2\xfe\x8b\xe2\x3b\xf5\xff\xb9\x60\xfe\x6c\x3d\x57\x05\xe2\x43" "\xaa\xf6\x1f\x1a\xaf\xac\xff\xa2\xf8\x4e\xfd\xef\x08\xe6\xcf\xd6\xb3" "\x31\x10\x1f\x52\xb5\xff\xd0\x78\x65\xfd\x17\xc5\x77\xea\xff\xb7\x82" "\xf9\xb3\xf5\x7c\x32\x10\x1f\x52\xb5\xff\xd0\x78\x65\xfd\x17\xc5\x77" "\xea\xff\xf3\xc1\xfc\xd9\x7a\x36\x05\xe2\x43\xaa\xf6\x1f\x1a\xaf\xac" "\xff\xa2\xf8\x4e\xfd\xef\x0c\xe6\xcf\xd6\x73\x75\x20\x3e\xa4\x6a\xff" "\xa1\xf1\xca\xfa\x2f\x8a\xef\xd4\xff\x2d\xc1\xfc\xd9\x7a\x3e\x15\x88" "\x0f\xa9\xda\xff\xd4\x78\xff\xaa\x20\x6f\x59\xff\x45\xfd\x74\xea\x7f" "\x57\x30\x7f\xb6\x9e\xcd\x81\xf8\x90\xaa\xfd\x87\xc6\x2b\xeb\xbf\x28" "\xbe\x53\xff\xbb\x83\xf9\xb3\xf5\x5c\x13\x88\x0f\xa9\xda\x7f\x68\xbc" "\xb2\xfe\x8b\xe2\x3b\xf5\xbf\x27\x98\x3f\x5b\xcf\xb5\x81\xf8\x90\xaa" "\xfd\x87\xc6\x2b\xeb\xbf\x28\xbe\x53\xff\x5f\x08\xe6\xcf\xd6\x73\x5d" "\x20\x3e\xa4\x6a\xff\xa1\xf1\xca\xfa\x2f\x8a\xef\xd4\xff\xde\x60\xfe" "\x6c\x3d\x9f\x0e\xc4\x87\x54\xed\x3f\x34\x5e\x59\xff\x45\xf1\x9d\xfa" "\xdf\x17\xcc\x9f\xad\x67\x4b\x20\x3e\xa4\x6a\xff\xa1\xf1\xca\xfa\x2f" "\x8a\xef\xd4\xff\xfe\x60\xfe\x6c\x3d\xd7\x07\xe2\x43\xaa\xf6\x1f\x1a" "\xaf\xac\xff\xa2\xf8\x4e\xfd\x1f\x68\xdd\x34\xe7\xe6\xcf\xd6\xf3\x1b" "\xd9\xf8\x52\x55\xfb\x0f\x8d\x57\xd6\x7f\x51\x7c\xa7\xfe\x6f\x0d\xe6" "\xcf\xd6\x73\x43\x20\x3e\xa4\x6a\xff\xa1\xf1\xca\xfa\x2f\x8a\xef\xd4" "\xff\xc1\x60\xfe\x6c\x3d\xbf\x19\x88\x0f\xa9\xda\x7f\x68\xbc\xb2\xfe" "\x8b\xe2\x3b\xf5\x9f\xff\x1c\xc8\x50\xff\x5b\x03\xf1\x21\x33\xfd\xef" "\xdf\x3b\x31\xb1\xf5\xc0\x9e\x9b\xb6\xef\x9f\xd8\xba\x6b\xf7\x4d\x13" "\xfb\xb6\x1e\xdc\xbb\x63\xff\xfe\x89\xe4\x40\xad\xea\xef\x95\x85\x7f" "\x2f\xe8\x4d\xfe\x45\x16\x3a\xca\xbc\x3e\x5a\x93\x64\xc7\xae\x7d\x13" "\x7b\xe7\xee\xbf\x87\x3a\xce\xdf\xf6\x39\x11\x4d\xef\xc8\x5b\x9f\x71" "\xd3\x8c\xdf\xde\x55\x7c\xfe\x63\xaf\x7b\x9d\x35\xa7\xcb\x7c\x1f\x88" "\x1a\x1d\xb7\xd7\x39\xb9\xe5\x33\x93\xcf\xa3\x3d\x33\xf0\x79\xb4\xf9" "\xf8\x34\xed\xaa\xe9\x3b\x73\x3f\x8f\x36\x3f\x6c\xa3\xe4\x73\x5c\xcb" "\xf6\x4f\xf9\xf1\x43\xfb\xa7\xb8\x43\x7c\xd1\xfe\x35\xb4\x3f\x2b\x7b" "\xff\x9b\xf7\xfe\xaf\x74\x7e\x37\x3b\xf6\x9f\x5f\x3d\x98\x1c\xaa\x0c" "\xc6\x67\x75\x15\x1f\x75\xf8\xfb\x6e\xdd\xcd\xd7\x6a\xbf\x77\x1a\x9c" "\xaf\x2f\x75\x37\x5f\xf3\x9f\xbb\x5e\x36\x5f\xf3\xf1\xf3\x9d\xaf\xc3" "\x15\xe7\x6b\x7e\xfc\xd0\x7c\xaa\x75\x88\xef\x74\x3c\xd4\xed\x7c\xdd" "\x12\x88\x4f\x75\x3f\x3f\xe3\x60\xbf\x45\xf3\x6a\xbe\x7f\x67\x30\x4d" "\x3b\xaf\xbf\x33\x98\xfb\x32\x47\x0f\x7f\xcb\xa0\xfb\xd7\x43\xb5\xdf" "\x23\x0f\xbe\x1e\x92\xa2\xcb\x5e\x0f\xf9\xdf\xe3\x2e\x7b\x3d\xe4\xe3" "\xe7\xfb\x7a\x18\xaa\xf8\x7a\xc8\x8f\x5f\xf6\x7a\x28\x8a\xef\x74\x7e" "\xdc\xed\xeb\xe1\xda\x40\x7c\x48\x66\x3e\x2c\x8a\x3a\xcc\x87\x6a\x9f" "\x5b\x10\x9c\x0f\xeb\xbb\x9b\x0f\xf9\xbf\x63\x55\x36\x1f\xf2\xf1\xf3" "\x9d\x0f\xcd\x8a\xf3\x21\x3f\x7e\xd9\x7c\x28\x8a\xef\x74\xbd\xb0\xdb" "\xf9\xf0\xa9\x40\x7c\xb7\xba\xdf\x5f\x54\xfb\x5c\x91\xe0\xfc\xd8\xd6" "\xdd\xfc\xc8\xff\x3d\x89\xb2\xf9\x91\x8f\x9f\xef\xfc\x88\x2b\xce\x8f" "\xfc\xf8\x65\xf3\xa3\x28\x3e\xf4\xf3\x94\x68\x1e\xf3\xe3\x93\x81\xf8" "\x54\xe6\xfd\xf3\xe6\x7d\xd3\x27\xf5\x3b\xb6\xef\xdc\x71\x47\xee\x3f" "\x60\x8c\x24\xef\x9f\x6f\xf6\xfb\xe1\x29\x79\x5f\xfe\xab\x5f\xfb\xf3" "\x37\x5a\x5f\x92\x3a\x6a\x73\xea\x28\x3b\x9e\x88\x73\x75\x2c\x4b\x2a" "\x59\x16\xfa\xbb\x87\x81\xba\x6f\xfc\x2f\xff\x66\xf3\xb7\x7e\xf6\xc5" "\xaf\x44\xd1\xfa\xb3\xea\xab\xc3\x75\xcf\x96\x3c\xfb\x25\x27\x1e\x9f" "\x5c\x7e\xd7\xda\xaf\x5d\xf7\xf6\x97\x3f\x38\x55\x7f\xad\x63\xfd\x33" "\x91\xe9\xdf\x2d\x2e\xf9\x7b\xc7\xf9\xf8\xb4\x9f\xc6\xce\xdd\xfb\xf6" "\xff\xca\xcd\xbb\x0f\xec\xea\xf6\x7f\x5c\x75\x96\x7e\x1e\x4a\x6d\x66" "\x79\x81\x3e\x0f\x25\x59\x59\xef\xf2\xf3\x4d\x42\xbf\x4f\x30\xdf\xcf" "\x37\x19\x98\x73\xe7\xf4\xd4\xf5\xe7\x9b\x00\xfc\x82\x38\xf3\x89\xa7" "\x97\xb6\x2f\xa7\x9f\xff\x97\xbe\x1f\x8d\x26\xfb\xbe\xa1\x64\x07\x98" "\xae\xef\xfe\x38\xbb\xda\xe7\xeb\x05\x8f\xb3\x0f\x75\x77\x9c\xbd\x2e" "\xdf\x6f\xc9\x71\x76\x3e\x3e\xed\xb7\xdb\xe3\xec\x5a\xc5\xe3\xec\xfc" "\xf8\x65\xc7\xd9\x45\xf1\x9d\xfe\xdf\x5e\xb7\xc7\xd9\x9f\x08\xc4\xcf" "\x57\x76\x9e\x4c\x4d\x90\xe9\xf9\x31\xb1\xf5\xe0\xee\xbd\xed\xff\x27" "\x6e\xa1\xff\x6e\x6d\xff\xeb\x5d\xd8\xbf\xe3\x5b\xbd\xbe\x85\xfd\xdc" "\xc6\x5e\x75\x5f\xff\xc2\x7e\x2e\xe4\xc2\xd7\xbf\xb0\x7f\x07\x78\xe1" "\xeb\x5f\xd8\xbf\xf3\xdc\xab\x53\x76\xbe\x94\x7c\x58\x64\xd9\xe7\x47" "\x96\x9d\x47\x85\x7e\x2f\x7d\xbe\xe7\x51\x8b\xe6\xdc\x39\x3d\x39\x8f" "\x02\x80\xd3\xdf\x3f\xd9\xfb\xa3\x7f\xd9\xbe\x9c\x9e\xff\x27\x67\xb1" "\x33\xe7\xff\x5f\x4a\x96\xeb\x7d\x1e\x7f\xa1\xcf\xa3\x16\xfa\xbc\x72" "\xa1\x8f\x93\xdf\xfa\x9f\xbf\xbf\xb0\xe7\x41\xce\x07\x3a\x0c\x76\x1a" "\x70\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\xec\xf7\xff\xfb\x7f\xfc\x66" "\xfb\xf2\x60\x63\x74\xfa\xf6\x85\xdf\xd9\xf7\xfa\x27\xce\xf9\xd0\x77" "\xef\x9d\x38\x7e\xd7\x47\xfe\xe8\x96\x7b\xce\xfe\xe3\x15\xaf\x8f\xdc" "\x77\xe5\xc7\x1f\xbc\xfc\xc3\xdf\xdb\xf6\x27\xcb\xc6\xd7\xac\x9d\xb8" "\xec\xeb\x87\xaf\xba\xff\xbe\xe7\x3e\xf0\xb3\xe7\x1e\x79\xec\xca\xd2" "\x81\x46\x5a\x37\x17\x26\x8b\xcd\x28\x8a\xff\x22\x8e\xa2\x35\x3f\x3a" "\xfc\xc8\xfd\xdf\xfe\xd3\xb3\xa7\xd6\xc5\x53\xe3\xc7\x23\x77\x47\xcb" "\x96\xc5\xcb\xbf\xb9\x2c\xce\x65\x58\x7f\x22\x8a\xa2\x9b\x66\xea\xcc" "\x7e\xf3\xf0\xf1\x0d\x37\x4f\xdd\xde\xf3\xa5\xc1\xcc\xfa\x33\x73\x49" "\xf2\x7d\x45\xc3\xf5\xb4\x9e\x4c\x9d\xd1\x6d\xa5\x1d\xf1\x16\xd4\x4c" "\xe6\xd9\x9d\x5b\x3f\xf3\xe4\x91\xcf\x8f\x7f\xfb\xf0\xd8\x9e\x0d\x3f" "\x39\x76\xe9\xee\xbb\x67\x43\xe2\x66\xdb\x7c\x8a\xa2\x33\xb6\xb5\x3f" "\x7e\x20\x8a\xa2\xa1\xe4\xdf\x94\x74\xb6\x8d\xa6\x0f\x4e\x6e\x37\x46" "\x51\xb4\xb8\xed\x71\xef\x2b\xa9\xeb\x82\x2e\xeb\xbf\x28\xb0\xbc\x3a" "\xb9\x5d\x94\xdc\x0e\x97\xe4\x49\xbf\x7f\x7e\x6e\xb9\xd1\x65\x1d\x8d" "\xdc\xed\x60\x97\x8f\xeb\xd1\xff\xaf\x2d\x6c\xfe\x39\xf2\xdb\x2f\xbf" "\x33\x5a\x28\x69\x9f\x67\x24\xb7\xcf\x24\xb7\x17\xce\x33\x4f\x3d\xfd" "\x17\x47\xb5\x38\x6a\xcc\x94\xbf\x33\x9e\x9d\x23\x51\xdb\xf3\x16\x47" "\xf1\xf4\xdc\x6e\xce\x2c\xd7\xa6\x97\xa3\x99\xe5\x28\xbf\x1c\xe7\x96" "\x6b\xb9\xe5\xfa\x40\xae\xaf\xe9\x71\x93\x0d\x5b\x8f\xe3\xec\xfa\x34" "\x2e\xb7\x3e\xdd\x1d\x37\x92\xf5\xe7\xb7\xef\xab\x0b\x6c\x0a\xac\x5f" "\x99\xdc\x36\x93\x17\xea\x1b\xe9\x72\x94\xbf\xd3\x32\x3c\xe7\xce\x6c" "\x1f\x51\x5b\x5d\x47\x4f\xd5\xc4\x08\xa8\x05\x5e\x7b\xe9\xfa\x99\xf2" "\x92\x27\x63\x38\x59\x37\x1c\x2f\x9f\xf3\x98\xc9\x02\xe9\xf7\x8e\x7e" "\x67\xfb\x96\xd7\x7e\x78\xc7\x33\x23\x81\x3a\xe2\xa7\xe3\x24\x7f\xdc" "\x53\xfe\xf1\x89\xc7\x8f\x7c\xed\xba\x67\x57\x8e\x86\xf2\x6f\xab\x25" "\xf9\x6b\x3d\xe5\x7f\xa1\xfe\xe2\x89\xaf\x1e\x1b\x5d\x12\xcc\x7f\x28" "\xcd\x5f\xef\x29\xff\xe6\x9f\xff\xf8\x81\x7b\xaf\x3e\xb8\x22\xb8\x7d" "\x8e\xa6\xdb\xa7\xd1\x53\xfe\xb5\x5f\x5e\x72\xe7\xf1\x83\x9b\x06\xc7" "\x42\xf9\x9f\x48\xf3\x37\x7b\xca\x7f\xd9\x0d\x6b\x2e\x3f\xf7\xd8\x81" "\x5b\x83\xf5\xaf\x4f\xb7\xcf\x50\x4f\xf9\x7f\xf0\xd0\xba\x93\x37\x1c" "\xfa\xc6\xb3\xc1\xfc\x51\x9a\x7f\x71\x4f\xf9\x5f\x79\xfc\xa9\xd5\xf5" "\x95\x0f\xbf\x1c\xcc\x7f\x24\xdd\x3e\xc3\x3d\xe5\xbf\x66\xc3\xa3\x57" "\x7c\x6c\xd5\x7d\x8f\x05\xb7\xff\x4b\x69\xfe\xa5\x3d\xe5\xdf\xf2\xf2" "\xfd\xdb\xf6\x3c\xf9\xfc\xba\xe0\xfc\xdc\x98\x6e\x9f\x91\x9e\xf2\x9f" "\xb8\xe2\xfb\xaf\x9e\x1c\xb9\xf2\xa9\xd0\xbe\x33\x7e\xe2\x54\xbf\xc3" "\x02\xfc\x62\x79\x5b\x72\x8c\xf5\x40\xb2\xdc\xeb\x79\x66\x55\x6d\xe7" "\x0b\x8f\x8e\x35\x5a\xc7\x7c\x4b\x92\x7f\x4b\xfb\x39\x50\x4e\xdc\x76" "\xee\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x21\xbb\x27\xeb\x07\xda\x97\x5f" "\x7d\xf6\xc1\xab\x3e\xf7\x3f\xb6\xfe\xb7\x46\x1c\x45\x71\xe0\x31\x93" "\x05\xd2\xef\xd5\x17\x8d\x8f\x8f\xf5\x50\xc7\xda\x2f\x2f\xb9\xf3\xf8" "\xc1\x4d\x83\xe9\xf2\xd4\xd8\xa3\x3d\xe4\x01\x00\x00\x00\xe6\x5a\xf5" "\xca\x17\xbf\xd0\xbe\x9c\x9e\x87\xd7\x92\xe5\x38\x6a\x46\xa3\xd1\xc1" "\x78\x28\x5a\x55\xf8\xf8\xf4\x1a\xc1\xaa\x74\x29\xce\xae\xcf\x5f\x43" "\x18\x9a\x8d\xec\x4b\x9e\x5a\x9f\xf2\xd4\xfb\x94\xa7\xd1\xa7\x3c\x03" "\xe9\x62\xc5\x3c\x8b\xfa\x54\xcf\x60\x9f\xf2\x34\x4b\xf2\x34\xa3\xee" "\xf2\x0c\x75\xcc\x53\xeb\xba\x9e\xc5\x7d\xca\x33\xdc\xa7\x3c\x4b\xfa" "\x94\x67\x69\x9f\xf2\x9c\xd1\x7b\x9e\x46\x7b\x9e\x33\xfb\x54\xcf\x48" "\xc7\x3c\xdd\xcf\xc3\x65\x7d\xca\xb3\xbc\x4f\x79\xde\xd6\xa7\x3c\x2b" "\xfa\x94\xe7\xac\x3e\xe5\x79\x7b\x9f\xf2\x9c\xdd\xa7\x3c\xf9\x6b\xca" "\xf3\x9d\x87\x4b\x93\xc8\x73\x42\x79\xa6\xef\xd4\x4b\xf3\x34\xe2\xfa" "\xcc\x37\x8a\xae\xa7\xa7\xe3\x9c\x5b\x71\x9c\xe1\x2e\xc7\xc9\x5f\xb3" "\x9f\xef\x38\x43\x5d\x8e\x73\x41\xc5\x71\x9a\x5d\x8e\xf3\xae\x8a\xe3" "\xc4\x5d\x8e\xb3\x2e\xf7\xb8\xda\x3c\xc7\xa9\x95\x8c\x93\xce\xdb\xdb" "\x42\xfd\xa4\x4b\x5d\xce\xff\xdb\xfb\x94\xe7\x8e\x3e\xe5\xb9\xb3\x4f" "\x79\x7e\xbb\x4f\x79\xfe\x61\x9f\xf2\xfc\xa3\x3e\xe5\xb9\xab\x62\x1e" "\x80\x90\xdf\x7d\xee\xc2\x3f\x68\x5f\x4e\xcf\xff\x93\xf3\xcf\x28\x8e" "\x46\xa2\xc1\xc6\x25\xd1\xe2\x64\x8f\x93\xbf\x0a\x90\x9e\xef\x9e\x37" "\xfd\x75\xee\xfb\x5d\x68\x87\x94\xe6\x5b\x9d\x5b\x3f\x50\x96\x2f\x7f" "\x82\x9d\xcb\x77\xde\x7c\xeb\xcb\x5f\x40\xc8\xe5\x7b\x47\xc7\x7c\x8d" "\x39\xe7\xab\x05\xf9\x1a\xed\xf9\xd6\xf6\x29\x1f\x00\x00\x00\xcc\xc7" "\x3f\x3e\x71\x67\xe6\x47\x73\x73\xcf\xff\x47\xa3\xc1\xc6\x8a\x99\xf3" "\xd7\x77\xe6\x1e\x5f\x7a\xbe\x3e\x50\x3c\x6e\x9a\xef\xc2\x3e\xe5\x03" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xaf" "\xd9\xb5\xd7\x18\xb9\xca\xf2\x01\xe0\xef\xd9\x99\x9d\x99\xff\x72\xe9" "\x42\xda\x32\xa5\xb7\x4d\xdb\x3f\x85\x10\x7a\xa1\xa9\x11\x54\x98\x34" "\x91\x04\x23\x6c\x11\x5b\x2e\x0d\x59\x2b\x2c\x6c\xc3\xd2\x42\xb7\x05" "\x5a\x35\x45\x30\xb6\xd9\x04\x83\x16\x2f\xdc\x3e\x58\x90\x18\x42\x04" "\x12\x92\x06\x5d\x13\x0c\x28\xf1\x83\x8d\x0d\x62\xb8\xb8\x2e\xac\x04" "\xbe\x10\x41\x7a\x03\x8a\x8e\x99\xdd\x73\x76\xcf\xce\xec\xb0\xcb\x28" "\xad\xd5\xdf\x2f\xe4\x9c\x79\xce\x79\x9e\xf7\x79\xcf\x21\x21\x79\xce" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xf9\xfe" "\xf8\xfd\xbf\x3d\x9b\x8e\x07\xfb\x7a\xdb\xbb\x06\x3a\xfa\x43\x14\x2a" "\xff\x8c\xab\x3c\x8e\xe4\x5e\x26\x57\x2a\xb5\x35\xb0\x8f\x77\x9e\x5b" "\x7b\xe5\x5f\x5f\xda\xba\x3b\x89\x2b\xbd\xf3\xd9\x06\x16\x02\x00\x00" "\x00\x6a\x3c\x7e\xde\x8c\xd3\xd3\x71\x32\x87\x27\xa3\x77\x14\x0a\x21" "\x9f\x5d\x1a\xf2\x51\x6e\x4c\x5d\x31\xfe\x0e\x50\x8c\xe3\xa6\xd6\xe1" "\xf3\x9c\x45\x61\x79\x66\xf7\xff\x5f\x18\x95\x9a\x86\xe2\x93\xa3\x93" "\xc6\xd4\x15\xe2\xba\x42\x1c\x67\xe2\xba\x9e\x2d\x5b\xaf\x5f\xdb\xdd" "\xdd\xb9\xf1\x13\xfc\x51\xe9\x53\xfd\x1c\xd5\xfb\x89\x42\x18\xfa\x7c" "\x31\xe7\xc4\xb0\x6a\xd1\xf6\x67\xf6\x44\x6d\xc3\xcf\xd1\x32\xc1\x73" "\x34\xc5\x75\x8b\x37\xdd\x70\xe3\xe2\x9e\x2d\x5b\xcf\x5a\x77\xc3\xda" "\xeb\x3a\xaf\xeb\x5c\xbf\x6c\xd9\xf2\x73\x96\x2e\x5b\x7a\xf6\x39\xcb" "\x16\x5f\xbb\xae\xbb\x73\xc9\xf0\x31\xe4\x27\x58\x2f\x84\x50\x1a\xfb" "\x5e\x26\xf8\x17\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x47\xc0\xb6\xdf\xee\xfe\x56\x3a\x1e" "\xec\xeb\x6d\xef\x1a\xe8\xe8\x6f\x89\x42\x88\xea\xd4\x94\xc7\x91\xdc" "\xcb\xe4\x4a\xa5\xb6\x06\xf6\xf1\xca\x7d\x0f\xce\xca\xcc\xb8\x7b\x6f" "\x12\x57\x7a\xe7\xb3\x0d\x2c\x04\x00\x00\x00\xd4\xf8\xd5\xe3\x33\xce" "\x4f\xc7\xc9\x1c\x9e\x8c\xde\x51\x28\x84\x7c\x36\x17\x32\x61\xc6\x50" "\x3c\x6f\x34\x35\x1b\x42\xb9\x9c\x5c\x5f\x50\x75\xfd\x48\xec\x1d\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x38\xb2\xf6\x1d\x6c\xff\x73\x3a\x1e\xec\xeb\x6d\xef\x1a\xe8" "\xe8\x3f\x2e\x0a\x21\xaa\x53\x53\x1e\x47\x72\x2f\x93\x2b\x95\xda\x1a" "\xd8\xc7\xea\x65\x3f\x3a\xff\x0b\x33\xef\xb8\x37\x89\x2b\xbd\x8b\x0d" "\xac\x03\x00\x00\x00\xd4\x7a\xe1\xf4\xe6\x3b\xd2\x71\x32\x87\x37\xc5" "\x71\x14\x0a\xa1\x18\xe6\x87\xe6\x68\xc6\x98\xba\xe4\xdb\xc0\xa9\x55" "\xeb\x55\xe7\x25\xeb\xcc\x9e\x64\x5e\xf5\xb7\x83\x7a\x79\xf3\x27\x99" "\x77\xda\x24\xf3\xce\x98\x20\xef\xe2\xf8\x7c\x6b\x00\x00\x00\x80\x63" "\xcf\x15\xad\xbf\x5b\x9d\x8e\x93\xf9\xbf\x39\x8e\xa3\xd0\x1a\xf2\xd9" "\x62\xc8\xc4\xf1\x44\x73\x7c\xf2\x5d\x60\x6e\x55\x5e\x52\x3f\xd1\x7c" "\x9f\xd4\xcf\xab\x53\x3f\xd1\xdc\x9f\xd4\x57\xcf\xfd\x00\x00\x00\xf0" "\xbf\xec\xac\x37\x9f\xf8\x30\x1d\xd7\xce\xff\xc5\x90\xcf\x16\x46\xe6" "\xef\x89\xfe\x9e\x7e\x51\x7c\xf6\x77\x72\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x9e\x5f\x1f" "\xbc\xf0\x17\xe9\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\x3f\x13\x85\x10\xd5" "\xa9\x29\x8f\x23\xb9\x97\xc9\x95\x4a\x6d\x0d\xec\x63\xd5\x3f\xde\xd8" "\x71\xfb\xa5\xb7\x4c\x4d\xe2\x4a\xef\x7c\xb6\x81\x85\x00\x00\x00\x80" "\x1a\x8f\xe6\x3e\x7d\x4b\x3a\x4e\xe6\xf0\x64\xf4\x8e\x42\x21\xe4\xb3" "\x2d\xa1\x39\x1c\x37\x34\xf7\xbf\x96\x9b\x32\x75\xdd\x37\x67\xce\x0e" "\x21\x94\x86\x12\x72\xb9\x70\xeb\xda\x4d\x9b\x36\x9e\x3d\x7c\x4c\xf2" "\xbe\x14\xed\xfa\xdc\xc2\x1b\xfa\xce\xac\xc9\x5b\x3a\x7c\x3c\xf2\x4f" "\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xfc\xab\x96\x3d\xb2\x73\x4d\x3a\x1e\xec\xeb\x6d\xef" "\x1a\xe8\xe8\xff\xbf\x28\x84\xa8\x4e\x4d\x79\x1c\xc9\xbd\x4c\xae\x54" "\x6a\x6b\x60\x1f\x2f\xec\x3c\xe3\xf0\x55\x77\x3d\xd5\x97\xc4\x95\xde" "\xc5\x06\xd6\x01\x00\x00\x00\x6a\xcd\xea\x7e\xfa\x2f\xe9\x38\x99\xc3" "\x93\xd9\x3f\x0a\x85\x50\x0c\xb9\x90\x0b\xd3\x87\xe2\xf4\xac\x5f\xd1" "\x54\xb5\x5e\xbd\x6f\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc0\x7f\x8f\x9e\x2d\x5b\xaf\x5f\xdb\xdd\xdd\xb9\xd1\x0f\x3f\xfc\xf0" "\x63\xe4\xc7\xd1\xfe\x2f\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\xb4\xfc\x7c" "\xfd\xf7\xde\x4e\xc7\x83\x7d\xbd\xed\x5d\x03\x1d\xfd\x85\x28\x84\xa8" "\x4e\x4d\x79\x1c\xc9\xbd\x4c\xae\x54\x6a\x6b\x60\x1f\x9f\xba\x6a\xce" "\x39\xb3\xf7\x6f\xbe\x39\x89\x2b\xbd\x8b\x0d\xac\x03\x00\x00\x00\xd4" "\x5a\xf3\xd6\xe6\xfd\xe9\x38\x99\xc3\x93\xd9\x3f\x0a\x85\x50\x0c\xcd" "\xa1\x39\x4c\x8b\xe3\x5a\x43\xf3\x7f\xeb\x91\xd8\x2d\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70" "\x34\xcd\x0d\x51\x28\x7f\x4c\xa7\xac\x3c\xda\xbb\x06\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x3e\x09\x07\x5e\x5c\x75\x5f\x3a\x1e\xec\xeb\x6d\xef\x1a" "\xe8\xe8\x3f\x21\x0a\x21\xaa\x53\x53\x1e\x47\x72\x2f\x93\x2b\x95\xda" "\x1a\xd8\xc7\x95\x7b\xbf\xfd\x95\x1b\x77\x3d\x7b\x46\x12\x57\x7a\xe7" "\xb3\x0d\x2c\x04\x00\x00\x00\xd4\x68\x7e\xf3\xc5\xaf\xa6\xe3\x64\x0e" "\x4f\x46\xef\x28\x14\x42\x3e\x3b\x2b\xe4\xc3\xac\xf8\x4a\xf7\xd8\x05" "\xa2\x4c\x92\x38\xee\x77\x81\xd1\xba\xaf\x8f\x29\xcb\x4c\xba\x6e\x47" "\xd5\x8e\x87\x77\x56\x88\xbf\x43\x14\x46\xf6\x19\x86\x3e\x3b\x8c\xd6" "\xdd\xf5\x91\x75\xc5\xf8\x6a\x53\xeb\xe4\xde\x13\x00\x00\x00\x1c\xcb" "\xa6\xed\xb8\xf8\x1b\xe9\x38\x99\xff\x9b\xe3\x38\x0a\xad\x21\x9f\x9d" "\x96\x9a\xab\x6f\x1c\x53\xdf\x32\xe9\x39\xfe\xee\x31\x75\x27\x4c\xba" "\xee\xa7\x63\xea\x5a\x27\xa8\xfb\x37\xbc\x12\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x41\x77\xae\x7c\xee\x94" "\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\x1f\x45\x21\x44\x75\x6a\xca\xe3" "\x48\xee\x65\x72\xa5\x52\x5b\x03\xfb\x28\x75\xde\xf7\xf4\xc3\x97\xf7" "\xcd\x48\xe2\x4a\xef\x62\x03\xeb\x00\x00\x00\x00\xb5\x2e\x7d\xa3\xf0" "\xdd\x74\x9c\xcc\xe1\xc9\xec\x1f\x85\x42\x28\x86\xd9\xe1\xc4\x30\x7b" "\x68\xee\x0f\xad\x63\xeb\x93\xbc\xe3\x4a\xbf\x7f\x79\xc5\xee\x97\xae" "\x08\x61\xc9\xf4\xe7\xe7\x64\xeb\xf6\xfb\xe1\x9e\xcb\xde\x0e\x87\x3e" "\xfb\xda\x7b\xc3\x87\xa1\x30\x84\xa6\xb1\x49\x4d\x21\x4c\x89\xfb\x45" "\x75\xfa\x5d\xfd\x87\x47\x56\x3d\xf3\xe1\xf6\x07\x42\x58\x32\x2d\x33" "\xab\x7e\xbf\xd1\x56\xa3\x87\x2a\x51\xa9\x7c\xf2\xb6\x05\x0f\x5f\x3e" "\x7d\xef\x8a\xba\xcb\x00\x00\x00\xc0\x31\xad\xf0\xe0\x81\x9f\xa4\xe3" "\x64\xfe\x4f\x26\xea\x28\xb4\x86\x7c\x76\x7d\xdd\xf9\x3f\xc9\xfb\x58" "\xf3\x7f\x7b\xcf\xcc\x6d\x53\xe3\x63\xfc\x05\xa0\xaa\xa2\xa9\x35\xee" "\xd7\x54\xa7\x5f\xef\xbb\x0f\xb4\x1d\x5c\xf3\xe5\x83\x95\xf9\xff\xf9" "\x39\x85\x91\xff\x57\xe0\xf4\xf9\x63\xf3\xd3\xad\xd2\xc7\xaa\x6f\x0e" "\x51\xa9\x3c\xf7\x89\xd3\x56\x1f\x3e\x70\xd3\x25\xc3\x17\x92\xfe\x99" "\x3a\xfd\xd7\x34\xcf\x3b\x69\xe7\x5b\x33\xe7\x25\xfd\x0b\xf1\xf5\x6b" "\xc2\x64\xfb\x87\xaa\xfe\x3d\x1d\x87\xe6\x2f\x6a\x39\xfe\x82\xb1\xfd" "\x43\x08\x6d\xe3\xf5\xff\xf1\x85\x8f\xbf\xbf\xea\xde\x77\xaf\x18\xee" "\x5f\xff\x7d\x2f\xfe\xd3\xe0\xe7\xa7\x86\x0d\x3f\x28\x74\x27\xc7\xe1" "\x2b\xb5\xfd\x57\xde\xbf\x7c\xe7\xd6\xdc\xeb\x53\xc6\xf6\x8f\xea\xf4" "\x5f\xf8\xec\x93\xfb\x1f\xbb\x75\xd5\x9d\xd5\xcf\x7f\x6a\x76\xbc\xfe" "\xb5\xc7\x2a\x95\xae\xd9\x72\xef\xbe\xdb\x17\xde\xb6\xa2\xf3\xdc\x54" "\xff\xa6\x3a\xfd\x6f\x6e\x7b\xe5\x9d\xef\xfc\xec\x97\x0f\x55\xfa\xef" "\x9b\xdb\x32\xd2\x7f\xe1\x47\x3c\xff\x84\xfd\xf7\xcc\xdf\xb1\x6f\xd7" "\xf6\x7b\xd6\x8c\x7d\xff\xa5\xda\xfe\xb7\x85\xab\xcf\xda\xf8\xe4\x96" "\x75\x57\xde\x55\xfd\xfc\x2d\x55\x0b\xa7\xdf\x7c\xfa\x58\xfb\xfe\x5f" "\x9d\x15\x5d\xb4\xb9\xe7\xe5\x8d\xd5\xb7\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x6d\x1d\x8f\x7d\x70\x28\x1d\x0f" "\xf6\xf5\xb6\x77\x0d\x74\xf4\x37\x45\x21\x44\x75\x6a\xca\xe3\x48\xee" "\x65\x72\xa5\x52\x5b\x03\xfb\xf8\x4d\x66\xcf\x07\x0f\xed\x2f\x1e\x9f" "\xc4\x95\xde\xc5\x06\xd6\x01\x00\x00\x00\x6a\x5d\xb2\xe2\xd5\xeb\xd2" "\x71\x32\x87\x27\xb3\x7f\x14\x0a\xa1\x18\x72\x21\x17\x5a\x86\xe6\xfe" "\x93\xb7\x2d\x78\xf8\xf2\xe9\x7b\x57\x84\xd6\xf8\x7e\x7c\xce\x76\x6f" "\xe8\xd9\x74\xe6\xb5\x1b\x36\xaf\xbf\xe6\x48\x3f\x02\x00\x00\x00\x30" "\x81\x5d\xe7\xbd\xbf\x22\x1d\x27\xf3\x7f\x36\x8e\xa3\xd0\x1a\xf2\xd9" "\x05\xa1\x39\x9e\xff\x57\xde\xbf\x7c\xe7\xd6\xdc\xeb\x53\x92\xf9\x3f" "\x84\x30\xf4\xe7\xfe\xec\xb5\xeb\xba\x3b\x97\x84\x91\xef\x04\x3d\x1d" "\x87\xe6\x2f\x6a\x39\xfe\x82\x24\x2f\x13\x9f\x0b\x95\xbc\x45\x57\x6f" "\xe8\x8e\x3f\x13\x24\xeb\x3e\xf5\xe8\x67\x96\x9e\x7b\xd9\xa5\x23\xf9" "\x4d\xe9\xfc\xb3\x47\xf3\xe6\x3e\x71\xda\xea\xc3\x07\x6e\xba\x64\xdc" "\xbc\x65\xa3\x79\xaf\xce\x8a\x2e\xda\xdc\xf3\xf2\xc6\xd4\x3e\x4b\x23" "\x79\x4b\x47\xf3\x7a\xf7\xdd\xbe\xf0\xb6\x15\x9d\xe7\x26\xcf\x11\xc5" "\xe7\x42\xfc\x3c\x49\xde\x9e\xf9\x3b\xf6\xed\xda\x7e\xcf\x9a\x24\xaf" "\x29\x3e\xb7\xc4\xeb\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x21\x9c\xf4\xde\xdf\xbf\x96\x8e\x07\xfb\x7a\xdb" "\xbb\x06\x3a\xfa\x43\x26\x84\xa8\x4e\x4d\x79\x1c\xc9\xbd\x4c\xae\x54" "\x6a\x6b\x60\x1f\x1f\x9c\xff\xfc\xe0\xe1\xd6\x2f\x3e\x98\xc4\x95\xde" "\xf9\x6c\x03\x0b\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\x4f\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\x53\x3f\xa1\x71\x15\x71\x1c\xc0\x67\x76\xb7\x66\xdb\xad\x75\x53" "\x0a\x4d\xb4\x86\x16\x7b\x69\x41\x28\x04\x8b\x3d\x88\xb9\xf8\x07\xa9" "\x5a\x2a\x8a\x16\x8a\x51\x8c\x17\x15\x0b\xa2\x15\x7b\xb0\x6d\x30\x88" "\x7a\x28\x28\x54\xda\x8b\x54\xf1\xac\xe4\x50\xd4\x1e\x62\xb1\x55\x14" "\xc4\x0a\x1e\xc4\x93\x07\x3d\xa9\xe4\x90\x14\x89\xa2\x92\x64\x66\xb3" "\xfb\xda\x47\xe2\x83\x8a\x94\xcf\x07\x96\xd9\xdf\xec\xce\xf7\xfd\xde" "\xec\xec\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x5f" "\x7b\xe4\xc7\xbb\x1a\xdd\x75\x5f\x63\x60\x61\x3c\xff\xca\x73\x17\xef" "\xbb\xfe\x8e\x2f\x8f\x8e\xcd\xbe\x7c\xf7\xc7\xcf\x1c\xd9\xf8\xc9\x86" "\x8b\xed\xf1\xdd\xf7\xbe\xb6\xeb\xce\x6f\x47\xbf\xe8\x1f\x19\xda\x3a" "\xb6\xf3\xc3\xc9\xfb\x27\xc6\xcf\xde\xf6\xe7\xd9\xe3\x27\x76\x2f\x7b" "\xa1\x17\x17\x87\xed\xa9\x6c\x86\x10\x7f\x8d\x21\x0c\xfd\x34\x79\x7c" "\xe2\xdc\x57\x1b\xe7\xe7\xe2\xfc\xf5\x63\xfb\x70\xe8\xef\x8f\xeb\x3f" "\xed\x8f\x85\x84\x1d\x73\x21\x84\x27\x3a\x7d\xf6\x7e\x38\x39\x3b\xfc" "\xe4\xfc\x78\xe4\xf5\xbe\x9e\xf9\xeb\x0a\x21\xc5\xfb\x0a\xad\x7a\xee" "\x67\x51\xbb\xb7\x5f\xae\x2e\xcd\x74\xce\x0e\x3d\xfa\xf8\xa9\xa9\xa7" "\x46\xce\x4d\x6e\x3e\x30\xfc\xcb\xcc\x2d\xcf\x1e\x5e\xfa\x4a\x6c\x76" "\x9d\xa7\x10\xd6\x8d\x76\xaf\x5f\x15\x42\x58\x9d\x5e\xf3\xf2\x69\x1b" "\xc8\x8b\xd3\xb8\x27\x84\xb0\xa6\x6b\xdd\xad\xcb\xf4\x75\xd3\x0a\xfb" "\xbf\xb9\xa4\xde\x94\xc6\x6b\xd2\xd8\x5a\x26\x27\x7f\xbe\xa5\x50\x37" "\x56\xd8\x47\xa3\x30\xf6\xad\x70\x5d\x55\xb5\x2b\x9c\x5f\x54\xdc\xbf" "\xe2\xc3\xe8\x4a\xc9\xf7\xb9\x2e\x8d\xa7\xd3\xb8\xfd\x5f\xe6\xd4\xf3" "\x2b\x86\x5a\x0c\x8d\x4e\xfb\x4f\xc7\xa5\x33\x12\xba\x7e\xb7\x18\xe2" "\xc2\xd9\x6e\x76\xea\xda\x42\x1d\x3a\x75\x28\xd6\xb1\x50\xd7\x0a\x75" "\x7d\x55\xe1\xbe\x16\xae\x9b\x36\xb6\x1e\x63\xef\x7c\xfe\x5e\x61\x3e" "\x3f\x8e\x1b\x69\x7e\x4b\xf7\xb3\xfa\x32\xf6\x96\xcc\x0f\xa6\xb1\x99" "\xfe\xa8\xbf\xe7\x3a\x14\xdf\x2c\x6a\x5d\xf2\x66\xe9\x3e\x42\x57\x5f" "\xd3\xff\xd5\xc1\x28\x51\x2b\xf9\xef\xe5\xf9\x4e\x7b\xe9\xc7\x68\xa5" "\xb9\x56\x5c\x7f\xc9\x9a\xbf\x2f\x23\x7f\x36\xfd\xf9\x63\xfb\x7e\xfb" "\xfe\xa5\xd3\xed\x92\x3e\xe2\x07\x31\xe5\xc7\x4a\xf9\x23\x63\x27\xa7" "\xde\x7f\xf8\xcc\xe0\x40\x59\xfe\x68\x2d\xe5\xd7\x2a\xe5\x9f\xaf\x7f" "\x3d\xf7\xde\xcc\xc0\xda\xd2\xfc\x63\x39\xbf\x5e\x29\xff\xc1\xbf\x7e" "\x7e\xf5\xe8\x03\x07\x37\x94\xee\xcf\x74\xde\x9f\x46\xa5\xfc\xad\x6f" "\xac\x3d\x34\x7b\x70\x6f\xdf\xe6\xb2\xfc\x77\x72\x7e\xb3\x52\xfe\xce" "\xfd\x43\xbb\x6e\x9c\x79\xfe\x85\xd2\xfe\x77\xe4\xfd\x59\x5d\x29\xff" "\xbb\x37\xb7\xfd\xb1\xff\xd8\x47\x67\x4a\xf3\x43\xce\x5f\x53\x29\xff" "\x87\x93\xef\x6e\xaa\x0f\xbe\x75\xa1\x34\x7f\x2a\xef\x4f\xab\x52\xfe" "\x43\xc3\x6f\xdf\x7e\xcf\x0d\xe3\x27\x4a\xf7\xff\x9b\x9c\x7f\x6d\xa5" "\xfc\x7d\x17\x26\x46\x0f\x9c\xfa\x6c\x5b\xe9\xf9\xdc\x93\xf7\xa7\x5d" "\x29\x7f\xee\x1f\xf6\xeb\xd8\x04\x42\x20\x88\x02\x28\x0b\x17\x9e\x20" "\xd8\x80\x9d\xd8\x80\x85\x59\x82\xa1\x60\x49\x76\x60\x1b\x26\x06\x8e" "\xb0\x08\x26\x2a\x06\xf2\x1e\x6c\xb0\xd1\x64\x33\xff\x37\xd3\xbc\x94" "\xed\x78\xb6\x3b\xd3\xf0\xf6\x85\x05\xf8\x96\x2a\x32\x56\x17\xff\xab" "\x3d\xf3\xae\xac\x2f\xf4\xf5\x6f\xcb\x7c\xff\x78\xc5\x93\x83\x0e\x52" "\xd6\x5d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xb7\x06\x00\x00\xff\xff" "\x1d\x8c\x60\x90", 24008)); NONFAILING(syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20000240, /*flags=MS_NODEV|MS_MANDLOCK*/ 0x44, /*opts=*/0x200003c0, /*chdir=*/-1, /*size=*/0x5dc8, /*img=*/0x20005dc0)); break; case 1: NONFAILING(memcpy((void*)0x200004c0, "ext4\000", 5)); NONFAILING(memcpy((void*)0x20000500, "./file0\000", 8)); NONFAILING(*(uint8_t*)0x20000240 = 0); NONFAILING(memcpy( (void*)0x20000540, "\x78\x9c\xec\xdd\xcf\x6f\x54\x5b\x1d\x00\xf0\xef\xbd\x6d\x69\x29\x85" "\x16\x25\xf1\x47\x54\x10\x51\x34\x84\x99\x76\x80\x86\xb0\xc2\x8d\xc6" "\x10\x12\x23\x71\xe5\x02\x6a\x3b\x34\x4d\x67\x3a\x4d\x67\x8a\xb4\xb2" "\x28\xff\x83\x89\x24\xae\xf4\x4f\x70\x61\xe2\xc2\x84\x95\x7b\x77\xba" "\x73\x83\x0b\x13\x54\xe2\x0b\x7d\xc9\x5b\xcc\xcb\x9d\x99\x96\x52\x3a" "\x6d\xdf\xa3\xcc\x7d\xe9\x7c\x3e\xc9\xc9\xbd\xe7\x9e\x61\xbe\xdf\xc3" "\xf4\x9e\x33\x3d\x6d\xe7\x04\xd0\xb7\x2e\x44\xc4\x46\x44\x9c\x88\x88" "\x07\x11\x31\xde\xb9\x9e\x74\x4a\xdc\x6e\x97\xec\x71\xaf\x5f\x3d\x99" "\xdd\x7c\xf5\x64\x36\x89\x66\xf3\xde\x7f\x93\x56\x7b\x76\x2d\x76\xfc" "\x9b\xcc\xa9\xce\x73\x8e\x44\xc4\xcf\x7e\x1c\xf1\xcb\xe4\xdd\xb8\xf5" "\xb5\xf5\xc5\x99\x4a\xa5\xbc\xd2\xa9\x17\x1b\xd5\xe5\x62\x7d\x6d\xfd" "\xea\x42\x75\x66\xbe\x3c\x5f\x5e\x2a\x95\xa6\xa7\xa6\x27\x6f\x5e\xbb" "\x51\x3a\xb2\xbe\x9e\xaf\xfe\xf1\xe5\x8f\x16\xee\xfc\xfc\x2f\x7f\xfe" "\xe6\x8b\xbf\x6d\xfc\xe0\xd7\x59\x5a\x63\x9d\xb6\x9d\xfd\x38\x4a\xed" "\xae\x0f\x6d\xc7\xc9\x0c\x46\xc4\x9d\x0f\x11\x2c\x07\x03\x9d\xfe\x9c" "\xc8\x3b\x11\x3e\x97\x34\x22\xbe\x14\x11\x17\xb3\xfb\xbf\x99\x77\x36" "\x00\x40\x2f\x34\x9b\xe3\xd1\x1c\xdf\x59\x07\x00\x8e\xbb\xb4\xb5\x06" "\x96\xa4\x85\xce\x5a\xc0\x58\xa4\x69\xa1\xd0\x5e\xc3\x3b\x17\xa3\x69" "\xa5\x56\x6f\x5c\x79\x58\x5b\x5d\x9a\x6b\xaf\x95\x4d\xc4\x50\xfa\x70" "\xa1\x52\x9e\xec\xac\x15\x4e\xc4\x50\x92\xd5\xa7\x5a\xe7\x6f\xea\xa5" "\x5d\xf5\x6b\x11\x71\x36\x22\x7e\x33\x7c\xb2\x55\x2f\xcc\xd6\x2a\x73" "\x79\xbe\xf1\x01\x80\x3e\x76\x6a\xd7\xfc\xff\xd1\x70\x7b\xfe\x07\x00" "\x8e\xb9\x91\xbc\x13\x00\x00\x7a\xce\xfc\x0f\x00\xfd\xc7\xfc\x0f\x00" "\xfd\xc7\xfc\x0f\x00\xfd\xc7\xfc\x0f\x00\xfd\xc7\xfc\x0f\x00\xfd\xc7" "\xfc\x0f\x00\x7d\xe5\xa7\x77\xef\x66\xa5\xb9\xd9\xf9\xfc\xeb\xb9\x47" "\x6b\xab\x8b\xb5\x47\x57\xe7\xca\xf5\xc5\x42\x75\x75\xb6\x30\x5b\x5b" "\x59\x2e\xcc\xd7\x6a\xf3\xad\xcf\xec\xa9\x1e\xf4\x7c\x95\x5a\x6d\x79" "\xea\x7a\xac\x3e\x2e\x36\xca\xf5\x46\xb1\xbe\xb6\x7e\xbf\x5a\x5b\x5d" "\x6a\xdc\x6f\x7d\xae\xf7\xfd\xf2\x50\x4f\x7a\x05\x00\xec\xe7\xec\xf9" "\xe7\xff\x48\x22\x62\xe3\xd6\xc9\x56\x89\x1d\x7b\x39\x98\xab\xe1\x78" "\x4b\xf3\x4e\x00\xc8\xcd\x40\xde\x09\x00\xb9\x19\xcc\x3b\x01\x20\x37" "\xbe\xc7\x07\xf6\xd8\xa2\xf7\x2d\x5d\x7f\x45\xe8\xd9\xd1\xe7\x02\xf4" "\xc6\xe5\xaf\x59\xff\x87\x7e\x65\xfd\x1f\xfa\x97\xf5\x7f\xe8\x5f\xd6" "\xff\xa1\x7f\x35\x9b\x89\x3d\xff\x01\xa0\xcf\x58\xe3\x07\xfc\xfc\x1f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x3e\xbb\xb1\x56\x49\xd2\x42\x67\x2f\xf0" "\xb1\x48\xd3\x42\x21\xe2\x74\x44\x4c\xc4\x50\xf2\x70\xa1\x52\x9e\x8c" "\x88\x33\x11\xf1\xf7\xe1\xa1\xe1\xac\x3e\x95\x77\xd2\x00\xc0\x7b\x4a" "\xff\x9d\x74\xf6\xff\xba\x3c\x7e\x69\x6c\x77\xeb\x89\xe4\xe3\xe1\xd6" "\x31\x22\x7e\xf5\xbb\x7b\xbf\x7d\x3c\xd3\x68\xac\x4c\x65\xd7\xff\xb7" "\x7d\xbd\xf1\xac\x73\xbd\x94\x47\xfe\x00\xc0\x41\xb6\xe6\xe9\xad\x79" "\x7c\xcb\xeb\x57\x4f\x66\xb7\x4a\x2f\xf3\x79\xf9\xc3\xf6\xe6\xa2\x59" "\xdc\xcd\x4e\x69\xb7\x0c\xc6\x60\xeb\x38\x12\x43\x11\x31\xfa\xff\xa4" "\x53\x6f\xcb\xde\xaf\x0c\x1c\x41\xfc\x8d\xa7\x11\xf1\xd5\xbd\xfa\x9f" "\xb4\xd6\x46\x26\x3a\x3b\x9f\xee\x8e\x9f\xc5\x3e\xdd\xd3\xf8\xe9\x5b" "\xf1\xd3\x56\x5b\xfb\x98\xfd\x5f\x7c\xf9\x08\x72\x81\x7e\xf3\x3c\x1b" "\x7f\x6e\xef\x75\xff\xa5\x71\xa1\x75\xdc\xfb\xfe\x1f\x69\x8d\x50\xef" "\x6f\x6b\xfc\xdb\x7c\x67\xfc\x4b\xb7\xc7\xbf\x81\x2e\xe3\xdf\x85\xc3" "\xc6\xb8\xfe\xd7\x9f\x74\x6d\x7b\x1a\xf1\xf5\xc1\xbd\xe2\x27\xdb\xf1" "\x93\x2e\xf1\x2f\x1d\x32\xfe\x3f\xbf\xf1\xad\x8b\xdd\xda\x9a\xbf\x8f" "\xb8\x1c\x7b\xc7\xdf\x19\xab\xd8\xa8\x2e\x17\xeb\x6b\xeb\x57\x17\xaa" "\x33\xf3\xe5\xf9\xf2\x52\xa9\x34\x3d\x35\x3d\x79\xf3\xda\x8d\x52\xb1" "\xb5\x46\x5d\xdc\x5a\xa9\x7e\xd7\x7f\x6e\x5d\x39\xb3\x5f\xff\x47\xbb" "\xc4\x1f\x39\xa0\xff\xdf\x3d\x64\xff\xff\xf0\xc9\x83\x5f\x7c\x7b\x9f" "\xf8\xdf\xff\xce\xde\xaf\xff\xb9\x7d\xe2\x67\x73\xe2\xf7\x0e\x19\x7f" "\x66\xf4\x4f\x5d\xb7\xef\xce\xe2\xcf\x75\xe9\xff\x41\xaf\xff\x95\x43" "\xc6\x7f\xf1\xaf\xf5\xb9\x43\x3e\x14\x00\xe8\x81\xfa\xda\xfa\xe2\x4c" "\xa5\x52\x5e\x71\xd2\xb3\x93\xec\xbd\xdb\x17\x20\x0d\x27\xb9\x9d\x64" "\x5f\x01\x47\xf1\x3c\x5f\xf9\x80\xa9\xe6\x3d\x32\x01\x1f\xda\x9b\x9b" "\x3e\xef\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x6e\x7a" "\xf1\x07\x4f\x79\xf7\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\x80\xe3\xeb\xd3\x00\x00\x00\xff\xff\xb4\xb5\xd6\xa8", 1206)); NONFAILING(syz_mount_image(/*fs=*/0x200004c0, /*dir=*/0x20000500, /*flags=*/0, /*opts=*/0x20000240, /*chdir=*/0x25, /*size=*/0x4b6, /*img=*/0x20000540)); break; case 2: NONFAILING(memcpy((void*)0x20000280, "cgroup.controllers\000", 19)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000280ul, /*flags=*/0x275aul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 3: NONFAILING(*(uint32_t*)0x20000084 = 0); NONFAILING(*(uint32_t*)0x20000088 = 0); NONFAILING(*(uint32_t*)0x2000008c = 0); NONFAILING(*(uint32_t*)0x20000090 = 0); NONFAILING(*(uint32_t*)0x20000098 = -1); NONFAILING(memset((void*)0x2000009c, 0, 12)); syscall(__NR_io_uring_setup, /*entries=*/0x2026, /*params=*/0x20000080ul); break; case 4: syscall(__NR_fcntl, /*fd=*/r[0], /*cmd=*/4ul, /*flags=*/0ul); break; case 5: res = syscall(__NR_dup, /*oldfd=*/r[0]); if (res != -1) r[1] = res; break; case 6: NONFAILING(*(uint64_t*)0x20000500 = 0x200000c0); NONFAILING(memset((void*)0x200000c0, 170, 1)); NONFAILING(*(uint64_t*)0x20000508 = 1); syscall(__NR_pwritev2, /*fd=*/r[1], /*vec=*/0x20000500ul, /*vlen=*/1ul, /*off_low=*/0, /*off_high=*/0, /*flags=*/0ul); break; case 7: NONFAILING(*(uint64_t*)0x20000640 = 0xe000); syscall(__NR_copy_file_range, /*fd_in=*/r[0], /*off_in=*/0ul, /*fd_out=*/r[1], /*off_out=*/0x20000640ul, /*len=*/0xd8c2ul, /*flags=*/0ul); break; case 8: NONFAILING(memcpy((void*)0x20000280, "cgroup.controllers\000", 19)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000280ul, /*flags=*/0x275aul, /*mode=*/0ul); 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; install_segv_handler(); use_temporary_dir(); loop(); return 0; }