// https://syzkaller.appspot.com/bug?id=2308bc7710d37996bbb5207b19bd70770123219e // 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_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 287 #endif #ifndef __NR_sendfile #define __NR_sendfile 71 #endif #ifndef __NR_write #define __NR_write 64 #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 < 9; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[4] = {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, "./file0\000", 8); memcpy( (void*)0x20002740, "\x71\x75\x6f\x74\x61\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x64\x69\x73" "\x63\x61\x72\x64\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6b\x6f" "\x69\x38\x2d\x72\x75\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x00\xf4\x19" "\x3e\xb3\xba\x2a\x0d\x5f\xd0\xcd\x73\x74\x28\x8f\xf8\x9e\xc5\x13\xa5" "\x3e\x00\x73\x45\xde\xcb\x72\x09\x00\xf8\x31\x2d\xa2\x46\x3e\xb0\xed" "\xf5\x2f\xad\x1a\x00\xeb\xd4\x1c\x14\xb3\xce\x75\xd0\xcf\xfe\xfd\x37" "\x96\x24\xb1\x6f\x72\x60\xc8\x35\x71\x3b\x26\x33\x52\xe0\x3b\x5c\xb8" "\xfa\x0c\x04\x2b\xd1\x22\x5e\xd4\xde\xd2\xb6\x2e\x12\xfe\xa4\xd7\xe6" "\x1b\x73\x8e\x40\x78\x1e\x58\xd5\xff\xf1\x12\x36\x4a\xc1\x40\xf4\x19" "\xe5\xda\xfe\xcd\x28\x3b\x3f\xab\x6b\x14\x2d\xdb\xc8\x93\xb3\x5a\x81" "\xfe\x92\x65\x59\x1e\xf3\x5f\xa2\x92\x8e\x09\x5f\xee\x4c\x10\xb2\x2e" "\x42\x12\x37\x8d\xe5\x9b\xca\x03\x07\xcc\x64\x4b\x96\x20\xb6\x3f\x00" "\x00\x00\x7b\xbb\xd4\x22\xd8\x78\x56\xb7\x13\x48\xb8\xf4\x53\x98\xb9" "\x66\x0b\x6b\x3e\x8e\xe8\xa8\xc3\x2f\x32\x34\xcb\x46\xe2\xcd\x82\x7e" "\xc2\x5c\x1c\xa4\xd0\x46\xbc\x00\x4f\x8d\xf7\xb1\xee\x69\x0a\x5e\x50" "\x51\x07\x00\xd8\x0c\x7f\xa6\x5f\xa7\x24\xd0\xe1\xb4\x36\x9f\x1b\x64" "\xfe\x24\x9a\x03\x12\x01\x00\x00\x00\x4a\xc9\x83\xde\x92\x5f\x52\xd7" "\x35\xb0\x3f\xea\x94\x1b\x1e\x94\x8a\xd8\xd1\x9c\xfd\xa5\xb7\x99\x32" "\x5f\xd6\x9d\x14\xfc\xf6\xcd\xde\x77\x00\xa6\x31\x50\xeb\x36\x99\xe5" "\x31\x4e\x08\x27\x75\x0e\x24\x41\x50\xec\x19\xf3\xf3\xf1\xd8\xbe\x54" "\x2c\x08\x4b\x5e\x40\xbf\xaa\x8a\xd2\x06\xd2\xa3\x3b\x0d\xdb\xd7\xf8" "\xe0\x7d\xc7\xd1\x71\x74\xa4\x54\x9f\xfa\xf5\x97\x69\x49\xcb\x6d\x65" "\x8c\x42\xec\x7c\xd9\xfe\x8a\xd8\x28\x52\xce\xfb\x04\x64\x6e\xdb\x3a" "\x41\xeb\x51\x4e\xb6\xa7\x72\xb3\xee\x9f\x21\xe2\x58\x22\xb5\x4e\xc3" "\x3e\x59\x2d\x5c\x04\x09\x46\x72\x11\x01\xd5\x3a\xff\x21\xf9\x03\x51" "\xc9\x5a\xa0\xf7\x3f\x18\x53\xd6\xaf\xcb\xf9\x44\x8b\x22\x0e\x98\x84" "\x66\x06\x6f\xa5\xc0\x9e\x61\x98\xfc\x45\x20\xd1\x99\xb9\x3b\xde\xde" "\xe8\x7c\x40\x43\x81\x5a\xa0\x56\x68\xa0\x6f\x8d\xa9\x66\x80\xcc\xc1" "\xa1\x39\xad\xe9\x0f\x5c\x79\xaf\x46\x20\x8f\x97\x62\xf5\x4e\x7c\x29" "\x08\x8d\x9d\xe6\x9b\xd2\xd5\x1c\x6b\x9c\x42\x20\x9d\xdc\x38\x80\x05" "\x13\x03\xb8\x55\x85\x34\x07\xd9\x59\xa5\x77\x7d\xce\x25\x20\x1c\x5e" "\xa1\xfa\xa0\x84\xc3\x6e\x3e\x34\x99\x15\xeb\xec\x53\x43\x5e\xb2\x91" "\x0c\x59\x39\x4e\xe8\x4b\xa3\xba\xf9\xc4\x40\xae\x58\x33\xc2\x3f\x46" "\xb0\xea\xac\x54\x3c\xe0\xc8\x0b\xa0\x60\x32\x13\xe5\x3e\xa5\x97\x55" "\x07\x0b\x18\xbc\x10\xb9\x22\x4a\xa0\x82\xd9\x67\x20\x61\x15\xb4\x92" "\xd8\x25\x75\x1f\xcc\x00\x00\x00\x00\x00\x00\x00\xe6\x3d\x51\xc5\xbf" "\xfa\x4f\x71\x2c\x2d\x7f\xaf\xb9\xcf\x50\x6c\x06\xe1\xdd\xad\x4f\xc1" "\x90\x38\x40\x77\x86\xfe\xdb\x9a\xfd\xfb\x11\xa5\xf1\x82\x67\x6d\xd8" "\x4c\x91\x9f\x71\xd5\xee\xe2\xf3\xb7\x40\xb6\x8e\xe7\xf6\x51\x8e\xb9" "\xd8\xba\xa2\x6f\x1c\x38\x71\xf8\x63\xb1\x34\xee\x94\x2e\xb3\xaf\x92" "\xd1\x9e\x70\xd8\x26\x88\x39\xcd\x7b\x46\x37\xf0\x62\x72\x99\xf9\x9b" "\x18\x73\xca\x16\x5e\x41\x0f\x8b\xd4\x21\xe1\xa4\x85\x9f\xd9\xbd\x6b" "\xb3\x4d\x25\xc0\x7e\x1a\x52\xb9\x66\x8a\x53\x0b\x10\xb8\x58\x5d\x79" "\x71\x24\xa6\x97\x5a\x71\xae\xdb\xe5\x57\xa1\x7b\x06\xbb\xfe\x54\x7a" "\xa5\x53\xc3\xd0\x8b\x89\x21\xa4\xb0\xd9\x38\xc0\x36\x87\xbd\x48\xa9" "\xa3\x87\xb4\xc0\x66\xc0\x56\xf4\x57\xfb\xa5\x73\x87\x75\xb9\x00\xa1" "\xe8\x2a\x89\xaa\xe1\x49\x4b\x05\xc4\xbb\x0f\xc8\xed\x1a\x93\x68\x8b" "\xf8\x50\xa4\xf7\xb0\x94\x2e\xda\x1f\x16\xec\xf0\x43\xef\xa6\xb8\xc1" "\xf9\xe0\xfb\xa3\x1f\x4a\x58\xed\x00\x31\x18\x0f\xb1\xb8\xa0\x0e\x4a" "\x86\x82\x6b\x03\x00\x00\x00\x2d\xd1\x27\x2a\x3d\x16\x09\xbe\xbb\x74" "\x9d\xae\xf2\x02\xe0\x41\x2a\x73\xd5\x45\xb8\x6c\xa7\xa6\xbf\x56\x9e" "\xd3\x5d\x00\x00\xca\x23\xb0\xde\x74\x2f\x60\x08\xfd\xf2\x09\x28\x37" "\x0d\x88\xf8\xc0\x4b\xc3\xb9\x7b\x9a\x9e\x00\x62\xe8\xfc\x5f\xd2\x33" "\x7d\x85\xa6\x6b\xd2\x07\x30\xf3\x15\x3d\xb2\x45\x9f\xb3\x4c\x13\x4c" "\x06\xc1\x93\x64\xe9\x64\x5e\x83\x04\x0d\xd1\x6e\xe0\x8f\x18\xf0\xba" "\x69\xac\x9c\xa3\xe2\x5e\x15\x44\x2b\x07\x00\x00\x00\xd3\x0d\x38\xa6" "\x46\x13\xb5\x35\xfa\x80\x8a\x9b\x3b\xae\x00\xbc\x37\x12\x71\xd4\x5d" "\xb2\x00\xa5\xcb\xf4\x33\xe2\xf6\xdd\x03\xb7\xc7\xfc\xc0\x40\x78\x1e" "\x51\x51\xc9\xba\xdb\x78\x7e\x7e\x1e\x2f\x39\xd6\x09\x98\x91\x9a\xa8" "\xdb\xd1\x56\xf3\x1a\x5b\x7f\xa5\xf9\xe5\xec\x01\xe8\xc7\x99\xed\xc3" "\x22\x70\x3c\x7f\xc4\xa8\x1a\xb9\xbc\x02\xdd\x96\x71\x4e\xe9\xd7\xe7" "\x5d\x28\xd0\x40\xff\x35\x66\x40\x4f\xd6\xdb\x54\x7a\x4b\x55\x31\x97" "\xc1\xf3\x16\xd2\x0e\xa5\x4f\x94\x59\xcd\x81\x35\x1a\x51\x0d\x10\x1e" "\x90\xea\xbe\x6d\xc6\xc6\xac\x3f\xfa\x18\x9c\x07\x3a\x5f\xb3\xfc\x38" "\x2d\xf6\x20\xbf\x5a\xf9\xe6\x38\x81\x9c\x77\xa0\x51\xe6\x87\x58\x66" "\xa8\x49\xf6\xf5\x78\xc0\x68\xc0\xe4\xc7\xcf\xbc\x15\x03\x39\x97\xef" "\xa8\x53\xc9\x62\x97\xb3\x20\x1d\xd3\x0e\xa4\x0d\xc9\x4d\x01\x0a\x0c" "\x33\xda\x9f\x63\xa1\x0b\x8f\x81\x3d\xc7\x89\xb8\x0b\xe3\xbb\x3f\x00" "\xee\x58\xb3\x0d\x5c\x03\xa6\xdd\xbf\x41\x8a\xc1\xb3\xd4\xa1\x38\x39" "\xe4\xb2\x73\xc4\xf9\x14\xbe\xd1\x3f\x88\x06\x29\x54\x95\xd4\x16\x09" "\x47\x87\x98\x39\x6a\xee\xc0\x6e\x8d\x34\x2e\xfd\x8a\xc6\xb4\x22\xf6" "\xc2\x3a\x01\x1b\x14\x00\x00\x00\x00\x00\x00\x00\xbc\x2a\x02\x09\x4e" "\x19\xa1\xee\x8b\xb3\xc3\xc0\xc0\x88\xae\x8e\xfa\xf6\x8c\x85\x00\x1f" "\xaf\x7c\xf5\x42\x6f\xb7\xc5\xc3\x67\xed\x93\xeb\x25\xc4\x8a\x29\x35" "\x49\xd1\x5b\x91\xb5\x9f\x1b\x57\x4b\x3f\x61\x71\xf8\xe5\x6a\x40\x2e" "\xc5\x6b\xdf\x51\xd9\x03\x12\xb3\xca\x53\x98\xf4\x05\x00\x00\x00\x75" "\x04\xbe\x21\x45\x6e\xc9\x53\xbf\x06\xf1\x2f\xff\x20\xc3\x1e\x7c\x8b" "\x55\xfe\xe5\xc4\x9a\xa9\x39\x83\x0b\x09\x99\x5f\xf1\x49\x25\x81\x18" "\xf9\xaa\xe2\x92\x06\xf9\x73\x12\x88\xb5\x6b\x10\xde\x51\x52\x56\x65" "\xfd\xb4\xe2\x89\xb1\xc1\x77\xde\x97\xaf\x30\x85\xf8\x20\x45\xfb\xd0" "\x12\xf1\xdd\xe9\x4f\xfe\xcd\x90\xb7\xb6\x3d\x81\x97\xd9\xc2\x4a\x6f" "\xe5\x91\x5a\xc7\xd7\x24\x08\x47\xf6\xd0\xbf\x90\x99\xee\x11\x7c\x83" "\xe3\x63\xf2\xad\x36\xa4\xa9\xf4\xfa\xa5\x73\x4a\xfe\x97\x70\xc3\x8c" "\x56\x5c\xae\x87\xa4\x08\xd0\xac\xbb\x2d\xb7\xdb\x91\x74\xac\xab\x60" "\xa3\x44\x81\x4e\xe6\x43\xfa\x82\xba\x41\x70\x6d\x23\x60\x26\x9e\xd2" "\x76\xe1\x3d\xd8\x3a\xbb\xc2\x58\xf0\x7b\x0d\x58\xab\x0b\x65\x20\x0b" "\x18\xb7\xf9\xf8\x71\xbc\xb4\x3f\xec\x5a\x2e\x37\x89\xec\xd0\xc1\x06" "\x9d\x2d\xa8\x0b\x93\xc8\x6d\xff\x89\x33\xe7\x0c\x21\x08\x34\x60\x03" "\xdd\xf6\xb6\x03\x79\xee\xe6\x3b\x66\xe7\x34\x1c\xdd\x8f\x87\xed\x9f" "\x11\x89\x4c\x9a\xe0\x40\x97\x63\x21\xd8\x74\x05\xb4\x92\xf4\x19\xeb" "\xfa\x77\xeb\x36\x7c\xa6\xe3\x60\xb8\xf8\x45\x11\x02\xf5\x48\x93\xd7" "\xd1\x69\x5c\x24\xbc\xc1\x84\xb1\xe7\xd1\x99\x40\xa2\xb6\x93\x1a\xde" "\x86\x38\xdd\x2b\x85\xa8\x6d\xc5\x11\xdb\xb9\x7f\x50\x52\x0f\x91\xfb" "\xf7\x20\x1f\xc9\x62\x1d\x0a\xee\x97\x35\xd0\x7c\xa0\x24\x07\x6e\x85" "\x81\xdb\x33\x2b\x1c\x5f\x13\x5f\xe6\xb2\xe9\xd2\xc1\x8c\x9d\x5d\x5a" "\x52\x4d\x3d\x5b\x26\x57\xe4\xb2\x8f\x1a\x09\x69\x6b\xd5\xb0\x76\xa1" "\x47\x1c\x8b\x2a\xb2\xca\x3b\xa5\x78\x43\xaf\x1d\x03\x59\x0f\x4e\x89" "\x85\xe1\xc4\x63\xc7\x81\xbb\x03\xad\x7e\xc8\x16\xea\x70\xbb\xe0\x64" "\x11\xaa\xe0\x01\xe0\xca\x72\xee\x7e\x82\x8a\xd1\x4b\xb7\xa0\x92\xd8" "\x83\xad\x00\x05\x54\xbf\x7f\x00\x00\x00\x00\x00\x00\x75\xcc\x01\xf8" "\xa2\xe1\x80\x21\x92\xf0\x9e\x77\xbc\x48\x8b\x3b\xd3\xf0\x8a\x9c\xe8" "\x8b\xa2\xe2\xbc\xc2\x3c\xf5\xd7\x37\x2b\x33\x9c\xe1\xf5\x00\x3d\xb0" "\xad\x70\xfa\x6e\x93\xaa\x90\x8a\x2c\xed\x81\xf5\x51\x4e\x23\xe2\xf9" "\x4f\xf0\x3c\x1c\x02\xf5\xa9\x19\x5f\x47\x35\x56\x3e\xfd\x0a\x1f\xc7" "\xda\xfc\xfb\x3d\xae\x04\x3f\xe0\xc1\x72\xec\x3a\x12\x74\x7d\x7a\xbf" "\x43\x82\xbf\x74\x53\xc1\x3d\xf9\x94\x64\x10\x17\xa0\xf4\x61\xad\xd9" "\x56\xef\x8f\x83\x4b\x76\x2a\xf3\x04\x08\xaf\x6a\x61\xf3\x17\xfd\x3c" "\x7b\x08\x16\x23\x6a\x76\x86\x01\xb7\xc6\x60\x6b\xa5\x2f\xf1\x26\xeb" "\x13\xd3\x3c\x91\x5c\x5d\xa9\x9d\x11\x8d\xb4\x88\xda\x3f\x3d\x77\x83" "\xa6\x08\x28\x2a\x93\xfc\xbe\x09\x10\xf0\x38\x9c\x3e\xf9\x1d\xe7\xc8" "\x4e\x23\xda\xa6\x55\x4c\x42\xb2\xb3\xe9\xf7\x0a\x9f\x79\x0f\x29\x01" "\x1a\x0b\x51\x01\xb2\x3b\xfe\xba\x6e\x52\x87\x7e\xd8\xa1\x88\x95\x8e" "\x39\x37\x5d\xd2\x03\xd4\x34\xbe\xf4\xdc\x82\xcc\x8a\x21\xfc\x40\xc6" "\xe6\xe6\xa2\x47\x5f\x70\xbf\x15\x03\xbe\xb9\x55\x50\x36\xe6\x3b\xdc" "\x93\x7f\x8a\x4d\x61\xb2\x1d\x06\xa9\xd3\x23\x9d\x1d\xf6\xf2\xe9\xef" "\x16\xde\xe5\x90\xb1\x5a\xc0\x28\xc6\xd8\x73\xbb\x29\x65\x37\x4b\x73" "\x3d\x8e\x11\xba\x76\x3a\xb1\x57\xed\x91\xdd\x87\x1b\x09\x8c\x05\x43" "\xdc\xbb\xa4\xcf\x67\xdb\x8c\x83\xc8\x43\x69\xdc\x67\x73\x5f\xa4\xfa" "\xa0\xfd\xcf\x34\xb1\xc6\xa8\x62\xcc\xae\x9f\xe4\xfa\x28\x74\x65\x04" "\x64\x3b\x57\xf0\x26\x23\xa2\xef\x34\xea\x90\xf2\xe7\xf7\xdd\x77\x1f" "\x8f\x75\x21\x7c\x79\x9d\x97\x8a\x35\x33\xfc\xfa\xb6\xc6\xf5\x39\x1b" "\x62\x6d\x61\xb4\x00\xf0\x81\x72\xfc\x67\x5e\x2a\x06\x2d\x06\xc3\x1b" "\x85\x45\x28\x04\xf7\xb1\x25\xc2\x91\xf6\x0a\x02\xa5\xd6\x22\x71\xe9" "\x6f\xe7\x0d\x64\xba\xe3\x6e\x28\xb4\x2e\x19\x72\x59\x16\x9e\xbe\xe8" "\xf6\x43\x55\x54\x4f\xba\xd8\xb8\x3c\x1c\x8f\xad\x02\xcd\x1a\x2e\x56" "\xa6\xf6\xe8\x2e\xc7\x71\x9a\x48\xa1\xbe\xa8\x03\x54\x6b\x8a\xf7\xa8" "\x9f\xaf\x7c\xef\x94\xd8\xad\xa4\x5f\xc0\xa9\x8a\x79\xba\x90\xc9\x52" "\x62\xf0\x11\x07\x25\xc6\xbf\x7c\x81\x23\x75\x34\xdc\xd6\xa8\xa1\x13" "\xbd\x8a\xc4\x8b\x7d\xb5\x52\x6a\xb7\x62\xce\xc1\x03\x67\x47\x42\x47" "\x6c\xd6\xb9\x2b\x8c\x7a\xbc\xfb\x1f\x8e\x08\xf0\xa0\x5c\x1b\x20\x91" "\x87\x04\x9f\x32\x06\xbd\x54\x5e\x8c\x20\xf8\xdb\x6d\x8a\x7c\xdd\x0c" "\x9e\xcb\xb9\x01\x1b\x61\x1a\x01\x3c\xd5\x81\x52\x1d\xfc\xb0\x28\xd5" "\x9d\x5c\x69\xd2\x86\xfb\x93\xe4\xc4\x98\xb3\xaa\xff\x7e\x0c\xdc\xf1" "\xf4\x1f\xec\x65\xeb\xdb\xe4\xc2\xbf\x45\x31\x40\x25\x1c\xdd\x94\xc3" "\x2b\x87\xc4\x63\x4d\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x81\x6e\x6c\x33\xf9\x2d\xca\x3e\x03\xc4\x00\x00" "\x00\x5e\x53\x8c\x77\xb2\xb1\x4f\x63\xd2\x53\x70\x53\x63\x84\x6b\xc4" "\xe9\xcd\x32\x84\xff\x32\x93\x30\x81\x2d\x22\x11\xae\x34\x10\x6e\x03" "\x06\x37\x6a\x2b\x1c\xfe\x60\xa0\x9b\xec\xae\x2b\x05\xec\x9a\xdc\xac" "\x47\x61\x2a\xf8\x5f\x59\x8a\x88\x0f\xa9\x78\x91\xa7\xa2\x90\xb6\xe7" "\x30\x80\x05\x42\xae\xa7\x61\xae\xb4\x63\xf5\xff\x5b\xdf\x50\x99\xae" "\x8a\xd4\xaf\xe9\x9d\xb9\xe9\xc4\xe7\x03\xcb\x90\x0e\x9a\xe2\x72\x74" "\x2f\xe2\xff\x81\xd1\xa4\xf1\x56\x68\x39\x2c\xda\xfd\x2e\x17\x57\x70" "\x6f\x47\xf9\xf8\x4e\x53\x2f\x25\xe2\x73\x7c\xb6\xf6\xe8\x93\x78\xf8" "\xd7\x9a\xb8\x50\x7b\x10\x9c\x7f\x1f\x36\x53\xa5\xbc\x9d\x54\xcc\xc6" "\x33\xde\x62\x63\x52\x6e\xac\x10\x51\x92\x74", 2476); memcpy( (void*)0x20009040, "\x78\x9c\xec\xdd\x5d\x6f\x1c\x57\xfd\x07\xf0\xdf\x3e\x78\xfd\xd0\x7f" "\xd3\xa8\xfa\xab\x0a\x11\x17\x69\x0a\xa5\xa5\x34\xcf\x09\x94\xa7\xa6" "\x5c\x70\x01\x48\x20\xa1\x5c\x93\xc8\x75\xab\x40\x0a\x55\x12\x10\xad" "\x22\xe2\x2a\x17\x88\x0b\x1e\x5e\x02\xdc\xf4\x06\x89\xbe\x91\xf2\x16" "\x10\x2f\x80\x48\x09\x57\x95\xa0\x0c\x1a\xfb\x9c\x64\x3c\x5e\x67\x6d" "\x12\xef\xec\xfa\x7c\x3e\x92\x33\xf3\xdb\x33\xe3\x3d\x93\xaf\xc7\xb3" "\xeb\x99\xd9\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x40\x7c\xe7\xdb\x3f\x3c\xdd\x8b\x88\xcb\xbf\x48\x0f\x1c\x8e\xf8" "\xbf\x18\x44\xf4\x23\x96\xeb\xfa\x58\xd4\x33\x17\xf3\xf2\xc3\x88\x38" "\x12\x1b\xcd\xf1\x5c\x44\x0c\x16\x23\xea\xf5\x37\xfe\x79\x26\xe2\x5c" "\x44\x7c\x7c\x28\xe2\xde\xfd\x5b\xab\xf5\xc3\x67\x76\xd9\x8f\xf3\xa7" "\x6e\x5e\xff\xf4\xbb\xdf\xfa\xdb\xaf\x7f\x7f\xe7\xc8\x8f\xdf\xfc\xd1" "\x87\xed\xf6\x1f\xfc\xff\xd9\x8f\x7e\x73\x3b\xe2\xf0\xf7\x5f\xfb\xe8" "\xd3\xdb\x4f\x66\xdb\x01\x00\x00\xa0\x14\x55\x55\x55\xbd\xf4\x36\xff" "\x68\x7a\x7f\xdf\xef\xba\x53\x00\xc0\x54\xe4\xe3\x7f\x95\xe4\xc7\xe7" "\xbc\xee\xcd\x58\x7f\xd4\x6a\xb5\xfa\x77\xfd\xd9\xea\x8f\xba\xd0\xba" "\xa9\x1a\xef\x76\xb3\x88\x88\xf5\xe6\x3a\xf5\x6b\x06\xa7\xe3\x01\x60" "\xce\xac\xc7\x27\x5d\x77\x81\x0e\xc9\xbf\x68\xc3\x88\x78\xaa\xeb\x4e" "\x00\x33\xad\xd7\x75\x07\xd8\x17\xf7\xee\xdf\x5a\xed\xa5\x7c\x7b\xcd" "\xe3\xc1\xb1\xcd\xf6\xfc\x77\xca\x2d\xf9\xaf\xf7\x1e\xdc\xdf\xb1\xd3" "\x74\x92\xf6\x35\x26\xd3\xfa\xf9\xba\x13\x83\x78\x76\x87\xfe\x2c\x4f" "\xa9\x0f\xb3\x24\xe7\xdf\x6f\xe7\x7f\x79\xb3\x7d\x94\x96\xdb\xef\xfc" "\xa7\x65\xa7\xfc\x47\x9b\xb7\x3e\x15\x27\xe7\x3f\x68\xe7\xdf\xb2\x25" "\xff\x3f\x44\xc4\xdc\xe6\xdf\x1f\x9b\x7f\xa9\x72\xfe\xc3\xbd\xe4\xbf" "\x3e\x98\xe3\xfd\x5f\xfe\x00\x00\x00\x00\x00\x1c\x7c\xf9\xef\xff\x87" "\x3b\x3e\xff\xbb\xf8\xf8\x9b\xb2\x2b\x9b\xe7\xff\xb6\x9f\xe9\xed\x3f" "\xdc\x64\x00\x00\x00\x00\x00\x00\x00\x98\x3b\x8f\x3b\xfe\xdf\x03\xc6" "\xff\x03\x00\x00\x80\x99\x55\xbf\x57\xaf\xfd\xf1\xd0\xc3\xc7\x76\xfa" "\x2c\xb6\xfa\xf1\x4b\xbd\x88\xa7\x5b\xcb\x03\x85\x49\x37\xcb\xac\x74" "\xdd\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\xc9\x70\xf3\x1a" "\xde\x4b\xbd\x88\x85\x88\x78\x7a\x65\xa5\xaa\xaa\xfa\xab\xa9\x5d\xef" "\xd5\xe3\xae\x3f\xef\x4a\xdf\x7e\x28\x59\xd7\xbf\xe4\x01\x00\x60\xd3" "\xc7\x87\x5a\xf7\xf2\xf7\x22\x96\x22\xe2\x52\xfa\xac\xbf\x85\x95\x95" "\x95\xaa\x5a\x5a\x5e\xa9\x56\xaa\xe5\xc5\xfc\x7a\x76\xb4\xb8\x54\x2d" "\x37\xde\xd7\xe6\x69\xfd\xd8\xe2\x68\x17\x2f\x88\x87\xa3\xaa\xfe\x66" "\x4b\x8d\xf5\x9a\x26\xbd\x5f\x9e\xd4\xde\xfe\x7e\xf5\x73\x8d\xaa\xc1" "\x2e\x3a\x36\x1d\x1d\x06\x0e\x00\x11\xb1\x79\x34\xba\xe7\x88\x74\xc0" "\x54\xd5\x33\xd1\xf5\xab\x1c\xe6\x83\xfd\xff\xe0\xb1\xff\xb3\x1b\x5d" "\xff\x9c\x02\x00\x00\x00\xfb\xaf\xaa\xaa\xaa\x97\x3e\xce\xfb\x68\x3a" "\xe7\xdf\xef\xba\x53\x00\xc0\x34\x2c\xe5\xe3\x7f\xfb\xbc\x80\x5a\xad" "\x56\xab\xd5\xea\x83\x57\x37\x55\xe3\xdd\x6e\x16\x11\xb1\xde\x5c\xa7" "\x7e\xcd\x60\x38\x7e\x00\x98\x33\xeb\xf1\x49\xd7\x5d\xa0\x43\xf2\x2f" "\xda\x30\x22\x8e\x74\xdd\x09\x60\xa6\xf5\xba\xee\x00\xfb\xe2\xde\xfd" "\x5b\xab\xbd\x94\x6f\xaf\x79\x3c\x48\xe3\xbb\xe7\x6b\x41\xb6\xe4\xbf" "\xde\xdb\x58\x2f\xaf\x3f\x6e\x3a\x49\xfb\x1a\x93\x69\xfd\x7c\xdd\x89" "\x41\x3c\xbb\x43\x7f\x9e\x9b\x52\x1f\x66\x49\xce\xbf\xdf\xce\xff\xf2" "\x66\xfb\x28\x2d\xb7\xdf\xf9\x4f\xcb\x4e\xf9\xd7\xdb\x79\xb8\x83\xfe" "\x74\x2d\xe7\x3f\x68\xe7\xdf\x72\x70\xf2\xef\x8f\xcd\xbf\x54\x39\xff" "\xe1\x9e\xf2\x1f\xc8\x1f\x00\x00\x00\x00\x00\x66\x58\xfe\xfb\xff\x61" "\xe7\x7f\xf3\x26\x03\x00\x00\x00\x00\x00\x00\xc0\xdc\xb9\x77\xff\xd6" "\x6a\xbe\xef\x35\x9f\xff\xff\xec\x98\xe5\x7a\xcd\x39\xf7\x7f\x1e\x18" "\x39\xff\xde\xae\xf3\x77\xff\xef\x41\x92\xf3\xef\xb7\xf3\x6f\x5d\x90" "\x33\x68\xcc\xdf\x7d\xe3\x61\xfe\xff\xbc\x7f\x6b\xf5\xc3\x9b\xff\xf8" "\x4c\x9e\xce\x7c\xfe\x0b\x83\x51\xfd\xdc\x0b\xbd\xfe\x60\x98\xae\xf9" "\xa9\x16\xde\x8a\xab\x71\x2d\xd6\xe2\xd4\xb6\xe5\x87\x5b\xda\x4f\x6f" "\x6b\x5f\xd8\xd2\x7e\x66\x42\xfb\xd9\x6d\xed\xa3\xba\x7d\x39\xb7\x9f" "\x88\xd5\xf8\x59\x5c\x8b\x37\x1f\xb4\x2f\x4e\xb8\x30\x6a\x69\x42\x7b" "\x35\xa1\x3d\xe7\x3f\xb0\xff\x17\x29\xe7\x3f\x6c\x7c\xd5\xf9\xaf\xa4" "\xf6\x5e\x6b\x5a\xbb\xfb\x41\x7f\xdb\x7e\xdf\x9c\x8e\x7b\x9e\x8b\x7f" "\xfe\xf7\x8b\xdb\xf7\xae\xe9\xbb\x13\x83\x07\xdb\xd6\x54\x6f\xdf\xf1" "\x0e\xfa\xb3\xf1\x7f\xf2\xd4\x28\x7e\x7e\x63\xed\xfa\x89\x5f\x5e\xb9" "\x79\xf3\xfa\xe9\x48\x93\x2d\x8f\x9e\x89\x34\x79\xc2\x72\xfe\x0b\xe9" "\x2b\xe7\xff\xd2\x0b\x9b\xed\xf9\xf7\x7e\x73\x7f\xbd\xfb\xc1\x68\xcf" "\xf9\xef\x9b\x77\xff\xb2\xa7\xc5\xef\xc4\x70\xc7\xfc\x5f\x68\xcc\xd7" "\xdb\xfb\xf2\x13\xe9\xe0\x6c\xcb\xf9\x8f\xd2\x57\xce\x3f\x1f\x81\xc6" "\xef\xff\x33\x94\xff\x1e\x3d\x6a\xff\x7f\xa5\x83\xfe\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xa3\x54\x55\xb5\x71\x8b\xe8\xc5" "\x88\xb8\x90\xee\xff\xe9\xea\xde\x4c\x00\x60\xaa\x7e\xfb\xbd\x34\x53" "\x25\xa1\x56\xab\xd5\x6a\xb5\xfa\xc0\xd6\x4d\xd5\x78\xaf\x37\x8b\x58" "\xda\xba\xce\x85\x88\xf8\xd5\xb8\x6f\x06\x00\xcc\xb2\xff\x44\xc4\xdf" "\xbb\xee\x04\x9d\x91\x7f\xc1\xf2\xe7\xfd\xd5\xd3\xcf\x75\xdd\x19\x60" "\xaa\x6e\xbc\xf7\xfe\x4f\xae\x5c\xbb\xb6\x76\xfd\x46\xd7\x3d\x01\x00" "\x00\x00\x00\x00\x00\x00\xfe\x57\x79\xfc\xcf\x63\x8d\xf1\x9f\x37\xae" "\x03\x6a\x8d\x1b\xbd\x65\xfc\xd7\x37\xe2\xd8\xdc\x8e\xff\xd9\x1f\x0d" "\x36\xc6\x3a\x4f\x1b\xf4\x7c\x3c\x7a\xfc\xef\xe3\xf1\xe8\xf1\xbf\x87" "\x13\x9e\x6f\x61\x42\xfb\x68\x42\xfb\xe2\x84\xf6\xa5\x09\xed\x63\x6f" "\xf4\x68\xc8\xf9\x3f\x9f\x32\xce\xf9\x1f\x4d\x1b\x56\xd2\xf8\xaf\x2f" "\x75\xd0\x9f\xae\xe5\xfc\x8f\xa7\xb1\x9e\x73\xfe\x5f\x68\x2d\xd7\xcc" "\xbf\xfa\xd3\x3c\xe7\xdf\xdf\x92\xff\xc9\x9b\xef\xbc\x7b\xf2\xc6\x7b" "\xef\xbf\x7a\xf5\x9d\x2b\x6f\xaf\xbd\xbd\xf6\xd3\xd3\xa7\x2e\x9c\x3b" "\x7b\xfe\xdc\xd9\xf3\xe7\x4f\xbe\x75\xf5\xda\xda\xa9\xcd\x7f\x3b\xec" "\xf1\xfe\xca\xf9\xe7\xb1\xaf\x5d\x07\x5a\x96\x9c\x7f\xce\x5c\xfe\x65" "\xc9\xf9\x7f\x3e\xd5\xf2\x2f\x4b\xce\xff\xc5\x54\xcb\xbf\x2c\x39\xff" "\xfc\x7a\x4f\xfe\x65\xc9\xf9\xe7\xf7\x3e\xf2\x2f\x4b\xce\xff\xe5\x54" "\xcb\xbf\x2c\x39\xff\x2f\xa6\x5a\xfe\x65\xc9\xf9\xbf\x92\x6a\xf9\x97" "\x25\xe7\xff\xa5\x54\xcb\xbf\x2c\x39\xff\x57\x53\x2d\xff\xb2\xe4\xfc" "\x4f\xa4\x5a\xfe\x65\xc9\xf9\x9f\x4c\xb5\xfc\xcb\x92\xf3\xcf\x67\xb8" "\xe4\x5f\x96\x9c\x7f\xbe\xb2\x41\xfe\x65\xc9\xf9\x9f\x49\xb5\xfc\xcb" "\x92\xf3\x3f\x9b\x6a\xf9\x97\x25\xe7\x7f\x2e\xd5\xf2\x2f\x4b\xce\xff" "\x7c\xaa\xe5\x5f\x96\x9c\xff\x85\x54\xcb\xbf\x2c\x39\xff\x2f\xa7\x5a" "\xfe\x65\xc9\xf9\x7f\x25\xd5\xf2\x2f\x4b\xce\xff\xb5\x54\xcb\xbf\x2c" "\x39\xff\xaf\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff" "\xeb\xa9\x96\x7f\x59\x72\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\xff\x66\xaa" "\xe5\x5f\x96\x9c\xff\xeb\xa9\x96\x7f\x59\x1e\x7e\xfe\xbf\x99\x29\xcf" "\xfc\xeb\xaf\x11\x33\xd0\x0d\x33\x66\xc6\xcd\x74\xfd\x9b\x09\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x68\x9b\xc6\xe5\xc4\x5d\x6f\x23\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xff\x65\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b" "\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xbb\xbb\x18\xb9\xca\xfb" "\x0c\xe0\x67\xbf\xec\xb5\x21\xc1\x0d\x84\x10\xe2\x84\xb5\x31\x60\x60" "\xf1\xee\xfa\x0b\x1c\x62\x30\x49\x48\x29\x69\x53\x4a\x42\xda\xb4\xa4" "\xc6\xb1\xd7\xc6\x89\xbf\xea\x5d\x27\x80\x50\x59\x0a\x6d\x89\x82\x54" "\xa4\xf6\x82\x5e\x34\x4d\xa2\x34\x8a\xd4\x56\xa0\x28\x52\x53\x89\x46" "\x48\x8d\xd4\xde\x95\xab\x44\xdc\x44\xad\xc4\x85\xa5\x42\xe5\xa0\xa4" "\x52\xaa\xc0\x56\x67\xce\xfb\xbe\x3b\x33\x3b\x3b\xb3\xfe\x58\x3c\xe7" "\x9c\xdf\x0f\xe1\xbf\x77\xe6\xcc\xcc\x3b\x67\xce\xcc\xee\xb3\xd6\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\x00\x34\xdb\xf0\xb1\xe9\x3f\x1f" "\xc8\xb2\x2c\xff\xbf\xf1\xc7\xba\x2c\xbb\x34\xff\xfb\x9a\x6c\x4f\xfe" "\xe5\xdc\xce\x8b\xbd\x42\x00\x00\x00\xe0\x7c\xbd\xd5\xf8\xf3\x1f\x2e" "\x4b\x27\xec\x59\xc6\x85\x9a\xb6\xf9\xb7\x0f\xfd\xc7\xf7\xe7\xe7\xe7" "\xe7\xb3\x2f\xbc\x79\xfa\xed\xbf\x9c\x9f\x4f\x67\x8c\x65\xd9\xd0\xea" "\x2c\x6b\x9c\x17\xfd\xfb\x2f\x7f\x31\xdf\xbc\x4d\xf0\x54\x36\x3a\x30" "\xd8\xf4\xf5\x60\x8f\x9b\x1f\xea\x71\xfe\x70\x8f\xf3\x47\x7a\x9c\xbf" "\xaa\xc7\xf9\xab\x7b\x9c\x3f\xda\xe3\xfc\x45\x3b\x60\x91\x35\xc5\xef" "\x63\x1a\x57\xb6\xa9\xf1\xd7\x75\xc5\x2e\xcd\xae\xc8\x46\x1a\xe7\x6d" "\xea\x70\xa9\xa7\x06\x56\x0f\x0e\xc6\xdf\xe5\x34\x0c\x34\x2e\x33\x3f" "\x72\x30\x3b\x9c\x1d\xc9\xa6\xb3\xc9\x45\x97\x19\x68\xfc\x97\x65\x2f" "\x6d\xc8\x6f\xeb\x9e\x2c\xde\xd6\x60\xd3\x6d\xad\xcf\xb2\xec\xcc\xcf" "\x1e\xdf\x1f\xd7\x30\x10\xf6\xf1\xa6\xac\xe5\xc6\x1a\x9a\x1f\xbb\x37" "\xee\xca\xc6\xde\xfc\xd9\xe3\xfb\xbf\x33\xfb\xfa\xfb\x3b\xcd\x9e\xbb" "\x61\xd1\x4a\xb3\x6c\xf3\xc6\x7c\x9d\x4f\x67\xd9\xc2\xaf\xab\xb2\x81" "\x6c\x75\xda\x27\x71\x9d\x83\x4d\xeb\x5c\xdf\x61\x9d\x43\x2d\xeb\x1c" "\x68\x5c\x2e\xff\x7b\xfb\x3a\xcf\x2c\x73\x9d\xf1\x7e\x8f\x86\x75\xbe" "\xd2\x65\x9d\xeb\xc3\x69\x8f\x5c\x9b\x65\xd9\x5c\xb6\xe4\x36\xed\x9e" "\xca\x06\xb3\xb5\x6d\xb7\x9a\xf6\xf7\x68\x71\x44\xe4\xd7\x91\x3f\x94" "\xef\xc9\x86\xcf\xea\x38\xd9\xb0\x8c\xe3\x24\xbf\xcc\x6b\xd7\xb6\x1e" "\x27\xed\xc7\x64\xdc\xff\x1b\xc2\x3e\x19\x5e\x62\x0d\xcd\x0f\xc7\x1b" "\x4f\xae\x5a\xb4\xdf\xcf\xf5\x38\xc9\xef\x75\x3f\x1c\xab\xf9\x75\xdf" "\x97\xdf\xe8\xe8\x68\xf3\xaf\x56\x5b\x8e\xd5\x7c\x9b\xc7\xaf\x5b\xfa" "\x18\xe8\xf8\xd8\x75\x38\x06\xd2\xb1\xdc\x74\x0c\x6c\xec\x75\x0c\x0c" "\xae\x1a\x6a\x1c\x03\x83\x0b\x6b\xde\xd8\x72\x0c\x4c\x2d\xba\xcc\x60" "\x36\xd0\xb8\xad\xd3\xd7\x75\x3f\x06\x26\x66\x8f\x9e\x98\x98\x79\xf4" "\xb1\x5b\x0e\x1f\xdd\x77\x68\xfa\xd0\xf4\xb1\xa9\xc9\x9d\xdb\xb7\xed" "\xd8\xbe\x6d\xc7\x8e\x89\x83\x87\x8f\x4c\x4f\x16\x7f\x9e\xdd\x2e\x2d" "\x91\xb5\xd9\x60\x3a\x06\x37\x86\xd7\x9a\x78\x0c\xde\xd0\xb6\x6d\xf3" "\x21\x39\xff\xcd\x0b\xf7\x3c\x18\xed\x93\xe7\x41\x7e\xdf\x3f\x73\x7d" "\xbe\xa0\x4b\x07\xb3\x25\x8e\xf1\x7c\x9b\xa7\x37\x9f\xff\xf3\x20\x7d" "\xdf\x6f\x7a\x1e\x0c\x37\x3d\x0f\x3a\xbe\xa6\x76\x78\x1e\x0c\x2f\xe3" "\x79\x90\x6f\x73\x66\xf3\xf2\xbe\x67\x0e\x37\xfd\xdf\x69\x0d\x2b\xf5" "\x5a\xb8\xae\xe9\x18\xb8\x98\xdf\x0f\xf3\xdb\x7c\xf0\xc6\xa5\x5f\x0b" "\xd7\x87\x75\x3d\x73\xd3\xd9\x7e\x3f\x1c\x5a\x74\x0c\xc4\xbb\x35\x10" "\x9e\x7b\xf9\x29\xe9\xe7\xbd\xd1\xdb\xc2\x7e\x59\x7c\x5c\x5c\x9d\x9f" "\x71\xc9\xaa\xec\xd4\xcc\xf4\xc9\x2d\x8f\xec\x9b\x9d\x3d\x39\x95\x85" "\xf1\x8e\xb8\xbc\xe9\xb1\x6a\x3f\x5e\xd6\x36\xdd\xa7\x6c\xd1\xf1\x32" "\x78\xd6\xc7\xcb\x9e\xbf\xff\xd5\xf5\x57\x77\x38\x7d\x5d\xd8\x57\xa3" "\x37\x77\x7f\xac\xf2\x6d\xb6\x8f\x77\x7f\xac\x1a\xaf\xee\xad\xfb\x73" "\x55\x56\xec\xcf\x96\x53\xb7\x66\x61\x5c\x60\xef\xf4\xfe\xec\xf4\xdd" "\x2c\xdf\x9f\x29\x4b\x74\xd9\x9f\xf9\x36\x4f\xdf\x72\xfe\x3f\x0b\xa6" "\x5c\xd2\xf4\xfa\x37\xd2\xeb\xf5\x6f\x68\x64\xb8\x78\xfd\x1b\x4a\x7b" "\x63\xa4\xe5\xf5\x6f\xf1\x43\x33\xd4\x58\x59\x96\x9d\xb9\x65\x79\xaf" "\x7f\x23\xe1\xff\x77\xfa\xf5\xef\x8a\x3e\x79\xfd\xcb\xf7\xd5\x83\x5b" "\xba\x1f\x03\xf9\x36\xcf\x4c\x9c\xed\x31\x30\xdc\xf5\xf5\xef\xda\x30" "\x07\xc2\x7a\x6e\x0c\x89\x61\xb4\x29\xf7\xbf\xdd\x38\x7f\xae\x38\x4c" "\x9b\x1e\xcb\x9e\xc7\xcd\xf0\xf0\x48\x38\x6e\x86\xe3\x2d\xb6\x1e\x37" "\xdb\x16\x5d\x26\xbf\xb6\xfc\xb6\x37\x4f\x9e\xdb\x71\xb3\xf9\xda\xd6" "\xc7\xaa\xe5\xe7\x96\x0a\x1e\x37\xf9\xbe\xfa\xab\xc9\xee\xc7\x4d\xbe" "\xcd\xcb\x53\xe7\xff\xda\xb1\x26\xfe\xb5\xe9\xb5\x63\x55\xaf\x63\x60" "\x64\x68\x55\xbe\xde\x91\x74\x10\x14\xaf\x77\xf3\x6b\xe2\x31\xb0\x25" "\xdb\x9f\x1d\xcf\x8e\x64\x07\xd2\x65\xf2\x47\x39\xbf\xad\xf1\xad\xcb" "\x3b\x06\x56\x85\xff\xdf\xe9\xd7\x8e\xab\xfa\xe4\x18\xc8\xf7\xd5\xf3" "\x5b\xbb\x1f\x03\xf9\x36\x3f\xda\x76\x61\x7f\x76\xda\x1c\x4e\x49\xdb" "\x34\xfd\xec\xd4\xfe\xfb\x85\xa5\x32\xff\xd5\xc3\x0b\xd7\xd7\xbe\xdb" "\x2e\x74\xe6\xcf\xd7\xf9\xf1\x1f\x7f\x2a\x9d\xd6\x29\x43\xe4\xdb\xbc" "\xbe\xfd\x6c\x73\x46\xf7\xfd\x74\x73\x38\xe5\x92\x0e\xfb\xa9\xfd\xf9" "\xb3\xd4\x31\x7d\x20\x7b\x67\xf6\xd3\x55\x61\x9d\x47\x76\x74\xff\xdd" "\x54\xbe\xcd\x15\x3b\x97\x79\x3c\xed\xc9\xb2\xec\xd5\xa9\x57\x1b\xbf" "\xef\x0a\xbf\xdf\xfd\xde\xa9\x1f\x7f\xbf\xe5\xf7\xbe\x9d\x7e\xa7\xfc" "\xea\xd4\xab\xf7\x4e\xdc\xff\x93\xb3\x59\x3f\x00\x00\xe7\xee\xed\xc6" "\x9f\x73\xab\x8a\x9f\x35\x9b\xfe\xc5\x7a\x39\xff\xfe\x0f\x00\x00\x00" "\x94\x42\xcc\xfd\x83\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x43" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xc3\x61\x26\x35\xc9\xff" "\x0f\xdf\xb6\xeb\x85\xb7\x9e\xc8\xd2\xbb\x01\xce\x07\xf1\xfc\xb8\x1b" "\xee\xbb\xa3\xd8\x2e\x76\xbc\xe7\xc2\xd7\x63\xf3\x0b\xf2\xd3\x3f\xfa" "\xed\x91\x17\xbe\xfa\xc4\xf2\x6e\x7b\x30\xcb\xb2\x5f\xdd\xfb\x81\x8e" "\xdb\x3f\x7c\x47\x5c\x57\xe1\x44\x5c\xe7\x87\x5b\x4f\x5f\xe4\xaa\x6b" "\x96\x75\xfb\x0f\x3d\xb0\xb0\x5d\xf3\xfb\x27\x9c\xd9\x55\x5c\x7f\xbc" "\x3f\xcb\x3d\x0c\x62\x57\xf9\xa5\x89\xad\x8d\xeb\x1d\x7b\x74\xaa\x31" "\x5f\xbe\x37\x6b\xcc\xfb\xe7\x9e\x79\xaa\xb8\xfe\xe2\xeb\xb8\xfd\xe9" "\x6d\xc5\xf6\x7f\x13\xde\xb4\x64\xcf\xc1\x81\x96\xcb\x6f\x0e\xeb\xd9" "\x14\xe6\x58\x78\x4f\x99\xfb\xf6\x2c\xec\x87\x7c\xc6\xcb\xbd\xb0\xfe" "\x43\xff\x7a\xf9\x67\x17\x6e\x2f\x5e\x6e\x60\xe3\xbb\x1b\x77\xf3\xf9" "\x3f\x2e\xae\x37\xbe\x47\xd4\x73\x97\x17\xdb\xc7\xfb\xbd\xd4\xfa\xff" "\xe5\x6b\xdf\x7d\x21\xdf\xfe\x91\xeb\x3a\xaf\xff\x89\xc1\xce\xeb\x3f" "\x1d\xae\xf7\xb5\x30\x7f\xb9\xbb\xd8\xbe\x79\x9f\x7f\xb5\x69\xfd\x7f" "\x1a\xd6\x1f\x6f\x2f\x5e\x6e\xcb\xb7\x7e\xd8\x71\xfd\x2f\xbe\xaf\xd8" "\xfe\xc5\x70\x5c\x7c\x23\xcc\xf6\xf5\xdf\xf5\x17\x1f\x7c\xab\xd3\xe3" "\x15\x6f\x67\xcf\xed\xc5\xe5\xe2\xed\x4f\xfe\xef\xf6\xc6\xe5\xe2\xf5" "\xc5\xeb\x6f\x5f\xff\xe8\x13\x53\x2d\xfb\xa3\xfd\xfa\x5f\x7e\xb3\xb8" "\x9e\xdd\x5f\xfe\xf9\x50\xf3\xf6\xf1\xf4\x78\x3b\xd1\x43\xb7\xb7\x1e" "\xdf\x03\xe1\xf1\x6d\xe9\x91\x67\x59\xf6\xdd\x3f\xcb\x5a\xf6\x73\xf6" "\x91\xe2\x72\xff\xdc\xb6\xfe\x78\x7d\x27\x6e\xef\xbc\xfe\x9b\xdb\xd6" "\x79\x62\xe0\x9a\xc6\xe5\x17\xee\xcf\xba\x96\xfb\xf5\xf5\xbf\xdb\xda" "\xf1\xfe\xc6\xf5\xec\xf9\xc7\x75\x2d\xf7\xe7\xb9\xbb\xc3\xfe\x7b\x73" "\xe2\x47\xf9\xf5\x9e\xbe\x3f\x1c\x8f\xe1\xfc\xff\x7b\xa5\xb8\xbe\xf6" "\xf7\x32\x7d\xf1\xee\xd6\xd7\x9b\xb8\xfd\x37\xd6\x15\xcf\xdb\x78\x7d" "\x13\x6d\xeb\x7f\xae\x6d\xfd\x73\xd7\xe4\xfb\xae\xf7\xfa\xef\x79\xb3" "\x58\xff\x8b\x77\xae\x6e\x59\xff\x9e\x4f\x84\xe3\xe9\x9e\x62\xf6\x5a" "\xff\xa1\xbf\xbd\xac\xe5\xf2\xdf\xfc\x4e\xf1\x78\x9c\xfc\xca\xf8\xb1" "\xe3\x33\xa7\x0e\x1f\x68\xda\xab\xcd\xcf\xe3\xd5\xa3\x6b\xd6\x5e\x72" "\xe9\xbb\xde\x7d\x59\x78\x2d\x6d\xff\x7a\xef\xf1\xd9\x87\xa7\x4f\x8e" "\x4d\x8e\x4d\x66\xd9\x58\x09\xdf\x32\x70\xa5\xd7\xff\xad\x30\xff\xa7" "\x18\x73\x17\xfe\x16\x0a\x3f\xf9\x79\x71\xdc\x3d\xfb\xc9\xe2\xfb\xd6" "\x0d\xbf\x28\xbe\x7e\x2e\x9c\xfe\x50\x78\x3c\xe3\xf7\xc7\xaf\xff\xf5" "\x48\xcb\xf1\xda\xfe\xb8\xcf\xdd\x59\xcc\xf3\x5d\xff\x4d\x61\x1d\xcb" "\xf5\xbe\xaf\xfd\xd7\x35\xcb\xda\xf0\xf4\xe7\x5f\x3a\xf5\x4f\x7f\xf2" "\x7a\xfb\xcf\x05\xf1\xfe\x9c\x78\xef\x68\xe3\xfe\x3d\xbf\xe1\xca\xc6" "\x79\x03\x2f\x17\xe7\xb7\xbf\x5e\xf5\xf2\x9f\xef\x6d\x7d\x5e\xff\x74" "\x78\xb2\x31\x7f\x10\xf6\xeb\x7c\x78\x67\xe6\x8d\x57\x16\xb7\xd7\x7e" "\xfd\xf1\xbd\x49\x9e\xfd\x74\xf1\xfc\x8d\x3f\xc9\xc5\xcb\x67\x6d\xef" "\x27\xb2\x6e\xa8\xf5\x7e\x9c\xef\xfa\x7f\x1a\x7e\x8e\xf9\xe1\x55\xad" "\xaf\x7f\xf1\xf8\xf8\xc1\x13\x6d\xef\xe6\xbc\x2e\x1b\xc8\x97\x30\x17" "\x5e\x1f\xb2\xb9\xe2\xfc\xb8\x55\xdc\xdf\xcf\x9e\xb9\xb2\xe3\xed\xc5" "\xf7\xe1\xc9\xe6\xde\x7f\x36\xcb\x5c\xd2\xcc\xa3\x33\x13\x47\x0e\x1f" "\x3b\xf5\xc8\xc4\xec\xf4\xcc\xec\xc4\xcc\xa3\x8f\xed\x3d\x7a\xfc\xd4" "\xb1\xd9\xbd\x8d\xf7\x2e\xdd\xfb\xc5\x5e\x97\x5f\x78\x7e\xaf\x6d\x3c" "\xbf\x0f\x4c\xef\xdc\x9e\x35\x9e\xed\xc7\x8b\xb1\xc2\x2e\xf6\xfa\x4f" "\x3c\xb0\xff\xc0\xad\x93\xd7\x1f\x98\x3e\xb8\xef\xd4\xc1\xd9\x07\x4e" "\x4c\x9f\x3c\xb4\x7f\x66\x66\xff\xf4\x81\x99\xeb\xf7\x1d\x3c\x38\xfd" "\x95\x5e\x97\x3f\x7c\x60\xf7\xd4\xd6\x5d\xdb\x6e\xdd\x3a\x7e\xe8\xf0" "\x81\xdd\xb7\xed\xda\xb5\x6d\xd7\xf8\xe1\x63\xc7\xf3\x65\x14\x8b\xea" "\x61\xe7\xe4\x97\xc6\x8f\x9d\xdc\xdb\xb8\xc8\xcc\xee\xed\xbb\xa6\x76" "\xec\xd8\x3e\x39\x7e\xf4\xf8\x81\xe9\xdd\xb7\x4e\x4e\x8e\x9f\xea\x75" "\xf9\xc6\xf7\xa6\xf1\xfc\xd2\x5f\x1e\x3f\x39\x7d\x64\xdf\xec\xe1\xa3" "\xd3\xe3\x33\x87\x1f\x9b\xde\x3d\xb5\x6b\xe7\xce\xad\x3d\xdf\xfd\xf1" "\xe8\x89\x83\x33\x63\x13\x27\x4f\x1d\x9b\x38\x35\x33\x7d\x72\xa2\xb8" "\x2f\x63\xb3\x8d\x93\xf3\xef\x7d\xbd\x2e\x4f\x3d\xcc\x1c\x0f\xaf\x77" "\x6d\x06\xc2\x4f\xe7\x9f\xbb\x79\x67\x7a\x7f\xdc\xdc\xb7\x9f\x5c\xf2" "\xaa\x8a\x4d\x5a\x7f\x3c\xcd\xde\x08\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\x9c\x21\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x3a\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\xbf\x48\xfe\xa3\xe9\xe3\xdf\xeb\x92\xff" "\x2f\x54\xff\xff\x49\xfd\xff\x06\xfd\x7f\xfd\xff\x4c\xff\x3f\xd1\xff" "\xd7\xff\xcf\xf4\xff\xf5\xff\x7b\xd0\xff\xd7\xff\x2f\xf3\xfa\xf5\xff" "\xf5\xff\xe9\xad\xdf\xfa\xff\x21\xf7\x67\x6b\xb2\xcc\xbf\xff\x03\x00" "\x00\x40\x45\xc5\xdc\xbf\x36\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\x92\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4b\xc3\x4c\x6a" "\x92\xff\x7d\xfe\xbf\xfe\xbf\xfe\x7f\xb7\xfe\x7f\xdc\x56\xff\x3f\xd3" "\xff\xef\x87\xfe\xff\xa6\xff\xd6\xff\x5f\x44\xff\x5f\xff\x3f\xd3\xff" "\x3f\x67\x17\xbb\x3f\x5f\xf6\xf5\xf7\x61\xff\x7f\x8d\xfe\x3f\xfd\xa6" "\xdf\xfa\xff\x31\xf7\xbf\x2b\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20" "\xe6\xfe\x77\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x5f\x16\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x2e\xcc\xa4\x26\xf9\x5f\xff" "\x5f\xff\x5f\xff\xdf\xe7\xff\xeb\xff\x97\xa6\xff\xef\xf3\xff\x3b\xd0" "\xff\xd7\xff\xcf\xf4\xff\xcf\xd9\xc5\xee\xcf\x97\x7d\xfd\x7d\xd8\xff" "\xf7\xf9\xff\xf4\x9d\x7e\xeb\xff\xc7\xdc\xff\x6b\x61\x26\x35\xc9\xff" "\x00\x00\x00\x50\x07\x31\xf7\xbf\x27\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\xf2\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x2b\xc2" "\x4c\x6a\x92\xff\xeb\xd9\xff\x7f\x2d\xcb\x32\xfd\xff\x4c\xff\x5f\xff" "\xbf\x6d\x9d\xfa\xff\xfa\xff\x2b\x41\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd" "\xff\x32\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff\x1f\x73\xff\x7b\xc3" "\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xbf\x32\xcc\x44\xfe\x07" "\x00\x00\x80\xca\x88\xb9\xff\x7d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\x57\x85\x99\xd4\x24\xff\xd7\xb3\xff\xef\xf3\xff\xf5\xff\x0b" "\xfa\xff\xad\xeb\xd4\xff\xd7\xff\x5f\x09\xfa\xff\xfa\xff\xdd\xe8\xff" "\xeb\xff\x97\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd\xff\x98\xfb\xdf" "\x1f\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xd5\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x1f\x08\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\x5f\x1f\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xbf\x92\xca\xd5\xff\x1f\x5c\xf2\x1c\xfd\xff\x82\xfe" "\x7f\xab\x0b\xd7\xff\x9f\x5b\x58\x80\xfe\x7f\x69\xd6\xaf\xff\xaf\xff" "\x4f\x6f\xfd\xd6\xff\x8f\xb9\xff\x83\x61\x26\x35\xc9\xff\x00\x00\x00" "\x50\x07\x31\xf7\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff" "\x9a\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xb1\x30\x93\x9a\xe4" "\x7f\xfd\xff\x5a\xf7\xff\xf3\xd3\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x57" "\x54\xb9\xfa\xff\x4b\xd3\xff\x2f\xe8\xff\xb7\xf2\xf9\xff\xfa\xff\xfa" "\xff\xfa\xff\x74\xd7\x6f\xfd\xff\x98\xfb\x37\x84\x99\xd4\x24\xff\x03" "\x00\x00\x40\x1d\xc4\xdc\xbf\x31\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\xda\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4d\x61\x26" "\x35\xc9\xff\xfa\xff\xb5\xee\xff\xfb\xfc\x7f\xfd\xff\x96\x75\xea\xff" "\xeb\xff\xaf\x04\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\xcb\xbc\x7e\xfd" "\x7f\xfd\x7f\x7a\xeb\xb7\xfe\x7f\xcc\xfd\xd7\x85\x99\xd4\x24\xff\x03" "\x00\x00\x40\x1d\xc4\xdc\x7f\x7d\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x0d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x9b\xc3\x4c" "\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x4b\xdc\xff\x1f\xd2\xff\xcf\xf4" "\xff\xfb\x9e\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x65\x5e\xbf\xfe\xbf" "\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe\x1b\xc3\x4c\x6a\x92\xff\x01\x00" "\x00\xa0\x0e\x62\xee\xbf\x29\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\xe6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf1\x30\x93\x9a" "\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\x12\xf7\xff\x7d\xfe\x7f\xcb\xfa\xf5" "\xff\xfb\x93\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\x65\x5e\xbf\xfe\xbf" "\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe\x5b\xc2\x4c\x6a\x92\xff\x01\x00" "\x00\xa0\x0e\x62\xee\xdf\x12\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x3f\x11\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x19\x66\x52\x93" "\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x92\xf4\xff" "\xf5\xff\xbb\xd1\xff\xd7\xff\x2f\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\xdf" "\xfa\xff\x31\xf7\x4f\x85\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc" "\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x5b\x98\x89\xfc" "\x0f\x00\x00\x00\x95\x11\x73\xff\xf6\x30\x93\x9a\xe4\xff\x92\xf4\xff" "\xb7\xa4\x02\x94\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xa9\xe8\xff" "\xeb\xff\x77\xa3\xff\xaf\xff\x5f\xe6\xf5\xeb\xff\xeb\xff\xd3\x6a\xb0" "\xc3\x69\xfd\xd6\xff\x8f\xb9\x7f\x47\x98\x49\x4d\xf2\x3f\x00\x00\x00" "\xd4\x41\xcc\xfd\x3b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x6f" "\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x2d\xcc\xa4\x26\xf9" "\xbf\x24\xfd\x7f\x9f\xff\xaf\xff\xaf\xff\xdf\x44\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\xef\x0a\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a" "\x88\xb9\xff\xc3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xb7\x87" "\x99\xc8\xff\x00\x00\x00\x50\x2a\x9d\x3e\x87\x30\x8a\xb9\xff\x23\x61" "\x26\x35\xc9\xff\xfa\xff\x55\xef\xff\xcf\xaf\xd6\xff\xd7\xff\xd7\xff" "\xef\xbe\x7e\xfd\xff\x95\xa5\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\x7f\x99" "\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x8f\xb9\x7f\x77\x98\x49\x4d" "\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x77\x84\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\xdf\x19\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf" "\x27\xcc\xa4\x26\xf9\x5f\xff\xbf\xea\xfd\x7f\x9f\xff\xaf\xff\xaf\xff" "\xdf\x6b\xfd\xfa\xff\x2b\x4b\xff\x5f\xff\xbf\x1b\xfd\xff\x72\xf6\xff" "\xc3\x8f\x2d\xfa\xff\x7d\xd4\xff\xcf\x8f\x21\xfd\x7f\xfa\x51\xbf\xf5" "\xff\x63\xee\xbf\x2b\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe" "\x8f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x2c\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\xff\xe3\x61\x26\x35\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x2b\xa9\xfb\xfa\xd7\x9c\xf7\xf5" "\xd7\xb8\xff\xdf\x78\x29\xd4\xff\x2f\xe8\xff\x9f\x9b\x8b\xdd\x9f\x2f" "\xfb\xfa\xfb\xa9\xff\xef\xf3\xff\xe9\x57\xfd\xd6\xff\x8f\xb9\xff\xee" "\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f\x11\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xff\xeb\x61\x26\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\xf7\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xaf\x24\x9f\xff\xef\xf3\xff\xbb\xd1\xff\xd7\xff\x2f" "\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x31\xf7\xff\x46\x98\x49" "\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xf7\x86\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\x7f\x32\xcc\x44\xfe\x07\x00\x00\x80\x92\x59\xb5" "\xe4\x39\x31\xf7\xff\x66\x98\x49\x4d\xf2\x7f\xf9\xfa\xff\x63\xa5\xec" "\xff\x0f\xa6\xeb\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xbf\x90\xf4" "\xff\xf5\xff\x33\xfd\xff\x73\x76\xb1\xfb\xf3\x65\x5f\xbf\xfe\xbf\xfe" "\x3f\xbd\xf5\x5b\xff\x3f\xe6\xfe\xdf\x0a\x33\xa9\x49\xfe\x07\x00\x00" "\x80\x3a\x88\xb9\xff\x53\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\xbf\x1d\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x5f\x98\x49\x4d" "\xf2\xff\x85\xee\xff\xb7\x5f\xbe\x1b\x9f\xff\xaf\xff\x9f\xe9\xff\xeb" "\xff\xeb\xff\xeb\xff\x9f\x27\xfd\x7f\xfd\xff\x4c\xff\xff\x9c\x5d\xec" "\xfe\x7c\xd9\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x8f\xb9\xff\x77" "\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xbf\x3f\xcc\x44\xfe" "\x07\x00\x00\x80\x3e\xf5\xf0\x59\x5f\x22\xe6\xfe\x4f\x87\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\x7f\x26\xcc\xa4\x26\xf9\xbf\x7c\x9f\xff" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\x26\xfa\xff\xfa\xff\xdd" "\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd\xff\x98" "\xfb\x1f\x08\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xb3\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf\x1b\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\xff\x7b\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x2b\x49\xff\x7f\x71\xff\x3f\x7f\x0d\xd3" "\xff\x2f\xe8\xff\xeb\xff\x97\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd" "\xff\x98\xfb\x3f\x17\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff" "\xef\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x41\x98\x89\xfc" "\x0f\x00\x00\x00\x95\x11\x73\xff\x83\x61\x26\x35\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x2b\x49\xff\xdf\xe7\xff\x77\xa3" "\xff\xaf\xff\x5f\xe6\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff\x63\xee" "\xff\x7c\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x7f\x18\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x37\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\xa1\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\x95\xa4\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\x7f" "\x99\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x8f\xb9\x7f\x5f\x98\xc9" "\x9e\xd6\x9b\x01\x00\x00\x00\xca\x2b\xe6\xfe\x2f\x84\x99\xd4\xe4\xdf" "\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf\x1f\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x7f\x20\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x7f\x25\xe9\xff\xeb\xff\x77\xa3\xff\xaf\xff\x5f\xe6" "\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff\x63\xee\x9f\x0e\x33\xa9\x49" "\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x60\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\xa1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x87" "\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x6b\xdb\xff\x7f\xe5\x7b" "\x6d\xeb\xd4\xff\xd7\xff\x5f\x09\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff" "\x97\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd\xff\x98\xfb\x0f\x87\x99" "\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xc5\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x2f\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\x1f\x09\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xaf\x6d\xff\x7f" "\x79\x9f\xff\xbf\x66\xe1\x76\xf5\xff\xf5\xff\xcf\x85\xfe\xbf\xfe\x7f" "\x37\xfa\xff\xfa\xff\x65\x5e\xbf\xfe\xbf\xfe\x3f\xbd\xf5\x5b\xff\x3f" "\xe6\xfe\xa3\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x1f\x0b" "\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x1e\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\x7f\x22\xcc\xa4\x26\xf9\x5f\xff\xff\xec\xfa\xff" "\x03\x4b\x74\x03\xf5\xff\x3b\xaf\x5f\xff\xbf\x02\xfd\xff\x26\xfa\xff" "\xfa\xff\xe7\x42\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x32\xaf\x5f\xff" "\x5f\xff\x9f\xde\xfa\xad\xff\x1f\x73\xff\x1f\x85\x99\xd4\x24\xff\x03" "\x00\x00\x40\x1d\xc4\xdc\x7f\x32\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\x7f\x26\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x36\xcc\xa4" "\x26\xf9\x5f\xff\xdf\xe7\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf\x24" "\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\xcb\xbc\x7e\xfd\x7f\xfd\x7f\x7a" "\xeb\xb7\xfe\x7f\xcc\xfd\xa7\xc2\x4c\x6a\x92\xff\x01\xf8\x7f\xf6\xee" "\x33\x59\xb3\xb2\xea\xe3\xf0\x43\x03\xef\xdb\x94\xe5\x1c\x98\x82\x23" "\x70\x08\x8e\xc1\x2a\xc7\x60\x0e\x60\xc6\xac\x98\x73\xc2\x9c\xda\xac" "\x98\x73\xce\x01\x73\xce\xa2\x98\x63\x95\x16\xa7\xd7\x5a\xd0\x6d\x9f" "\xbd\x4f\x77\x9f\xa7\xcf\xbd\xef\x75\x5d\x1f\x58\x7a\x50\xb9\x29\xda" "\x0f\xff\x82\x5f\x6d\x00\x00\x3a\xc8\xdd\x7f\xff\xb8\xc5\xfe\x07\x00" "\x00\x80\x69\xe4\xee\x7f\x40\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7" "\x3f\x30\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xdf\x27\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7\xeb\xff\xef\xd6" "\xff\xdf\x76\xb5\xfe\x9f\x0b\x1a\xad\xff\xcf\xdd\xff\xa0\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x38\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\x1f\x12\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x0f\x8d" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf7\x49" "\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd\xfa\x7f\xdf\xff\x67\xdd" "\x68\xfd\x7f\xee\xfe\x87\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\xe1\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\x88\xb8\xc5\xfe" "\x07\x00\x00\x80\x69\xe4\xee\xbf\x21\x6e\x69\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xff\x06\xfb\xff\x6b\xf4\xff\xfa\xff\xed\xd0\xff\xeb\xff\x97\xe8" "\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\x37" "\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x91\x71\x8b\xfd\x0f" "\x00\x00\x00\xd3\xc8\xdd\xff\xa8\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4" "\xee\x7f\x74\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\xff\x0d\xf6\xff\xbe" "\xff\xaf\xff\xdf\x10\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7\xeb" "\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\x98\xb8\xa5\xc9\xfe\x07\x00" "\x00\x80\x0e\x72\xf7\x3f\x36\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\x1f\x17\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x8f\x8f\x5b\x9a\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf7\x49\xff\xaf\xff" "\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\xf6\xde\xff\xdf" "\xe7\xa6\x83\x7b\xd4\xfe\x3f\x77\xff\x4d\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\x7f\x42\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f" "\x31\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x9f\x14\xb7\x34\xd9\xff" "\xfa\x7f\xfd\xff\x5d\xfd\xff\x7f\xae\xd2\xff\xeb\xff\xf5\xff\x77\xfd" "\x5c\xff\x7f\x3c\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf\xff" "\xd7\xff\xb3\x6e\xef\xfd\xff\x4a\xef\x7f\xfe\xbf\xcf\xdd\xff\xe4\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x25\x6e\xb1\xff\x01\x00" "\x00\x60\x1a\xb9\xfb\x9f\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd" "\x4f\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\xdf\xf7\xff\xf5\xff\xfa\x7f\xfd" "\xff\x3e\xe9\xff\x87\xed\xff\xcf\xff\xbf\xde\xb9\xf4\xff\x47\xa2\xff" "\xd7\xff\x1f\xd6\xff\xdf\xfb\x08\xef\xd7\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\x73\xdc\x62\xff\x03\x00\x00\xc0" "\x34\x72\xf7\x3f\x33\x6e\x69\xb2\xff\xaf\x6c\xff\x7f\xd5\x39\x5d\xa3" "\xfe\x5f\xff\xbf\xd3\xff\x0f\xd8\xff\x9f\x6a\xd9\xff\xdf\xf9\x33\xfd" "\xff\x7e\xe8\xff\x87\xed\xff\x97\xe9\xff\x8f\x44\xff\xaf\xff\xf7\xfd" "\x7f\xfd\x3f\xcb\x46\xeb\xff\x73\xf7\x3f\x2b\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\xcf\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe" "\xe7\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x73\xe3\x96\x26\xfb" "\xdf\xf7\xff\xf5\xff\xfa\x7f\xfd\xff\x65\x7d\xff\xff\xea\x39\xfa\x7f" "\xdf\xff\xdf\x1f\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7\xeb\xff" "\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xbc\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\xe9\x9d\xda\xd5\xee\x7f\x7e\xdc\x62\xff\x03\x00\x00\xc0\x34\x72" "\xf7\xbf\x20\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x18\xb7\x34" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x59\xfd\xff\x24\xdf\xff\xd7" "\xff\xef\x8f\xfe\x5f\xff\xbf\xe4\xa8\xfd\xff\x4e\xff\x5f\x7f\x2e\xfa" "\xff\x71\xde\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff\x8b\xe2\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xe2\xb8\xc5\xfe\x07\x00\x00" "\x80\x69\xe4\xee\x7f\x49\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf" "\x34\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf" "\x27\xfd\xbf\xfe\x7f\x89\xef\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf\xfe\x9f" "\x75\xa3\xf5\xff\xb9\xfb\x5f\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x97\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x2b\xe2\x16" "\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x95\x71\xcb\xf9\xfb\xff\xd4\x95" "\x7c\xd5\x95\xa3\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x3e\xe9" "\xff\xf5\xff\x4b\xf4\xff\x17\xee\xff\x4f\x1f\xf2\xc7\xd3\xff\x8f\xf5" "\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\x6f\x89\x5b\xfc\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\xc7\x3d\xce\xfe\x7e\xfd\xff\xd1\xe8\xff\x2f" "\xfc\x7e\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x97\xe8\xff\x7d" "\xff\x7f\xcb\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\xb5\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x5d\xdc\x62\xff\x03\x00" "\x00\xc0\x34\x72\xf7\xbf\x3e\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\xdf\x10\xb7\x34\xd9\xff\xc7\xff\xfd\xff\xeb\xf5\xff\xfa\x7f\xfd\x7f" "\x5c\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x2f\xd3\xff\xeb\xff\xb7\xfc" "\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xdf\x18\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x37\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23" "\x77\xff\x9b\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x2d\x71\x4b" "\x93\xfd\x7f\xfc\xfd\xbf\xef\xff\xeb\xff\x2f\xb2\xff\x3f\xa5\xff\x4f" "\xfa\xff\xf8\xeb\xaa\xff\xd7\xff\x5f\x04\xfd\xbf\xfe\x7f\xa7\xff\xbf" "\x64\x27\xdd\xcf\x6f\xfd\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7" "\x9f\x39\x98\x7a\xfd\xf6\x3f\x00\x00\x00\x74\x70\xe6\xe0\xb7\xa7\x77" "\x6f\x8d\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xb7\xc5\x2d\xf6\x3f" "\x00\x00\x00\x4c\x23\x77\xff\xdb\xe3\x96\x26\xfb\x5f\xff\xaf\xff\x3f" "\xf1\xfe\xdf\xf7\xff\x8b\xfe\x3f\xfe\xba\xea\xff\xf5\xff\x17\x41\xff" "\xaf\xff\xdf\xe9\xff\x2f\xd9\x49\xf7\xf3\x5b\x7f\xbf\xfe\x5f\xff\xcf" "\xba\xd1\xfa\xff\xdc\xfd\xef\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20" "\x77\xff\x3b\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x11\xbb\xff\xec\x3f\xfc" "\x6e\xff\x03\x00\x00\xc0\x94\xde\x75\xf0\xdb\xd3\xbb\x77\xc7\x2d\x4d" "\xf6\x7f\xe3\xfe\xff\xfa\xcb\xed\xff\xaf\xbb\xdb\xbf\xd6\xff\x5f\xf8" "\xfd\xfa\xff\x63\xe9\xff\xcf\x9c\xff\x6b\x4f\xff\xaf\xff\xdf\x12\xfd" "\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7\x8f\xd3\xff\xc7\x0f\x6e\xd0" "\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\x6f\x8f\x17\xe8\xff\xe7\xed\xff\x7d\xff" "\x3f\xae\xfe\x5f\xff\x7f\x21\xfa\x7f\xfd\xff\x4e\xff\x7f\xc9\x4e\xba" "\x9f\xdf\xfa\xfb\xc7\xe9\xff\x7d\xff\x9f\x71\x8d\xd6\xff\xe7\xee\x7f" "\x7f\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x10\xb7\xd8\xff" "\x00\x00\x00\x30\x8d\xdc\xfd\x1f\x8c\x5b\xec\x7f\x00\x00\x00\x98\x46" "\xee\xfe\x0f\xc5\x2d\x4d\xf6\xbf\xfe\x7f\xeb\xfd\xbf\xef\xff\xeb\xff" "\xf5\xff\xfa\xff\xb1\xe9\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f" "\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\x0f\xc7\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\x23\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd" "\xff\xd1\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x58\xdc\xd2\x64" "\xff\xeb\xff\xf5\xff\xfb\xea\xff\xef\xfc\x83\xe8\xff\x9b\xf4\xff\x37" "\xea\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\xc7\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x13\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8" "\xdd\xff\xc9\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x54\xdc\x70" "\xaf\x7b\x9e\xdc\x93\x8e\xd7\xb5\x87\xfc\x3c\x7a\x73\xfd\xbf\xfe\xdf" "\xf7\xff\xf5\xff\xbe\xff\xaf\xff\xdf\x27\xfd\xbf\xfe\x7f\x89\xfe\x5f" "\xff\xbf\xe5\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\xe9\xb8" "\xc5\xdf\xff\x07\x00\x00\x80\x69\xe4\xee\xff\x4c\xdc\x62\xff\x03\x00" "\x00\xc0\x34\x72\xf7\x7f\x36\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\x3f\x17\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\xb3\xfd\xff\x75\xfa" "\xff\x73\xdf\xaf\xff\x1f\x93\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2" "\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x7c\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\xbf\x10\xb7\xd8\xff\x00\x00\x00\x30\x8d" "\xdc\xfd\x5f\x8c\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x2f\xc5\x2d" "\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xdf\x6c\xff\xef\xfb\xff\xe7\xbd\x5f" "\xff\x3f\x26\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7\xeb\xff\xf5" "\xff\xac\x1b\xad\xff\xcf\xdd\xff\xe5\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\x7f\x25\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xbf\x1a" "\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x5f\x8b\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf7\x49\xff\xaf\xff\x5f\xa2" "\xff\xd7\xff\x6f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\x7f" "\x3d\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xdf\x88\x5b\xec\x7f" "\x00\x00\x00\x98\x46\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23" "\x77\xff\x6d\x71\x4b\x93\xfd\x3f\x73\xff\xbf\xf4\x1f\xd3\xff\x9f\xa5" "\xff\xd7\xff\xef\xf4\xff\xfa\xff\x3d\xd3\xff\xeb\xff\x97\xe8\xff\xf5" "\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xdf\x8a\x5b" "\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xb7\xe3\x16\xfb\x1f\x00\x00" "\x00\xa6\x91\xbb\xff\x3b\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff" "\xdd\xb8\xa5\xc9\xfe\x9f\xb9\xff\x5f\xa2\xff\x3f\x4b\xff\xaf\xff\xdf" "\xe9\xff\xf5\xff\x7b\xa6\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e" "\xfd\xbf\xfe\x9f\x75\x27\xd4\xff\x5f\xbb\x3b\xa4\xff\xcf\xdd\xff\xbd" "\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x3f\x6e\xb1\xff\x01" "\x00\x00\x60\x1a\xb9\xfb\x7f\x10\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc" "\xfd\x3f\x8c\x5b\xe6\xd9\xff\xf7\xbb\x75\xe1\x77\xea\xff\x8f\xbd\xff" "\x3f\xf8\x45\xa4\xff\xd7\xff\xef\xf4\xff\xfa\x7f\xfd\xff\x01\xfd\xbf" "\xfe\x7f\x89\xfe\x5f\xff\xbf\xe5\xf7\xeb\xff\xf5\xff\xac\x1b\xed\xfb" "\xff\xb9\xfb\x7f\x14\xb7\xcc\xb3\xff\x01\x00\x00\xa0\xbd\xdc\xfd\x3f" "\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x9f\xc4\x2d\xf6\x3f\x00" "\x00\x00\x4c\x23\x77\xff\x4f\xe3\x96\x26\xfb\x5f\xff\xef\xfb\xff\xfa" "\xff\x56\xfd\xff\xd5\x3b\xfd\xbf\xfe\xff\x0a\xd3\xff\xeb\xff\x97\xe8" "\xff\xf5\xff\x5b\x7e\xbf\xfe\xff\xe8\xfd\xff\x55\xd7\xac\xfd\xaf\x31" "\xab\xd1\xfa\xff\xdc\xfd\x3f\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20" "\x77\xff\xcf\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x17\x71\x8b" "\xfd\x0f\x00\x00\x00\x03\x3a\x75\x49\xff\xad\xdc\xfd\xbf\x8c\x5b\x9a" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xdf\xaa\xff\xf7\xfd\x7f\xfd\xff\x15\xa7" "\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\xfe\xec\xff\xf3\xd7\x9d\xfe" "\xdf\xf7\xff\xf9\x5f\xa3\xf5\xff\xb9\xfb\x7f\x15\xb7\x34\xd9\xff\x00" "\x00\x00\xd0\x41\xee\xfe\x5f\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\x6f\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xb7\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\xdf\xf7\xff\xf5\xff\xac\x1b\xad\xff" "\xcf\xdd\x7f\x7b\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f\x17" "\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xbf\x8f\x5b\xec\x7f\x00\x00" "\x00\x98\x46\xee\xfe\x3b\xe2\x96\x26\xfb\x5f\xff\xaf\xff\x9f\xb2\xff" "\xff\x7f\xfd\xbf\xfe\x5f\xff\x3f\x0a\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff" "\xbf\xe5\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\x87\xb8\xa5" "\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x31\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\xff\x14\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x7f" "\x8e\x5b\x9a\xec\x7f\xfd\xbf\xfe\xff\xe2\xfb\xff\x6b\xeb\xcf\x7b\xd8" "\xfe\xdf\xf7\xff\xf5\xff\xfa\xff\x61\xcc\xdb\xff\xff\x9f\xfe\x5f\xff" "\x7f\xd9\xfd\xff\xcd\xb7\x9c\xfd\xb1\xfe\x7f\x9b\xef\xd7\xff\xeb\xff" "\x59\x37\x5a\xff\x9f\xbb\xff\x2f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d" "\xe4\xee\xff\x6b\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x2d\x6e" "\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\xff\x1e\xb7\x34\xd9\xff\xfa\x7f" "\xfd\xff\x94\xdf\xff\xd7\xff\xeb\xff\xf5\xff\xc3\x98\xb7\xff\xf7\xfd" "\x7f\xfd\xbf\xef\xff\xeb\xff\xf5\xff\xfa\x7f\xd6\x8c\xd6\xff\xe7\xee" "\xff\x47\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xff\x19\xb7\xd8" "\xff\x00\x00\x00\x30\x8d\xdc\xfd\xff\x8a\x5b\xec\x7f\x00\x00\x00\x98" "\x46\xee\xfe\x7f\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xfb\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd" "\xbf\xfe\x9f\x75\xa3\xf5\xff\xb9\xfb\xff\x1b\x00\x00\xff\xff\x98\x52" "\x33\xbf", 24397); syz_mount_image( /*fs=*/0x20000400, /*dir=*/0x200000c0, /*flags=MS_POSIXACL|MS_REC|MS_SILENT|MS_NOSUID|MS_NODIRATIME*/ 0x1c802, /*opts=*/0x20002740, /*chdir=*/1, /*size=*/0x5f4d, /*img=*/0x20009040); break; case 1: memcpy((void*)0x20000240, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000240ul, /*flags=O_SYNC|O_CREAT|FASYNC|O_RDWR*/ 0x103042, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: *(uint64_t*)0x20000040 = 0x20000140; memset((void*)0x20000140, 29, 1); *(uint64_t*)0x20000048 = 1; syscall(__NR_pwritev2, /*fd=*/r[0], /*vec=*/0x20000040ul, /*vlen=*/1ul, /*off_low=*/0x7fff, /*off_high=*/0, /*flags=*/0ul); break; case 3: memcpy((void*)0x20000140, "blkio.bfq.io_service_bytes\000", 27); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000140ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[1] = res; break; case 4: sprintf((char*)0x20000000, "0x%016llx", (long long)0); syscall(__NR_write, /*fd=*/r[1], /*buf=*/0x20000000ul, /*len=*/0xffffff6aul); break; case 5: memcpy((void*)0x20000180, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000180ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[2] = res; break; case 6: memcpy((void*)0x20000180, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000180ul, /*flags=O_NOCTTY|O_DIRECT|O_CREAT|O_RDWR*/ 0x10142, /*mode=*/0); if (res != -1) r[3] = res; break; case 7: syscall(__NR_sendfile, /*fdout=*/r[3], /*fdin=*/r[3], /*off=*/0ul, /*count=*/0x7ffff000ul); break; case 8: syscall(__NR_sendfile, /*fdout=*/r[3], /*fdin=*/r[2], /*off=*/0ul, /*count=*/0x20000049ul); 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; }