// https://syzkaller.appspot.com/bug?id=aaf67f22096441ce0053b1c4b7252e83cfb03b78 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <dirent.h> #include <endian.h> #include <errno.h> #include <fcntl.h> #include <setjmp.h> #include <signal.h> #include <stdarg.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <sys/mount.h> #include <sys/prctl.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/types.h> #include <sys/wait.h> #include <time.h> #include <unistd.h> #include <linux/loop.h> #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000040, "bcachefs\000", 9); memcpy((void*)0x20000000, "./file1\000", 8); memcpy( (void*)0x20000480, "\x61\x63\x6c\x2c\x64\x69\x62\x65\x63\x74\x5f\x69\x6f\x2c\x5c\x6f\x72\x65" "\x63\x6f\x76\x65\x72\x79\x2c\x66\x03\x00\x6b\x2c\x6a\x6f\x75\x72\x6e\x61" "\x6c\x5f\x66\x6c\x75\x73\x68\x5f\x64\x69\x73\x61\x62\x6c\x65\x64\x2c\x6e" "\x6f\x72\x65\x63\x6f\x76\x65\x72\x79\x2c\x6a\x6f\x75\x72\x6e\x61\x6c\x5f" "\x74\x72\x61\x58\x73\x61\x63\x74\x69\x6f\x6e\x5f\x6e\x61\x6d\x65\x73\x2c" "\x72\x65\x63\x6f\x6e\x71\xb2\x0d\xf9\x2f\x56\x00\xea\x6c\x6c\x6f\x63\x2c" "\x4a\xbf\xbc\x92\x61\x74\x61\x5f\x69\x6f\x2c\x00", 120); memcpy( (void*)0x20005e40, "\x78\x9c\xec\xdd\x7f\x90\x5c\x55\xbd\x20\xf0\x73\xbb\x7b\x32\x9d\x99\xfc" "\x98\x04\x78\x44\x90\xc9\x10\xc8\x93\x07\x4f\x33\xe1\x57\xa1\xbe\x7a\x46" "\xd7\x5f\x0b\x48\xc5\xc2\x52\xc2\x06\x61\x20\x13\x8c\x26\x21\x95\x04\x81" "\x80\x12\x5c\x70\xa1\x00\x0b\x2d\x2d\x45\xfd\x03\x2d\xa4\x16\x8c\x16\x55" "\xb0\x4a\xa4\x44\x7e\x6c\xc2\x2a\x4a\xb1\xba\xd4\x16\x52\xab\xbb\xe8\x1f" "\xee\x22\x4b\x4a\x20\x52\x96\x3a\xaf\x66\xfa\x9e\x9e\x9e\x3b\x7d\xe7\xf6" "\xf4\xf4\x84\x04\x3e\x9f\x82\xb9\x7d\x4f\xdf\xfe\x9e\x73\xcf\x3d\x7d\xe7" "\x7e\x4f\xdf\x4c\x07\x00\x00\x00\xde\x10\xf6\xde\xb0\x6d\xff\x39\x47\xbd" "\xef\x67\x9f\x1b\x7e\xe5\xda\x0f\xfe\x68\xd3\x75\xa1\xb7\x3c\x56\x5e\x8d" "\x1b\xf4\xa5\xcb\x2b\x5f\xab\x16\x72\x20\x75\x57\x96\x8c\x2d\xb3\xe3\xe2" "\x2d\x57\xdf\xf3\xfb\x81\x4b\xde\xf3\xd3\x7b\x7b\xbe\xf3\xea\x9e\x75\xc7" "\xae\xff\xf5\x7b\x0f\xbb\xe4\xc1\x4f\x9e\xb9\xfb\xf6\x6f\x3c\xf2\xf2\xfc" "\xfb\xff\xfe\x5c\x51\xdc\x38\x9e\x4e\x1c\x5f\x4f\x5e\x48\x42\xa8\xfe\x78" "\xdf\x57\x3e\xbf\xe7\x89\x23\x47\xcb\x92\x10\x42\x39\xe9\xdb\x19\xc2\xa2" "\x64\xf1\x23\x8b\x92\x4c\x88\xc1\xbf\x84\x10\xd6\xa5\x2b\x7f\x1f\x19\xb9" "\xb6\xf1\xc9\xfb\x5e\x39\x65\xfd\xe8\xf2\xba\x9b\xbb\x27\xbc\x68\x61\x26" "\x88\xf1\xfe\xc6\x56\x4d\xc7\xd9\x8e\xfd\x57\x9c\x14\x7e\xf3\xee\x35\xd7" "\xff\x62\xe9\xf7\xbf\xd7\xb5\xeb\xf9\x9d\xe3\x9b\x24\xd5\x86\xf1\x14\xc2" "\x82\x8b\x1a\x5f\xdf\x15\x42\x98\x9b\xfe\x3f\x2a\x8e\xb6\x25\xf1\xc5\xe9" "\x72\x75\x08\xa1\xa7\xe1\x75\x67\x14\xb4\xeb\xb8\xf1\xea\xa7\xdc\x6e\x45" "\xce\xfa\xd1\xe9\x72\x4e\xba\xec\x2d\xa8\x2f\x3e\xbf\x2c\xb3\x5e\xca\x6c" "\x97\x5d\x8f\xba\x32\xcb\x9e\x82\xfa\x66\x2a\xaf\x1d\xed\x6e\x57\x64\x5e" "\x66\x7d\xea\xa3\x32\x7d\x79\xed\x8c\xe5\x8b\xd2\xe5\x0f\xd3\xe5\x89\xd3" "\x8c\x5f\xae\x9f\x4f\x43\x29\x09\x95\x7a\xf3\x37\x26\xe3\x63\x24\x34\x1c" "\xb7\x24\x24\x63\xc7\xb2\x5a\x5f\x2f\xd5\x8f\x6d\x48\x63\x65\xd6\x93\xcc" "\x7a\x29\xb3\x5e\xee\xca\xec\xd7\x58\xbd\xe9\x40\x2b\x27\xc9\xc4\xf2\xb8" "\x5d\xa6\x3c\x9e\x8e\x2b\x69\xf9\xb1\x8d\xe7\xea\x26\xce\xcd\x29\x7f\x53" "\xba\xac\xa6\x6f\xd4\x57\xe3\x7a\xc8\x3e\xa8\xe9\x9d\xf4\xa0\xbe\x5f\x63" "\x62\xbb\xf6\x4d\xd1\x96\x03\xa1\xd4\x70\x0e\x6a\x56\x5e\x3f\xf0\xe9\xc1" "\xe8\x4d\xcb\x7a\x93\xc5\x93\x5e\x33\xd2\x44\x7c\x6e\xcf\x9a\x5b\x96\x97" "\xd7\x3e\xba\xb7\x2f\xa7\x1d\xc9\xbd\x49\x1a\x3f\x69\x2b\xfe\x8e\x9f\x2f" "\x9a\xf7\xf1\xef\xde\x74\xf9\x92\xbc\xf8\x17\x95\xd2\xf8\xa5\xb6\xe2\xff" "\xf6\xac\x27\x5f\x3c\xff\xa6\x6f\x7f\x3d\x37\xfe\x6d\x31\x7e\xb9\xad\xf8" "\x27\x3f\xd4\xf3\xc2\x59\x8f\xdd\xb0\x2c\xb7\x7f\xf6\xc5\xfe\xa9\xb4\x15" "\x7f\xe8\xb9\xc7\x6f\x5d\x7a\xf8\xc5\xbb\x72\xdb\x7f\x47\x8c\x5f\x6d\x2b" "\xfe\xaa\xdd\x4f\x76\xcf\xdf\xff\xd0\xc3\xb9\xed\x1f\x8c\xfd\x33\xb7\xad" "\xf8\xcf\xbe\xf3\xfd\xbf\xbb\xfb\xe9\x07\x9e\xcf\x8d\x1f\x62\xfc\x9e\xb6" "\xe2\xaf\xdd\xbd\xe5\x0b\xdd\xfd\xfb\x4f\xc8\x8d\xff\x70\xec\x9f\xde\xf6" "\xc6\xcf\x4b\xbb\x4e\x7f\xa6\xbf\xff\x0f\x03\x79\xf1\x9f\x8a\xf1\xe7\xb7" "\x15\xff\xae\x9d\xb7\xbf\xe3\xce\x85\x37\x9f\x99\x7b\x7c\x57\xc7\xfe\xe9" "\x6b\x2b\xfe\xd9\xc7\x3f\x78\xfd\xbc\xfd\x0f\x1c\x93\x77\xee\x4c\xee\xe8" "\xd4\x6f\x4e\x80\x37\xa6\xc3\xd2\x6b\xac\x1b\xd3\xf5\x76\xf3\xcc\x99\x6a" "\xc8\x17\xbe\x36\x50\xa9\x5d\xf3\xcd\x4b\xff\x9f\xdf\xc9\x8a\x32\x17\x9f" "\xa3\xf5\x2c\xe8\x64\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x08\x21\x1c\x71\xd2\x7f\xfb\xc0\xff\xf9\x68" "\xdf\x0b\x95\x74\xbd\x3b\x7d\xf0\x6c\xa9\xb6\x8c\xe5\x73\x42\x48\xe6\x86" "\x10\xb6\x6d\x1f\xda\xba\x7d\xc3\xe6\x4b\x07\x3e\x79\xd9\xe5\x5b\x37\x0f" "\x6d\x1c\x18\xda\x3e\x30\xbc\x79\xfb\xd6\xab\x06\x4e\xfd\xe7\x81\xad\xc3" "\x5b\x36\x0e\x5d\x35\xfa\xec\xe0\x5b\x4f\xa9\xbd\x6e\x71\x48\x6a\xcb\xe4" "\x98\x49\x75\x77\x8f\x8c\x8c\x94\xfa\x26\x96\xc5\xfa\xfe\xdd\xf1\xbb\x7e" "\xb3\xfc\x8c\xff\xfb\xc7\x10\x06\x8f\xf8\x55\x7f\x25\xb7\xfd\x2b\x6e\xdf" "\x74\xe7\xe1\x4d\x7e\x66\x24\xab\x46\xde\xb5\xe9\xf2\x73\x7e\x75\xda\xb7" "\xd2\xfd\xea\x4b\xdb\xd5\xd7\xa4\x5d\x23\x23\x23\x23\x21\xa7\x5d\xff\xff" "\xbc\xbf\xde\xf9\xa5\x7d\xbf\x3f\x21\x84\xc1\x7f\x98\xaa\x5d\x8f\x3f\xfb" "\xaf\x3f\x99\xd0\xa0\xb1\x82\xf1\x38\xa9\x52\x77\xa8\x35\xa8\x3b\xe9\x69" "\xda\x8e\x7a\xab\xd3\xf6\xc4\xfe\xaa\xac\xdf\xb0\x71\x78\x70\xea\xfe\x1d" "\x7d\x7d\x39\x67\x3f\xfe\xc3\xd5\xcf\xff\x65\xfd\x95\x5f\xfc\x6b\xad\x7f" "\xab\xb9\xfb\xd1\x62\xff\xce\x5d\x35\xb2\xb1\xf4\xd5\x35\x67\xff\xed\xab" "\xd7\xd4\x0a\x8a\xda\xf5\x5a\x1d\xf7\xa2\xfe\x8e\x7b\x11\xdb\x17\xfb\xaf" "\x9a\xf6\xf7\x82\x74\xbf\x16\xe4\xec\x57\x25\x67\xbf\x6e\xf8\xc5\xc3\x4f" "\xff\xf8\xa8\x9b\x5e\xde\x19\x06\x2b\x2f\x2d\x9d\x5c\x77\xd1\x7e\x75\xa5" "\x03\xa0\x2b\x79\x53\x4b\xf5\xc6\x1a\x7a\x92\x45\x13\xca\xab\xe9\xf6\xf1" "\x88\xc7\xd7\xad\xd8\xbe\x69\xcb\x8a\x6d\x57\xed\x78\xeb\x86\x4d\x43\x97" "\x0e\x5f\x3a\xbc\xf9\xed\x2b\x4f\x5d\x79\xfa\xe0\x69\xa7\x9f\xb6\x62\x6c" "\xcf\x57\x74\x78\xff\x63\xfd\xff\xd8\xe2\xfe\x1f\x98\xf1\xb4\xf0\xd3\x3b" "\x7f\x18\x7f\xb6\x36\x9e\x8a\xda\x55\xd4\x1f\xa3\xed\x2a\xee\x8f\xc6\x16" "\xe5\xbd\xff\x7a\xce\xfd\xfc\x97\xdf\x7e\xfb\x63\xe7\xd4\x0a\x8a\xc6\x79" "\xdc\xba\x7e\x3e\x49\x97\x3d\xa3\xc7\x79\x65\x68\x18\x6f\x93\xfb\xaa\xd9" "\x7e\x15\xf5\x43\x08\x61\xa0\x59\x3f\xbc\xf8\xf2\x99\xe1\xc8\xff\xb9\xe1" "\xfa\xa2\xf3\x50\xe3\x91\x69\xfc\x99\x91\xac\x1a\x79\x62\xd9\x9f\xbe\x75" "\xc6\x37\x97\xfc\x4b\xad\xe0\x80\x9c\xe7\x1b\x1b\xd4\xe6\x79\xbe\xde\xea" "\xf1\xf6\x8c\xf5\x57\x35\x3d\x1e\x23\x07\x69\xff\x76\x87\x72\xba\x5f\xbd" "\x4d\xdb\xb5\xf2\x89\xc7\xba\x6e\xd9\xfb\xc7\xcf\xd4\xdb\x37\x67\x4e\xb8" "\x72\x68\xfb\xf6\xad\x2b\x6b\x3f\xe7\xa5\x2d\x9d\x97\x1c\xdd\xb4\x5d\xd9" "\xd2\xb8\x5f\x4b\xc7\x7e\x96\x43\xda\x2d\xa1\x3e\x4c\x9b\x8c\xd7\x51\x5d" "\xa1\xd6\xbe\xec\xf9\x33\x6e\x9e\xed\xd5\xde\x50\x1e\x7b\xae\x37\x59\xdc" "\x74\xbf\xb2\xe2\x73\x7b\xd6\xdc\xb2\xbc\xbc\xf6\xd1\xbd\x79\x3d\x9d\xdc" "\x5b\xab\x71\x6e\x98\x5f\x5b\x26\x6f\xce\xd9\x72\x63\xe6\x85\xe5\x7a\x83" "\x9b\xd5\x7f\xb0\xbe\xff\x8a\xc6\x47\xff\x07\xbe\x79\xff\x47\xef\xff\xc1" "\xa9\x93\xc6\xc7\xc9\xb5\x9f\x45\xfb\x95\xe4\xec\xd7\xf7\x9f\xbe\xeb\xcb" "\xdf\xf9\xe2\x7f\xfa\x41\xe7\xf6\xeb\x03\xff\xfa\x64\xdf\x9f\xfe\xd7\x27" "\x96\xd7\x0a\x0e\x95\xf3\x4a\xbd\xd5\x69\x7b\x92\xc6\xf3\xca\xc9\x21\x14" "\xbd\xff\x96\x86\xe6\xfb\x91\xfb\xfe\x2b\x35\xdf\x9f\xa2\xf7\x5f\xb6\x9e" "\xf1\xed\x9b\xc7\x1b\xc8\xac\xb7\xfb\x7e\x3d\xf9\xa1\x9e\x17\xce\x7a\xec" "\x86\x65\xb9\xef\xd7\x7d\xad\xbe\x5f\xaf\x99\xb0\x56\x2e\x78\xbf\x1e\x2c" "\xe3\x27\xfb\xfe\x4a\x2a\x13\xdb\x31\x7b\xef\xaf\x09\x03\x25\x59\x35\xf2" "\xd3\x1b\x0f\xdb\xf9\xc8\xb5\xab\x8f\xaa\x15\x14\x8d\xeb\xfa\xd6\xcd\xc6" "\xf5\x29\x2d\xe4\x1f\x39\xfb\xf5\x93\xf3\x9f\xe9\xbf\x6c\xe0\x3f\xfe\x8f" "\xce\x9d\x37\xee\xf9\xe7\xfb\x2e\xfc\xf5\xd0\xaa\xcf\xd6\x0a\xda\x3f\xee" "\xb1\x2d\x9d\x39\xee\xd5\xb4\x7f\xab\x39\xfd\x5b\x6f\x75\xcc\x3b\x1b\xfb" "\xf7\x6d\x97\x5c\xb6\x71\x5d\xad\xfc\xe0\xbd\xfe\x4d\x97\x05\xf9\x4f\x3c" "\x95\x6c\xbb\x6a\xc7\xa7\x86\x36\x6e\x1c\xde\xba\xad\xb5\xfd\x6a\xf5\xf7" "\x69\xac\x27\xdb\xcb\xed\xfe\x3e\x8d\x67\xb7\xc5\x05\xfb\x55\x9a\xb4\x5f" "\xb3\xf7\xa0\x95\xfe\x6a\xf5\xfd\x16\xdb\xbf\xae\xed\xfe\x9a\xf8\x7e\xeb" "\x0d\x49\x5b\xbf\x17\x76\xfc\x7c\xd1\xbc\x8f\x7f\xf7\xa6\xcb\xfb\x26\xbd" "\x2a\xad\xe8\xa2\x52\x1a\xbf\xd4\x56\xfc\xdf\x9e\xf5\xe4\x8b\xe7\xdf\xf4" "\xed\xaf\xe7\xc6\xbf\x2d\xc6\xaf\xb4\x15\x7f\xe8\xb9\xc7\x6f\x5d\x7a\xf8" "\xc5\xbb\x72\xe3\xdf\x91\xa4\xf1\xab\xd3\x8a\x1f\x6b\x58\xb5\xfb\xc9\xee" "\xf9\xfb\x1f\x7a\x38\x37\xfe\x60\x6c\xff\xdc\xb6\xda\xff\xec\x3b\xdf\xff" "\xbb\xbb\x9f\x7e\xe0\xf9\xdc\xf8\x21\xc6\xef\x6d\xaf\xff\x5f\xda\x75\xfa" "\x33\xfd\xfd\x7f\xc8\x8d\xff\x54\x92\xd6\x33\x7a\x8d\x14\xc2\x7d\xaf\x9c" "\xb2\xbe\xb6\x9e\x84\xae\xf4\xfd\x16\xdb\xd1\x35\xa1\x5d\x21\xbb\x9e\x64" "\xd6\x4b\x99\xf5\x72\xe3\x7a\xa9\x36\xd7\x5a\xaf\xa0\x9c\x24\x13\xcb\xe3" "\x76\x69\xf9\xb1\x0d\x6d\x69\xe6\x63\x39\xe5\xf1\x2a\xac\xba\xa4\xb6\x7c" "\x35\xae\x87\xec\x83\xa9\xcb\x0f\x36\xa5\x86\x73\x7f\xb3\xf2\xa2\xeb\x54" "\x00\x80\xd7\xbb\xf8\xf9\x7f\xbc\x06\x8d\x9f\xff\x0f\xa7\x17\x4a\xf9\x33" "\x0d\x30\x6e\xa6\x79\xd8\x92\x9c\xb8\x31\x0f\x1b\x9f\xcf\x99\x33\xe1\xf9" "\x25\x69\xfc\xf8\xfa\x38\x0f\xd8\xff\xb6\x30\x38\xba\xbc\x6e\xa0\x76\xa1" "\x3f\xdd\xcf\x11\xe2\xfb\x21\x3b\xcf\x19\xeb\x39\xe1\xb8\x89\x31\xda\x9d" "\xe7\xcc\x9f\x7f\xbf\x60\xec\xe7\xb2\x4c\x69\x6c\x57\x6d\xbe\xbc\xd2\x90" "\x87\xa6\x26\xe7\x35\x95\xd0\xc2\xfc\xfb\xe4\x7a\x9a\xce\xbf\xd7\x4f\x07" "\x99\xdd\x2f\x9e\x1f\x1f\xb8\x71\x52\xb3\x06\x1a\xe6\xad\xb2\xc7\xaf\x2b" "\x9d\x31\x6b\x76\xbf\x43\xa6\xbd\x95\xd1\x08\x79\xe3\x23\x3b\x2f\x16\xef" "\xe7\xe8\x5f\x10\x56\x8f\xd5\xd7\xe2\xf8\xc8\xde\x47\x13\x8f\x43\xf6\x3e" "\x9a\x58\xcf\x51\x99\x13\x67\xbb\xf7\xd1\x14\x7d\x3e\x53\x34\x3e\x62\xb3" "\xa7\x18\x1f\x63\x4d\x2e\xfe\x7c\x63\xf2\xf1\x0b\x53\xf4\xef\xf8\xf1\x6b" "\x1e\x2d\x7b\xfc\xa6\x71\xbc\xab\xa3\xdb\xf7\xa6\xfb\x34\x5b\x9f\xcf\x76" "\x60\xde\xb0\xe9\x29\xad\xcd\x79\xc3\xfa\x94\x46\xeb\xf3\x86\xb3\xfb\x79" "\xd8\xc1\x36\x2f\x19\x9f\x3b\x58\xe6\x25\x0f\xf6\x79\xc3\x58\x1e\xf7\xa3" "\xd2\xe2\x7c\xe2\x47\x73\xca\x3b\x35\x9f\x18\x4f\x17\xb1\x5d\xfb\xa6\x68" "\xcb\x81\x60\x3e\x11\x78\xbd\x8a\xf9\x7f\xfc\x1d\x31\x9a\xff\x8f\x5e\x80" "\xff\x39\xb3\x5d\xd1\x75\x68\xf6\xaa\x31\xc6\xcb\xbd\x4f\xa8\xdc\xbc\x3d" "\x45\xf7\xfd\x4c\xbe\x4f\xaf\xa7\xad\xdf\xe3\x6b\x77\x6f\xf9\x42\x77\xff" "\xfe\x13\x72\xaf\x73\x1e\x6e\xf5\xbe\x9f\x2d\x13\xd6\x7a\x0a\xee\xfb\x29" "\xea\xc7\xe5\x99\xf5\xc2\x7e\xcc\x99\xa0\x29\xca\xf7\xb2\xf5\x14\xf5\x7b" "\xf6\xbe\x8c\xde\x30\xbf\xad\x7e\xbf\x6b\xe7\xed\xef\xb8\x73\xe1\xcd\x67" "\xe6\xf6\xfb\xea\xda\x2f\xd2\xe2\x7e\xff\xf2\x84\xb5\xf9\x05\xfd\x7e\x08" "\xe4\x0b\xcd\xe3\x1f\xb0\xfb\x0c\xe4\x0b\x4d\xe3\x1f\x22\xf7\x31\x14\xcd" "\x9f\xbd\x66\xf9\x48\x7a\xe3\xd3\x6c\xe5\x23\x1f\xc9\x29\x9f\x6e\x3e\xd2" "\x33\xe9\x41\x7d\xbf\xc6\x1c\x72\xf9\xc8\xf8\xc1\xb8\xe7\x91\x03\xd5\x38" "\x00\xe0\x90\x10\xf3\xff\xfa\xe7\x67\x69\xfe\xff\xbf\xe3\x06\xe9\x75\x44" "\x51\xde\x7a\x62\x66\x3d\xc6\xcb\xcd\x5b\xbb\x9a\xb7\x27\x2f\x6f\xfd\x50" "\xba\xbc\x32\xb3\x7d\x6f\xfa\x2f\x2a\xa6\x7b\xdd\x7c\xf6\xf1\x0f\x5e\x3f" "\x6f\xff\x03\xc7\xe4\xe6\x2d\x77\xb4\x9a\x87\xfe\xe7\x09\x6b\x7d\x85\x79" "\xe8\xcc\xf2\xe6\xdc\x3c\x62\x75\x67\xee\x17\xcf\xcd\x23\xea\x79\xd6\xcc" "\xf2\xc4\xdc\xf6\xd7\xf3\xc4\x99\xe5\xe9\xb9\xf1\xeb\x79\xfa\xcc\xf2\xe8" "\xdc\xfe\xa9\xe7\xd1\x33\x9b\x07\xc8\x8d\x5f\x9f\x07\x38\xd4\xf3\xdc\x82" "\xf9\xba\x4c\x65\x71\xb5\xd5\xf9\xba\xd7\x6d\x1e\x9d\xfe\xf3\xd9\xd9\xca" "\xa3\xcf\xcd\x29\x9f\x6e\x1e\xdd\x3b\xe9\x41\x7d\xbf\xc6\x1c\x42\x79\xf4" "\xff\x1b\x2b\xc8\xf9\x3d\x05\x00\x70\xa8\x8a\xf9\x7f\xbc\x8c\x8b\xf9\xff" "\x63\x99\xed\x66\xfa\x39\x7b\x6e\x5e\xd0\xa1\xeb\xf6\xec\xdf\x03\xa9\xc7" "\x7f\xea\x40\xe5\x95\xb3\x9d\xf7\xcd\x76\xde\x3a\xdb\x79\xfd\x6c\xcf\x4b" "\x1c\xea\x79\xf1\x6c\xcf\x0b\xcd\xee\x3c\xd9\x1b\x3e\x2f\x4e\x2b\x7d\x03" "\xe4\xc5\x35\xf2\x62\x00\x80\x43\x52\xcc\xff\xe7\xa6\xeb\xf9\xf9\xff\xcc" "\xf2\x93\x66\xf9\x5b\xd7\x84\xfc\x44\x7e\xde\x34\xbe\xfc\xfc\x20\xc9\xcf" "\x0f\xf5\xf9\x2f\xf9\xff\x41\xf8\xb9\xf8\xdf\xee\x7a\xcb\xbf\x1f\x7b\x20" "\xff\x07\x00\xe0\x40\x88\xf9\x7f\xfc\x67\x8f\xf1\xef\xff\xfd\xd7\x74\x3d" "\xfb\x77\xeb\xe5\xe9\x39\xf1\xe5\xe9\xf2\xf4\xa9\xc6\x4f\xcb\x79\x7a\xe7" "\xe7\xd9\x82\xfb\x00\x5e\xdb\x79\x80\xb9\xe3\xdb\xbb\x0f\x00\x00\x80\xd7" "\x42\xd7\x58\xa6\x34\xf9\xdf\xd9\x5f\x90\x2e\xb3\xff\xce\x3e\xef\xdf\xe5" "\x9f\x9f\xb3\x7d\xab\x2a\xe9\xe5\xf1\xc5\xdb\xb7\x0e\x0f\x5f\x78\xf9\x96" "\x75\x43\xdb\x87\x2f\xdc\x7c\xd9\xba\xe1\x6d\x17\x5e\xb1\x75\xc3\xf6\xed" "\xc3\x9b\x6b\xdb\xcd\x34\x6f\xcc\xcd\x5b\xd2\xbc\xb1\x2b\x54\xd2\xfe\x68" "\xbe\x5d\x36\x6f\x5b\x98\xfe\x3d\x84\x85\x39\x7f\x0f\x21\xbb\x7d\x0c\x7b" "\xf4\xd8\x83\xc9\x7f\x0f\x21\x5b\xed\xdc\x82\xbf\x23\x30\x7e\xfc\x5a\x6b" "\x6f\xde\xf1\x2b\x4d\xb1\x7d\xb3\xf1\x91\x77\xbc\xf3\xe2\x7f\x2c\x67\xfb" "\xa8\x7e\xfc\x2f\xf9\xc4\xc9\x17\xae\xdf\x76\xe1\x86\xcd\x1b\xb6\x6f\x18" "\xda\xb8\x61\xc7\xf0\xc4\xed\x46\xb3\xd6\x9e\x69\x7c\x6f\x66\xec\x96\x69" "\x7d\x5f\x6a\xe6\xc7\x24\xa5\xe9\x7f\x7f\x67\x67\xda\x51\x9a\xd4\x8e\xae" "\xb4\x3f\xf2\xbe\x9f\x3d\xc9\xb4\x63\x51\xda\x92\x45\x79\xdf\x7f\x90\xd3" "\xee\x9f\xfd\xf7\x2f\x7d\xfa\xf8\x91\xbf\xde\x1d\xc2\xe0\x11\xe5\x37\xcf" "\xa8\xff\x92\x55\x23\xff\xe5\xbc\xe1\x0f\x6d\xdf\xfb\xab\x2d\xa3\xed\x2f" "\x4d\xd9\xfe\xfa\x96\x69\xbb\x8a\xbe\xaf\x34\xbb\x7d\xdc\x9f\xca\xc6\xcb" "\xb6\x6d\x3f\x69\xfd\x65\x97\x6f\xce\x7e\xa3\x64\x7b\xe2\x7c\x46\xa9\xbe" "\x3e\x4b\xf3\x19\xe9\xdb\xbf\xdc\xe2\xfc\xc4\xda\x9c\xf2\xe9\xde\xa7\x50" "\x9e\xf4\xe0\xe0\xd4\xf2\xfc\x04\x00\x00\x13\xc4\xcf\xff\xe3\xf5\x6c\xfc" "\xfc\xf0\x8b\xe9\x05\x54\x2c\x6f\x3d\x4f\x9f\xd9\xe7\xc7\xb9\x79\xfa\x60" "\x6b\x79\x7a\xf6\x7b\xc9\x8a\xf2\xf4\xec\xf6\x71\x7f\x5b\xcd\xd3\xab\x33" "\xcc\xd3\xb3\xf5\x17\xe5\xe9\xcd\xb6\x6f\x96\xa7\xe7\xe5\xdd\x79\xf1\x3f" "\x92\xb3\xfd\x74\xb5\x3e\x4e\x66\x76\x9f\x47\xee\x38\xb9\xa8\xb5\x71\x92" "\xfd\x3e\x83\xa2\x71\x92\xdd\x7e\xba\xe3\x24\x99\xe1\x38\xc9\xd6\x5f\x34" "\x4e\x9a\x6d\xdf\x6c\x9c\xe4\x1d\xf7\xbc\xf8\x1f\xce\xd9\x3e\x4f\xeb\xe3" "\x61\x66\xf7\xe5\xe4\x8e\x87\xdb\x5a\x1b\x0f\xff\x94\x59\x2f\x1a\x0f\xd9" "\xed\xa7\x3b\x1e\x4a\x33\x1c\x0f\xd9\xfa\x8b\xc6\x43\xb3\xed\x9b\x8d\x87" "\xbc\xe3\x9b\x17\xff\x9c\x9c\xed\x5b\x35\x71\x7c\x8c\x0e\x8c\xb1\x71\x31" "\x7c\xe1\x15\x97\x6d\xfd\x54\xc3\x76\xb3\xfd\xfd\x17\x33\x6f\xdf\xec\x7e" "\xff\x47\xbb\x5a\x6f\xff\xec\xde\xf7\x35\xfb\xed\x9f\xdd\xfb\xca\x66\xbf" "\xfd\x33\xbb\xaf\x2c\xb7\xfd\x4f\xcd\x6c\x26\xac\xf5\xf6\xcf\xee\xf7\xbb" "\xb4\xeb\x80\xcd\xd7\xa6\x37\x9b\x15\xdd\x7f\x56\x34\x8f\xbb\x26\xa7\x7c" "\xba\xf3\xb8\x73\x26\x3d\x38\x38\x99\xc7\x85\xd7\x4e\xcc\xff\xe3\xc7\x3d" "\x31\xff\xbf\x39\x5d\x76\xfa\x63\xa0\x43\xff\x7b\xd2\x7c\x8f\x59\xd3\xf8" "\x1d\xfa\x1e\xb3\xa2\xeb\x98\x37\xc6\xef\xf3\x3f\xfb\x7d\x0e\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x3a\xd7" "\x5d\x59\x32\xb6\xdc\x7b\xc3\xb6\xfd\xe7\x1c\xf5\xbe\x9f\x7d\x6e\xf8\x95" "\x6b\x3f\xf8\xa3\x4d\xd7\xbd\xe5\xea\x7b\x7e\x3f\x70\xc9\x7b\x7e\x7a\x6f" "\xcf\x77\x5e\xdd\xb3\xee\xd8\xf5\xbf\x7e\xef\x61\x97\x3c\xf8\xc9\x33\x77" "\xdf\xfe\x8d\x47\x5e\x9e\x7f\xff\xdf\x9f\x2b\x0c\xdc\x37\xf6\xb3\x72\x62" "\xba\x5a\x0d\x21\x79\x21\x09\xa1\xfa\xe3\x7d\x5f\xf9\xfc\x9e\x27\x8e\x1c" "\x2d\x4b\x42\x08\xe5\xa4\x6f\x67\x08\x8b\x92\xc5\x8f\x2c\x4a\x32\x11\x06" "\xff\x12\x42\x58\x57\x6f\xe7\xc4\x27\xef\x7b\xe5\x94\xf5\xa3\xcb\xeb\x6e" "\xee\x9e\x50\xbe\x30\x13\x24\xbb\x5f\xa1\xb7\x1c\xdb\xd3\xd8\xce\x10\xae" "\x2c\xdc\x23\x0e\x41\xd5\x74\x9c\xed\xd8\x7f\xc5\x49\xe1\x37\xef\x5e\x73" "\xfd\x2f\x96\x7e\xff\x7b\x5d\xbb\x9e\xdf\x39\xbe\x49\x52\x6d\x18\x4f\x21" "\x2c\xb8\xa8\xf1\xf5\x5d\x21\x84\xb9\xe9\xff\xa3\xe2\x68\x5b\x12\x5f\x9c" "\x2e\x57\x87\x10\x7a\x1a\x5e\x77\x46\x41\xbb\x8e\x6b\xb1\xfd\x2b\x72\xd6" "\x8f\x4e\x97\x73\xd2\x65\x6f\x41\x9c\xf8\xfc\xb2\xcc\x7a\x29\xb3\x5d\x76" "\x3d\xea\xca\x2c\x7b\x0a\xea\x9b\xa9\xbc\x76\xb4\xbb\x5d\x91\x79\x99\xf5" "\xec\xc9\x68\xa6\xf2\xda\x19\xcb\x17\xa5\xcb\x1f\xa6\xcb\x13\xa7\x19\xbf" "\x1c\xff\x4f\x42\x29\x09\x95\x7a\xf3\x37\x26\xe3\x63\x24\x34\x1c\xb7\x24" "\x24\x63\xc7\xb2\x5a\x5f\x2f\xd5\x8f\x6d\x48\xf7\x3f\xb3\x9e\x64\xd6\x4b" "\x99\xf5\x72\x57\x66\xbf\xc6\xea\x4d\x07\x5a\x39\x49\x26\x96\xc7\xed\x32" "\xe5\xf1\x74\x5c\x49\xcb\x8f\x6d\x3c\x57\x37\x71\x6e\x4e\xf9\x9b\xd2\x65" "\x35\x7d\xa3\xbe\x1a\xd7\x43\xf6\x41\x4d\xef\xa4\x07\xf5\xfd\x1a\x13\xdb" "\xb5\x6f\x8a\xb6\x1c\x08\xa5\x86\x73\x50\xb3\xf2\xfa\x81\x4f\x0f\x46\x6f" "\x5a\xd6\x9b\x2c\x9e\xf4\x9a\x91\x26\xe2\x73\x7b\xd6\xdc\xb2\xbc\xbc\xf6" "\xd1\xbd\x7d\x39\xed\x48\xee\x4d\xd2\xf8\x49\x5b\xf1\x77\xfc\x7c\xd1\xbc" "\x8f\x7f\xf7\xa6\xcb\x97\xe4\xc5\xbf\xa8\x94\xc6\x2f\xb5\x15\xff\xb7\x67" "\x3d\xf9\xe2\xf9\x37\x7d\xfb\xeb\xb9\xf1\x6f\x8b\xf1\xcb\x63\xf1\x9b\xf5" "\xe9\x54\xf1\x4f\x7e\xa8\xe7\x85\xb3\x1e\xbb\x61\x59\x4e\xff\x54\x93\x7d" "\xb1\x7f\x2a\x6d\xb5\x7f\xe8\xb9\xc7\x6f\x5d\x7a\xf8\xc5\xbb\x72\xdb\x7f" "\x47\x8c\x5f\x6d\x2b\xfe\xaa\xdd\x4f\x76\xcf\xdf\xff\xd0\xc3\xb9\xc7\x77" "\x30\xf6\xcf\xdc\xb6\xe2\x3f\xfb\xce\xf7\xff\xee\xee\xa7\x1f\x78\x3e\x37" "\x7e\x88\xf1\x7b\xda\x8a\xbf\x76\xf7\x96\x2f\x74\xf7\xef\x3f\x21\x37\xfe" "\xc3\xb1\x7f\x7a\xdb\x1b\x3f\x2f\xed\x3a\xfd\x99\xfe\xfe\x3f\x0c\xe4\xc5" "\x7f\x2a\xc6\x9f\xdf\x56\xfc\xbb\x76\xde\xfe\x8e\x3b\x17\xde\x7c\x66\xee" "\xf1\x5d\x1d\xfb\xa7\xaf\xad\xf8\x67\x1f\xff\xe0\xf5\xf3\xf6\x3f\x70\x4c" "\xde\xb9\x33\xb9\xa3\x53\xbf\x39\x01\xde\x98\x0e\x4b\xaf\xb1\x6e\x4c\xd7" "\xdb\xcd\x33\x67\xaa\x21\x5f\xf8\xda\x40\x43\xf2\x32\x9a\xd7\xcc\xef\x64" "\x45\x19\xa3\x55\x2d\x98\xc5\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x3e\xfd\xf2\x9a" "\x53\x2f\x38\xef\x5d\x1f\x5e\x53\x49\x42\x48\x72\xb6\x19\x69\x22\x3e\x57" "\x9e\xb3\x6a\xd5\x40\x1b\xf5\x0e\x3d\xf7\xf8\xad\x4b\x0f\xbf\x78\x57\x63" "\xd9\x92\x36\xe2\x00\x00\x00\x00\xc5\x62\x1e\x5e\xaa\x97\x54\xc3\x92\x70" "\x45\x32\x37\x1c\xdd\x74\xfb\x38\x47\x70\x74\x5c\x4b\x26\x96\x67\xe7\x10" "\x62\x9c\xec\x1c\x41\xbb\x71\x4a\x1d\x8a\x53\xee\x50\x9c\x4a\x87\xe2\x74" "\x75\x28\xce\x9c\x0e\xc5\xe9\xee\x50\x9c\x6a\x41\x9c\x6a\x68\x2d\xce\xdc" "\x29\xe2\x54\x46\x47\x45\x8b\xed\xe9\x99\xb2\x3d\xad\xc7\xe9\xed\x50\x9c" "\x79\x1d\x8a\x33\xbf\x43\x71\x16\x74\x28\xce\xc2\x0e\xc5\xe9\x9b\x32\x4e" "\xeb\xe3\x70\x51\x87\xe2\x2c\xee\x50\x9c\xc3\x3a\x14\xe7\xf0\x0e\xc5\x39" "\xa2\x43\x71\xfe\xa1\x43\x71\x8e\xec\x50\x9c\xec\x9c\x72\x6d\xbb\x78\xd6" "\x2e\x1e\x87\xf3\xd3\x38\x47\xe5\xb5\x67\xec\x41\xb9\x30\x4e\x25\x29\xd7" "\x9f\x68\x36\x9f\x7e\x64\x5a\xcf\x31\x33\xac\xa7\xb7\xa0\x9e\xf9\x45\xbf" "\x8f\x5b\xac\x67\x6e\x8b\xf5\x1c\x97\x79\x5d\x69\x9a\xf5\x54\x5b\xac\xe7" "\x1f\x67\x58\x4f\xd2\x62\x3d\xff\x34\xc3\x7a\x4a\x05\xf5\xc4\x71\x7b\x65" "\xb6\x7d\xb1\x9e\xb8\xd6\xe2\xf8\xbf\xaa\x43\x71\x76\x74\x28\xce\xd5\x1d" "\x8a\x73\x4d\x87\xe2\x7c\xa6\x43\x71\x3e\xdb\xa1\x38\xd7\xce\x30\x0e\x40" "\xab\x62\xfe\x3f\x9e\xef\xf5\x85\xee\xca\xbf\x84\x9e\xf4\x8c\x93\x9d\x05" "\x88\x57\x4e\x4b\xc7\x7e\x4e\xfe\x7d\x97\x77\x42\x8a\xf1\xde\x9c\x29\x9f" "\x53\x14\x2f\x9b\xa8\x67\xe2\x2d\x9d\x6e\xfb\xb2\x13\x08\x99\x78\xcb\x32" "\xe5\x5d\x13\xe2\x55\xea\xf9\xc8\x14\xf1\xaa\x8d\xf1\x96\x67\x9e\x2c\xdc" "\xdf\xec\x84\x42\xa6\x7d\x27\x66\xca\xbb\x8b\xe2\x65\x27\x16\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x60\x16\xfd\xf2\x9a\x53\x2f\x38\xef\x5d\x1f" "\x5e\x13\x92\x30\xfa\x5f\x53\x23\x4d\xc4\xe7\xca\x73\x56\xad\x1a\x68\xa3" "\xde\x3d\x6b\x6e\x59\x5e\x5e\xfb\xe8\xde\xc6\xb2\xee\x4a\x1b\x81\x00\x00" "\x00\x80\x42\x31\x0f\xef\xaa\x97\x54\x43\x77\x65\x65\xe8\x4e\xe6\x4c\xd8" "\xae\x9a\xce\x03\x54\xd3\xf5\x72\x5f\x6d\xd9\xbf\x20\xac\x1e\x5d\x26\x03" "\xa5\xb1\xf5\x9e\x64\xd1\x94\xaf\xab\xa4\xaf\x5b\xb1\x7d\xd3\x96\x15\xdb" "\xae\xda\xf1\xd6\x0d\x9b\x86\x2e\x1d\xbe\x74\x78\xf3\xdb\x57\x9e\xba\xf2" "\xf4\xc1\xd3\x4e\x3f\x6d\xc5\xfa\x0d\x1b\x87\x07\x6b\x3f\x43\xe8\x2e\x88" "\x17\x42\x18\x9b\x7e\xd8\x76\xd5\x8e\x4f\x0d\x6d\xdc\x38\xbc\x75\x5b\xad" "\x30\xdb\xfe\x25\xe9\xeb\x96\xa4\xeb\x49\xfa\xba\xfe\xb7\x85\xc1\xd1\xe5" "\x75\x69\xfb\x17\x17\xd4\x57\x9a\x54\xdf\xec\x3d\x28\x3e\x7a\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xf0\x6f\xec\xda\x5d\x88\x9c\x57\xfd\x07\xf0\xf3\xcc\xcc\xce\x4c\xb7" "\xcd\x3f\xfb\xa7\x6f\xd3\xd0\x6c\x86\xbc\x94\xa8\x45\x93\xb8\x95\x54\x4b" "\xf7\x01\xc1\x42\x9b\x84\x2c\x05\x99\xad\xae\x25\xd8\x04\x8b\x9b\x26\xb4" "\x49\x89\x75\x6c\x03\xb6\x35\x41\x11\x5a\x02\x21\x92\x0b\x23\xb1\xd8\x5a" "\xbc\xe9\x8b\x2d\x62\x5f\x08\x44\x6a\x34\xe0\xc6\x20\x6d\xd1\x5e\xe8\x85" "\xd2\x6a\x25\x2d\xb9\x90\x94\x91\xec\xce\x99\x9d\x99\x9d\xc9\xac\x63\x69" "\xda\xf8\xf9\x5c\xcc\x33\x73\xce\xef\x9c\xdf\x73\xe6\x62\xe1\xfb\xec\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\xb0\xa6\xaa\x23\x13\x95\xd1\xb1" "\xf1\xc1\x24\x84\xa4\x4b\x4d\xad\x83\x38\x97\xcd\xa7\x69\xb9\x8f\xbe\x5f" "\x7e\x7e\xfb\xf7\x0b\xc3\xa7\x57\x36\x8f\x15\x72\x7d\x6c\x04\x00\x00\x00" "\xf4\x14\x73\xf8\x40\x63\xa4\x18\x0a\xb9\x6c\xc8\x86\xab\xa6\x3f\x2d\x0d" "\x4d\x13\x61\x36\xf7\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\xff\x7b\xa6\xaa\x23\x13\x95\xd1\xb1\xf1\x8b\x93\x10\x92\x2e\x35" "\xb5\x0e\xe2\x5c\x36\x9f\xa6\xe5\x3e\xfa\xbe\xf1\xce\x93\x9f\x79\x75\x78" "\xf8\xaf\xcd\x63\xa5\x3e\xf6\x01\x00\x00\x00\x7a\x8b\x39\x3c\xd3\x18\x29" "\x86\x52\x58\x16\x06\x92\xab\x5a\xea\xe2\xb3\x81\x45\x6d\xeb\xdb\xeb\xe2" "\x3e\x8b\xe7\x59\xd7\xfe\xec\xa0\x5b\xdd\xb2\x79\xd6\x5d\x33\xcf\xba\x8f" "\xf5\xa8\xdb\x50\xbf\xee\x0a\x00\x00\x00\xf0\xd1\x17\xf3\x7f\xae\x31\x32" "\x14\x0a\xb9\x05\x5d\xf3\x7f\xaf\x5c\x1f\xeb\x96\xb4\xd5\x65\xeb\xd7\x7e" "\x7e\x2b\x00\x00\x00\x00\xfc\x77\x62\xfe\x2f\x34\x46\x4a\xa1\x90\x2b\x35" "\xf2\xfa\x7c\xf3\xfe\xd2\xb6\xba\xb8\xbe\xd7\xff\xed\xe3\xfa\x15\x5d\xd6" "\xf7\xfa\x7f\xfe\xfa\xfa\xd5\xff\xe9\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xa3" "\x63\xaa\x3a\x32\x51\x19\x1d\x1b\xcf\x26\x21\x24\x5d\x6a\x6a\x1d\xc4\xb9" "\x6c\x3e\x4d\xcb\x7d\xf4\x5d\xf3\xc2\xe0\xdf\x6f\x39\xf2\xd0\xd2\xe6\xb1" "\x42\xae\x8f\x8d\x00\x00\x00\x80\x9e\x62\x0e\x9f\x8d\xde\xc5\x50\xc8\x0d" "\x86\x81\x70\xf1\x74\xee\x1f\xbe\xe9\xe0\xd3\x5f\x7c\xfa\xd9\x91\x10\xc2" "\x4c\xcc\xcf\xe7\xc3\xae\x4d\x3b\x76\xdc\xbd\x66\xe6\x35\xd6\xad\x3e\x76" "\x64\xe0\x7b\x47\xdf\xfa\xd6\x9c\xba\xd5\x33\xaf\xe7\xed\x80\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xfb\x66\xaa\x3a\x32\x51" "\x19\x1d\x1b\xbf\x28\x09\x21\xe9\x52\x53\xeb\x20\xce\x65\xf3\x69\x5a\xee" "\xa3\xef\xeb\x9f\xfb\xc2\x9f\x1f\x3f\xf9\xdc\x9b\xcd\x63\xa5\x3e\xf6\x01" "\x00\x00\x00\x7a\x8b\x39\x7c\x36\xfb\x17\x43\x29\xe4\x43\x3e\x5c\x31\xfd" "\xa9\x39\xeb\x9f\x95\x69\x5b\xdf\xed\x99\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x70\xe1\xb8\xe7\x1b\xf7\x7d\x7d\xd3\xe4" "\xe4\xe6\xbb\xbd\xf1\xc6\x1b\x6f\x1a\x6f\xce\xf7\x5f\x26\x00\x00\xe0\xfd" "\xb6\x24\x24\xa1\xf6\x1f\xba\x72\xe3\xf9\xbe\x6b\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xc3\x60\xaa\x3a\x32\x51\x19\x1d\x1b" "\x2f\x26\x21\x24\x5d\x6a\x6a\x1d\xc4\xb9\x6c\x3e\x4d\xcb\x7d\xf4\x4d\x9f" "\x3f\x5e\x58\x70\xfa\x85\x97\x9a\xc7\x4a\x7d\xec\x03\x00\x00\x00\xf4\x16" "\x73\xf8\x6c\xf6\x2f\x86\x52\x18\x08\x03\xe1\xf2\xe9\x4f\x9d\x9e\x09\x4c" "\xe7\xff\xa1\x0f\xf0\x26\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x80\x0f\x95\xa9\xea\xc8\x44\x65\x74\x6c\x7c\x41\x12\x42\xd2" "\xa5\xa6\xd6\x41\x9c\xcb\xe6\xd3\xb4\xdc\x47\xdf\xc7\x76\x1f\xf8\xec\xe1" "\x85\xdf\xbd\xb9\x79\xac\x90\xeb\x63\x23\x00\x00\x00\xa0\xa7\x98\xc3\xf3" "\x8d\x91\x62\x28\xe4\x3e\x1e\x0a\xe1\xea\xfa\xe7\xc9\xd6\x05\x49\xb6\x7e" "\xed\xfc\x5c\x60\x76\xdd\xf6\x96\x65\x83\xf3\x5e\x57\x6d\x59\x97\x9d\xf7" "\xba\x3d\x6d\x27\xcb\xd5\x4f\x33\xb3\xae\x18\xf7\x1b\x9a\xb9\x36\xd6\x95" "\xe7\xae\x2b\x37\xad\x2b\x85\x46\xfb\x72\xcb\xba\xb0\xaf\x65\xd5\x82\x1e" "\xf7\x19\x00\x00\x00\xe0\x3c\x8a\xf9\xbf\xd0\x18\x19\x0a\x85\x5c\xa1\x29" "\xe7\xfe\xa4\xa5\x7e\x48\xce\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xba\x98\xaa\x8e\x4c\x54\x46\xc7\xc6\x93\x24\x84\xa4\x4b\x4d\xad\x83\x38" "\x97\xcd\xa7\x69\xb9\x8f\xbe\xf7\xfd\xe6\xff\x2f\xf9\xca\x4f\xf7\xee\x6c" "\x1e\x2b\xf5\xb1\x0f\x00\x00\x00\xd0\x5b\xcc\xe1\xb3\xd9\xbf\x18\x4a\x61" "\x71\xf8\xbf\xb0\x78\x3a\xf7\x87\xa1\xd6\xfa\x58\xf7\x8f\xca\x99\xc3\x8f" "\xfe\xf3\x2f\x2b\x43\x58\x75\xc5\x89\xe1\x5c\xfb\xb6\x3f\x8c\x6f\x7e\xf5" "\xfa\x8d\x2f\xb6\xbf\x84\x90\x69\xad\xce\x84\xb0\xb0\xde\x2f\xe9\xd2\xef" "\xd7\xbf\x7b\xf4\xde\xe5\xb5\x33\x8f\x87\xb0\xea\xf2\xec\xd5\x73\xfa\x85" "\x73\xf7\x6b\xdd\x32\xad\x3d\x53\xd9\xbc\x7e\xc7\xd1\x13\xdb\x7b\x7c\x39" "\x00\x00\x00\x70\x81\x88\xf9\x7f\xa0\x31\x32\x14\x0a\xb9\xbb\xba\xe6\xff" "\x98\xbc\x7b\xe4\xff\x86\xe9\x00\xbe\xf0\xde\xdd\x3f\xbf\xac\xfe\x5a\x4f" "\xe4\x6d\x2b\x32\x43\xf5\x7e\x99\x2e\xfd\x3e\xbf\xfc\xc9\x3f\xad\x58\xfb" "\xb7\xb7\xce\xe6\xff\x73\xf5\xfb\xd4\x81\xad\x87\x2f\x6b\x69\x38\x33\xd2" "\x26\x49\x6b\xa3\x5b\x77\x6e\x38\x71\xdd\xa1\x4c\x3c\xf5\x4c\xff\x6c\x5b" "\xff\xf8\xbd\x7c\xe9\x9b\x6f\xfe\x6b\xcb\xae\x47\xce\xcc\xf4\x2f\x86\x62" "\x7d\x7c\x51\xae\x53\xff\xb9\xaf\x6d\x2e\x4a\x6b\x93\x99\xfd\xe3\xeb\xde" "\xdb\x5f\x6d\xed\x9f\xeb\x72\xfe\x87\x7e\xfb\xd2\xc9\x5f\x2e\xda\xfb\xee" "\xd9\xfe\xef\x2c\x19\x6c\xf4\xbf\xe6\x1c\xe7\x3f\x77\xff\xc1\x5b\x1f\xde" "\x77\xfd\x81\x23\x1b\x5a\xfb\x87\x10\xca\x9d\xfa\xbf\xfd\xee\xcd\xe1\xca" "\x3f\xdc\xf9\x60\xfb\xf9\x07\xdb\x36\x6e\xfe\xe6\x9b\x5f\xdb\x24\x69\xed" "\xd8\xd2\x53\x87\xd6\x1e\x2c\xdd\xd0\xda\x3f\x69\xeb\x1f\xbf\xff\x9f\x9d" "\x7c\x6c\xdf\x8f\x1f\xf9\xce\xb3\xb1\x7f\xfc\xad\xc8\xca\x65\xf3\xed\x9f" "\x69\xeb\xff\xca\x9e\x4b\x77\xbf\xfc\xc0\xc6\x45\xad\xfd\x33\x5d\xce\xff" "\xe2\x6d\xaf\x0e\x6f\x2b\x7f\xfb\xf7\xed\xe7\xbf\xa3\x65\xd7\x5c\xd7\xbb" "\x98\x7b\xfe\x27\xae\x7d\xea\xf6\xd7\x36\xa5\xf7\xb7\x4f\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x5c\x58\xa6\xaa\x23\x13\x95\xd1\xb1\xf1" "\x4c\x12\x42\xd2\xa5\xa6\xd6\x41\x9c\xcb\xe6\xd3\xb4\xdc\x47\xdf\x37\x6e" "\x39\xfe\xf6\x6d\x7b\x7f\xf4\x83\xe6\xb1\x52\x1f\xfb\x00\x00\x00\x00\xbd" "\xc5\x1c\x3e\x9b\xfd\x8b\xa1\x14\xf2\x21\x1f\x06\xa7\x73\xff\x33\x95\xcd" "\xeb\x77\x1c\x3d\xb1\x3d\x0c\xcd\xcc\x26\xf5\x6b\x6e\x72\xdb\x3d\x3b\x3e" "\xb1\x65\xdb\xce\xbb\xee\x38\x4f\x77\x0e\x00\x00\x00\xcc\x57\xcc\xff\xb9" "\xc6\xc8\x50\x28\xe4\x96\x87\x81\x7a\xfe\x1f\xdd\xba\x73\xc3\x89\xeb\x0e" "\x65\x62\xfe\xcf\xc4\xfc\xbf\xe5\xce\xc9\xcd\xab\x42\xa3\xee\x95\x3d\x97" "\xee\x7e\xf9\x81\x8d\x8b\x1a\xcf\x09\x42\x98\xfe\x59\x40\xf1\x6c\xdd\xa7" "\x67\xeb\x6e\xba\xf1\xf8\xd0\xa9\x3f\x7e\x6d\x45\xc7\xba\x35\xb3\x75\xc7" "\x96\x9e\x3a\xb4\xf6\x60\xe9\x86\x58\x17\x9a\xeb\x56\x87\xc6\xf3\x89\x27" "\xae\x7d\xea\xf6\xd7\x36\xa5\xf7\x37\xee\xaf\xb9\xee\x93\x5f\xdd\x36\x59" "\x7f\x3c\x11\xf7\x1d\xbc\xf5\xe1\x7d\xd7\x1f\x38\xb2\xa1\x71\x8e\xfa\x75" "\xb0\xbe\x6f\xac\x9b\xcc\xec\x1f\x5f\xf7\xde\xfe\x6a\xac\xcb\xd6\xaf\xc5" "\xfa\xb9\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xb9\xa6\xaa\x23\x13" "\x95\xd1\xb1\xf1\x90\x0d\x21\xe9\x52\x53\xeb\x20\xce\x65\xf3\x69\x5a\xee" "\xa3\xef\xba\xe5\xbf\x78\xf0\x92\xd3\xcf\x2d\x6e\x1e\x2b\xe4\xfa\xd8\x08" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x37\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\xaf\x9f" "\xd0\x38\xca\x3e\x0e\xe0\xcf\xb3\x9b\xbc\xd9\x66\x93\x36\x69\x5f\x30\x2a" "\xa6\x69\x55\x94\x7a\xb0\x28\x88\xe8\x45\x45\x45\x5a\x91\x82\xa7\x4a\x91" "\x6a\x6b\x0f\xa2\x20\x88\x28\xf5\x60\x2a\xad\x58\xaa\xe2\x45\xb0\x7a\x29" "\xa2\x82\x1a\xa5\xa0\x60\x63\xb1\xb4\x4a\x2a\xfe\x2b\x5e\x3c\xa8\xa0\x50" "\x3d\x08\xa5\x18\xd0\x2e\xc5\x83\x4a\x76\x9f\xd9\x6e\xa6\x3b\xae\x4e\xaa" "\xa0\x7e\x3e\x30\x3c\x79\x9e\x99\xf9\xce\x6f\xe6\x79\x76\x36\x0b\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x28\x03\x7d\x63\xcd\xf6\xf0\x8e\xfb\x1b\xb7\x9c\x73\xc3\x47" "\x8f\xde\x75\xe2\x91\x9b\xde\xb9\x77\xdb\x45\x0f\xbf\xfa\xdd\xc4\xa6\xeb" "\x3e\xdc\x3b\xf8\xd2\xc9\x99\xcd\x2b\xb6\x7c\x79\xfd\xb2\x4d\xfb\xef\x5e" "\x33\xbd\xfb\xf9\x43\x3f\x0d\xbf\xf5\xcb\xd1\x9e\xc1\x0f\xb5\x9a\x55\xa9" "\x5b\x0b\x21\x1e\x8f\x21\xd4\xde\x9d\x7d\xe6\xb1\x99\x8f\xcf\x9a\x1b\x8b" "\x21\x84\x6a\x1c\x99\x0c\x61\x34\x2e\x3d\x34\x1a\x73\x09\xab\x7f\x0e\x21" "\x6c\x6e\xd7\x39\x7f\xe7\x9b\x27\x2e\xdf\x32\xd7\x6e\xdb\x35\x30\x6f\x7c" "\x49\x2e\x24\x7f\x5f\xa1\x5e\xcd\xea\x69\x19\x99\x5f\x2f\xff\x2e\xb5\xb4" "\xce\xb6\x36\x1e\xbc\x24\x7c\x7d\xed\xfa\xed\x9f\x2e\x7f\xe3\xf5\xfe\xa9" "\x63\x93\xa7\x0e\x89\xb5\x8e\xf5\x14\xc2\xe2\x8d\x9d\xe7\xf7\x87\x10\x16" "\xa5\x6d\x4e\xb6\xda\xc6\xb2\x93\x53\xbb\x2e\x84\x30\xd8\x71\xde\x95\x3d" "\xea\x3a\xff\x0f\xd6\x7f\x69\x41\xff\xdc\xd4\xfe\x2f\xb5\xf5\x1e\x39\xd9" "\xfe\x95\xb9\x7e\x25\x77\x5c\xbe\x9f\xe9\xcf\xb5\x83\x3d\xae\xb7\x50\x45" "\x75\x94\x3d\xae\x97\xa1\x5c\x3f\xff\x32\x5a\xa8\xa2\x3a\xb3\xf1\xd1\xd4" "\xbe\x9d\xda\x55\x7f\x32\xbf\x9a\x6d\x31\x54\x62\xe8\x6b\x97\x7f\x4f\x3c" "\xb5\x46\x42\xc7\xbc\xc5\x10\x9b\x73\x59\x6b\xf7\x2b\xed\xb9\x0d\xe9\xfe" "\x73\xfd\x98\xeb\x57\x72\xfd\x6a\x7f\xee\xbe\x9a\xd7\x4d\x0b\xad\x1a\xe3" "\xfc\xf1\xec\xb8\xdc\x78\xf6\x3a\xee\x4b\xe3\x2b\x3a\xdf\xd5\x5d\xdc\x5a" "\x30\x7e\x76\x6a\x6b\xe9\x83\x7a\x32\xeb\x87\xfc\x1f\x2d\xf5\xd3\xfe\x68" "\xdf\x57\x53\x56\xd7\xec\xef\xd4\xf2\x77\xa8\x74\xbc\x83\xba\x8d\xb7\x27" "\x3e\x4d\x46\x3d\x8d\xd5\xe3\xd2\xd3\xce\xf9\xb5\x8b\x6c\xdf\xcc\xfa\x27" "\x2e\xac\x6e\x78\xef\xf0\x48\x41\x1d\x71\x6f\x4c\xf9\xb1\x54\xfe\xd6\x4f" "\x46\x87\x6e\x7f\x6d\xe7\x03\x63\x45\xf9\x1b\x2b\x29\xbf\x52\x2a\xff\x9b" "\xb5\x47\x7e\xb8\x6d\xe7\x0b\xcf\x15\xe6\x3f\x9d\xe5\x57\x4b\xe5\x5f\x76" "\x60\xf0\xf8\xda\xf7\x77\xac\x2c\x7c\x3e\xb3\xd9\xf3\xe9\x2b\x95\x7f\xc7" "\xd1\x0f\x9e\x5c\xfe\xff\x3b\xa7\xba\xcd\x75\x33\x7f\x4f\x96\x5f\x2b\x95" "\x7f\xcd\xf4\x91\x81\xe1\xc6\x81\x83\x85\xf5\xaf\xce\x9e\xcf\xa2\x52\xf9" "\x5f\x5d\x7d\xe3\xb7\xaf\x7c\xbe\xef\x58\x61\x7e\xc8\xf2\x07\x4b\xe5\x6f" "\x98\xbe\xef\xa9\x81\xf1\xc6\xc5\x85\xf9\x07\x5b\x1f\x85\x7a\x73\x85\x96" "\x58\x3f\x3f\x4e\x5d\xf1\xc5\xf8\xf8\xf7\x13\x45\xf9\x9f\x65\xcf\x7f\xb8" "\x4b\x7e\xec\x99\xff\xf2\xe4\xee\xab\x5e\x5c\xb2\x6b\x4d\xe1\xfa\x5c\x97" "\x3d\x9f\x91\x52\xf5\xdf\x7c\xc1\xfe\xed\x43\x8d\x7d\xe7\x15\xbd\x3b\xe3" "\x9e\x33\xf5\xcd\x09\xf0\xdf\xb4\x2c\xfd\x8f\xf5\x78\xea\x97\xfd\x9d\xb9" "\x50\x1d\xbf\x17\x9e\x9d\xe8\x6b\x7d\x03\x0d\xa5\x6d\xf8\x4c\x5e\x28\x67" "\xee\x3a\x8b\xff\xc2\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xe0\x37\x76\xe0\x80\x04\x00\x00\x00\x40\xd0\xff\xd7\xed" "\x08\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x9e\x0a\x00\x00\xff\xff\x3e\x75\x32\x39", 22858); syz_mount_image(/*fs=*/0x20000040, /*dir=*/0x20000000, /*flags=MS_I_VERSION*/ 0x800000, /*opts=*/0x20000480, /*chdir=*/3, /*size=*/0x594a, /*img=*/0x20005e40); } 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; }