// https://syzkaller.appspot.com/bug?id=a16fff4907f152e51a698c8879c3c8c2b773cfaa // 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 #ifndef __NR_copy_file_range #define __NR_copy_file_range 326 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 328 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void 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 < 10; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[5] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000400, "jfs\000", 4); memcpy((void*)0x200000c0, "./bus\000", 6); memcpy( (void*)0x20005b80, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\x2f\xd3\x73\x09\x71" "\xac\x08\x45\xc6\x62\xe1\x38\x10\x12\x42\x7c\xb7\x21\xdc\xe2\xb0\x60" "\x01\x48\x20\x21\xaf\xb1\x35\x99\x44\x06\x07\x90\x6d\x10\x89\x2c\x3c" "\x91\x17\x88\x05\x97\x47\x80\x4d\x36\x2c\xf2\x22\xe1\x15\x10\x0f\x80" "\x25\x0f\xab\x48\x10\x0a\xd5\xcc\x39\x76\x4d\x4d\x8f\x7b\x1c\x7b\xba" "\xba\xe7\xfc\x7e\x52\xbb\xea\xab\xd3\x35\x7d\xca\xff\xa9\xe9\x4b\x55" "\xf5\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\x20" "\xbe\xf7\xdd\x1f\x9f\xee\x45\xc4\xe5\x5f\xa7\x05\x87\x23\x3e\x13\x83" "\x88\x7e\xc4\x72\x5d\x1f\x8b\x7a\xe6\x62\xbe\xff\x30\x22\x8e\xc4\x66" "\x73\x3c\x17\x11\x83\xc5\x88\x7a\xfd\xcd\x7f\x9e\x89\x38\x17\x11\x1f" "\x1d\x8a\xb8\xb7\x71\x6b\xb5\x5e\x7c\x66\x8f\xfd\x38\x7f\xea\xe6\xf5" "\x4f\xbe\xff\x9d\x7f\xfc\xee\x4f\x77\x8e\xfc\xf4\xcd\x9f\x7c\xd0\x6e" "\xff\xd1\x67\xcf\x7e\xf8\xfb\xdb\x11\x87\x7f\xf8\xda\x87\x9f\xdc\x7e" "\x32\xdb\x0e\x00\x00\x00\xa5\xa8\xaa\xaa\xea\xa5\xb7\xf9\x47\xd3\xfb" "\xfb\x7e\xd7\x9d\x02\x00\xa6\x22\x3f\xff\x57\x49\x5e\xae\x56\xab\xd5" "\xea\x27\x5a\xff\xb1\x3f\x5b\xfd\x51\x17\x5a\x37\x55\xe3\xdd\x6e\x16" "\x11\xb1\xde\x5c\xa7\x7e\xcd\xe0\x70\x3c\x00\xcc\x99\xf5\xf8\xb8\xeb" "\x2e\xd0\x21\xf9\x17\x6d\x18\x11\x4f\x75\xdd\x09\x60\xa6\xf5\xc6\x2c" "\x1b\xfb\x21\x02\x73\xe5\xde\xc6\xad\xd5\x5e\xca\xb7\xd7\x7c\x3e\x38" "\xb6\xd5\x9e\x3f\xa7\xdc\x96\xff\x7a\xef\xfe\xf5\x1d\xbb\x4d\x27\x69" "\x9f\x63\x32\xee\xf7\x6b\x3f\xdc\x89\x41\x3c\xbb\x4b\x7f\x96\xa7\xd4" "\x87\x59\x92\xf3\xef\xb7\xf3\xbf\xbc\xd5\x3e\x4a\xf7\xdb\xef\xfc\xa7" "\x65\xb7\xfc\x47\x5b\x97\x3e\x15\x27\xe7\x3f\x68\xe7\xdf\xb2\x2d\xff" "\x3f\x47\xc4\xdc\xe6\xdf\x1f\x9b\x7f\xa9\x72\xfe\xc3\x47\xc9\x7f\x7d" "\x30\xc7\xfb\xbf\xfc\x01\x00\x00\x00\x00\x38\xf8\xf2\xe7\xff\x87\x3b" "\x3e\xfe\xbb\xf8\xf8\x9b\xb2\x27\x0f\x3b\xfe\x7b\x6c\x4a\x7d\x00\x00" "\x00\x00\x00\x00\x00\x80\x27\xed\x71\xc7\xff\xbb\xcf\xf8\x7f\x00\x00" "\x00\x30\xb3\xea\xf7\xea\xb5\xbf\x1c\x7a\xb0\x6c\xb7\xef\x62\xab\x97" "\x5f\xea\x45\x3c\xdd\xba\x3f\x50\x98\x74\xb1\xcc\x4a\xd7\xfd\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x80\x92\x0c\xb7\xce\xe1\xbd\xd4\x8b" "\x58\x88\x88\xa7\x57\x56\xaa\xaa\xaa\x6f\x4d\xed\xfa\x51\x3d\xee\xfa" "\xf3\xae\xf4\xed\x87\x92\x75\xfd\x47\x1e\x00\x00\xb6\x7c\x74\xa8\x75" "\x2d\x7f\x2f\x62\x29\x22\x2e\xa5\xef\xfa\x5b\x58\x59\x59\xa9\xaa\xa5" "\xe5\x95\x6a\xa5\x5a\x5e\xcc\xaf\x67\x47\x8b\x4b\xd5\x72\xe3\x7d\x6d" "\x9e\xd6\xcb\x16\x47\x7b\x78\x41\x3c\x1c\x55\xf5\x0f\x5b\x6a\xac\xd7" "\x34\xe9\xfd\xf2\xa4\xf6\xf6\xcf\xab\x1f\x6b\x54\x0d\xf6\xd0\xb1\xe9" "\xe8\x30\x70\x00\x88\x88\xad\x67\xa3\x7b\x9e\x91\x0e\x98\xaa\x7a\x26" "\xba\x7e\x95\xc3\x7c\xb0\xff\x1f\x3c\xf6\x7f\xf6\xa2\xeb\xdf\x53\x00" "\x00\x00\x60\xff\x55\x55\x55\xf5\xd2\xd7\x79\x1f\x4d\xc7\xfc\xfb\x5d" "\x77\x0a\x00\x98\x86\xa5\xfc\xfc\xdf\x3e\x2e\xa0\x56\xab\xd5\x6a\xb5" "\xfa\xe0\xd5\x4d\xd5\x78\xb7\x9b\x45\x44\xac\x37\xd7\xa9\x5f\x33\x18" "\x8e\x1f\x00\xe6\xcc\x7a\x7c\xdc\x75\x17\xe8\x90\xfc\x8b\x36\x8c\x88" "\x23\x5d\x77\x02\x98\x69\xbd\xae\x3b\xc0\xbe\xb8\xb7\x71\x6b\xb5\x97" "\xf2\xed\x35\x9f\x0f\xd2\xf8\xee\xf9\x5c\x90\x6d\xf9\xaf\xf7\x36\xd7" "\xcb\xeb\x8f\x9b\x4e\xd2\x3e\xc7\x64\x5a\xbf\x5f\x77\x62\x10\xcf\xee" "\xd2\x9f\xe7\xa6\xd4\x87\x59\x92\xf3\xef\xb7\xf3\xbf\xbc\xd5\x3e\x4a" "\xf7\xdb\xef\xfc\xa7\x65\xb7\xfc\xeb\xed\x3c\xdc\x41\x7f\xba\x96\xf3" "\x1f\xb4\xf3\x6f\x39\x38\xf9\xf7\xc7\xe6\x5f\xaa\x9c\xff\xf0\x91\xf2" "\x1f\xc8\x1f\x00\x00\x00\x00\x00\x66\x58\xfe\xfc\xff\xb0\xe3\xbf\x79" "\x93\x01\x00\x00\x00\x00\x00\x00\x60\xee\xdc\xdb\xb8\xb5\x9a\xaf\x7b" "\xcd\xc7\xff\x3f\x3f\xe6\x7e\xbd\xe6\x9c\xeb\x3f\x0f\x8c\x9c\x7f\x6f" "\xcf\xf9\xbb\xfe\xf7\x20\xc9\xf9\xf7\xdb\xf9\xb7\x4e\xc8\x19\x34\xe6" "\xef\xbe\xf1\x20\xff\x7f\x6f\xdc\x5a\xfd\xe0\xe6\xbf\x3e\x97\xa7\x33" "\x9f\xff\xc2\x60\x54\x3f\xf6\x42\xaf\x3f\x18\xa6\x73\x7e\xaa\x85\xb7" "\xe2\x6a\x5c\x8b\xb5\x38\xb5\xe3\xfe\xc3\x6d\xed\xa7\x77\xb4\x2f\x6c" "\x6b\x3f\x33\xa1\xfd\xec\x8e\xf6\x51\xdd\xbe\x9c\xdb\x4f\xc4\x6a\xfc" "\x22\xae\xc5\x9b\xf7\xdb\x17\x27\x9c\x18\xb5\x34\xa1\xbd\x9a\xd0\x9e" "\xf3\x1f\xd8\xff\x8b\x94\xf3\x1f\x36\x6e\x75\xfe\x2b\xa9\xbd\xd7\x9a" "\xd6\xee\xbe\xdf\xdf\xb1\xdf\x37\xa7\xe3\x1e\xe7\xe2\xdf\xfe\xfb\xe2" "\xce\xbd\x6b\xfa\xee\xc4\xe0\xfe\xb6\x35\xd5\xdb\x77\xbc\x83\xfe\x6c" "\xfe\x9f\x3c\x35\x8a\x5f\xdd\x58\xbb\x7e\xe2\x37\x57\x6e\xde\xbc\x7e" "\x3a\xd2\x64\xdb\xd2\x33\x91\x26\x4f\x58\xce\x7f\x21\xdd\x72\xfe\x2f" "\xbd\xb0\xd5\x9e\xff\xee\x37\xf7\xd7\xbb\xef\x8f\x1e\x39\xff\x59\x71" "\x27\x86\xbb\xe6\xff\x42\x63\xbe\xde\xde\x97\xa7\xdc\xb7\x2e\xe4\xfc" "\x47\xe9\x96\xf3\xcf\xcf\x40\xe3\xf7\xff\x79\xce\x7f\xf7\xfd\xff\x95" "\x0e\xfa\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x53" "\x55\xd5\xe6\x25\xa2\x17\x23\xe2\x42\xba\xfe\xa7\xab\x6b\x33\x01\x80" "\xa9\xfa\xc3\x0f\xd2\x4c\x95\x84\x5a\xad\x56\xab\xd5\xea\x03\x5b\x37" "\x55\xe3\xbd\xde\x2c\x62\x69\xfb\x3a\x17\x22\xe2\xb7\xe3\x7e\x18\x00" "\x30\xcb\xfe\x17\x11\xff\xec\xba\x13\x74\x46\xfe\x05\xcb\xdf\xf7\x57" "\x4f\xbf\xd0\x75\x67\x80\xa9\xba\xf1\xee\x7b\x3f\xbb\x72\xed\xda\xda" "\xf5\x1b\x5d\xf7\x04\x00\x00\x00\x00\x00\x00\x00\xf8\xb4\xf2\xf8\x9f" "\xc7\x1a\xe3\x3f\x6f\x9e\x07\xd4\x1a\x37\x7a\xdb\xf8\xaf\x6f\xc4\xb1" "\xb9\x1d\xff\xb3\x3f\x1a\x6c\x8e\x75\x9e\x36\xe8\xf9\x78\xf8\xf8\xdf" "\xc7\xe3\xe1\xe3\x7f\x0f\x27\x3c\xde\xc2\x84\xf6\xd1\x84\xf6\xc5\x09" "\xed\x4b\x13\xda\xc7\x5e\xe8\xd1\x90\xf3\x7f\x3e\x65\x9c\xf3\x3f\x9a" "\x36\xac\xa4\xf1\x5f\x5f\xea\xa0\x3f\x5d\xcb\xf9\x1f\x4f\x63\x3d\xe7" "\xfc\xbf\xd4\xba\x5f\x33\xff\xea\xaf\xf3\x9c\x7f\x7f\x5b\xfe\x27\x6f" "\xbe\xf3\xcb\x93\x37\xde\x7d\xef\xd5\xab\xef\x5c\x79\x7b\xed\xed\xb5" "\x9f\x9f\x3e\x75\xe1\xdc\xd9\xf3\xe7\xce\x9e\x3f\x7f\xf2\xad\xab\xd7" "\xd6\x4e\x6d\xfd\xdb\x61\x8f\xf7\x57\xce\x3f\x8f\x7d\xed\x3c\xd0\xb2" "\xe4\xfc\x73\xe6\xf2\x2f\x4b\xce\xff\x8b\xa9\x96\x7f\x59\x72\xfe\x2f" "\xa6\x5a\xfe\x65\xc9\xf9\xe7\xd7\x7b\xf2\x2f\x4b\xce\x3f\xbf\xf7\x91" "\x7f\x59\x72\xfe\x2f\xa7\x5a\xfe\x65\xc9\xf9\x7f\x39\xd5\xf2\x2f\x4b" "\xce\xff\x95\x54\xcb\xbf\x2c\x39\xff\xaf\xa4\x5a\xfe\x65\xc9\xf9\xbf" "\x9a\x6a\xf9\x97\x25\xe7\x7f\x22\xd5\xf2\x2f\x4b\xce\xff\x64\xaa\xe5" "\x5f\x96\x9c\x7f\x3e\xc2\x25\xff\xb2\xe4\xfc\xf3\x99\x0d\xf2\x2f\x4b" "\xce\xff\x4c\xaa\xe5\x5f\x96\x9c\xff\xd9\x54\xcb\xbf\x2c\x39\xff\x73" "\xa9\x96\x7f\x59\x72\xfe\xe7\x53\x2d\xff\xb2\xe4\xfc\x2f\xa4\x5a\xfe" "\x65\xc9\xf9\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\x6b\xa9\x96\x7f\x59\x72" "\xfe\xaf\xa5\x5a\xfe\x65\xc9\xf9\x7f\x3d\xd5\xf2\x2f\x4b\xce\xff\x1b" "\xa9\x96\x7f\x59\x72\xfe\xdf\x4c\xb5\xfc\xcb\x92\xf3\xff\x56\xaa\xe5" "\x5f\x96\x9c\xff\xb7\x53\x2d\xff\xb2\xe4\xfc\x5f\x4f\xb5\xfc\xcb\xf2" "\xe0\xfb\xff\xcd\x4c\x79\xe6\x3f\x7f\x8f\x98\x81\x6e\x98\x31\x33\x6e" "\xa6\xeb\xbf\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xdb\x34" "\x4e\x27\xee\x7a\x1b\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\x3f\x3b\x70\x20\x00\x00" "\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\xd8\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7" "\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xc2\xde\xdd\xc5\xc8\x75\xd6\x67\x00\x3f\xfb\x65\xaf\x9d\x40\x5c\x12" "\x42\x08\x86\xac\x1d\x27\x18\xb2\xf1\xee\xfa\x2b\x31\xc1\x64\x03\x84" "\xa6\xa1\xa5\x69\x20\xb4\xb4\xa1\x8e\xb1\xd7\x8e\xc1\x5f\xf5\xae\x21" "\x89\xa2\x66\xd3\xa4\x6d\x10\x91\x1a\xa9\xbd\x48\x2f\x4a\x01\x51\x84" "\xd4\x56\x89\x10\x52\xa9\x94\xa2\x48\x45\x6a\xef\x9a\x2b\x50\x6e\x50" "\x2b\xe5\xc2\x52\x93\xca\x44\x50\x89\x8a\x64\xab\x33\xe7\x7d\xdf\x9d" "\x99\x9d\x9d\x59\x7f\x6c\x3c\xe7\x9c\xdf\x0f\xc5\x7f\xef\xcc\x99\x99" "\x77\xce\x9c\x99\xdd\x67\xcd\x33\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" "\x34\xdb\xf4\xb1\x99\x3f\x1f\xc8\xb2\x2c\xff\xaf\xf1\xc7\x86\x2c\xbb" "\x3c\xff\xfb\xba\x6c\x3a\xff\x72\x7e\xf7\xa5\x5e\x21\x00\x00\x00\x70" "\xa1\xde\x68\xfc\xf9\x0f\x57\xa4\x13\xa6\x57\x70\xa1\xa6\x6d\xfe\xed" "\x7d\xff\xf1\xfd\x85\x85\x85\x85\xec\x0b\xaf\x9f\x79\xf3\x2f\x17\x16" "\xd2\x19\x63\x59\x36\xb4\x36\xcb\x1a\xe7\x45\xff\xfe\xcb\x5f\x2c\x34" "\x6f\x13\x3c\x91\x8d\x0e\x0c\x36\x7d\x3d\xd8\xe3\xe6\x87\x7a\x9c\x3f" "\xdc\xe3\xfc\x91\x1e\xe7\xaf\xe9\x71\xfe\xda\x1e\xe7\x8f\xf6\x38\x7f" "\xc9\x0e\x58\x62\x5d\xf1\xfb\x98\xc6\x95\x6d\x69\xfc\x75\x43\xb1\x4b" "\xb3\xab\xb2\x91\xc6\x79\x5b\x3a\x5c\xea\x89\x81\xb5\x83\x83\xf1\x77" "\x39\x0d\x03\x8d\xcb\x2c\x8c\x1c\xca\x8e\x64\x47\xb3\x99\x6c\x72\xc9" "\x65\x06\x1a\xff\xcb\xb2\x17\x36\xe5\xb7\x75\x57\x16\x6f\x6b\xb0\xe9" "\xb6\x36\x66\x59\x76\xf6\x67\x8f\x1e\x88\x6b\x18\x08\xfb\x78\x4b\xd6" "\x72\x63\x0d\xcd\x8f\xdd\x6b\x77\x64\x63\xaf\xff\xec\xd1\x03\xdf\x99" "\x7b\xf5\xdd\x9d\x66\xcf\xdd\xb0\x64\xa5\x59\xb6\x75\x73\xbe\xce\x27" "\xb3\x6c\xf1\xd7\x55\xd9\x40\xb6\x36\xed\x93\xb8\xce\xc1\xa6\x75\x6e" "\xec\xb0\xce\xa1\x96\x75\x0e\x34\x2e\x97\xff\xbd\x7d\x9d\x67\x57\xb8" "\xce\x78\xbf\x47\xc3\x3a\x5f\xea\xb2\xce\x8d\xe1\xb4\x87\xae\xcf\xb2" "\x6c\x3e\x5b\x76\x9b\x76\x4f\x64\x83\xd9\xfa\xb6\x5b\x4d\xfb\x7b\xb4" "\x38\x22\xf2\xeb\xc8\x1f\xca\x77\x64\xc3\xe7\x74\x9c\x6c\x5a\xc1\x71" "\x92\x5f\xe6\x95\xeb\x5b\x8f\x93\xf6\x63\x32\xee\xff\x4d\x61\x9f\x0c" "\x2f\xb3\x86\xe6\x87\xe3\xb5\xc7\xd7\x2c\xd9\xef\xe7\x7b\x9c\xe4\xf7" "\xba\x1f\x8e\xd5\xfc\xba\xef\xc9\x6f\x74\x74\xb4\xf9\x57\xab\x2d\xc7" "\x6a\xbe\xcd\xa3\x37\x2c\x7f\x0c\x74\x7c\xec\x3a\x1c\x03\xe9\x58\x6e" "\x3a\x06\x36\xf7\x3a\x06\x06\xd7\x0c\x35\x8e\x81\xc1\xc5\x35\x6f\x6e" "\x39\x06\xa6\x96\x5c\x66\x30\x1b\x68\xdc\xd6\x99\x1b\xba\x1f\x03\x13" "\x73\xc7\x4e\x4e\xcc\x3e\xfc\xc8\xcd\x47\x8e\xed\x3f\x3c\x73\x78\xe6" "\xf8\xd4\xe4\xee\x9d\x3b\x76\xed\xdc\xb1\x6b\xd7\xc4\xa1\x23\x47\x67" "\x26\x8b\x3f\xcf\x6d\x97\x96\xc8\xfa\x6c\x30\x1d\x83\x9b\xc3\x6b\x4d" "\x3c\x06\xdf\xdf\xb6\x6d\xf3\x21\xb9\xf0\xcd\x8b\xf7\x3c\x18\xed\x93" "\xe7\x41\x7e\xdf\x3f\x73\x63\xbe\xa0\xcb\x07\xb3\x65\x8e\xf1\x7c\x9b" "\x27\xb7\x5e\xf8\xf3\x20\x7d\xdf\x6f\x7a\x1e\x0c\x37\x3d\x0f\x3a\xbe" "\xa6\x76\x78\x1e\x0c\xaf\xe0\x79\x90\x6f\x73\x76\xeb\xca\xbe\x67\x0e" "\x37\xfd\xd7\x69\x0d\xab\xf5\x5a\xb8\xa1\xe9\x18\xb8\x94\xdf\x0f\xf3" "\xdb\xbc\xff\x03\xcb\xbf\x16\x6e\x0c\xeb\x7a\xea\x83\xe7\xfa\xfd\x70" "\x68\xc9\x31\x10\xef\xd6\x40\x78\xee\xe5\xa7\xa4\x9f\xf7\x46\x6f\x0d" "\xfb\x65\xe9\x71\x71\x6d\x7e\xc6\x65\x6b\xb2\xd3\xb3\x33\xa7\xb6\x3d" "\xb4\x7f\x6e\xee\xd4\x54\x16\xc6\x5b\xe2\xca\xa6\xc7\xaa\xfd\x78\x59" "\xdf\x74\x9f\xb2\x25\xc7\xcb\xe0\x39\x1f\x2f\xd3\x7f\xff\xab\x1b\xaf" "\xed\x70\xfa\x86\xb0\xaf\x46\x6f\xea\xfe\x58\xe5\xdb\xec\x1c\xef\xfe" "\x58\x35\x5e\xdd\x5b\xf7\xe7\x9a\xac\xd8\x9f\x2d\xa7\x6e\xcf\xc2\xb8" "\xc8\xde\xea\xfd\xd9\xe9\xbb\x59\xbe\x3f\x53\x96\xe8\xb2\x3f\xf3\x6d" "\x9e\xbc\xf9\xc2\x7f\x16\x4c\xb9\xa4\xe9\xf5\x6f\xa4\xd7\xeb\xdf\xd0" "\xc8\x70\xf1\xfa\x37\x94\xf6\xc6\x48\xcb\xeb\xdf\xd2\x87\x66\xa8\xb1" "\xb2\x2c\x3b\x7b\xf3\xca\x5e\xff\x46\xc2\x7f\x6f\xf5\xeb\xdf\x55\x7d" "\xf2\xfa\x97\xef\xab\xfb\xb7\x75\x3f\x06\xf2\x6d\x9e\x9a\x38\xd7\x63" "\x60\xb8\xeb\xeb\xdf\xf5\x61\x0e\x84\xf5\x7c\x20\x24\x86\xd1\xa6\xdc" "\xff\x66\xe3\xfc\xf9\xe2\x30\x6d\x7a\x2c\x7b\x1e\x37\xc3\xc3\x23\xe1" "\xb8\x19\x8e\xb7\xd8\x7a\xdc\xec\x58\x72\x99\xfc\xda\xf2\xdb\xde\x3a" "\x79\x7e\xc7\xcd\xd6\xeb\x5b\x1f\xab\x96\x9f\x5b\x2a\x78\xdc\xe4\xfb" "\xea\xaf\x26\xbb\x1f\x37\xf9\x36\x2f\x4e\x5d\xf8\x6b\xc7\xba\xf8\xd7" "\xa6\xd7\x8e\x35\xbd\x8e\x81\x91\xa1\x35\xf9\x7a\x47\xd2\x41\x50\xbc" "\xde\x2d\xac\x8b\xc7\xc0\xb6\xec\x40\x76\x22\x3b\x9a\x1d\x4c\x97\xc9" "\x1f\xe5\xfc\xb6\xc6\xb7\xaf\xec\x18\x58\x13\xfe\x7b\xab\x5f\x3b\xae" "\xe9\x93\x63\x20\xdf\x57\xcf\x6e\xef\x7e\x0c\xe4\xdb\xfc\x68\xc7\xc5" "\xfd\xd9\x69\x6b\x38\x25\x6d\xd3\xf4\xb3\x53\xfb\xef\x17\x96\xcb\xfc" "\xd7\x0e\x2f\x5e\x5f\xfb\x6e\xbb\xd8\x99\x3f\x5f\xe7\xc7\x7f\xfc\xa9" "\x74\x5a\xa7\x0c\x91\x6f\xf3\xea\xce\x73\xcd\x19\xdd\xf7\xd3\x4d\xe1" "\x94\xcb\x3a\xec\xa7\xf6\xe7\xcf\x72\xc7\xf4\xc1\xec\xad\xd9\x4f\xd7" "\x84\x75\x1e\xdd\xd5\xfd\x77\x53\xf9\x36\x57\xed\x5e\xe1\xf1\x34\x9d" "\x65\xd9\xcb\x53\x2f\x37\x7e\xdf\x15\x7e\xbf\xfb\xbd\xd3\x3f\xfe\x7e" "\xcb\xef\x7d\x3b\xfd\x4e\xf9\xe5\xa9\x97\xef\x9e\xb8\xf7\x27\xe7\xb2" "\x7e\x00\x00\xce\xdf\x9b\x8d\x3f\xe7\xd7\x14\x3f\x6b\x36\xfd\x8b\xf5" "\x4a\xfe\xfd\x1f\x00\x00\x00\x28\x85\x98\xfb\x07\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\x87\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\x87\xc3\x4c\x6a\x92\xff\x1f\xbc\x75\xcf\x73\x6f\x3c\x96\xa5\x77" "\x03\x5c\x08\xe2\xf9\x71\x37\xdc\xf3\x91\x62\xbb\xd8\xf1\x9e\x0f\x5f" "\x8f\x2d\x2c\xca\x4f\xff\xe8\xb7\x47\x9e\xfb\xea\x63\x2b\xbb\xed\xc1" "\x2c\xcb\x7e\x75\xf7\x7b\x3a\x6e\xff\xe0\x47\xe2\xba\x0a\x27\xe3\x3a" "\x3f\xd4\x7a\xfa\x12\xd7\x5c\xb7\xa2\xdb\x7f\xe0\xbe\xc5\xed\x9a\xdf" "\x3f\xe1\xec\x9e\xe2\xfa\xe3\xfd\x59\xe9\x61\x10\xbb\xca\x2f\x4c\x6c" "\x6f\x5c\xef\xd8\xc3\x53\x8d\xf9\xe2\xdd\x59\x63\xde\x3b\xff\xd4\x13" "\xc5\xf5\x17\x5f\xc7\xed\xcf\xec\x28\xb6\xff\x9b\xf0\xa6\x25\xd3\x87" "\x06\x5a\x2e\xbf\x35\xac\x67\x4b\x98\x63\xe1\x3d\x65\xee\x99\x5e\xdc" "\x0f\xf9\x8c\x97\x7b\x6e\xe3\xfb\xfe\xf5\xca\xcf\x2e\xde\x5e\xbc\xdc" "\xc0\xe6\xb7\x37\xee\xe6\xb3\x7f\x5c\x5c\x6f\x7c\x8f\xa8\x67\xae\x2c" "\xb6\x8f\xf7\x7b\xb9\xf5\xff\xcb\xd7\xbe\xfb\x5c\xbe\xfd\x43\x37\x74" "\x5e\xff\x63\x83\x9d\xd7\x7f\x26\x5c\xef\x2b\x61\xfe\x72\x6f\xb1\x7d" "\xf3\x3e\xff\x6a\xd3\xfa\xff\x34\xac\x3f\xde\x5e\xbc\xdc\xb6\x6f\xfd" "\xb0\xe3\xfa\x9f\x7f\x57\xb1\xfd\xf3\xe1\xb8\xf8\x46\x98\xed\xeb\xbf" "\xe3\x2f\xde\xfb\x46\xa7\xc7\x2b\xde\xce\xf4\x6d\xc5\xe5\xe2\xed\x4f" "\xfe\xef\xce\xc6\xe5\xe2\xf5\xc5\xeb\x6f\x5f\xff\xe8\x63\x53\x2d\xfb" "\xa3\xfd\xfa\x5f\x7c\xbd\xb8\x9e\xbd\x5f\xfe\xf9\x50\xf3\xf6\xf1\xf4" "\x78\x3b\xd1\x03\xb7\xb5\x1e\xdf\x03\xe1\xf1\x6d\xe9\x91\x67\x59\xf6" "\xdd\x3f\xcb\x5a\xf6\x73\xf6\xe1\xe2\x72\xff\xdc\xb6\xfe\x78\x7d\x27" "\x6f\xeb\xbc\xfe\x9b\xda\xd6\x79\x72\xe0\xba\xc6\xe5\x17\xef\xcf\x86" "\x96\xfb\xf5\xf5\xbf\xdb\xde\xf1\xfe\xc6\xf5\x4c\xff\xe3\x86\x96\xfb" "\xf3\xcc\x9d\x61\xff\xbd\x3e\xf1\xa3\xfc\x7a\xcf\xdc\x1b\x8e\xc7\x70" "\xfe\xff\xbd\x54\x5c\x5f\xfb\x7b\x99\x3e\x7f\x67\xeb\xeb\x4d\xdc\xfe" "\x1b\x1b\x8a\xe7\x6d\xbc\xbe\x89\xb6\xf5\x3f\xd3\xb6\xfe\xf9\xeb\xf2" "\x7d\xd7\x7b\xfd\x77\xbd\x5e\xac\xff\xf9\xdb\xd7\xb6\xac\x7f\xfa\x13" "\xe1\x78\xba\xab\x98\xbd\xd6\x7f\xf8\x6f\xaf\x68\xb9\xfc\x37\xbf\x53" "\x3c\x1e\xa7\xbe\x32\x7e\xfc\xc4\xec\xe9\x23\x07\x9b\xf6\x6a\xf3\xf3" "\x78\xed\xe8\xba\xf5\x97\x5d\xfe\xb6\xb7\x5f\x11\x5e\x4b\xdb\xbf\xde" "\x77\x62\xee\xc1\x99\x53\x63\x93\x63\x93\x59\x36\x56\xc2\xb7\x0c\x5c" "\xed\xf5\x7f\x2b\xcc\xff\x29\xc6\xfc\xc5\xbf\x85\xc2\x4f\x7e\x5e\x1c" "\x77\x4f\x7f\xb2\xf8\xbe\xf5\xfe\x5f\x14\x5f\x3f\x13\x4e\x7f\x20\x3c" "\x9e\xf1\xfb\xe3\xd7\xff\x7a\xa4\xe5\x78\x6d\x7f\xdc\xe7\x6f\x2f\xe6" "\x85\xae\xff\x83\x61\x1d\x2b\xf5\xae\xaf\xfd\xd7\x75\x2b\xda\xf0\xcc" "\xe7\x5f\x38\xfd\x4f\x7f\xf2\x6a\xfb\xcf\x05\xf1\xfe\x9c\x7c\xe7\x68" "\xe3\xfe\x3d\xbb\xe9\xea\xc6\x79\x03\x2f\x16\xe7\xb7\xbf\x5e\xf5\xf2" "\x9f\xef\x6c\x7d\x5e\xff\x74\x78\xb2\x31\x7f\x10\xf6\xeb\x42\x78\x67" "\xe6\xcd\x57\x17\xb7\xd7\x7e\xfd\xf1\xbd\x49\x9e\xfe\x74\xf1\xfc\x8d" "\x3f\xc9\xc5\xcb\x67\x6d\xef\x27\xb2\x61\xa8\xf5\x7e\x5c\xe8\xfa\x7f" "\x1a\x7e\x8e\xf9\xe1\x35\xad\xaf\x7f\xf1\xf8\xf8\xc1\x63\x6d\xef\xe6" "\xbc\x21\x1b\xc8\x97\x30\x1f\x5e\x1f\xb2\xf9\xe2\xfc\xb8\x55\xdc\xdf" "\x4f\x9f\xbd\xba\xe3\xed\xc5\xf7\xe1\xc9\xe6\xdf\x7d\x2e\xcb\x5c\xd6" "\xec\xc3\xb3\x13\x47\x8f\x1c\x3f\xfd\xd0\xc4\xdc\xcc\xec\xdc\xc4\xec" "\xc3\x8f\xec\x3b\x76\xe2\xf4\xf1\xb9\x7d\x8d\xf7\x2e\xdd\xf7\xc5\x5e" "\x97\x5f\x7c\x7e\xaf\x6f\x3c\xbf\x0f\xce\xec\xde\x99\x35\x9e\xed\x27" "\x8a\xb1\xca\x2e\xf5\xfa\x4f\xde\x77\xe0\xe0\x2d\x93\x37\x1e\x9c\x39" "\xb4\xff\xf4\xa1\xb9\xfb\x4e\xce\x9c\x3a\x7c\x60\x76\xf6\xc0\xcc\xc1" "\xd9\x1b\xf7\x1f\x3a\x34\xf3\x95\x5e\x97\x3f\x72\x70\xef\xd4\xf6\x3d" "\x3b\x6e\xd9\x3e\x7e\xf8\xc8\xc1\xbd\xb7\xee\xd9\xb3\x63\xcf\xf8\x91" "\xe3\x27\xf2\x65\x14\x8b\xea\x61\xf7\xe4\x97\xc6\x8f\x9f\xda\xd7\xb8" "\xc8\xec\xde\x9d\x7b\xa6\x76\xed\xda\x39\x39\x7e\xec\xc4\xc1\x99\xbd" "\xb7\x4c\x4e\x8e\x9f\xee\x75\xf9\xc6\xf7\xa6\xf1\xfc\xd2\x5f\x1e\x3f" "\x35\x73\x74\xff\xdc\x91\x63\x33\xe3\xb3\x47\x1e\x99\xd9\x3b\xb5\x67" "\xf7\xee\xed\x3d\xdf\xfd\xf1\xd8\xc9\x43\xb3\x63\x13\xa7\x4e\x1f\x9f" "\x38\x3d\x3b\x73\x6a\xa2\xb8\x2f\x63\x73\x8d\x93\xf3\xef\x7d\xbd\x2e" "\x4f\x3d\xcc\x9e\x08\xaf\x77\x6d\x06\xc2\x4f\xe7\x9f\xbb\x69\x77\x7a" "\x7f\xdc\xdc\xb7\x1f\x5f\xf6\xaa\x8a\x4d\x5a\x7f\x3c\xcd\x5e\x0b\xef" "\x05\x15\xbf\xbf\xf5\xfa\x3a\xe6\xfe\x91\x30\x93\x9a\xe4\x7f\x00\x00" "\x00\xa8\x83\x98\xfb\xc3\x1b\xff\x2f\x9e\x21\xff\x03\x00\x00\x40\x65" "\xc4\xdc\xbf\x36\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xbf\x48\xfe" "\xa3\xe9\xe3\xdf\xeb\x92\xff\x2f\x56\xff\xff\x71\xfd\xff\x06\xfd\x7f" "\xfd\xff\x4c\xff\x3f\xd1\xff\xd7\xff\xcf\xf4\xff\xf5\xff\x7b\xa8\x42" "\xff\x3f\xff\xe1\x51\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xce\xfa\xad\xff" "\x1f\x72\x7f\xb6\x2e\xcb\xfc\xfb\x3f\x00\x00\x00\x54\x54\xcc\xfd\xeb" "\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x2f\x0b\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\xbf\x3c\xcc\xa4\x26\xf9\xdf\xe7\xff\xeb\xff" "\xeb\xff\x77\xeb\xff\xc7\x6d\xf5\xff\x33\xfd\xff\x7e\xe8\xff\x6f\xf9" "\x6f\xfd\xff\x25\xf4\xff\xf5\xff\x33\x9f\xff\x7f\xde\x2e\x75\x7f\xbe" "\xec\xeb\xef\xc3\xfe\xff\x3a\xfd\x7f\xfa\x4d\xbf\xf5\xff\x63\xee\x7f" "\x5b\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x6f\x0f\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x22\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\x7f\x43\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xcf" "\xff\xd7\xff\x2f\x4d\xff\xdf\xe7\xff\x77\xa0\xff\xaf\xff\x9f\xe9\xff" "\x9f\xb7\x4b\xdd\x9f\x2f\xfb\xfa\xfb\xb0\xff\xef\xf3\xff\xe9\x3b\xfd" "\xd6\xff\x8f\xb9\xff\xd7\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62" "\xee\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x95\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x57\x85\x99\xd4\x24\xff\xd7\xb3" "\xff\xff\x4a\x96\x65\xfa\xff\x99\xfe\xbf\xfe\x7f\xdb\x3a\xf5\xff\xf5" "\xff\x57\x83\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x65\x5e\xbf\xfe\xbf" "\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe\x77\x86\x99\xd4\x24\xff\x03\x00" "\x00\x40\x1d\xc4\xdc\x7f\x75\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\xbb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xaf\x09\x33\xa9" "\x49\xfe\xaf\x67\xff\xdf\xe7\xff\xeb\xff\x17\xf4\xff\x5b\xd7\xa9\xff" "\xaf\xff\xbf\x1a\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\x2f\xf3\xfa\xab" "\xd0\xff\x5f\x97\xe9\xff\xb3\xba\xfa\xad\xff\x1f\x73\xff\xbb\xc3\x4c" "\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xbf\x36\xcc\x44\xfe\x07\x00" "\x00\x80\xca\x88\xb9\xff\x3d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\x1b\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\x57\x53\xb9\xfa\xff\x83\xcb\x9e\xa3\xff\x5f\xd0\xff\x6f\x75" "\xf1\xfa\xff\xf3\x8b\x0b\xd0\xff\x2f\xcd\xfa\xab\xd0\xff\xf7\xf9\xff" "\xac\xb6\x7e\xeb\xff\xc7\xdc\xff\xde\x30\x93\x9a\xe4\x7f\x00\x00\x00" "\xa8\x83\x98\xfb\xdf\x17\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f" "\x5d\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x58\x98\x49\x4d\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x6a\x2a\x57\xff" "\x7f\x79\xfa\xff\x05\xfd\xff\x56\x3e\xff\x5f\xff\x5f\xff\x5f\xff\x9f" "\xee\xfa\xad\xff\x1f\x73\xff\xa6\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8" "\x83\x98\xfb\x37\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x5f\x1f" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x25\xcc\xa4\x26\xf9\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x35\xe9\xff\xeb\xff" "\x77\xa3\xff\xaf\xff\x5f\xe6\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff" "\x63\xee\xbf\x21\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x1b" "\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x1f\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\xbf\x35\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f" "\xff\xbf\xc4\xfd\xff\x21\xfd\xff\x4c\xff\xbf\xef\xe9\xff\xeb\xff\x77" "\xa3\xff\xaf\xff\x5f\xe6\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff\x63" "\xee\xff\x40\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x1f\x0c" "\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x29\xcc\x44\xfe\x07\x00" "\x00\x80\xca\x88\xb9\x7f\x3c\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff" "\xbf\xc4\xfd\x7f\x9f\xff\xdf\xb2\x7e\xfd\xff\xfe\xa4\xff\xaf\xff\xdf" "\x8d\xfe\xbf\xfe\x7f\x99\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x8f" "\xb9\xff\xe6\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xb7\x85" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x4f\x84\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\x4f\x86\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xaf\x26\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff" "\xcb\xbc\x7e\xfd\x7f\xfd\x7f\x7a\xeb\xb7\xfe\x7f\xcc\xfd\x53\x61\x26" "\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x6f\x0f\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\xdf\x11\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\xbf\x33\xcc\xa4\x26\xf9\xbf\x24\xfd\xff\x6d\xa9\x00\xa5\xff\xaf\xff" "\xdf\xef\xfd\xff\x79\xfd\xff\x48\xff\x5f\xff\x3f\xd3\xff\xd7\xff\xef" "\x41\xff\x5f\xff\xbf\xcc\xeb\xd7\xff\xd7\xff\xa7\xd5\x60\x87\xd3\xfa" "\xad\xff\x1f\x73\xff\xae\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98" "\xfb\x77\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x12\x66\x32" "\x9d\xfe\x2f\xc6\x00\x00\x00\x40\xc9\xc5\xdc\x7f\x6b\x98\x49\x4d\xfe" "\xfd\xbf\x24\xfd\x7f\x9f\xff\xaf\xff\x5f\x9e\xfe\xbf\xcf\xff\x4f\xf4" "\xff\xf5\xff\x33\xfd\x7f\xfd\xff\x1e\xf4\xff\xf5\xff\xcb\xbc\x7e\xfd" "\x7f\xfd\x7f\x7a\xeb\xb7\xfe\x7f\xcc\xfd\x7b\xc2\x4c\x6a\x92\xff\x01" "\x00\x00\xa0\x0e\x62\xee\xff\x50\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x6d\x61\x26\xf2\x3f\x00\x00\x00\x94\x4a\xa7\xcf\x21\x8c\x62" "\xee\xff\x70\x98\x49\x4d\xf2\xbf\xfe\x7f\xd5\xfb\xff\x0b\x6b\xf5\xff" "\xf5\xff\xf5\xff\xbb\xaf\x5f\xff\x7f\x75\xe9\xff\xeb\xff\x77\xa3\xff" "\xaf\xff\x5f\xe6\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff\x63\xee\xdf" "\x1b\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x47\xc2\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\x9f\x0e\x33\xa9\x49\xfe\xd7\xff\xaf\x7a\xff\xdf\xe7\xff" "\xeb\xff\xeb\xff\xf7\x5a\xbf\xfe\xff\xea\xd2\xff\xd7\xff\xef\x46\xff" "\xbf\x9c\xfd\xff\xf0\x63\x8b\xfe\x7f\x1f\xf5\xff\xf3\x63\x48\xff\x9f" "\x7e\xd4\x6f\xfd\xff\x98\xfb\xef\x08\x33\xa9\x49\xfe\x07\x00\x00\x80" "\x3a\x88\xb9\xff\xa3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x1f" "\x0b\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x78\x98\x49\x4d\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x6a\xd2\xff\x5f" "\xb5\xfe\x7f\xe3\xa5\x50\xff\xbf\xa0\xff\x7f\x7e\x2e\x75\x7f\xbe\xec" "\xeb\xef\xa7\xfe\xbf\xcf\xff\xa7\x5f\xf5\x5b\xff\x3f\xe6\xfe\x3b\xc3" "\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xff\x44\x98\x89\xfc\x0f" "\x00\x00\x00\x95\x11\x73\xff\xaf\x87\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\xdf\x15\x66\x52\x93\xfc\xaf\xff\xaf\xff\xbf\x4a\xfd\xff\xb8" "\x5b\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7d\xfe\xff\xb2\xf4\xff" "\xf5\xff\xcb\xbc\x7e\xfd\x7f\xfd\x7f\x7a\xeb\xb7\xfe\x7f\xcc\xfd\xbf" "\x11\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xdd\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x9f\x0c\x33\x91\xff\x01\x00\x00\xa0" "\x64\xd6\x2c\x7b\x4e\xcc\xfd\xbf\x19\x66\x52\x93\xfc\x5f\xbe\xfe\xff" "\x58\x29\xfb\xff\x83\xe9\xfa\x6b\xd3\xff\xf7\xf9\xff\xfa\xff\xfa\xff" "\xfa\xff\x0d\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff" "\xfa\xff\xf4\xd6\x6f\xfd\xff\x98\xfb\x7f\x2b\xcc\xa4\x26\xf9\x1f\x00" "\x00\x00\xea\x20\xe6\xfe\x4f\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\xff\x76\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x3d\x61\x26" "\x35\xc9\xff\x17\xbb\xff\xdf\x7e\xf9\x6e\x7c\xfe\xbf\xfe\x7f\xa6\xff" "\xaf\xff\x7f\xbe\xfd\xff\x85\xc5\x1b\xd2\xff\xef\x6f\xfa\xff\xfa\xff" "\xdd\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd\xff" "\x98\xfb\x7f\x27\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x7b" "\xc3\x4c\xe4\x7f\x00\x00\x00\xe8\x53\x0f\x9e\xf3\x25\x62\xee\xff\x74" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x67\xc2\x4c\x6a\x92\xff" "\xcb\xf7\xf9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x3e\xff\xbf\x4c\xf4" "\xff\xf5\xff\xbb\xd1\xff\xd7\xff\x2f\xf3\xfa\xf5\xff\xf5\xff\xe9\xad" "\xdf\xfa\xff\x31\xf7\xdf\x17\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10" "\x73\xff\x67\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x37\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xf7\xc2\x4c\x6a\x92\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x93\xfe\xff\xd2\xfe" "\x7f\xfe\x1a\xa6\xff\x5f\xd0\xff\xd7\xff\x2f\xf3\xfa\xf5\xff\xf5\xff" "\xe9\xad\xdf\xfa\xff\x31\xf7\x7f\x2e\xcc\xa4\x26\xf9\x1f\x00\x00\x00" "\xea\x20\xe6\xfe\xdf\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff" "\x83\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xfb\xc3\x4c\x6a\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x93\xfe\xbf" "\xcf\xff\xef\x46\xff\x5f\xff\xbf\xcc\xeb\xd7\xff\xd7\xff\xa7\xb7\x7e" "\xeb\xff\xc7\xdc\xff\xf9\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98" "\xfb\xff\x30\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x5f\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x03\x61\x26\x35\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xab\x49\xff\x5f\xff\xbf\x1b" "\xfd\x7f\xfd\xff\x32\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff\x1f\x73" "\xff\xfe\x30\x93\xe9\xd6\x9b\x01\x00\x00\x00\xca\x2b\xe6\xfe\x2f\x84" "\x99\xd4\xe4\xdf\xff\x01\x00\x00\xa0\x0e\x62\xee\x3f\x10\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\x7f\x30\xcc\xa4\x26\xf9\x5f\xff\x5f\xff" "\xbf\x3c\xfd\xff\x01\xfd\xff\x40\xff\x5f\xff\xbf\x4c\xf4\xff\xf5\xff" "\xbb\xd1\xff\xd7\xff\x2f\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff" "\x31\xf7\xcf\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x28" "\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x70\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\x83\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xe5" "\xe9\xff\xfb\xfc\xff\xe8\x22\xf5\xff\x5f\xfa\x5e\xdb\x3a\xf5\xff\xf5" "\xff\x57\x83\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x65\x5e\xbf\xfe\xbf" "\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe\x23\x61\x26\x35\xc9\xff\x00\x00" "\x00\x50\x07\x31\xf7\x7f\x31\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\x4b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x47\xc3\x4c\x6a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\x6b\xdb\xff\x5f\xd9\xe7\xff\xaf\x5b" "\xbc\x5d\xfd\x7f\xfd\xff\xf3\xa1\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\x7f" "\x99\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x8f\xb9\xff\x58\x98\x49" "\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xc7\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\x4f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\x9f\x0c\x33\xa9\x49\xfe\xd7\xff\x3f\xb7\xfe\xff\xc0\x32\xdd\x40\xfd" "\xff\xce\xeb\xaf\x77\xff\x3f\x5f\x65\x05\xfa\xff\x4d\xf4\xff\xf5\xff" "\xcf\x87\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x65\x5e\xbf\xfe\xbf\xfe" "\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe\x3f\x0a\x33\xa9\x49\xfe\x07\x00\x00" "\x80\x3a\x88\xb9\xff\x54\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\x6c\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x5c\x98\x49\x4d\xf2" "\xbf\xfe\xbf\xcf\xff\xd7\xff\xf7\xf9\xff\xfa\xff\xfa\xff\xab\x49\xff" "\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x32\xaf\x5f\xff\x5f\xff\x9f\xde\xfa" "\xad\xff\x1f\x73\xff\xe9\x30\xff\x9f\xbd\xfb\x5c\xd6\xac\xaa\xf6\x38" "\xfc\x9e\x86\x86\xee\x3a\xa5\xd7\xc0\x2d\x78\x05\x5e\x82\xd7\x60\x95" "\xd7\x60\x0e\x60\xc6\xac\x98\x73\xc2\x9c\x30\x2b\x8a\x98\x73\xce\x39" "\x67\x51\xcc\xb1\x4a\x8b\xdd\x63\x0c\xec\xb6\xf7\x5a\x1d\xf6\xdb\x7b" "\xae\x39\x9e\xe7\x03\xe3\x9c\x8d\x25\x93\xa2\xf9\xf0\xaf\xf6\x57\xab" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xfb\xc7\x2d\xf6\x3f\x00\x00" "\x00\x4c\x23\x77\xff\x03\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff" "\x81\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff" "\x3e\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67" "\xdd\x68\xfd\x7f\xee\xfe\x07\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90" "\xbb\xff\xc1\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x90\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x68\xdc\xd2\x64\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4f\xfa\x7f\xfd\xff\x12\xfd\xbf" "\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\x61\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x78\xdc\x62\xff\x03\x00" "\x00\xc0\x34\x72\xf7\x3f\x22\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\xaf\x8f\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xbf\xc1\xfe\xff\x6a\xfd" "\xbf\xfe\x7f\x3b\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf\xff" "\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x0d\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\x7f\x64\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f" "\x2a\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x1f\x1d\xb7\x34\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\x83\xfd\xbf\xef\xff\xeb\xff\x37\x44\xff\xaf" "\xff\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff" "\x73\xf7\x3f\x26\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x8f\x8d" "\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xc7\xc5\x2d\x2b\xfb\xff\xb6" "\xd3\x7b\x7d\x16\x00\x00\x00\x70\x84\x72\xf7\x3f\x3e\x6e\x69\xf2\xfb" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef\x93\xfe\x5f\xff" "\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xf5\xff\xfa\x7f\xd6\xed\xbd\xff\xbf" "\xcf\x8d\x07\xf7\x42\xfb\xff\xdc\xfd\x37\xc6\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\x09\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff" "\xc4\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x52\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\x77\xf7\xff\xff\xfe\x3f\xfd\xbf\xfe\x5f\xff\x7f\xf7" "\xcf\xf5\xff\x47\x43\xff\xaf\xff\x3f\xc4\xc1\xbf\x3a\xfa\x7f\xfd\xff" "\x96\xdf\x3f\x50\xff\x7f\x4d\xfc\x48\xff\xcf\x70\xf6\xde\xff\xaf\xf4" "\xfe\xe7\xfe\xff\xb9\xfb\x9f\x1c\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\xa7\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x53\xe3\x16" "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x69\x71\x4b\x93\xfd\xaf\xff\xd7" "\xff\xfb\xfe\xbf\xfe\x5f\xff\xaf\xff\xdf\x27\xfd\xff\xb0\xfd\xff\xb9" "\xff\xea\x9d\xcd\xf7\xff\x2f\x88\xfe\x5f\xff\x7f\x58\xff\x7f\xef\x0b" "\x78\xbf\xef\xff\xd3\xc1\x68\xfd\x7f\xee\xfe\xa7\xc7\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x19\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8" "\xdd\x7f\x3a\x6e\xb1\xff\x01\x00\x00\x60\x1a\x37\x1d\xfc\xf1\xd4\xee" "\x99\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x67\xf7\xff\x27" "\x5a\xf6\xff\x77\xfd\x4c\xff\xbf\x1f\xfa\xff\x61\xfb\xff\x65\xfa\xff" "\x0b\xa2\xff\xd7\xff\x0f\xf2\xfd\x7f\xfd\x3f\xc3\x1a\xad\xff\xcf\xdd" "\xff\xac\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x3b\x6e\xb1" "\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x13\xb7\xd8\xff\x00\x00\x00\x30" "\x8d\xdc\xfd\xcf\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xbf" "\xac\xef\xff\x5f\x35\x47\xff\xef\xfb\xff\xfb\xa3\xff\xd7\xff\x2f\xd1" "\xff\xeb\xff\xf7\xfe\xfe\x6b\xf7\xf7\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5" "\xff\xb9\xfb\x9f\x17\xb7\x34\xd9\xff\x00\x00\x00\x30\xbd\x13\xbb\xda" "\xfd\xcf\x8f\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x17\xc4\x2d\xf6" "\x3f\x00\x00\x00\x4c\x23\x77\xff\x0b\xe3\x96\x26\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x2f\xab\xff\x9f\xe4\xfb\xff\xfa\xff\xfd\xd1\xff\xeb" "\xff\x97\x5c\x68\xff\xbf\xd3\xff\xd7\xdf\x8b\xfe\x7f\x9c\xf7\xeb\xff" "\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xa2\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\x0e\x72\xf7\xbf\x38\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f" "\x12\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x8d\x5b\x9a\xec\x7f" "\xfd\xbf\xfe\x7f\xb0\xfe\xff\xe4\x4e\xff\x7f\xd6\x7f\x8f\xfe\x5f\xff" "\xaf\xff\x5f\xa6\xff\xef\xd1\xff\xfb\xfe\xff\xdd\x7f\x2f\xfa\xff\x71" "\xde\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\xcb\xe2\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\x7f\x45\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x32\x6e" "\x39\x77\xff\x9f\xb8\x92\xaf\xba\x72\xf4\xff\xfa\xff\xc1\xfa\x7f\xdf" "\xff\xd7\xff\xeb\xff\xf5\xff\x17\x45\xff\xaf\xff\xdf\x4d\xd8\xff\x9f" "\x3a\xe4\xaf\xa7\xff\x1f\xeb\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73" "\xf7\xdf\x1c\xb7\xf8\xfd\x7f\x00\x00\x00\x98\x46\xee\xfe\x57\xc5\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xab\xe3\x16\xfb\x1f\x00\x00\x00" "\xa6\x91\xbb\xff\x35\x71\x4b\x93\xfd\x7f\x58\xff\x7f\xe7\xff\x9f\xf9" "\xf3\xfa\xff\x0b\xa3\xff\x3f\xff\xfb\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x5f\xa2\xff\xf7\xfd\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd" "\x68\xfd\x7f\xee\xfe\xd7\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\x75\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xfa\xb8\xc5\xfe" "\x07\x00\x00\x80\x69\xe4\xee\x7f\x43\xdc\xd2\x64\xff\x1f\xfd\xf7\xff" "\xaf\xd3\xff\xeb\xff\xf5\xff\x71\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xbf\x4c\xff\xaf\xff\xdf\xf2\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7" "\xee\x7f\x63\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x14\xb7" "\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00" "\x98\x46\xee\xfe\xb7\xc4\x2d\x4d\xf6\xff\xd1\xf7\xff\xbe\xff\xaf\xff" "\xbf\xc8\xfe\xff\x84\xfe\x3f\xe9\xff\xe3\x9f\xab\xfe\x5f\xff\x7f\x11" "\xf4\xff\xfa\xff\x9d\xfe\xff\x92\x1d\x77\x3f\xbf\xf5\xf7\xeb\xff\xf5" "\xff\xac\x1b\xad\xff\xcf\xdd\x7f\xcb\xc1\xd4\xeb\xb7\xff\x01\x00\x00" "\xa0\x83\x5b\x0e\xfe\x78\x6a\xf7\xd6\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\x7f\x5b\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x3d\x6e" "\x69\xb2\xff\xf5\xff\xfa\xff\x63\xef\xff\x7d\xff\xbf\xe8\xff\xe3\x9f" "\xab\xfe\x5f\xff\x7f\x11\xf4\xff\xfa\xff\x9d\xfe\xff\x92\x1d\x77\x3f" "\xbf\xf5\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\x8e\xb8\xa5" "\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x33\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb1\xfb\xcf\xfc\x8f\xdf\xed\x7f\x00\x00\x00\x98\xd2\xbb\x0e" "\xfe\x78\x6a\xf7\xee\xb8\xa5\xc9\xfe\x6f\xdc\xff\x5f\x77\xb9\xfd\xff" "\xe9\xff\xfa\xbf\xbb\xf4\xff\x3b\xfd\xff\x71\xf4\xff\xb7\x9c\xfb\x6b" "\x4f\xff\xaf\xff\xdf\x12\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7" "\x8f\xd3\xff\xc7\x0f\xae\xd7\xff\x33\x9e\xd1\xfa\xff\xdc\xfd\xef\x89" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x7b\xe3\x16\xfb\x1f\x00" "\x00\x00\xa6\x91\xbb\xff\xd6\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee" "\x7f\x5f\xdc\xd2\x64\xff\x37\xee\xff\x27\xf9\xfe\xff\x7d\xef\x88\x17" "\xf8\xfe\xff\xbc\xfd\xbf\xef\xff\xc7\xd5\xff\xeb\xff\xcf\x47\xff\xaf" "\xff\xdf\xe9\xff\x2f\xd9\x71\xf7\xf3\x5b\x7f\xff\x38\xfd\xbf\xef\xff" "\x33\xae\xd1\xfa\xff\xdc\xfd\xef\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\x6d\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x81\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xbf\x3d\x6e\x69\xb2\xff\xf5\xff" "\x5b\xef\xff\xaf\xec\xf7\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x62\xe9" "\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd\x68" "\xfd\x7f\xee\xfe\x0f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\x43\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xe1\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\xff\x48\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfb" "\xea\xff\xef\xfa\x8b\xe8\xff\x9b\xf4\xff\x37\xe8\xff\x77\xfa\xff\x43" "\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd" "\x68\xfd\x7f\xee\xfe\x8f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\x63\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xf1\xb8\xc5\xfe" "\x07\x00\x00\x80\x69\xe4\xee\xff\x44\xdc\x70\xaf\x7b\x1c\xdf\x93\x8e" "\xd6\xc9\x43\x7e\x1e\xbd\xb9\xfe\x5f\xff\xef\xfb\xff\xfa\x7f\xdf\xff" "\xd7\xff\xef\x93\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xf5\xff" "\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x64\xdc\xe2\xf7\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\x3f\x15\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x9f" "\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xcf\xc4\x2d\x4d\xf6\xbf" "\xfe\x5f\xff\xaf\xff\xdf\x6c\xff\x7f\x5a\xff\x7f\xf6\xfb\xf5\xff\x63" "\xd2\xff\xeb\xff\x97\xe8\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba" "\xd1\xfa\xff\xdc\xfd\x9f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\xe7\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xf3\x71\x8b\xfd" "\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x85\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff" "\xf5\xff\x9b\xed\xff\x7d\xff\xff\x9c\xf7\xeb\xff\xc7\xa4\xff\xd7\xff" "\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9" "\xfb\xbf\x18\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x2f\xc5\x2d" "\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x97\xe3\x16\xfb\x1f\x00\x00\x00" "\xa6\x91\xbb\xff\x2b\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\x3e\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f" "\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\xaf\xc6\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x6b\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd" "\xff\xf5\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x46\xdc\xd2\x64" "\xff\xcf\xdc\xff\x2f\xfd\xc7\xf4\xff\x67\xe8\xff\xf5\xff\x3b\xfd\xbf" "\xfe\x7f\xcf\xf4\xff\xfa\xff\x25\xfa\xff\x4b\xea\xff\xaf\xd6\xff\x8f" "\xf1\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xbf\x19\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\x6f\xc5\x2d\xf6\x3f\x00\x00\x00\x4c" "\x23\x77\xff\xb7\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x3b\x71" "\x4b\x93\xfd\x3f\x73\xff\xbf\x44\xff\x7f\x86\xfe\x5f\xff\xbf\xd3\xff" "\xeb\xff\xf7\x4c\xff\xaf\xff\x5f\xa2\xff\xf7\xfd\xff\x2d\xbf\x5f\xff" "\xaf\xff\x67\xdd\x31\xf5\xff\x27\x77\x87\xf4\xff\xb9\xfb\xbf\x1b\xb7" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xef\xc5\x2d\xf6\x3f\x00\x00" "\x00\x4c\x23\x77\xff\xf7\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff" "\x07\x71\xcb\x3c\xfb\xff\x7e\xb7\x2e\xfc\x49\xfd\xff\x91\xf7\xff\x07" "\xbf\x88\xf4\xff\xfa\xff\x9d\xfe\x5f\xff\xaf\xff\x3f\xa0\xff\xd7\xff" "\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\x7d\xff\x3f" "\x77\xff\x0f\xe3\x96\x79\xf6\x3f\x00\x00\x00\xb4\x97\xbb\xff\x47\x71" "\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xe3\xb8\xc5\xfe\x07\x00\x00" "\x80\x69\xe4\xee\xff\x49\xdc\xd2\x64\xff\xeb\xff\x7d\xff\x5f\xff\xdf" "\xaa\xff\xbf\x6a\xa7\xff\xd7\xff\x5f\x61\xfa\x7f\xfd\xff\x12\xfd\xbf" "\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\xa7\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x59\xdc\x62\xff\x03\x00" "\x00\xc0\x34\x72\xf7\xff\x3c\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\x7f\x11\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\xbf\x55\xff\xef\xfb\xff" "\xfa\xff\x2b\x4e\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd\xd9\xff" "\xe7\xaf\x3b\xfd\xbf\xfe\x9f\xff\x35\x5a\xff\x9f\xbb\xff\x97\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x55\xdc\x62\xff\x03\x00\x00" "\xc0\x34\x72\xf7\xff\x3a\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x7f" "\x13\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef" "\x93\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\x7d\xff\x5f\xff\xcf" "\xba\xd1\xfa\xff\xdc\xfd\x77\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90" "\xbb\xff\xb7\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xbb\xb8\xc5" "\xfe\x07\x00\x00\x80\x69\xe4\xee\xbf\x33\x6e\x69\xb2\xff\xf5\xff\xfa" "\xff\x29\xfb\xff\x6b\xf5\xff\xfa\x7f\xfd\xff\x28\xf4\xff\xfa\xff\x25" "\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff" "\xef\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x87\xb8\xc5\xfe" "\x07\x00\x00\x80\x69\xe4\xee\xff\x63\xdc\x62\xff\x03\x00\x00\xc0\x34" "\x72\xf7\xff\x29\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x8b\xef\xff\x4f\xd6" "\xdf\xf7\xb0\xfd\xbf\xef\xff\xeb\xff\xf5\xff\xc3\x98\xb7\xff\xbf\x46" "\xff\xaf\xff\xbf\xec\xfe\xff\xa6\x9b\xcf\xfc\x58\xff\xbf\xcd\xf7\xeb" "\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xe7\xb8\xa5\xc9\xfe\x07\x00" "\x00\x80\x0e\x72\xf7\xff\x25\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\xff\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x7f\x8b\x5b\x9a\xec" "\x7f\xfd\xff\xa8\xfd\xff\xed\x03\xf7\xff\x1b\xf8\xfe\xbf\xfe\x5f\xff" "\xaf\xff\x1f\xc6\xbc\xfd\xbf\xef\xff\x8f\xd1\xff\xdf\xf3\xe0\x6e\xb5" "\xff\xf7\xfd\xff\x6d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe" "\xbf\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x1f\x71\x8b\xfd" "\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xcf\xb8\xc5\xfe\x07\x00\x00\x80\x69" "\xe4\xee\xff\x57\xdc\xd2\x64\xff\xeb\xff\x47\xed\xff\x47\xfe\xfe\xbf" "\xfe\x5f\xff\x7f\x36\xfd\xff\x19\xfa\xff\xf3\xd3\xff\xeb\xff\x97\x74" "\xff\xfe\xbf\xfe\x7f\xdb\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb" "\xff\x3f\x01\x00\x00\xff\xff\xe5\x7e\x2c\x4c", 24457); syz_mount_image( /*fs=*/0x20000400, /*dir=*/0x200000c0, /*flags=MS_POSIXACL|MS_REC|MS_SILENT|MS_NOSUID|MS_NODIRATIME*/ 0x1c802, /*opts=*/0x20002740, /*chdir=*/1, /*size=*/0x5f89, /*img=*/0x20005b80); break; case 1: memcpy((void*)0x20000200, "./bus\000", 6); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000200ul, /*flags=O_SYNC|O_NONBLOCK|O_NOATIME|O_CREAT|O_RDWR*/ 0x141842, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x200001c0, "cpuacct.usage_percpu\000", 21); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200001c0ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[1] = res; break; case 3: syscall(__NR_ftruncate, /*fd=*/r[1], /*len=*/0x2007ff3ul); break; case 4: syscall(__NR_copy_file_range, /*fd_in=*/r[1], /*off_in=*/0ul, /*fd_out=*/r[0], /*off_out=*/0ul, /*len=*/0xffffffffa003e459ul, /*flags=*/0x700000000000000ul); break; case 5: memcpy((void*)0x20000040, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=O_SYNC|O_NOATIME|O_CREAT|FASYNC|O_RDWR*/ 0x143042, /*mode=*/0); if (res != -1) r[2] = res; break; case 6: *(uint64_t*)0x200006c0 = 0x200000c0; memset((void*)0x200000c0, 117, 1); *(uint64_t*)0x200006c8 = 1; syscall(__NR_pwritev2, /*fd=*/r[2], /*vec=*/0x200006c0ul, /*vlen=*/1ul, /*off_low=*/0x100000, /*off_high=*/0, /*flags=*/0ul); break; case 7: memcpy((void*)0x20000100, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000100ul, /*flags=O_SYNC|O_CREAT|FASYNC|O_RDWR*/ 0x103042, /*mode=*/0); if (res != -1) r[3] = res; break; case 8: memcpy((void*)0x20000040, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[4] = res; break; case 9: syscall(__NR_sendfile, /*fdout=*/r[3], /*fdin=*/r[4], /*off=*/0ul, /*count=*/0x100001ul); 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; loop(); return 0; }