// https://syzkaller.appspot.com/bug?id=535ab4996edbd0a254e284ae5b58e46d52d0d0a8 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_bpf #define __NR_bpf 280 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mknodat #define __NR_mknodat 33 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static 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; } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define XT_TABLE_SIZE 1536 #define XT_MAX_ENTRIES 10 struct xt_counters { uint64_t pcnt, bcnt; }; struct ipt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_entries; unsigned int size; }; struct ipt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_table_desc { const char* name; struct ipt_getinfo info; struct ipt_replace replace; }; static struct ipt_table_desc ipv4_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; static struct ipt_table_desc ipv6_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; #define IPT_BASE_CTL 64 #define IPT_SO_SET_REPLACE (IPT_BASE_CTL) #define IPT_SO_GET_INFO (IPT_BASE_CTL) #define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1) struct arpt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_entries; unsigned int size; }; struct arpt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_table_desc { const char* name; struct arpt_getinfo info; struct arpt_replace replace; }; static struct arpt_table_desc arpt_tables[] = { {.name = "filter"}, }; #define ARPT_BASE_CTL 96 #define ARPT_SO_SET_REPLACE (ARPT_BASE_CTL) #define ARPT_SO_GET_INFO (ARPT_BASE_CTL) #define ARPT_SO_GET_ENTRIES (ARPT_BASE_CTL + 1) static void checkpoint_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; if (table->info.valid_hooks == 0) continue; struct ipt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, level, IPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_arptables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_arptables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; if (table->info.valid_hooks == 0) continue; struct arpt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } else { } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, SOL_IP, ARPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } #define NF_BR_NUMHOOKS 6 #define EBT_TABLE_MAXNAMELEN 32 #define EBT_CHAIN_MAXNAMELEN 32 #define EBT_BASE_CTL 128 #define EBT_SO_SET_ENTRIES (EBT_BASE_CTL) #define EBT_SO_GET_INFO (EBT_BASE_CTL) #define EBT_SO_GET_ENTRIES (EBT_SO_GET_INFO + 1) #define EBT_SO_GET_INIT_INFO (EBT_SO_GET_ENTRIES + 1) #define EBT_SO_GET_INIT_ENTRIES (EBT_SO_GET_INIT_INFO + 1) struct ebt_replace { char name[EBT_TABLE_MAXNAMELEN]; unsigned int valid_hooks; unsigned int nentries; unsigned int entries_size; struct ebt_entries* hook_entry[NF_BR_NUMHOOKS]; unsigned int num_counters; struct ebt_counter* counters; char* entries; }; struct ebt_entries { unsigned int distinguisher; char name[EBT_CHAIN_MAXNAMELEN]; unsigned int counter_offset; int policy; unsigned int nentries; char data[0] __attribute__((aligned(__alignof__(struct ebt_replace)))); }; struct ebt_table_desc { const char* name; struct ebt_replace replace; char entrytable[XT_TABLE_SIZE]; }; static struct ebt_table_desc ebt_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "broute"}, }; static void checkpoint_ebtables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (size_t i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_INFO, &table->replace, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->replace.entries_size > sizeof(table->entrytable)) exit(1); table->replace.num_counters = 0; table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_ENTRIES, &table->replace, &optlen)) exit(1); } close(fd); } static void reset_ebtables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: return; } exit(1); } for (unsigned i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; if (table->replace.valid_hooks == 0) continue; struct ebt_replace replace; memset(&replace, 0, sizeof(replace)); strcpy(replace.name, table->name); socklen_t optlen = sizeof(replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INFO, &replace, &optlen)) exit(1); replace.num_counters = 0; table->replace.entries = 0; for (unsigned h = 0; h < NF_BR_NUMHOOKS; h++) table->replace.hook_entry[h] = 0; if (memcmp(&table->replace, &replace, sizeof(table->replace)) == 0) { char entrytable[XT_TABLE_SIZE]; memset(&entrytable, 0, sizeof(entrytable)); replace.entries = entrytable; optlen = sizeof(replace) + replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_ENTRIES, &replace, &optlen)) exit(1); if (memcmp(table->entrytable, entrytable, replace.entries_size) == 0) continue; } for (unsigned j = 0, h = 0; h < NF_BR_NUMHOOKS; h++) { if (table->replace.valid_hooks & (1 << h)) { table->replace.hook_entry[h] = (struct ebt_entries*)table->entrytable + j; j++; } } table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (setsockopt(fd, SOL_IP, EBT_SO_SET_ENTRIES, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_net_namespace(void) { checkpoint_ebtables(); checkpoint_arptables(); checkpoint_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); checkpoint_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void reset_net_namespace(void) { reset_ebtables(); reset_arptables(); reset_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); reset_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void mount_cgroups(const char* dir, const char** controllers, int count) { if (mkdir(dir, 0777)) { return; } char enabled[128] = {0}; int i = 0; for (; i < count; i++) { if (mount("none", dir, "cgroup", 0, controllers[i])) { continue; } umount(dir); strcat(enabled, ","); strcat(enabled, controllers[i]); } if (enabled[0] == 0) { if (rmdir(dir) && errno != EBUSY) exit(1); return; } if (mount("none", dir, "cgroup", 0, enabled + 1)) { if (rmdir(dir) && errno != EBUSY) exit(1); } if (chmod(dir, 0777)) { } } static void mount_cgroups2(const char** controllers, int count) { if (mkdir("/syzcgroup/unified", 0777)) { return; } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { if (rmdir("/syzcgroup/unified") && errno != EBUSY) exit(1); return; } if (chmod("/syzcgroup/unified", 0777)) { } int control = open("/syzcgroup/unified/cgroup.subtree_control", O_WRONLY); if (control == -1) return; int i; for (i = 0; i < count; i++) if (write(control, controllers[i], strlen(controllers[i])) < 0) { } close(control); } static void setup_cgroups() { const char* unified_controllers[] = {"+cpu", "+io", "+pids"}; const char* net_controllers[] = {"net", "net_prio", "devices", "blkio", "freezer"}; const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit", "memory"}; if (mkdir("/syzcgroup", 0777)) { return; } mount_cgroups2(unified_controllers, sizeof(unified_controllers) / sizeof(unified_controllers[0])); mount_cgroups("/syzcgroup/net", net_controllers, sizeof(net_controllers) / sizeof(net_controllers[0])); mount_cgroups("/syzcgroup/cpu", cpu_controllers, sizeof(cpu_controllers) / sizeof(cpu_controllers[0])); write_file("/syzcgroup/cpu/cgroup.clone_children", "1"); write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1"); } static void setup_cgroups_loop() { int pid = getpid(); char file[128]; char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); write_file(file, "32"); snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(file, sizeof(file), "%s/memory.soft_limit_in_bytes", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.limit_in_bytes", cgroupdir); write_file(file, "%d", 300 << 20); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); } static void setup_cgroups_test() { char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } } static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); setup_binderfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_loop() { setup_cgroups_loop(); checkpoint_net_namespace(); } 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); } reset_net_namespace(); } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); setup_cgroups_test(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void setup_usb() { if (chmod("/dev/raw-gadget", 0666)) exit(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { setup_loop(); int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x20000180, "./file0\000", 8); memcpy((void*)0x20000040, "quota", 5); *(uint8_t*)0x20000045 = 0x2c; memcpy((void*)0x20000046, "iocharset", 9); *(uint8_t*)0x2000004f = 0x3d; memcpy((void*)0x20000050, "cp1250", 6); *(uint8_t*)0x20000056 = 0x2c; memcpy((void*)0x20000057, "iocharset", 9); *(uint8_t*)0x20000060 = 0x3d; memcpy((void*)0x20000061, "macromanian", 11); *(uint8_t*)0x2000006c = 0x2c; memcpy((void*)0x2000006d, "noquota", 7); *(uint8_t*)0x20000074 = 0x2c; memcpy((void*)0x20000075, "discard", 7); *(uint8_t*)0x2000007c = 0x3d; sprintf((char*)0x2000007d, "0x%016llx", (long long)9); *(uint8_t*)0x2000008f = 0x2c; memcpy((void*)0x20000090, "errors=continue", 15); *(uint8_t*)0x2000009f = 0x2c; memcpy((void*)0x200000a0, "quota", 5); *(uint8_t*)0x200000a5 = 0x2c; *(uint8_t*)0x200000a6 = 0; memcpy( (void*)0x20006600, "\x78\x9c\xec\xdd\xcb\x6f\x1d\x57\x1d\x07\xf0\xdf\xdc\x97\x1f\xa5\x6d\xd4" "\x45\x55\x22\x84\xdc\x36\x3c\x4a\x69\x9e\x25\x04\x0a\xb4\x5d\xc0\x82\x0d" "\x0b\x94\x2d\x4a\xe4\xba\x55\x44\x0a\x28\x09\x28\xad\x22\xe2\xca\x1b\x16" "\xfc\x11\x20\x24\x96\x08\xb1\x64\xc5\x92\x45\x17\x6c\xd9\xf1\x07\x10\x29" "\x41\x02\x75\xd5\x41\x63\x9f\xe3\x8c\xa7\x76\xae\x53\xd7\x77\xae\x7d\x3e" "\x1f\xc9\x99\xf9\xdd\x33\xe3\x7b\x26\xdf\x3b\xf7\xe1\x99\xb9\x27\x00\x00" "\x00\x00\x00\x00\x00\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\xf8\xe1\x0f\x7e\x7c\xae" "\x8a\x88\x2b\xbf\x4a\x37\x9c\x88\xf8\x5c\x0c\x23\x06\x11\x4b\x4d\xbd\x12" "\x11\x4b\x2b\x27\xf2\xf2\xa3\x88\x78\x2e\x36\x9b\xe3\xd9\x88\x18\x2f\x44" "\x34\xeb\x6f\xfe\xf3\x74\xc4\xab\x11\xf1\xe1\x53\x11\xf7\x1f\xdc\x59\x6d" "\x6e\x3e\xbf\xcf\x7e\x7c\xff\xcf\xff\xfc\xc3\x4f\x9e\xf8\xd1\x3f\xfe\x34" "\x3e\xf3\xbf\xbf\xdc\x1a\xbe\xb6\xd7\x72\xb7\x6f\xff\xf6\xbf\x7f\xbd\x7b" "\xb0\x6d\x06\x00\x00\x80\xd2\xd4\x75\x5d\x57\xe9\x63\xfe\xc9\xf4\xf9\x7e" "\xd0\x77\xa7\x00\x80\x99\xc8\xaf\xff\x75\x92\x6f\x57\xab\xd5\x6a\xb5\x5a" "\x7d\xfc\xea\xb6\x7a\x77\x77\xdb\x45\x44\xac\xb7\xd7\x69\xde\x33\x38\x1c" "\x0f\x00\x47\xcc\x7a\x7c\xd4\x77\x17\xe8\x91\xfc\x8b\x36\x8a\x88\x27\xfa" "\xee\x04\x30\xd7\xaa\xbe\x3b\xc0\xa1\xb8\xff\xe0\xce\x6a\x95\xf2\xad\xda" "\xaf\x07\x2b\x5b\xed\xf9\x5c\x90\x1d\xf9\xaf\x57\xdb\xd7\x77\xec\x35\x9d" "\xa6\x7b\x8e\xc9\xac\x1e\x5f\x1b\x31\x8c\x67\xf6\xe8\xcf\xd2\x8c\xfa\x30" "\x4f\x72\xfe\x83\x6e\xfe\x57\xb6\xda\x27\x69\xb9\xc3\xce\x7f\x56\xf6\xca" "\x7f\xb2\x75\xe9\x53\x71\x72\xfe\xc3\x6e\xfe\x1d\xc7\x27\xff\xc1\xae\xf9" "\x97\x2a\xe7\x3f\x7a\xac\xfc\x87\xf2\x07\x00\x00\x00\x00\x80\x39\x96\xff" "\xfe\x7f\xa2\xe7\xe3\xbf\x0b\x07\xdf\x94\x7d\x79\xd4\xf1\xdf\x95\x19\xf5" "\x01\x00\x00\x00\x00\x00\x00\x00\x3e\x6b\x07\x1d\xff\x6f\x9b\xf1\xff\x00" "\x00\x00\x60\x6e\x35\x9f\xd5\x1b\xbf\x7b\xea\xe1\x6d\x7b\x7d\x17\x5b\x73" "\xfb\xe5\x2a\xe2\xc9\xce\xf2\x40\x61\xd2\xc5\x32\xcb\x7d\xf7\x03\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x4a\x32\xda\x3a\x87\xf7\x72\x15\x31\x8e" "\x88\x27\x97\x97\xeb\xba\x6e\x7e\xda\xba\xf5\xe3\x3a\xe8\xfa\x47\x5d\xe9" "\xdb\x0f\x25\xeb\xfb\x49\x1e\x00\x00\xb6\x7c\xf8\x54\xe7\x5a\xfe\x2a\x62" "\x31\x22\x2e\xa7\xef\xfa\x1b\x2f\x2f\x2f\xd7\xf5\xe2\xd2\x72\xbd\x5c\x2f" "\x2d\xe4\xf7\xb3\x93\x85\xc5\x7a\xa9\xf5\xb9\x36\x4f\x9b\xdb\x16\x26\xfb" "\x78\x43\x3c\x9a\xd4\xcd\x2f\x5b\x6c\xad\xd7\x36\xed\xf3\xf2\xb4\xf6\xee" "\xef\x6b\xee\x6b\x52\x0f\xf7\xd1\xb1\xd9\xe8\x31\x70\x00\x88\x88\xad\x57" "\xa3\xfb\x5e\x91\x8e\x99\xba\x7e\x3a\xfa\x7e\x97\xc3\xd1\x60\xff\x3f\x7e" "\xec\xff\xec\x47\xdf\x8f\x53\x00\x00\x00\xe0\xf0\xd5\x75\x5d\x57\xe9\xeb" "\xbc\x4f\xa6\x63\xfe\x83\xbe\x3b\x05\x00\xcc\x44\x7e\xfd\xef\x1e\x17\x50" "\xab\xd5\x6a\xb5\x5a\x7d\xfc\xea\xb6\x7a\x77\x77\xdb\x45\x44\xac\xb7\xd7" "\x69\xde\x33\x18\x8e\x1f\x00\x8e\x98\xf5\xf8\xa8\xef\x2e\xd0\x23\xf9\x17" "\x6d\x14\x11\xcf\xf5\xdd\x09\x60\xae\x55\x7d\x77\x80\x43\x71\xff\xc1\x9d" "\xd5\x2a\xe5\x5b\xb5\x5f\x0f\xd2\xf8\xee\xf9\x5c\x90\x1d\xf9\xaf\x57\x9b" "\xeb\xe5\xf5\x77\x9b\x4e\xd3\x3d\xc7\x64\x56\x8f\xaf\x8d\x18\xc6\x33\x7b" "\xf4\xe7\xd9\x19\xf5\x61\x9e\xe4\xfc\x07\xdd\xfc\xaf\x6c\xb5\x4f\xd2\x72" "\x87\x9d\xff\xac\xec\x95\x7f\xb3\x9d\x27\x7a\xe8\x4f\xdf\x72\xfe\xc3\x6e" "\xfe\x1d\xc7\x27\xff\xc1\xae\xf9\x97\x2a\xe7\x3f\x7a\xac\xfc\x87\xf2\x07" "\x00\x00\x00\x00\x80\x39\x96\xff\xfe\x7f\x62\xae\x8e\xff\x4e\x3e\xed\xe6" "\x4c\xf5\xa8\xe3\xbf\x2b\x87\x76\xaf\x00\x00\x00\x00\x00\x00\x00\x70\xb8" "\xee\x3f\xb8\xb3\x9a\xaf\x7b\xcd\xc7\xff\xbf\xb0\xcb\x72\xae\xff\x3c\x9e" "\x72\xfe\x95\xfc\x8b\x94\xf3\x1f\x74\xf2\xff\x6a\x67\xb9\x61\x6b\xfe\xde" "\x9b\x0f\xf3\xff\xcf\x83\x3b\xab\x7f\xbc\xf5\xef\xcf\xe7\xe9\x7e\xf3\x5f" "\xc8\x33\x55\x7a\x64\x55\xe9\x11\x51\xa5\x7b\xaa\x46\x69\x7a\x90\xad\xfb" "\xa4\x8d\xf1\x70\xd2\xdc\xd3\xb8\x1a\x0c\x47\xe9\x9c\x9f\x7a\xfc\x76\x5c" "\x8b\xeb\xb1\x16\x67\x77\x2c\x3b\x48\xff\x1f\x0f\xdb\xcf\xed\x68\x6f\x7a" "\x3a\xde\x6c\xaf\x87\x5b\xed\xe7\x77\xb4\x8f\xb6\xdb\xf3\xfa\x17\x76\xb4" "\x8f\xd3\x99\x4e\xf5\x52\x6e\x3f\x1d\xab\xf1\xf3\xb8\x1e\x6f\x6d\xb6\x37" "\x6d\x0b\x53\xb6\x7f\x71\x4a\x7b\x3d\xa5\x3d\xe7\x3f\xb4\xff\x17\x29\xe7" "\x3f\x6a\xfd\x34\xf9\x2f\xa7\xf6\xaa\x33\x6d\xdc\xfb\x60\xf0\x89\xfd\xbe" "\x3d\xdd\xed\x7e\xde\xb8\xf6\xc5\xdf\x9c\x3d\xfc\xcd\x99\x6a\x23\x86\xdb" "\xdb\xd6\xd6\x6c\xdf\x0b\x3d\xf4\x67\xf3\xff\xe4\x89\x49\xfc\xf2\xe6\xda" "\x8d\xd3\xb7\xaf\xde\xba\x75\xe3\x5c\xa4\xc9\x8e\x5b\xcf\x47\x9a\x7c\xc6" "\x72\xfe\xe3\xf4\xb3\xfd\xfc\xff\xe2\x56\x7b\x7e\xde\x6f\xef\xaf\xf7\x3e" "\x98\x3c\x76\xfe\xf3\x62\x23\x46\x7b\xe6\xff\x62\x6b\xbe\xd9\xde\x97\x66" "\xdc\xb7\x3e\xe4\xfc\x27\xe9\x27\xe7\xff\x56\x6a\xdf\x7d\xff\x3f\xca\xf9" "\xef\xbd\xff\xbf\xdc\x43\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xe0\x51\xea\xba\xde\xbc\x44\xf4\x8d\x88\xb8\x98\xae\xff\xe9\xeb\xda" "\x4c\x00\x60\xb6\xf2\xeb\x7f\x9d\xe4\xdb\x67\x55\x0f\x67\x7c\x7f\x6a\xf5" "\x11\xaf\xab\x39\xeb\xcf\x4c\xeb\x8f\xeb\xf9\xea\x8f\x5a\x7d\x14\xeb\xb6" "\x7a\x77\xaf\xb7\x8b\x88\xf8\x5b\x7b\x9d\xe6\x3d\xc3\xaf\x77\xfb\x65\x00" "\xc0\x3c\xfb\x38\x22\xfe\xd5\x77\x27\xe8\x8d\xfc\x0b\x96\xbf\xef\xaf\x99" "\x9e\xea\xbb\x33\xc0\x4c\xdd\x7c\xef\xfd\x9f\x5e\xbd\x7e\x7d\xed\xc6\xcd" "\xbe\x7b\x02\x00\x00\x00\x00\x00\x00\x00\x7c\x5a\x79\xfc\xcf\x95\xd6\xf8" "\xcf\xa7\xea\xba\xbe\xdb\x59\x6e\xc7\xf8\xaf\x6f\xc6\xca\x41\xc7\xff\x1c" "\xe5\x99\xed\x01\x46\xf7\x18\xa8\x7a\xf8\xf8\xdb\xf4\x28\x1b\x83\xc9\x70" "\xd0\x1a\x6e\xfc\xf9\xd8\x6b\xfc\xef\xf1\xf6\xdc\xa3\xc6\xff\x1e\x4d\xb9" "\xbf\xf1\x94\xf6\xc9\xce\xf2\xef\xdd\xf6\x85\x29\xeb\x2f\x4e\x69\xdf\xf5" "\x42\x8f\x96\x9c\xff\xf3\xad\xf1\xce\x4f\x45\xc4\xc9\xce\xf0\xeb\x25\x8c" "\xff\xda\x1d\xf3\xbe\x04\x39\xff\x17\x5a\x8f\xe7\x26\xff\xaf\x74\x96\x6b" "\xe7\x5f\xff\xfe\x28\xe7\x3f\xd8\x91\xff\x99\x5b\xef\xfe\xe2\xcc\xcd\xf7" "\xde\x7f\xe5\xda\xbb\x57\xdf\x59\x7b\x67\xed\x67\x17\xce\x9d\x3b\x7b\xe1" "\xe2\xc5\x4b\x97\x2e\x9d\x79\xfb\xda\xf5\xb5\xb3\x5b\xff\xf6\xd8\xe3\xc3" "\x95\xf3\xcf\x63\x5f\x3b\x0f\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb\x92\xf3\xff" "\x52\xaa\xe5\x5f\x96\x9c\xff\x97\x53\x2d\xff\xb2\xe4\xfc\xf3\xfb\x3d\xf9" "\x97\x25\xe7\x9f\x3f\xfb\xc8\xbf\x2c\x39\xff\x97\x52\x2d\xff\xb2\xe4\xfc" "\xbf\x96\x6a\xf9\x97\x25\xe7\xff\x72\xaa\xe5\x5f\x96\x9c\xff\xd7\x53\x2d" "\xff\xb2\xe4\xfc\x5f\x49\xb5\xfc\xcb\x92\xf3\x3f\x9d\x6a\xf9\x97\x25\xe7" "\x7f\x26\xd5\xfb\xcc\x7f\xe9\xb0\xfb\xc5\x6c\xe4\xfc\xf3\x11\x2e\xfb\x7f" "\x59\x72\xfe\xf9\xcc\x06\xf9\x97\x25\xe7\x7f\x3e\xd5\xf2\x2f\x4b\xce\xff" "\x42\xaa\xe5\x5f\x96\x9c\xff\xab\xa9\x96\x7f\x59\x72\xfe\xdf\x48\xb5\xfc" "\xcb\x92\xf3\xbf\x98\x6a\xf9\x97\x25\xe7\xff\xcd\x54\xcb\xbf\x2c\x39\xff" "\x4b\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\xff\x76\xaa\xe5" "\x5f\x96\x9c\xff\x6b\xa9\x96\x7f\x59\x72\xfe\xdf\x49\xb5\xfc\xcb\x92\xf3" "\xff\x6e\xaa\xe5\x5f\x96\x9c\xff\xf7\x52\x2d\xff\xb2\xe4\xfc\x5f\x4f\xb5" "\xfc\xcb\xf2\xf0\xfb\xff\xcd\x98\x31\x63\x26\xcf\xf4\xfd\xcc\x04\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x74\xcd\xe2\x74\xe2\xbe\xb7\x11\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xff\xec\xc0\x81\x00\x00\x00" "\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\x07" "\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\x0a\x7b\x77\x17\x23\x57\x79\xdf\x0f\xfc\xec\xab\xd7\x26\x01\x27" "\x21\xfc\x0d\x7f\x27\xac\x8d\x63\x8c\x59\xd8\xf5\x0b\x7e\x49\xeb\xe2\x00" "\x21\x14\xf2\x52\x5e\x1b\xfa\x82\xed\x7a\xd7\x66\x13\xbf\xe1\xb5\x1b\xa0" "\x48\x36\x22\x69\x90\xe2\xa8\x51\x95\xb6\xe4\xa2\x6d\x12\xa1\x96\x9b\x2a" "\x56\xc5\x45\x5a\x91\x88\x8b\xa8\x55\xa5\x4a\xa1\xbd\x48\x6f\xa2\x54\x95" "\x72\x81\x2a\x12\x91\x48\x95\xda\x2a\x61\xab\x39\xf3\x3c\xcf\xce\xcc\x9e" "\x9d\x59\xdb\x83\x99\x39\xe7\xf3\x91\xf0\xcf\x3b\x73\x66\xce\x99\x33\xcf" "\xcc\xee\x77\xcd\x77\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xd1" "\xba\x3b\x67\xbe\x38\x90\x65\x59\xed\xbf\xfc\x8f\xd5\x59\xf6\xae\xda\xdf" "\x57\x8e\xaf\xce\x2f\xfb\xf0\x3b\x7d\x84\x00\x00\x00\xc0\xa5\xfa\x65\xfe" "\xe7\x9b\x57\xa5\x0b\xf6\x2e\xe3\x46\x0d\xdb\xfc\xe3\x07\xbf\xff\xf2\xfc" "\xfc\xfc\x7c\xf6\xe9\xa1\x3f\x19\xf9\xea\xfc\x7c\xba\x62\x3c\xcb\x46\x56" "\x64\x59\x7e\x5d\x74\xfe\x3f\x1e\x1d\x68\xdc\x26\x78\x2e\x1b\x1b\x18\x6c" "\xf8\x78\xb0\xc3\xee\x87\x3a\x5c\x3f\xdc\xe1\xfa\x91\x0e\xd7\x8f\x76\xb8" "\x7e\x45\x87\xeb\xc7\x3a\x5c\xbf\xe8\x04\x2c\xb2\xb2\xfe\xfd\x98\xfc\xce" "\x36\xe4\x7f\x5d\x5d\x3f\xa5\xd9\xd5\xd9\x48\x7e\xdd\x86\x82\x5b\x3d\x37" "\xb0\x62\x70\x30\x7e\x2f\x27\x37\x90\xdf\x66\x7e\xe4\x50\x36\x9b\x1d\xc9" "\x66\xb2\xa9\xa6\xed\xeb\xdb\x0e\xe4\xdb\xbf\xb2\xae\xb6\xaf\x7b\xb2\xb8" "\xaf\xc1\x86\x7d\xad\xad\xad\x90\x9f\x3d\x73\x30\x1e\xc3\x40\x38\xc7\x1b" "\x9a\xf6\xb5\x70\x9f\xd1\x4f\x3e\x92\x8d\xff\xfc\x67\xcf\x1c\xfc\xab\x53" "\x6f\x5c\x5b\x34\x3b\x9e\x86\xa6\xfb\xab\x1f\xe7\xa6\xf5\xb5\xe3\xfc\x7c" "\xb8\xa4\x7e\xac\x03\xd9\x8a\x74\x4e\xe2\x71\x0e\x36\x1c\xe7\xda\x82\xe7" "\x64\xa8\xe9\x38\x07\xf2\xdb\xd5\xfe\xde\x7a\x9c\x6f\x2e\xf3\x38\x87\x16" "\x0e\xf3\xb2\x6a\x7d\xce\xc7\xb2\xc1\xfc\xef\xaf\xe5\xe7\x69\xb8\xf1\xdb" "\x7a\xe9\x3c\xad\x0d\x97\xfd\xf7\x0d\x59\x96\x9d\x5d\x38\xec\xd6\x6d\x16" "\xed\x2b\x1b\xcc\x56\x35\x5d\x32\xb8\xf0\xfc\x8c\xd5\x57\x64\xed\x3e\x6a" "\x4b\xe9\xbd\xd9\xf0\x05\xad\xd3\x75\xcb\x58\xa7\xb5\x39\xbd\xa1\x79\x9d" "\xb6\xbe\x26\xe2\xf3\xbf\x2e\xdc\x6e\x78\x89\x63\x68\x7c\x9a\x7e\xf2\xec" "\x68\xc3\xf3\xfe\x8b\xf9\x8b\x59\xa7\x51\xed\x51\x2f\xf5\x5a\x69\x5d\x83" "\xdd\x7e\xad\xf4\xca\x1a\x8c\xeb\xe2\xb5\xfc\x41\x3f\x5f\xb8\x06\x37\x84" "\xc7\xff\xcc\xc6\xa5\xd7\x60\xe1\xda\x29\x58\x83\xe9\x71\x37\xac\xc1\xf5" "\x9d\xd6\xe0\xe0\xe8\x50\x7e\xcc\xe9\x49\x18\xc8\x6f\xb3\xb0\x06\xb7\x34" "\x6d\x3f\x94\xef\x69\x20\x9f\xaf\x6f\x6c\xbf\x06\x27\x4f\x1d\x3d\x31\x39" "\xf7\xd4\xd3\xb7\xcc\x1e\x3d\x70\x78\xe6\xf0\xcc\xb1\x6d\x5b\xb6\x4c\x6d" "\xdb\xb1\x63\xd7\xae\x5d\x93\x87\x66\x8f\xcc\x4c\xd5\xff\xbc\xc8\xb3\xdd" "\xfb\x56\x65\x83\xe9\x35\xb0\x3e\x9c\xbb\xf8\x1a\xb8\xb1\x65\xdb\xc6\xa5" "\x3a\xff\x8d\xd1\x45\xef\xbf\x17\xfb\x3a\x1c\x6b\xf3\x3a\x5c\xdd\xb2\x6d" "\xb7\x5f\x87\xc3\xad\x0f\x6e\xe0\xf2\xbc\x20\x17\xaf\xe9\xfa\x6b\xe3\xa1" "\xda\x49\x1f\x3b\x37\x98\x2d\xf1\x1a\xcb\x9f\x9f\xcd\x97\xfe\x3a\x4c\x8f" "\xbb\xe1\x75\x38\xdc\xf0\x3a\x2c\xfc\x9c\x52\xf0\x3a\x1c\x5e\xc6\xeb\xb0" "\xb6\xcd\x89\xcd\xcb\xfb\x9a\x65\xb8\xe1\xbf\xa2\x63\x58\xfa\x73\xc1\xa5" "\xad\xc1\xd5\x0d\x6b\xb0\xf5\xeb\x91\xd6\x35\xd8\xed\xaf\x47\x7a\x65\x0d" "\x8e\x85\x75\xf1\xc3\xcd\x4b\x7f\x2e\x58\x1b\x8e\xf7\xf9\x89\x0b\xfd\x7a" "\x64\x68\xd1\x1a\x4c\x0f\x37\xbc\xf7\xd4\x2e\x49\x5f\xef\x8f\xed\xca\x47" "\xd1\xba\xbc\xae\x76\xc5\x15\xa3\xd9\xe9\xb9\x99\x93\xb7\x3e\x79\xe0\xd4" "\xa9\x93\x5b\xb2\x30\x2e\x8b\xf7\x35\xac\x95\xd6\xf5\xba\xaa\xe1\x31\x65" "\x8b\xd6\xeb\xe0\x05\xaf\xd7\xbd\xb3\x1f\x7c\xfe\xba\x82\xcb\x57\x87\x73" "\x35\x76\x4b\xed\x8f\xb1\x25\x9f\xab\xda\x36\xdb\x6f\x6d\xff\x5c\xe5\x9f" "\xdd\x8a\xcf\x67\xd3\xa5\x5b\xb3\x30\xba\xec\x72\x9f\xcf\xa2\xcf\xe6\xb5" "\xf3\x39\x9a\x65\x5f\xfb\xde\xb3\x0f\x7c\xe7\x99\xaf\xdd\xb9\xe4\xf9\xac" "\xe5\xcd\xcf\x4f\x5e\xfa\xd7\xe2\x29\x97\x36\xbc\xff\x8e\x2c\xf1\xfe\x1b" "\x73\xff\x5b\xf5\xfd\xa5\xbb\x7a\x6e\x68\x64\xb8\xfe\xfa\x1d\x4a\x67\x67" "\xa4\xe9\xfd\xb8\xf9\xa9\x1a\xce\xdf\xbb\x06\xf2\x7d\xbf\x39\xb9\xbc\xf7" "\xe3\x91\xf0\xdf\xe5\x7e\x3f\xbe\xba\xcd\xfb\xf1\x9a\x96\x6d\xbb\xfd\x7e" "\x3c\xd2\xfa\xe0\xe2\xfb\xf1\x40\xa7\xef\x76\x5c\x9a\xd6\xe7\x73\x2c\xac" "\x93\x23\x53\xed\xdf\x8f\x6b\xdb\xac\xd9\x7a\xa1\x6b\x72\xb8\xed\xfb\xf1" "\x0d\x61\x0e\x84\xf3\x7f\x53\x48\x0a\x29\x17\x35\xac\x9d\xa5\xd6\x6d\xda" "\xd7\xf0\xf0\x48\x78\x5c\xc3\x71\x0f\xcd\xeb\x74\x5b\xd3\xf6\x23\x21\x9b" "\xd5\xf6\xf5\xd2\xd6\x8b\x5b\xa7\x9b\x6e\xa8\xdf\xd7\x50\x7a\x74\x0b\x2e" "\xd7\x3a\x1d\x6f\xd9\xb6\xdb\xeb\x34\x7d\xef\x6b\xa9\x75\x3a\xd0\xe9\xbb" "\x6f\x17\xa7\xf5\xf9\x1c\x0b\xeb\xe2\xea\x6d\xed\xd7\x69\x6d\x9b\x57\xb7" "\x5f\xfa\x7b\xe7\xca\xf8\xd7\x86\xf7\xce\xd1\x4e\x6b\x70\x64\x68\xb4\x76" "\xcc\x23\x69\x11\xe6\xef\xf7\xd9\xfc\xca\xb8\x06\x6f\xcd\x0e\x66\xc7\xb3" "\x23\xd9\x74\x7e\xed\x68\xbe\x9e\x06\xf2\x7d\x4d\xdc\xb6\xbc\x35\x38\x1a" "\xfe\xbb\xdc\xef\x95\x6b\xda\xac\xc1\x4d\x2d\xdb\x76\x7b\x0d\xa6\xcf\x63" "\x4b\xad\xbd\x81\xe1\xc5\x0f\xbe\x0b\x5a\x9f\xcf\xb1\xb0\x2e\x5e\xb8\xad" "\xfd\x1a\xac\x6d\x73\xd7\xce\xee\x7e\xed\xba\x29\x5c\x92\xb6\x69\xf8\xda" "\xb5\xf5\xfb\x6b\x4b\x7d\xcf\xeb\xba\x96\xd3\xf4\x76\xad\x95\xe1\x70\x9c" "\xdf\xdb\xd9\xfe\x7b\xb3\xb5\x6d\x8e\xec\xba\xd0\x9c\xd9\xfe\x3c\xdd\x1c" "\x2e\xb9\xa2\xe0\x3c\xb5\xbe\x7e\x97\x7a\x4d\x4d\x67\x97\xe7\x3c\xad\x09" "\xc7\xf9\xc6\xae\xa5\xcf\x53\xed\x78\x6a\xdb\x7c\x75\xf7\x32\xd7\xd3\xde" "\x2c\xcb\xce\x3c\x71\x47\xfe\xfd\xde\xf0\xef\x2b\x7f\x7b\xfa\x07\x2f\x37" "\xfd\xbb\x4b\xd1\xbf\xe9\x9c\x79\xe2\x8e\x9f\xbe\xfb\xd0\x3f\x5c\xc8\xf1" "\x03\xd0\xff\xde\xaa\x8f\x55\xf5\xcf\x75\x0d\xff\x32\xb5\x9c\x7f\xff\x07" "\x00\x00\x00\xfa\x42\xcc\xfd\x83\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\xf1\xff\x0a\x4f\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x87\xc3\x4c\x2a" "\x92\xff\xd7\xdc\xf5\xc6\xec\x5b\x67\xb2\xd4\xcc\x9f\x0f\xe2\xf5\xe9\x34" "\xdc\x5b\xdf\x2e\x76\x5c\xa7\xc2\xc7\xe3\xf3\x0b\x6a\x97\xdf\xf1\xe2\xcc" "\x7f\xfd\xfd\x99\xe5\xed\x7b\x30\xcb\xb2\x5f\xdc\xfb\x07\x85\xdb\xaf\xb9" "\x37\x1e\x57\xdd\x78\x38\xce\xf3\x1f\x6d\xbe\x7c\x91\x97\x6f\x59\xd6\xbe" "\xf7\x3f\x7c\x26\xed\xb7\xb1\xbf\xfe\xf5\x70\xff\xf1\xf1\x2c\x77\x19\x14" "\x55\x70\xa7\xb2\x2c\x7b\xe5\xaa\x2f\xe7\xfb\x19\x7f\xf4\x5c\x3e\x5f\xbd" "\x77\x7f\x3e\x1f\x38\xfb\xfc\x73\xb5\x6d\xde\xdc\x5d\xff\x38\xde\xfe\xf5" "\xf7\xd5\xb7\xff\xf3\x50\xfe\xdd\x7b\xe8\x40\xd3\xed\x5f\x0f\xe7\xe1\xc7" "\x61\x4e\xdd\x57\x7c\x3e\xe2\xed\xbe\x75\xee\xa6\xb5\x3b\x1f\x59\xd8\x5f" "\xbc\xdd\xc0\xfa\x2b\xf3\x87\xfd\xc2\x63\xf5\xfb\x8d\x3f\x27\xe7\x2b\xcf" "\xd5\xb7\x8f\xe7\x79\xa9\xe3\xff\xce\x97\x5e\xfa\x56\x6d\xfb\x27\x3f\x54" "\x7c\xfc\x67\x06\x8b\x8f\xff\xa5\x70\xbf\x2f\x86\xf9\x3f\x1f\xa8\x6f\xdf" "\xf8\x1c\xd4\x3e\x8e\xb7\xfb\x42\x38\xfe\xb8\xbf\x78\xbb\x5b\xbf\xf9\xdd" "\xc2\xe3\x3f\xff\xc5\xfa\xf6\x27\xee\xae\x6f\xb7\x3f\xcc\xb8\xff\x4d\xe1" "\xe3\x0d\x77\xbf\x31\xdb\x78\xbe\x9e\x1c\x38\xd0\xf4\xb8\xb2\x8f\xd5\xb7" "\x8b\xfb\x9f\xfa\xc1\x1f\xe5\xd7\xc7\xfb\x8b\xf7\xdf\x7a\xfc\x63\xfb\xce" "\x35\x9d\x8f\xd6\xf5\xf1\xea\xbf\xd6\xef\x67\xb2\x65\xfb\x78\x79\xdc\x4f" "\xf4\x77\x2d\xfb\xaf\xdd\x4f\xe3\xfa\x8c\xfb\x7f\xe9\x0f\xf7\x37\x9d\xe7" "\x4e\xfb\x3f\xff\xc0\xeb\x1f\xa8\xdd\x6f\xeb\xfe\x6f\x6e\xd9\xee\xc4\x13" "\x9b\xf3\xfd\x2f\xdc\x5f\xf3\x4f\x6c\xfa\x8b\x2f\x7c\xb9\x70\x7f\xf1\x78" "\xf6\xfe\xcd\x89\xa6\xc7\xb3\xf7\xfe\xf0\x3a\x0e\xfb\x7f\xe1\xb1\xb0\x1e" "\xc3\xf5\xff\x7b\xbe\x7e\x7f\xad\x3f\x5d\x61\xff\xfd\xcd\xef\x3f\x71\xfb" "\xaf\xaf\x3e\xd3\xf4\x78\xa2\x7b\x7e\x5e\xdf\xff\xf9\xdb\x0f\xe7\x73\xc5" "\xd8\xca\x55\x57\xbc\xeb\xdd\x57\x9e\xbd\xbe\x76\xee\xb2\xec\xb5\x15\xf5" "\xfb\xeb\xb4\xff\xc3\x7f\x79\xbc\xe9\xf8\xbf\x71\x4d\xfd\x7c\xc4\xeb\x63" "\x47\xbf\x75\xff\x4b\x89\xfb\x3f\xf9\xb9\x89\x63\xc7\xe7\x4e\xcf\x4e\xa7" "\xb3\xfa\xcc\x55\xf9\xcf\xce\xf9\x78\xfd\x78\xe2\xf1\x5e\x15\xde\x5b\x5b" "\x3f\xde\x77\xfc\xd4\xe3\x33\x27\xc7\xa7\xc6\xa7\xb2\x6c\xbc\xbc\x3f\x42" "\xef\xa2\x7d\x33\xcc\x9f\xd6\xc7\xd9\x0b\xbd\xfd\xe6\x87\xc3\xf3\x79\xdd" "\x9f\xbd\xb2\x6a\xe3\xbf\x7c\x29\x5e\xfe\x6f\x0f\xd5\x2f\x3f\x77\x5f\xfd" "\xf3\xd6\x8d\x61\xbb\xaf\x84\xcb\x57\x87\xe7\xef\x52\xf7\xff\xc2\xba\x6b" "\xf2\xd7\xf7\xc0\xab\xf5\x8f\x9b\x7a\xec\x5d\xb0\x76\xc3\x7f\xee\x5a\xd6" "\x86\xe1\xf1\xb7\x7e\x5d\x10\xd7\xfb\x89\xf7\x3f\x9e\x9f\x87\xda\x75\xf9" "\xe7\x8d\xf8\xba\xbe\xc4\xe3\xff\xd1\x74\xfd\x7e\xbe\x1d\xce\xeb\x7c\xf8" "\xc9\xcc\xeb\xaf\x59\xd8\x5f\xe3\xf6\xf1\x67\x23\x9c\x7b\xb0\xfe\x7a\xbf" "\xe4\xf3\x17\xde\xe6\xe2\xf3\xfa\xd7\xe1\xf9\xfe\xc4\x8f\xeb\xf7\x1f\x8f" "\x2b\x3e\xde\x1f\x85\xaf\x63\xbe\xbb\xa6\xf9\xfd\x2e\xae\x8f\x6f\x9f\x19" "\x6c\xbd\xff\xfc\xa7\x78\x9c\x0d\xef\x27\xd9\xd9\xfa\xf5\x71\xab\x78\xbe" "\xcf\xbd\x79\x4d\xe1\xe1\xc5\x9f\x43\x92\x9d\xbd\x36\xff\xf8\x8f\xd3\xfd" "\x5c\x7b\x41\x0f\x73\x29\x73\x4f\xcd\x4d\x1e\x99\x3d\x76\xfa\xc9\xc9\x53" "\x33\x73\xa7\x26\xe7\x9e\x7a\x7a\xdf\xd1\xe3\xa7\x8f\x9d\xda\x97\xff\x2c" "\xcf\x7d\x9f\xe9\x74\xfb\x85\xf7\xa7\x55\xf9\xfb\xd3\xf4\xcc\x8e\xed\x59" "\xfe\x6e\x75\xbc\x3e\xde\x66\xef\xf4\xf1\x9f\x78\xf8\xe0\xf4\xce\xa9\x8d" "\xd3\x33\x87\x0e\x9c\x3e\x74\xea\xe1\x13\x33\x27\x0f\x1f\x9c\x9b\x3b\x38" "\x33\x3d\xb7\xf1\xc0\xa1\x43\x33\x9f\xeb\x74\xfb\xd9\xe9\x3d\x5b\xb6\xee" "\xde\xb6\x73\xeb\xc4\xe1\xd9\xe9\x3d\xbb\x76\xef\xde\xb6\x7b\x62\xf6\xd8" "\xf1\xda\x61\xd4\x0f\xaa\x83\x1d\x53\x9f\x9d\x38\x76\x72\x5f\x7e\x93\xb9" "\x3d\xdb\x77\x6f\xb9\xed\xb6\xed\x53\x13\x47\x8f\x4f\xcf\xec\xd9\x39\x35" "\x35\x71\xba\xd3\xed\xf3\xcf\x4d\x13\xb5\x5b\xff\xfe\xc4\xc9\x99\x23\x07" "\x4e\xcd\x1e\x9d\x99\x98\x9b\x7d\x7a\x66\xcf\x96\xdd\x3b\x76\x6c\xed\xf8" "\xd3\x00\x8f\x9e\x38\x34\x37\x3e\x79\xf2\xf4\xb1\xc9\xd3\x73\x33\x27\x27" "\xeb\x8f\x65\xfc\x54\x7e\x71\xed\x73\x5f\xa7\xdb\x53\x4e\x73\xff\x5e\xff" "\x7a\xb6\xd5\x40\xfd\x07\xf1\x65\x9f\xba\x79\x47\xfa\xf9\xac\x35\x2f\x3e" "\xbb\xe4\x5d\xd5\x37\x69\xf9\x01\xa2\x6f\x84\x9f\x45\xf3\x4f\xef\x39\xb1" "\x6b\x39\x1f\xc7\xdc\x3f\x12\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73" "\xff\x68\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x8a\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\xb1\x30\x93\x8a\xe4\xff\xd2\xf5\xff\xd7\x9c" "\x59\xd6\xfe\xf5\xff\xf5\xff\x1b\xcf\x97\xfe\x7f\xc5\xfa\xff\x0f\xf6\x5a" "\xff\xbf\xfe\x7e\xa1\xff\xdf\x1d\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff" "\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\x95\x59\x56\xc9\xfc\x0f" "\x00\x00\x00\x55\x10\x73\xff\xaa\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\x2b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xdf\x15\x66\x52\x91" "\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\xbc\x7f\xfd\xff\xfe\xa4" "\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\x93\x59\xb5\xfa\xff\x67\xbb\x79\xfc\xfa" "\xff\xfa\xff\x2c\xd6\x6b\xfd\xff\x98\xfb\xdf\x1d\x66\x52\x91\xfc\x0f\x00" "\x00\x00\x55\x10\x73\xff\x95\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd" "\x57\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xaf\x0e\x33\xa9\x48\xfe" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\xde\xbf\xfe\x7f\x7f\xd2\xff" "\x6f\x4f\xff\xbf\x03\xfd\x7f\xbf\xff\x5f\xff\x5f\xff\x9f\xae\xea\xb5\xfe" "\x7f\xcc\xfd\xef\x09\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xbd" "\x61\x26\xf2\x3f\x00\x00\x00\xf4\x9e\xe1\x8b\xbb\x59\xcc\xfd\xef\x0b\x33" "\x59\x94\xff\x2f\x72\x07\x00\x00\x00\xc0\x3b\x2e\xe6\xfe\xab\xb3\x96\x22" "\x78\x45\xfe\xfd\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x78\xff\xcb" "\xef\xff\x0f\x65\xfa\xff\xbd\x43\xff\xbf\x3d\xfd\xff\x0e\xf4\xff\xf5\xff" "\xf5\xff\xf5\xff\xe9\xaa\x5e\xeb\xff\xe7\xb9\x3f\x1b\xcb\xde\x1f\x66\x52" "\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x35\x61\x26\xf2\x3f\x00\x00\x00" "\x94\x46\xcc\xfd\xff\x2f\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x4d" "\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfe\xfd" "\xfe\xff\xfe\xa4\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\x74\x55\xaf\xf5\xff\x63\xee\xbf\x36\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa" "\x20\xe6\xfe\xeb\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xff\x7f\x98" "\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xda\x30\x93\x8a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2\xfd\xeb\xff\xf7\x27\xfd\xff\xf6\xf4" "\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73\xff" "\x07\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\x60\x98\x89\xfc" "\x0f\x00\x00\x00\xa5\x11\x73\xff\xf5\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\xe3\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xc5\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff" "\xdf\xb9\xff\xff\x72\xf1\xed\xf5\xff\x29\xd2\x6b\xfd\xff\x98\xfb\xd7\x85" "\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x3e\xcc\x44\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\xff\x86\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe" "\x0d\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb" "\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xff\xb6\xf4\xe7\xd7\xeb" "\xff\x97\xab\xff\xbf\x04\xfd\x7f\x8a\xf4\x5a\xff\x3f\xe6\xfe\x0f\x85\x99" "\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x31\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\xff\xc6\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x4d" "\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb\xd7" "\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xef\xf7\xff\xeb\xff\xeb\xff" "\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\xa6\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8" "\x82\x98\xfb\x37\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x1c\x66" "\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x3f\x11\x66\x52\x91\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\x5f\xbc\x7f\xfd\xff\xfe\xa4\xff\xdf\x9e\xfe" "\x7f\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\xbf" "\x25\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x5b\xc3\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\x27\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98" "\xfb\xa7\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x2f\xa8\xff" "\x7f\xfd\xc2\xfd\xea\xff\xd7\xe9\xff\xf7\x16\xfd\xff\xf6\xf4\xff\x3b\xd0" "\xff\xd7\xff\x7f\xc7\xfb\xff\x23\xfa\xff\x94\x4a\xaf\xf5\xff\x63\xee\xdf" "\x12\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xd6\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\x6d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\xdb\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xfd\xfe\xff" "\xe2\xfd\xeb\xff\xf7\x27\xfd\xff\xf6\xba\xdf\xff\x8f\x0f\x51\xff\x5f\xff" "\x5f\xff\xdf\xef\xff\xd7\xff\x67\xb1\x5e\xeb\xff\xc7\xdc\x7f\x5b\x98\x49" "\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x3b\xc2\x4c\xe4\x7f\x00\x00\x00" "\x28\x8d\x98\xfb\x77\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xef\x0a" "\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\xde\xbf\xfe" "\x7f\x7f\xd2\xff\x6f\xcf\xef\xff\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f" "\xae\xea\xb5\xfe\x7f\xcc\xfd\xbb\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a" "\x62\xee\xff\x70\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xaf\x84\x99" "\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\x6a\x98\x49\x45\xf2\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfe\xf5\xff\xfb\x93\xfe\x7f\x7b\xfa" "\xff\x1d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x55\xbd\xd6\xff\x8f\xb9\x7f" "\x4f\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xbf\x16\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\x7f\x7b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11" "\x73\xff\xde\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\xe2\xfd\xeb\xff\xf7\x27\xfd\xff\xf6\xf4\xff\x3b\xd0\xff\xd7\xff\xd7\xff" "\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73\xff\x47\xc2\x4c\x2a\x92\xff\x01\x00" "\x00\xa0\x0a\x62\xee\xbf\x23\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\xce\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xbb\xc2\x4c\x2a\x92\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xf7\xaf\xff\xdf\x9f\xf4\xff" "\xdb\xd3\xff\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea\xb5\xfe\x7f" "\xcc\xfd\x1f\x0d\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xee\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x8f\x85\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\xdf\x13\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\x5f\xbc\x7f\xfd\xff\xfe\xa4\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\xff\xf5\x30\x93\x8a\xe4" "\x7f\x00\x00\x00\xa8\x82\x98\xfb\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xe3\x61\x26" "\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb\xd7\xff\xef" "\x4f\xfa\xff\xed\xf5\x59\xff\xff\x97\x57\x86\xcb\xf5\xff\xeb\xf4\xff\x7b" "\xfb\xf8\xfb\xab\xff\x3f\xbf\xa2\xf5\xf6\xfa\xff\xbc\x1d\x7a\xad\xff\x1f" "\x73\xff\x27\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xff\x64\x98" "\xc1\xd8\x3b\x77\x44\x00\x00\x00\x40\xb7\xc5\xdc\xff\xa9\x30\x13\xff\xfe" "\x0f\x00\x00\x00\xa5\x11\x73\xff\x6f\x84\x99\x54\x24\xff\xeb\xff\xd7\x8e" "\x63\xa1\xbd\xac\xff\xaf\xff\x9f\x5f\xa0\xff\xaf\xff\xaf\xff\xdf\xb7\xf4" "\xff\xdb\xeb\xb3\xfe\xbf\xdf\xff\xdf\x42\xff\xbf\xb7\x8f\xbf\xbf\xfa\xff" "\x8b\xe9\xff\xf3\x76\xe8\xb5\xfe\x7f\xcc\xfd\xf7\x87\x99\x54\x24\xff\x03" "\x00\x00\x40\x15\xc4\xdc\xff\x40\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73" "\xff\x83\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x0f\x85\x99\x54\x24" "\xff\xeb\xff\xfb\xfd\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb\xd7\xff\xef\x4f" "\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a" "\xff\x3f\xe6\xfe\x87\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f" "\x24\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x37\xc3\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\x3f\x1d\x66\x52\x91\xfc\xaf\xff\xdf\x2f\xfd\xff" "\x71\xfd\x7f\xfd\x7f\xfd\xff\x96\xc7\xa3\xff\xaf\xff\x5f\x44\xff\xbf\x3d" "\xfd\xff\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xaa\x5e\xeb\xff\xc7\xdc" "\xff\x68\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xbf\x15\x66\x22" "\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xdb\x61\x26\xf2\x3f\x00\x00\x00\x94" "\x46\xcc\xfd\xbf\x13\x66\x52\x91\xfc\xaf\xff\xdf\x2f\xfd\x7f\xbf\xff\x3f" "\xd3\xff\xd7\xff\x6f\x79\x3c\xfa\xff\xfa\xff\x45\x2e\x5f\xff\x3f\xbe\xf3" "\xe8\xff\xeb\xff\xeb\xff\x47\xfa\xff\xfa\xff\xfa\xff\xb4\xea\xb5\xfe\x7f" "\xcc\xfd\xbf\x1b\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x63\x61" "\x26\xf2\x3f\x00\x00\x00\xf4\x85\xa2\xff\x27\xbb\x55\xcc\xfd\xfb\xc2\x4c" "\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xf7\x87\x99\x54\x24\xff\xeb\xff\xeb" "\xff\xeb\xff\xf7\x68\xff\xff\x4f\xd7\xff\xf3\x0f\xbf\xff\xc9\xfd\x5b\xf4" "\xff\xf5\xff\xf5\xff\x2f\xc8\x65\xfd\xfd\xff\xb5\x17\xbf\xdf\xff\xaf\xff" "\xaf\xff\x9f\xe8\xff\xeb\xff\xeb\xff\xd3\xaa\xd7\xfa\xff\x31\xf7\x1f\x08" "\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xf7\xc2\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7" "\x4f\x87\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xf7\x68\xff\xbf\x8f\x7f" "\xff\x7f\x3c\x1f\xfa\xff\xcd\xba\xd6\xff\x8f\x6f\xba\xfa\xff\x85\x2e\x6b" "\xff\xff\x91\x85\x9e\xb8\xfe\xff\x85\xf6\xff\x47\x0b\x2f\xd5\xff\xd7\xff" "\xef\xe7\xe3\xd7\xff\xd7\xff\x67\xb1\x5e\xeb\xff\xc7\xdc\x3f\x13\x66\x52" "\x91\xfc\x0f\x00\x00\x00\x55\x10\x72\xff\xe0\xa1\xfa\x5c\xb8\x42\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\xff\x70\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73" "\xff\xe3\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x7e\xff\x7f" "\xf1\xfe\x7b\xb6\xff\xef\xf7\xff\xb7\xa5\xff\xdf\x5e\xef\xf4\xff\x8b\xe9" "\xff\xeb\xff\xf7\xf3\xf1\xeb\xff\xeb\xff\xb3\x58\xaf\xf5\xff\x63\xee\x9f" "\x0d\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\x33\x61\x26\xf2\x3f" "\x00\x00\x00\x94\x46\xcc\xfd\x9f\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62" "\xee\x3f\x12\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f" "\xbc\x7f\xfd\xff\xfe\xa4\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\x3f\x1a\x66\x52\x91\xfc\x0f\x00\x00" "\x00\x55\x10\x73\xff\xb1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xe3" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x27\xc2\x4c\x2a\x92\xff\x2f" "\xa9\xff\x3f\xa2\xff\x1f\xe9\xff\x37\x1f\x7f\x4f\xf4\xff\x6f\xd7\xff\x5f" "\x6a\xff\xfa\xff\xfa\xff\x65\xa6\xff\xdf\xde\xff\xb1\x77\x1f\x4d\x7a\xdc" "\xd5\x1e\xc7\x47\xf7\xca\x75\xa5\xf2\x0b\xb8\x0b\x36\xec\x79\x09\xde\xb0" "\x86\x17\xc0\x82\x0d\x0b\xa8\xa2\x58\x40\x81\xc9\xc9\x36\x39\x9a\x9c\x83" "\xc9\xd9\x04\x1b\x8c\x49\x26\x27\x9b\x64\x30\x19\x9b\x9c\xb3\xc9\x86\x2a" "\x51\xa0\x73\x8e\x34\x33\x3d\xfd\x8c\xe4\x47\x52\xf7\xff\x7c\x3e\x9b\x83" "\x06\x86\x7e\xa8\x52\x49\xfc\x2c\x7d\xab\xf5\xff\x1b\xe8\xff\xf5\xff\xfa" "\x7f\xfd\x3f\x5b\xb5\xb4\xfe\x3f\x77\xff\x83\xe3\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\x90\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x34" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x1a\xb7\x34\xd9\xff\x7b\xfa" "\xff\x23\x3b\x3d\xdf\xff\x9f\x19\xaf\xfe\x7f\xa4\xfe\xdf\xfb\xff\x0f\x7c" "\xbe\xfe\x5f\xff\x3f\xb2\xf3\xdb\xff\x5f\xf1\x9f\x5f\xf9\xf4\xff\xfa\x7f" "\xfd\x7f\xd0\xff\xeb\xff\xf5\xff\xec\xb5\xb4\xfe\x3f\x77\xff\xc3\xe2\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xf0\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\x7f\x44\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x32\x6e" "\x69\xb2\xff\xef\xd4\xfb\xff\xc7\xe9\xff\x8b\xfe\x5f\xff\xff\xdf\x2f\xe8" "\xff\xf5\xff\xfa\xff\xd5\xf2\xfe\xff\x79\x9d\xfa\xff\x4b\x6f\xb9\xf8\x81" "\xb7\x5f\x77\x97\xeb\xcf\xe4\xf9\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x76\x2d" "\xad\xff\xcf\xdd\xff\xa8\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f" "\x3a\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x13\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\x8f\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x4f\x3f\x5f\xff\xbf\x4e\xfa\xff\x79\x9d\xfa\xff\xb3\x79\xbe\xfe" "\x5f\xff\xaf\xff\xd7\xff\xb3\x5d\xe7\xbc\xff\x8f\x6f\x3c\x6c\xff\x9f\xbb" "\xff\x71\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x7c\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\x5f\x16\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x97\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xa7\x9f" "\xaf\xff\x5f\x27\xfd\xff\x3c\xfd\xff\x06\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\x56\x2d\xed\xfd\xff\xb9\xfb\xaf\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20" "\x77\xff\x13\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x89\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa4\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xff\xf4\xf3\xf5\xff\xeb\xa4\xff\x9f\xa7\xff\xdf\x40\xff" "\x7f\x67\xfb\xf9\x8b\xf4\xff\xfa\x7f\xfd\x3f\xa7\x3b\xc3\xfe\xff\x8e\x99" "\x5f\xb6\xb7\xd2\xff\xe7\xee\x7f\x72\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\x9f\x12\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x8d\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\xa7\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xa7\x9f\xaf\xff\x5f\x27\xfd\xff\xbc\xc5\xf4\xff\x47" "\x8e\x4e\x7e\x59\xff\xbf\xfa\xfe\xdf\xfb\xff\xf5\xff\xfa\x7f\x76\x59\xda" "\xfb\xff\x73\xf7\x3f\x3d\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xcf" "\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x67\xc6\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\xb3\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xd3\xcf\x9f\xeb\xff\xaf\x3f\xed\xf3\xe9\xff\x97\x45\xff\x3f\x6f" "\x31\xfd\xff\x01\xf4\xff\xfa\xff\x35\x7f\x7e\xfd\xbf\xfe\x9f\xfd\x96\xd6" "\xff\xe7\xee\x7f\x76\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xaf\x8c" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xe7\xc4\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x73\xe3\x96\x26\xfb\x7f\xba\xff\x3f\xf5\xef\xeb\xff\x0f" "\x47\xff\xbf\xfb\xf3\xeb\xff\xa7\x7f\x7e\x6c\xab\xff\xcf\xff\x46\xfd\xff" "\x6c\xff\x7f\x77\xef\xff\xef\x49\xff\x3f\x4f\xff\xbf\x81\xfe\x5f\xff\xaf" "\xff\x3f\xa8\xff\x3f\xbe\xe9\xfb\xf5\xff\x4c\x59\x5a\xff\x9f\xbb\xff\x79" "\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x7e\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\xbf\x20\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f" "\x18\xb7\x34\xd9\xff\xde\xff\xaf\xff\xd7\xff\xaf\xaf\xff\xf7\xfe\xff\x93" "\x2e\xe4\xfb\xff\x77\xce\x7b\xff\x7f\x54\xff\x7f\x48\xfa\xff\x79\xfa\xff" "\x0d\xf4\xff\xfa\x7f\xfd\xbf\xf7\xff\xb3\x55\x4b\xeb\xff\x73\xf7\xbf\x28" "\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x2f\x8e\x5b\xec\x7f\x00\x00" "\x00\x58\x87\xd3\xff\xee\xc0\xde\xbf\x50\x1a\x72\xf7\xbf\x24\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x5f\x1a\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x9f\x7e\xfe\xb2\xfa\x7f\xef\xff\x3f\x2c\xfd\xff\x3c\xfd" "\xff\x06\xfa\xff\x73\xd1\xcf\x1f\x1d\xac\xff\xbf\xea\xa0\xef\x5f\x42\xff" "\x7f\x99\xfe\x9f\x85\xd9\xd5\xff\xdf\x70\xea\xeb\x17\xaa\xff\xcf\xdd\xff" "\xb2\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x3c\x6e\xb1\xff\x01" "\x00\x00\x60\x18\xb9\xfb\x5f\x11\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd" "\xaf\x8c\x5b\x9a\xec\xff\x73\xde\xff\x1f\x3f\xf8\xd9\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\x6f\x9b\xfe\x7f\x9e\xfe\x7f\x03\xfd\xbf\xf7\xff" "\x7b\xff\xbf\xfe\x9f\xad\xda\xd5\xff\x9f\xe6\x42\xf5\xff\xb9\xfb\x5f\x15" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x57\xc7\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x55\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x9a" "\xb8\xa5\xc9\xfe\xf7\xfe\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x9f\x7e\xbe\xfe" "\x7f\x9d\xf4\xff\xf3\xf4\xff\x1b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x5b\xb5" "\xb4\xfe\x3f\x77\xff\x6b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xba\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x7d\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\xbf\x21\x6e\x69\xb2\xff\xf5\xff\xe7\xb6\xff\xcf\xaf" "\xeb\xff\xf5\xff\x3b\xfa\x7f\xfd\xbf\xfe\xff\xbc\x68\xdb\xff\x1f\x99\xfa" "\x9d\x68\xbf\x03\xfa\xff\x9b\xee\x7f\xf9\x3d\x77\x7f\x45\xff\xaf\xff\xdf" "\x56\x3f\x7f\x4c\xff\xaf\xff\xd7\xff\x77\xb6\x88\xfe\xff\xc4\xa9\xff\x77" "\x99\xbb\xff\x8d\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x53\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x39\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\xdf\x12\xb7\x34\xd9\xff\xfa\x7f\xef\xff\xd7\xff\xeb\xff\xf5" "\xff\xd3\xcf\xd7\xff\xaf\x53\xdb\xfe\xff\x90\xbc\xff\x7f\x03\xfd\xbf\xf7" "\xff\xeb\xff\xf5\xff\x6c\xd5\x22\xfa\xff\xd3\x7e\x9c\xbb\xff\xad\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x5b\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\xbf\x3d\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x11\xb7" "\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x9f\x7e\xbe\xfe\x7f\x9d" "\xf4\xff\xf3\xf4\xff\x1b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x5b\xb5\xb4\xfe" "\x3f\x77\xff\xd5\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x67\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x2b\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\xdf\x1d\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x9f\x7e\xbe\xfe\x7f\x9d\xf4\xff\xf3\xf4\xff\x3b\x3b\x3b\xd7\xcc\x7c\x80" "\xa9\xfe\xff\xc4\xff\xe9\xff\xf5\xff\xfa\x7f\xfd\x3f\x67\x69\x69\xfd\x7f" "\xee\xfe\xf7\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x9a\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x36\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\xdf\x1b\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x9f" "\x7e\xbe\xfe\x7f\x9d\xf4\xff\xf3\xf4\xff\x1b\x78\xff\xbf\xfe\x5f\xff\xaf" "\xff\x67\xab\x96\xd6\xff\xe7\xee\x7f\x5f\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\xaf\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xf7\xc7\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xf5\x71\x4b\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xe9\xe7\xeb\xff\xd7\xe9\xdc\xf5\xff\x3b\xfa\x7f" "\xfd\xbf\xfe\x7f\x03\xfd\xbf\xfe\x5f\xff\xcf\x5e\x4b\xeb\xff\x73\xf7\x7f" "\x20\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x1f\x8c\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x0f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\x87\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xd3\xcf\xd7" "\xff\xaf\x93\xf7\xff\xcf\xd3\xff\x6f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x6c" "\xd5\xd2\xfa\xff\xdc\xfd\x1f\x89\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x0d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd1\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\xff\x58\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\xfa\xf9\xe7\xa1\xff\x3f\xb6\xa3\xff\xdf\x3a\xfd\xff\x3c" "\xfd\xff\x06\xfa\xff\x31\xfb\xff\xff\xd9\x19\xa8\xff\x3f\x7e\xe0\xf7\xeb" "\xff\x59\xa2\xa5\xf5\xff\xb9\xfb\x3f\x1e\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\x4f\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x27\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x53\x71\x4b\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xe9\xe7\x7b\xff\xff\x3a\xe9\xff\xe7\xe9\xff\x37" "\xd0\xff\x8f\xd9\xff\x7b\xff\xbf\xfe\x9f\x0b\x66\x69\xfd\x7f\xee\xfe\x4f" "\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x33\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xd9\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff" "\x5c\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfa\xf9\xfa" "\xff\x75\xd2\xff\xcf\xd3\xff\x6f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x6c\xd5" "\xd2\xfa\xff\xdc\xfd\x9f\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\x8d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x53\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\x7f\x21\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xff\x3a" "\xfb\xff\x63\xfa\x7f\xfd\xbf\xfe\x7f\xd2\x52\xfa\xff\x4b\x2e\xb9\xc7\xcd" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x77\xb7\xb4\xfe\x3f\x77\xff" "\x17\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xa5\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\xff\x72\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\x7f\x25\x6e\x69\xb2\xff\xf7\xf7\xff\x17\xed\x9c\x2c\x54\x4f\x9a\xea\xff" "\xa3\x51\xd3\xff\x9f\x46\xff\xbf\xfb\xf3\xeb\xff\xa7\x7f\x7e\x78\xff\xbf" "\xfe\x5f\xff\x7f\xee\x2d\xa5\xff\xf7\xfe\xff\xb3\xfb\xfc\xfa\x7f\xfd\xff" "\x9a\x3f\xff\x19\xf5\xff\x77\xdd\xff\xfd\xfa\x7f\x46\xb4\xb4\xfe\x3f\x77" "\xff\xcd\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x6a\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\x7f\x2d\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x6f\x89\x5b\x9a\xec\x7f\xef\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe9" "\xe7\xeb\xff\xd7\x49\xff\x3f\x4f\xff\xbf\x81\xfe\x5f\xff\xef\xfd\xff\x0f" "\xba\xef\xff\xea\xff\xd9\x9e\xa5\xf5\xff\xb9\xfb\xbf\x1e\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x6f\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\x37\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x5b\x71\x4b\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe9\xe7\xeb\xff\xd7\x49\xff\x3f" "\x4f\xff\xbf\xc1\x3a\xfa\xff\xdb\xf2\xc7\xfa\xff\x65\x7d\xfe\x61\xfa\x7f" "\xef\xff\x67\x8b\x96\xd6\xff\xe7\xee\xff\x76\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\xbf\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xdf\x8d" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xef\xc5\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\x3f\x7e\xff\x7f\x1f\xfd\xff\x9e\xe7\xeb\xff\xf5\xff\x23\xd3\xff\xe7" "\xef\xe8\xd3\xf4\xff\x1b\xac\xa3\xff\xf7\xfe\xff\x85\x7e\x7e\xfd\xbf\xfe" "\x9f\xfd\x96\xd6\xff\xe7\xee\xbf\x35\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\xb7\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xf7\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x07\x71\x4b\x93\xfd\xaf\xff\xef\xd5\xff" "\x1f\xd9\xe9\xd8\xff\x7b\xff\xbf\xfe\x5f\xff\xdf\x89\xfe\x7f\x9e\xfe\x7f" "\x03\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xab\x96\xd6\xff\xe7\xee\xff\x61\xdc" "\xd2\x64\xff\x03\x00\x00\xc0\x5a\xdd\xeb\x6e\x0f\xb8\xf5\xb0\xff\xd9\xdc" "\xfd\x3f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x1f\xc7\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x4f\xe2\x96\x26\xfb\x5f\xff\xdf\xab\xff\xef" "\xf9\xfe\x7f\xfd\xbf\xfe\x5f\xff\xdf\x89\xfe\x7f\x9e\xfe\x7f\x03\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x67\xab\x96\xd6\xff\xe7\xee\xff\x69\xdc\x72\xda\xf0" "\x3b\x7a\xc6\xff\x2b\x01\x00\x00\x80\x25\xc9\xdd\xff\xb3\xb8\xa5\xc9\x9f" "\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f\x1e\xb7\xec\xdb\xff\x27\x0e\xf9\xb7" "\xda\x01\x00\x00\x80\xa5\xc9\xdd\xff\x8b\xb8\xa5\xc9\x9f\xff\xeb\xff\x17" "\xde\xff\xef\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x4c\xe8\xff\xe7\xdd" "\xc9\xfe\xff\xc4\x11\xfd\xbf\xfe\x7f\x86\xfe\x5f\xff\xaf\xff\x67\xaf\xa5" "\xf5\xff\xb9\xfb\x7f\x19\xb7\x34\xd9\xff\x00\x00\x00\x30\xa8\x5d\xff\x44" "\x21\x77\xff\xaf\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xd7\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x9b\xb8\xa5\xc9\xfe\xd7\xff\x2f\xbc" "\xff\x3f\xab\xf7\xff\x1f\xaf\x7f\xa5\xff\x6f\xde\xff\x5f\x79\x6c\xf2\xf9" "\xfa\x7f\xfd\xff\xc8\xf4\xff\xf3\xbc\xff\x7f\x03\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x67\xab\x96\xd6\xff\xe7\xee\xff\x6d\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\x7f\x17\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xbf\x8f\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x3f\xc4\x2d\x4d\xf6\xbf\xfe\x7f\xc4" "\xfe\xdf\xfb\xff\xf5\xff\xf3\xcf\x1f\xa7\xff\xff\xff\x8b\x2f\xbf\xf1\xde" "\xf7\xbb\xf6\x6a\xfd\x3f\xa7\x9c\xcf\xfe\x3f\x7f\x2e\xe8\xff\xf5\xff\xfa" "\xff\x93\xf4\xff\xfa\x7f\xfd\x3f\x7b\x2d\xad\xff\xcf\xdd\xff\xc7\xb8\xa5" "\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xdf\x1e\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x7f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x3f\xc7\x2d" "\x4d\xf6\xbf\xfe\xff\xe0\xfe\xff\x88\xfe\x5f\xff\xbf\xd8\xfe\x3f\x9b\xe2" "\xee\xfd\xbf\xf7\xff\xeb\xff\xf7\xf3\xfe\xff\x79\xfa\xff\x0d\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x9f\xad\x5a\x5a\xff\x9f\xbb\xff\x2f\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xff\x6b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\xff\x2d\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x1e\xb7\x34\xd9\xff" "\xfa\x7f\xef\xff\xd7\xff\xaf\xb1\xff\xf7\xfe\xff\x1d\xfd\xbf\xfe\xff\x00" "\xfa\xff\x79\xfa\xff\x0d\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\xad\x5a\x5a\xff" "\x9f\xbb\xff\x1f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x23\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x19\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\xff\x8a\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\x4f\x3f\x5f\xff\xbf\x4e\xfa\xff\x79\xfa\xff\x0d\xf4\xff\xfa\x7f\xfd\xbf" "\xfe\x9f\xad\x5a\x5a\xff\x9f\xbb\xff\xdf\x01\x00\x00\xff\xff\xd4\x06\x75" "\x46", 24715); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20000180, /*flags=MS_NOSUID*/ 2, /*opts=*/0x20000040, /*chdir=*/1, /*size=*/0x608b, /*img=*/0x20006600); memcpy((void*)0x200000c0, "./file0\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000c0ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[0] = res; memcpy((void*)0x20000100, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 106); syscall(__NR_mknodat, /*dirfd=*/r[0], /*file=*/0x20000100ul, /*mode=*/0ul, /*dev=*/0); *(uint32_t*)0x20000c80 = 0x1b; *(uint32_t*)0x20000c84 = 0; *(uint32_t*)0x20000c88 = 0; *(uint32_t*)0x20000c8c = 0x80000000; *(uint32_t*)0x20000c90 = 0; *(uint32_t*)0x20000c94 = -1; *(uint32_t*)0x20000c98 = 0; memset((void*)0x20000c9c, 0, 16); *(uint32_t*)0x20000cac = 0; *(uint32_t*)0x20000cb0 = -1; *(uint32_t*)0x20000cb4 = 0; *(uint32_t*)0x20000cb8 = 0; *(uint32_t*)0x20000cbc = 0; *(uint64_t*)0x20000cc0 = 0; syscall(__NR_bpf, /*cmd=*/0ul, /*arg=*/0x20000c80ul, /*size=*/0x48ul); } 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); setup_cgroups(); setup_usb(); use_temporary_dir(); do_sandbox_none(); return 0; }