// https://syzkaller.appspot.com/bug?id=a54c567c58548eb0348e7a45e09712d2de0b67bf // 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 #include #include #include #include #include #include #ifndef __NR_bpf #define __NR_bpf 321 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static long syz_genetlink_get_family_id(volatile long name, volatile long sock_arg) { int fd = sock_arg; if (fd < 0) { fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (fd == -1) { return -1; } } struct nlmsg nlmsg_tmp; int ret = netlink_query_family_id(&nlmsg_tmp, fd, (char*)name, false); if ((int)sock_arg < 0) close(fd); if (ret < 0) { return -1; } return ret; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #define USLEEP_FORKED_CHILD (3 * 50 * 1000) static long handle_clone_ret(long ret) { if (ret != 0) { __atomic_store_n(&clone_ongoing, 0, __ATOMIC_RELAXED); return ret; } usleep(USLEEP_FORKED_CHILD); syscall(__NR_exit, 0); while (1) { } } static long syz_clone(volatile long flags, volatile long stack, volatile long stack_len, volatile long ptid, volatile long ctid, volatile long tls) { long sp = (stack + stack_len) & ~15; __atomic_store_n(&clone_ongoing, 1, __ATOMIC_RELAXED); long ret = (long)syscall(__NR_clone, flags & ~CLONE_VM, sp, ptid, ctid, tls); return handle_clone_ret(ret); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[3] = {0x0, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } res = -1; NONFAILING(res = syz_clone(/*flags=*/0, /*stack=*/0, /*stack_len=*/0, /*parentid=*/0, /*childtid=*/0, /*tls=*/0)); if (res != -1) r[0] = res; syscall(__NR_bpf, /*cmd=*/5ul, /*arg=*/0ul, /*size=*/0ul); NONFAILING(syz_genetlink_get_family_id(/*name=*/0, /*fd=*/-1)); NONFAILING(*(uint64_t*)0x400000000140 = 8); NONFAILING(*(uint64_t*)0x400000000148 = 0x20000008b); syscall(__NR_prlimit64, /*pid=*/0, /*res=RLIMIT_RTPRIO*/ 0xeul, /*new=*/0x400000000140ul, /*old=*/0ul); NONFAILING(syz_genetlink_get_family_id(/*name=*/0, /*fd=*/-1)); NONFAILING(*(uint32_t*)0x400000000200 = 4); syscall(__NR_sched_setscheduler, /*pid=*/0, /*policy=SCHED_RR*/ 2ul, /*prio=*/0x400000000200ul); NONFAILING(memcpy((void*)0x400000000080, "bcachefs\000", 9)); NONFAILING(memcpy((void*)0x400000000000, "./file1\000", 8)); NONFAILING(sprintf((char*)0x400000000380, "%020llu", (long long)r[0])); NONFAILING(sprintf((char*)0x400000000394, "%020llu", (long long)-1)); NONFAILING(*(uint32_t*)0x4000000003a8 = -1); NONFAILING(memcpy( (void*)0x4000000003c0, "\x78\x9c\xec\xdd\x6d\x90\x5c\x55\x9d\x30\xf0\x73\xbb\x7b\x32\x9d\x99\xbc" "\x4c\x02\x48\x04\x99\x0c\x81\x28\x82\x9a\x09\x6f\x85\x2f\xa5\xd1\xc7\xb7" "\x02\xa4\x62\x61\x29\xe1\x89\xc2\x40\x26\x18\x4d\x42\x2a\x09\x02\x01\x25" "\xf8\x80\x0f\x14\x60\xa1\xa5\xa5\xa8\x1f\xd0\x42\xea\x41\xa3\x45\x15\x3c" "\x4a\xa4\x44\x5e\x36\x61\x15\xa5\x58\x5d\x6a\x0b\xa9\xd5\x5d\xf4\x83\x5b" "\xc8\x92\x12\xc8\x52\x96\xeb\x6c\xcd\xf4\x3d\x9d\x9e\x3b\x7d\xe7\xf6\xf4" "\xf4\xe4\x05\x7e\xbf\x4a\xe6\xf6\x3d\x7d\xfb\x7f\xce\x3d\xf7\xf4\xed\xfb" "\x3f\xdd\x33\x1d\x00\x00\x00\x78\x55\xd8\x7d\xfd\x96\xbd\xe7\x1c\xf5\xbe" "\x5f\x7c\x7e\xf8\xa5\x6b\x3e\xf8\x93\x0d\xd7\x86\xde\xf2\x58\x79\x35\x6e" "\xd0\x97\x2e\xaf\x38\x50\x2d\x64\x7f\xea\xae\x2c\x1a\x5b\x66\xc7\xc5\x1b" "\xae\xfa\xde\x1f\x07\x2e\x7e\xcf\xcf\xef\xee\xf9\xee\xcb\xbb\xd6\x1c\xbb" "\xf6\xb7\xef\x3d\xec\xe2\xfb\x3f\x75\xe6\xce\xdb\xbe\xf9\xd0\x8b\x73\xef" "\xfd\xfb\x33\x45\x71\xe3\x78\x3a\x71\xdf\x7a\xf2\x5c\x12\x42\xf5\xa7\x7b" "\xbe\xfa\x85\x5d\x8f\x1d\x39\x5a\x96\x84\x10\xca\x49\xdf\xf6\x10\x16\x24" "\x0b\x1f\x5a\x90\x64\x42\x0c\xfe\x35\x84\xb0\x26\x5d\x59\x94\xb9\xf3\x9e" "\x97\x4e\x59\x3b\xba\xbc\xf6\xa6\xee\x71\xe5\xf3\x33\xdb\x19\xef\xaf\x6e" "\xd5\x74\x9c\x6d\xdb\x7b\xf9\x49\xe1\x77\xef\x5e\x75\xdd\xaf\x16\xff\xf0" "\x07\x5d\x3b\x9e\xdd\xbe\x6f\x93\xa4\xda\x30\x9e\x42\x98\x77\x61\xe3\xe3" "\xbb\x42\x08\xb3\xd3\xff\xa3\xe2\x68\x8b\xe3\x31\x0e\xda\x95\x21\x84\x9e" "\x86\xc7\x9d\x51\xd0\xae\xe3\x5a\x6c\xff\xb2\x9c\xf5\xa3\xd3\xe5\xac\x74" "\xd9\x5b\x10\x27\xde\xbf\x24\xb3\x5e\xca\x6c\x97\x5d\x8f\xba\x32\xcb\x9e" "\x82\xfa\xa6\x2b\xaf\x1d\xed\x6e\x57\x64\x4e\x66\x3d\x7b\x32\x9a\xae\xbc" "\x76\xc6\xf2\x05\xe9\xf2\xc7\xe9\xf2\xc4\x29\xc6\x2f\xc7\xff\x49\x28\x25" "\xa1\x52\x6f\xfe\xfa\x64\xdf\x18\x09\x0d\xc7\x2d\x09\xc9\xd8\xb1\xac\xd6" "\xd7\x4b\xf5\x63\x1b\xd2\xfd\xcf\xac\x27\x99\xf5\x52\x66\xbd\xdc\x95\xd9" "\xaf\xb1\x7a\xd3\x81\x56\x4e\x92\xf1\xe5\x71\xbb\x4c\x79\x3c\x1d\x57\xd2" "\xf2\x63\x1b\xcf\xd5\x4d\x9c\x9b\x53\xfe\xda\x74\x59\x4d\x9f\xa8\x2f\xc7" "\xf5\x90\xbd\x51\xd3\x3b\xe1\x46\x7d\xbf\xc6\xc4\x76\xed\x99\xa4\x2d\xfb" "\x43\xa9\xe1\x1c\xd4\xac\xbc\x7e\xe0\xd3\x83\xd1\x9b\x96\xf5\x26\x0b\x27" "\x3c\x66\xa4\x89\x78\xdf\xae\x55\x37\x2f\x2d\xaf\x7e\x78\x77\x5f\x4e\x3b" "\x92\xbb\x93\x34\x7e\xd2\x56\xfc\x6d\xbf\x5c\x30\xe7\x13\xdf\xbf\xf1\xb2" "\xec\xeb\x7a\x3d\xfe\x85\xa5\x34\x7e\xa9\xad\xf8\xbf\x3f\xeb\xf1\xe7\xcf" "\xbf\xf1\x3b\xdf\xc8\x8d\x7f\x6b\x8c\x5f\x6e\x2b\xfe\xc9\x0f\xf4\x3c\x77" "\xd6\x23\xd7\x2f\xc9\xed\x9f\x3d\xb1\x7f\x2a\x6d\xc5\x1f\x7a\xe6\xd1\x5b" "\x16\x1f\x7e\xd1\x8e\xdc\xf6\xdf\x1e\xe3\x57\xdb\x8a\xbf\x62\xe7\xe3\xdd" "\x73\xf7\x3e\xf0\x60\x6e\xfb\x07\x63\xff\xcc\x6e\x2b\xfe\xd3\x6f\x7f\xff" "\x1f\xee\x7a\xf2\xbe\x67\x73\xe3\x87\x18\xbf\xa7\xad\xf8\xab\x77\x6e\xfa" "\x62\x77\xff\xde\x13\x72\xe3\x3f\x18\xfb\xa7\xb7\xbd\xf1\xf3\xc2\x8e\xd3" "\x9f\xea\xef\xff\xd3\x40\x5e\xfc\x27\x62\xfc\xb9\x6d\xc5\xbf\x73\xfb\x6d" "\x6f\xbb\x63\xfe\x4d\x67\xe6\x1e\xdf\x95\xb1\x7f\xfa\xda\x8a\x7f\xf6\xf1" "\xf7\x5f\x37\x67\xef\x7d\xc7\xe4\x9d\x3b\x93\xdb\x3b\xf5\xca\x09\xf0\xea" "\x74\x58\x7a\x8d\x75\x43\xba\xde\x6e\x9e\x39\x5d\x0d\xf9\xc2\xd7\x07\x2a" "\xb5\x6b\xbe\x39\xe9\xff\xb9\x9d\xac\x28\x73\xf1\x39\x5a\xcf\xbc\x4e\xc6" "\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x10\xc2\x11\x27\xfd\xe3\x07\xfe\xfd\xa3\x7d\xcf\x55\xd2\xf5\xee" "\xf4\xc6\xd3\xa5\xda\x32\x96\xcf\x0a\x21\x99\x1d\x42\xd8\xb2\x75\x68\xf3" "\xd6\x75\x1b\x2f\x19\xf8\xd4\xa5\x97\x6d\xde\x38\xb4\x7e\x60\x68\xeb\xc0" "\xf0\xc6\xad\x9b\xaf\x1c\x38\xf5\x4d\x03\x9b\x87\x37\xad\x1f\xba\x72\xf4" "\xde\xc1\x37\x9f\x52\x7b\xdc\xc2\x90\xd4\x96\xc9\x31\x13\xea\xee\x1e\x19" "\x19\x29\xf5\x8d\x2f\x8b\xf5\xfd\xaf\xe3\x77\xfc\x6e\xe9\x19\xff\xf1\xe7" "\x10\x06\x8f\xf8\x4d\x7f\x25\xb7\xfd\xcb\x6e\xdb\x70\xc7\xe1\x4d\x7e\x66" "\x24\x2b\x46\xde\xb5\xe1\xb2\x73\x7e\x73\xda\xb7\xd3\xfd\xea\x4b\xdb\xd5" "\xd7\xa4\x5d\x23\x23\x23\x23\x21\xa7\x5d\xff\x79\xde\xdf\xee\xf8\xf2\x9e" "\x3f\x9e\x10\xc2\xe0\x6b\x26\x6b\xd7\xa3\x4f\xbf\xf3\x67\xe3\x1a\x34\x56" "\xb0\x2f\x4e\xaa\xd4\x1d\x6a\x0d\xea\x4e\x7a\x9a\xb6\xa3\xde\xea\xb4\x3d" "\xb1\xbf\x2a\x6b\xd7\xad\x1f\x1e\x9c\xbc\x7f\x47\x1f\x5f\xce\xd9\x8f\xff" "\x7d\xd5\xb3\x7f\x5d\x7b\xc5\x97\xfe\x56\xeb\xdf\x6a\xee\x7e\xb4\xd8\xbf" "\xb3\x57\x8c\xac\x2f\x7d\x6d\xd5\xd9\xff\xfd\xb5\xab\x6b\x05\x45\xed\x3a" "\x50\xc7\xbd\xa8\xbf\xe3\x5e\xc4\xf6\xc5\xfe\xab\xa6\xfd\x3d\x2f\xdd\xaf" "\x79\x39\xfb\x55\xc9\xd9\xaf\xeb\x7f\xf5\xe0\x93\x3f\x3d\xea\xc6\x17\xb7" "\x87\xc1\xca\x0b\x8b\x27\xd6\x5d\xb4\x5f\x5d\xe9\x00\xe8\x4a\x5e\xdb\x52" "\xbd\xb1\x86\x9e\x64\xc1\xb8\xf2\x6a\xba\x7d\x3c\xe2\xf1\x71\xcb\xb6\x6e" "\xd8\xb4\x6c\xcb\x95\xdb\xde\xbc\x6e\xc3\xd0\x25\xc3\x97\x0c\x6f\x7c\xeb" "\xf2\x53\x97\x9f\x3e\x78\xda\xe9\xa7\x2d\x1b\xdb\xf3\x65\x1d\xde\xff\x58" "\xff\xeb\x5b\xdc\xff\xfd\x33\x9e\xe6\x7f\x66\xfb\x8f\xe3\xcf\xd6\xc6\x53" "\x51\xbb\x8a\xfa\x63\xb4\x5d\xc5\xfd\xd1\xd8\xa2\xbc\xe7\x5f\xcf\xb9\x5f" "\xf8\xca\x5b\x6f\x7b\xe4\x9c\x5a\x41\xd1\x38\x8f\x5b\xd7\xcf\x27\xe9\xb2" "\x67\xf4\x38\x2f\x0f\x0d\xe3\x6d\x62\x5f\x35\xdb\xaf\xa2\x7e\x08\x21\x0c" "\x34\xeb\x87\xe7\x5f\x3c\x33\x1c\xf9\x2f\xeb\xae\x2b\x3a\x0f\x35\x1e\x99" "\xc6\x9f\x19\xc9\x8a\x91\xc7\x96\xfc\xe5\xdb\x67\x7c\x6b\xd1\x3b\x6a\x05" "\xfb\xe5\x3c\xdf\xd8\xa0\x36\xcf\xf3\xf5\x56\xef\x6b\xcf\x58\x7f\x55\xd3" "\xe3\x31\x72\x90\xf6\x6f\x77\x28\xa7\xfb\xd5\xdb\xb4\x5d\xcb\x1f\x7b\xa4" "\xeb\xe6\xdd\x7f\xfe\x6c\xbd\x7d\xb3\x66\x85\x2b\x86\xb6\x6e\xdd\xbc\xbc" "\xf6\x73\x4e\xda\xd2\x39\xc9\xd1\x4d\xdb\x95\x2d\x8d\xfb\xb5\x78\xec\x67" "\x39\xa4\xdd\x12\xea\xc3\xb4\xc9\x78\x1d\xd5\x15\x6a\xed\xcb\x9e\x3f\xe3" "\xe6\xd9\x5e\xed\x4d\xef\xeb\x4d\x16\x36\xdd\xaf\xac\x78\xdf\xae\x55\x37" "\x2f\x2d\xaf\x7e\x78\x77\x5e\x4f\x27\x77\xd7\x6a\x9c\x1d\xe6\xd6\x96\xc9" "\xeb\x72\xb6\x5c\x9f\x79\x60\xb9\xde\xe0\x66\xf5\x1f\xac\xcf\xbf\xee\xaf" "\xd6\xf6\x33\x6f\x7c\xf4\x7f\xe0\x5b\xf7\x7e\xf4\xde\x1f\x9d\x3a\x61\x7c" "\x9c\x5c\xfb\x59\xb4\x5f\x49\xce\x7e\xfd\xf0\xc9\x3b\xbf\xf2\xdd\x2f\xfd" "\xdf\x1f\x75\x6e\xbf\x3e\xf0\xce\xc7\xfb\xfe\xf2\xaf\x9f\x5c\x5a\x2b\x38" "\x54\xce\x2b\xf5\x56\xa7\xed\x49\x1a\xcf\x2b\x27\x87\x50\xf4\xfc\x5b\x1c" "\x9a\xef\x47\xee\xf3\xaf\xd4\x7c\x7f\x8a\x9e\x7f\xd9\x7a\xf6\x6d\xdf\x3c" "\xde\x40\x66\xbd\x37\x94\xdb\x7a\xbe\x9e\xfc\x40\xcf\x73\x67\x3d\x72\xfd" "\x92\xdc\xe7\xeb\x9e\x56\x9f\xaf\x57\x8f\x5b\x2b\x17\x3c\x5f\x0f\x96\xf1" "\x93\x7d\x7e\x25\x95\xf1\xed\x98\xb9\xe7\xd7\xb8\x81\x92\xac\x18\xf9\xf9" "\x0d\x87\x6d\x7f\xe8\x9a\x95\x47\xd5\x0a\x8a\xc6\x75\x7d\xeb\x66\xe3\xfa" "\x94\x16\xf2\x8f\x9c\xfd\xfa\xd9\xf9\x4f\xf5\x5f\x3a\xf0\x7f\xfe\xb9\x73" "\xe7\x8d\xef\xbd\xe9\x9e\x0b\x7e\x3b\xb4\xe2\x73\xb5\x82\xf6\x8f\x7b\x6c" "\x4b\x67\x8e\x7b\x35\xed\xdf\x6a\x4e\xff\xd6\x5b\x1d\xf3\xce\xc6\xfe\x7d" "\xcb\xc5\x97\xae\x5f\x53\x2b\x3f\x78\xaf\x7f\xd3\x65\x41\xfe\x13\x4f\x25" "\x5b\xae\xdc\xf6\xe9\xa1\xf5\xeb\x87\x37\x6f\x69\x6d\xbf\x5a\x7d\x3d\x8d" "\xf5\x64\x7b\xb9\xdd\xd7\xd3\x78\x76\x5b\x58\xb0\x5f\xa5\x09\xfb\x35\x73" "\x37\x5a\xe9\xaf\x56\x9f\x6f\xb1\xfd\x6b\xda\xee\xaf\xf1\xcf\xb7\xde\x90" "\xb4\xf5\xba\xb0\xed\x97\x0b\xe6\x7c\xe2\xfb\x37\x5e\xd6\x37\xe1\x51\x69" "\x45\x17\x96\xd2\xf8\xa5\xb6\xe2\xff\xfe\xac\xc7\x9f\x3f\xff\xc6\xef\x7c" "\x23\x37\xfe\xad\x31\x7e\xa5\xad\xf8\x43\xcf\x3c\x7a\xcb\xe2\xc3\x2f\xda" "\x91\x1b\xff\xf6\x24\x8d\x5f\x6d\x2b\xfe\x8a\x9d\x8f\x77\xcf\xdd\xfb\xc0" "\x83\xb9\xf1\x07\x63\xfb\x67\xb7\x15\xff\xe9\xb7\xbf\xff\x0f\x77\x3d\x79" "\xdf\xb3\xb9\xf1\x43\x8c\xdf\xdb\x5e\xff\xbf\xb0\xe3\xf4\xa7\xfa\xfb\xff" "\x94\x1b\xff\x89\x24\xad\x67\xf4\x1a\x29\x84\x7b\x5e\x3a\x65\x6d\x6d\x3d" "\x09\x5d\xe9\xf3\x2d\xb6\xa3\x6b\x5c\xbb\x42\x76\x3d\xc9\xac\x97\x32\xeb" "\xe5\xc6\xf5\x52\x6d\xae\xb5\x5e\x41\x39\x49\xc6\x97\xc7\xed\xd2\xf2\x63" "\x1b\xda\xd2\xcc\xc7\x72\xca\xe3\x55\x58\x75\x51\x6d\xf9\x72\x5c\x0f\xd9" "\x1b\x93\x97\x1f\x6c\x4a\x0d\xe7\xfe\x66\xe5\x45\xd7\xa9\x00\x00\xaf\x74" "\xf1\xfd\xff\x78\x0d\x1a\xdf\xff\x1f\x4e\x2f\x94\xf2\x67\x1a\x60\x9f\xe9" "\xe6\x61\x8b\x72\xe2\xc6\x3c\x6c\xdf\x7c\xce\xac\x71\xf7\x2f\x4a\xe3\xc7" "\xc7\xc7\x79\xc0\xfe\xb7\x84\xc1\xd1\xe5\xb5\x03\xb5\x0b\xfd\xa9\xbe\x8f" "\x10\x9f\x0f\xd9\x79\xce\x58\xcf\x09\xc7\x8d\x8f\xd1\xee\x3c\x67\xd1\xfc" "\xfb\x92\xcc\x7a\x6c\x57\x6d\xbe\xbc\xd2\x90\x87\xa6\x26\xe6\x35\x95\xd0" "\xc2\xfc\xfb\xc4\x7a\x26\x9f\x7f\xcf\xec\x7e\xf1\xfc\xf8\xc0\x0d\x13\x9a" "\x35\xd0\x30\x6f\x95\x3d\x7e\x5d\xe9\x8c\x59\xb3\xcf\x3b\x64\xda\x5b\x19" "\x8d\x90\x37\x3e\xb2\xf3\x62\xf1\xf3\x1c\xfd\xf3\xc2\xca\xd1\x5d\x4b\x5a" "\x1c\x1f\xd9\xcf\xd1\xc4\xe3\x90\xfd\x1c\x4d\xac\xe7\xa8\xcc\x89\xb3\xdd" "\xcf\xd1\x4c\x77\x7c\xc4\x66\x4f\x32\x3e\xc6\x9a\x5c\xfc\xfe\xc6\xc4\xe3" "\x17\x26\xe9\xdf\x7d\xc7\xaf\x79\xb4\xec\xf1\x9b\xc2\xf1\xae\x8e\x6e\x3f" "\xd3\xef\xcf\x76\x60\xde\xb0\xe9\x29\x6d\xff\xcd\x1b\xce\xec\xfb\x61\xe6" "\x25\x73\xe2\xa7\x4f\xb0\x83\x7d\xde\x30\x96\xc7\xfd\xa8\xb4\x38\x9f\xf8" "\xd1\x9c\xf2\x4e\xcd\x27\xc6\xd3\x45\x6c\xd7\x9e\x49\xda\xb2\x3f\x98\x4f" "\x04\x5e\xa9\x62\xfe\x1f\x5f\x23\x46\xf3\xff\xd1\x0b\xf0\xff\xca\x6c\x57" "\x74\x1d\x9a\xbd\x6a\x8c\xf1\x72\x3f\x27\x54\x6e\xde\x9e\xa2\xbc\x63\xe2" "\xe7\xf4\x7a\xda\x7a\x1d\x5f\xbd\x73\xd3\x17\xbb\xfb\xf7\x9e\x90\x7b\x9d" "\xf3\x60\xab\x9f\xfb\xd9\x34\x6e\xad\xa7\xe0\x73\x3f\x45\xfd\xb8\x34\xb3" "\x5e\xd8\x8f\x39\x13\x34\x45\xf9\x5e\xb6\x9e\xa2\x7e\xcf\x7e\x2e\xa3\x37" "\xcc\x6d\xab\xdf\xef\xdc\x7e\xdb\xdb\xee\x98\x7f\xd3\x99\xb9\xfd\xbe\xb2" "\xf6\x42\x5a\xdc\xef\x5f\x19\xb7\x36\xb7\xa0\xdf\x0f\x81\x7c\xa1\x79\x7c" "\xf9\xc2\xab\x22\x5f\x68\x7d\xfe\x2c\x6c\x1f\x69\x63\xfe\xec\x80\xe5\x23" "\xe9\x07\x9f\x66\x2a\x1f\xf9\x48\x4e\xf9\x54\xf3\x91\x9e\x09\x37\xea\xfb" "\x35\xe6\x90\xcb\x47\xba\xf6\x6f\xbb\x00\x80\x43\x47\xcc\xff\xeb\xef\x9f" "\xa5\xf9\xff\xbf\xc5\x0d\xd2\xeb\x88\xa2\xbc\xf5\xc4\xcc\x7a\x8c\x97\x9b" "\xb7\xe6\x5c\x9f\xe4\xe5\xad\x1f\x4a\x97\x57\x64\xb6\xef\x4d\x7f\xa3\x62" "\xaa\xd7\xe5\x67\x1f\x7f\xff\x75\x73\xf6\xde\x77\x4c\x6e\xde\x72\x7b\xab" "\x79\xe8\xff\x1b\xb7\xd6\x57\x98\x87\x4e\x2f\x6f\xce\xcd\x23\x56\x76\xe6" "\xf3\xe2\xb9\x79\x44\x3d\xcf\x9a\x5e\x9e\x98\xdb\xfe\x7a\x9e\x38\xbd\x3c" "\x3d\x37\x7e\x3d\x4f\x9f\x5e\x1e\x9d\xdb\x3f\xf5\x3c\x7a\x7a\xf3\x00\xb9" "\xf1\xeb\xf3\x00\x87\x7a\x9e\x5b\x30\x5f\x97\xa9\x2c\xae\xb6\x3a\x5f\x37" "\xd3\x9f\x43\x39\x60\x79\x74\xfa\xeb\xb3\x33\x95\x47\x9f\x9b\x53\x3e\xd5" "\x3c\xba\x77\xc2\x8d\xfa\x7e\x8d\x91\x47\x03\x00\x1c\x58\x31\xff\x8f\x97" "\x71\x31\xff\x7f\x24\xb3\xdd\x74\xdf\x67\xcf\xcd\x0b\x3a\x74\xdd\x9e\xfd" "\x7b\x20\xf5\xf8\x4f\xec\xaf\xbc\x72\xa6\xf3\xbe\x99\xce\x5b\x67\x3a\xaf" "\x9f\xe9\x79\x89\x43\x3d\x2f\x9e\xe9\x79\xa1\x99\x9d\x27\x7b\xd5\xe7\xc5" "\x69\xa5\xaf\xc8\xbc\xb8\x61\x5f\xe4\xc5\x00\x00\x87\xb6\x98\xff\xcf\x4e" "\xd7\xf3\xf3\xff\xe9\xe5\x27\xcd\xf2\xb7\xae\x71\xf9\x89\xfc\xbc\x69\x7c" "\xf9\xf9\x41\x92\x9f\x1f\xea\xf3\x5f\xf2\x7f\xef\x8b\x17\xf3\xbe\x38\x00" "\xc0\x2b\x5b\xcc\xff\xe3\xaf\x3d\xc6\xbf\xff\xf7\x0f\xe9\x7a\xf6\xef\xd6" "\xcb\xd3\x73\xe2\xcb\xd3\xe5\xe9\x93\x8d\x9f\x96\xf3\xf4\xce\xcf\xb3\x05" "\x9f\x03\x38\xb0\xf3\x00\xb3\xf7\x6d\x6f\x1e\x00\x00\x80\x03\xa1\x6b\x2c" "\x53\x9a\xf8\x7b\xf6\x1f\x4f\x97\xd9\xdf\xb3\xcf\xfb\xbd\xfc\xf3\x73\xb6" "\x6f\x55\x25\xbd\x3c\xbe\x68\xeb\xe6\xe1\xe1\x0b\x2e\xdb\xb4\x66\x68\xeb" "\xf0\x05\x1b\x2f\x5d\x33\xbc\xe5\x82\xcb\x37\xaf\xdb\xba\x75\x78\x63\x6d" "\xbb\xe9\xe6\x8d\xb9\x79\x4b\x9a\x37\x76\x85\x4a\xda\x1f\xcd\xb7\xcb\xe6" "\x6d\xf3\xd3\xbf\x87\x30\x3f\xe7\xef\x21\x64\xb7\x8f\x61\x8f\x1e\xbb\x31" "\xf1\xef\x21\x64\xab\x9d\x5d\xf0\x77\x04\xf6\x1d\xbf\xd6\xda\x9b\x77\xfc" "\x4a\x93\x6c\xdf\x6c\x7c\xe4\x1d\xef\xbc\xf8\x1f\xcb\xd9\x3e\xaa\x1f\xff" "\x8b\x3f\x79\xf2\x05\x6b\xb7\x5c\xb0\x6e\xe3\xba\xad\xeb\x86\xd6\xaf\xdb" "\x36\x3c\x7e\xbb\xd1\xac\xb5\x67\x0a\xdf\x9b\x19\xbb\x65\x4a\xdf\x97\x9a" "\xf9\x31\x41\x69\xea\xdf\xdf\xd9\x99\x76\x94\x26\xb4\xa3\x2b\xed\x8f\xbc" "\xef\x67\x4f\x32\xed\x58\x90\xb6\x64\x41\xde\xf7\x1f\xe4\xb4\xfb\x17\xff" "\xf4\xe5\xcf\x1c\x3f\xf2\xb7\xbb\x42\x18\x3c\xa2\xfc\xba\x69\xf5\x5f\xb2" "\x62\xe4\xff\x9f\x37\xfc\xa1\xad\xbb\x7f\xb3\x69\xb4\xfd\xa5\x49\xdb\x5f" "\xdb\x72\xd6\xa6\xd8\x9f\x45\xdf\x57\x5a\x8f\x1c\xbf\x0f\x36\x7e\xaf\xfd" "\xfa\x4b\xb7\x6c\x3d\x69\xed\xa5\x97\x6d\xcc\x7e\xa3\x64\x7b\xe2\x7c\x46" "\xa9\xbe\x3e\x43\xf3\x19\xe9\xd3\xbf\xdc\xe2\xfc\xc4\xea\x9c\xf2\xa9\x7e" "\x4e\xa1\x3c\xe1\xc6\xc1\xa9\xe5\xf9\x09\x00\x00\xc6\x89\xef\xff\xc7\xeb" "\xd9\xf8\xfe\xe1\x97\xd2\x0b\xa8\x58\xde\x7a\x9e\x3e\xbd\xf7\x8f\x73\xf3" "\xf4\xc1\xd6\xf2\xf4\xec\xf7\x92\x15\xe5\xe9\xd9\xed\xe3\xfe\xb6\x9a\xa7" "\x57\xa7\x99\xa7\x67\xeb\x2f\xca\xd3\x9b\x6d\xdf\x2c\x4f\xcf\xcb\xbb\xf3" "\xe2\x7f\x24\x67\xfb\xa9\x6a\x7d\x9c\x4c\xef\x73\x1e\xb9\xe3\xe4\xc2\xd6" "\xc6\x49\xf6\xfb\x0c\x8a\xc6\x49\x76\xfb\xa9\x8e\x93\x64\x9a\xe3\x24\x5b" "\x7f\xd1\x38\x69\xb6\x7d\xb3\x71\x92\x77\xdc\xf3\xe2\x7f\x38\x67\xfb\x3c" "\xad\x8f\x87\xe9\x7d\x2e\x27\x77\x3c\xdc\xda\xda\x78\x78\x63\x66\xbd\x68" "\x3c\x64\xb7\x9f\xea\x78\x28\x4d\x73\x3c\x64\xeb\x2f\x1a\x0f\xcd\xb6\x6f" "\x36\x1e\xf2\x8e\x6f\x5e\xfc\x73\x72\xb6\x6f\xd5\xf8\xf1\x31\x3a\x30\xc6" "\xc6\xc5\xf0\x05\x97\x5f\xba\xf9\xd3\x0d\xdb\xcd\xf4\xf7\x5f\x4c\xbf\x7d" "\x33\xfb\xfd\x1f\xed\x6a\xbd\xfd\x33\xfb\xb9\xaf\x99\x6f\xff\xcc\x7e\xae" "\x6c\xe6\xdb\x3f\xbd\xcf\x95\xe5\xb6\xff\x89\xe9\xcd\x84\xb5\xde\xfe\x99" "\xfd\x7e\x97\x76\xed\xb7\xf9\xda\xf4\xc3\x66\x45\x9f\x3f\x2b\x9a\xc7\x5d" "\x95\x53\x3e\xd5\x79\xdc\x59\x13\x6e\x1c\x9c\xcc\xe3\xc2\x81\x13\xf3\xff" "\xf8\x76\x4f\xcc\xff\x6f\x4a\x97\x9d\x7e\x1b\xe8\xd0\xff\x9e\xb4\xec\xeb" "\xdc\xac\x96\xe2\xfb\x1e\xb3\xce\x5c\xc7\xd4\x5f\xcf\x4b\xfb\xea\xf5\x7a" "\x7e\xf0\xf0\x7a\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xd0\x9a\xee\xca\xa2\xb1\xe5\xee\xeb\xb7\xec\x3d\xe7" "\xa8\xf7\xfd\xe2\xf3\xc3\x2f\x5d\xf3\xc1\x9f\x6c\xb8\xf6\x0d\x57\x7d\xef" "\x8f\x03\x17\xbf\xe7\xe7\x77\xf7\x7c\xf7\xe5\x5d\x6b\x8e\x5d\xfb\xdb\xf7" "\x1e\x76\xf1\xfd\x9f\x3a\x73\xe7\x6d\xdf\x7c\xe8\xc5\xb9\xf7\xfe\xfd\x99" "\xc2\xc0\x7d\x63\x3f\x2b\x27\xa6\xab\xd5\x10\x92\xe7\x92\x10\xaa\x3f\xdd" "\xf3\xd5\x2f\xec\x7a\xec\xc8\xd1\xb2\x24\x84\x50\x4e\xfa\xb6\x87\xb0\x20" "\x59\xf8\xd0\x82\x24\x13\x61\xf0\xaf\x21\x84\x35\xf5\x76\x8e\xbf\xf3\x9e" "\x97\x4e\x59\x3b\xba\xbc\xf6\xa6\xee\x71\xe5\xf3\x33\x41\xb2\xfb\x15\x7a" "\xcb\xb1\x3d\x8d\xed\x0c\xe1\x8a\xc2\x3d\xe2\x10\x54\x4d\xc7\xd9\xb6\xbd" "\x97\x9f\x14\x7e\xf7\xee\x55\xd7\xfd\x6a\xf1\x0f\x7f\xd0\xb5\xe3\xd9\xed" "\xfb\x36\x49\xaa\x0d\xe3\x29\x84\x79\x17\x36\x3e\xbe\x2b\x84\x30\x3b\xfd" "\x3f\x2a\x8e\xb6\x45\xf1\xc1\xe9\x72\x65\x08\xa1\xa7\xe1\x71\x67\x14\xb4" "\xeb\xb8\x16\xdb\xbf\x2c\x67\xfd\xe8\x74\x39\x2b\x5d\xf6\x16\xc4\x89\xf7" "\x2f\xc9\xac\x97\x32\xdb\x65\xd7\xa3\xae\xcc\xb2\xa7\xa0\xbe\xe9\xca\x6b" "\x47\xbb\xdb\x15\x99\x93\x59\xcf\x9e\x8c\xa6\x2b\xaf\x9d\xb1\x7c\x41\xba" "\xfc\x71\xba\x3c\x71\x8a\xf1\xcb\xf1\x7f\x12\x4a\x49\xa8\xd4\x9b\xbf\x3e" "\xd9\x37\x46\x42\xc3\x71\x4b\x42\x32\x76\x2c\xab\xf5\xf5\x52\xfd\xd8\x86" "\x74\xff\x33\xeb\x49\x66\xbd\x94\x59\x2f\x77\x65\xf6\x6b\xac\xde\x74\xa0" "\x95\x93\x64\x7c\x79\xdc\x2e\x53\x1e\x4f\xc7\x95\xb4\xfc\xd8\xc6\x73\x75" "\x13\xe7\xd6\x6f\x8d\xdf\xea\xb5\xb1\x34\x7d\xa2\xbe\x9c\xdd\x2a\x13\xb4" "\x77\xc2\x8d\xfa\x7e\x8d\x89\xed\xda\x33\x49\x5b\xf6\x87\x52\xc3\x39\xa8" "\x59\x79\xfd\xc0\xa7\x07\xa3\x37\x2d\xeb\x4d\x16\x4e\x78\xcc\x48\x13\xf1" "\xbe\x5d\xab\x6e\x5e\x5a\x5e\xfd\xf0\xee\xbe\x9c\x76\x24\x77\x27\x69\xfc" "\xa4\xad\xf8\xdb\x7e\xb9\x60\xce\x27\xbe\x7f\xe3\x65\x8b\xf2\xe2\x5f\x58" "\x4a\xe3\x97\xda\x8a\xff\xfb\xb3\x1e\x7f\xfe\xfc\x1b\xbf\xf3\x8d\xdc\xf8" "\xb7\xc6\xf8\xe5\xb6\xe2\x9f\xfc\x40\xcf\x73\x67\x3d\x72\xfd\x92\xdc\xfe" "\xd9\x13\xfb\xa7\xd2\x56\xfc\xa1\x67\x1e\xbd\x65\xf1\xe1\x17\xed\xc8\x6d" "\xff\xed\x31\x7e\xb5\xad\xf8\x2b\x76\x3e\xde\x3d\x77\xef\x03\x0f\xe6\xb6" "\x7f\x30\xf6\xcf\xec\xb6\xe2\x3f\xfd\xf6\xf7\xff\xe1\xae\x27\xef\x7b\x36" "\x37\x7e\x88\xf1\x7b\xda\x8a\xbf\x7a\xe7\xa6\x2f\x76\xf7\xef\x3d\x21\x37" "\xfe\x83\xb1\x7f\x7a\xdb\x1b\x3f\x2f\xec\x38\xfd\xa9\xfe\xfe\x3f\x0d\xe4" "\xc5\x7f\x22\xc6\x9f\xdb\x56\xfc\x3b\xb7\xdf\xf6\xb6\x3b\xe6\xdf\x74\x66" "\xee\xf1\x5d\x19\xfb\xa7\xaf\xad\xf8\x67\x1f\x7f\xff\x75\x73\xf6\xde\x77" "\x4c\xde\xb9\x33\xb9\xbd\x53\xaf\x9c\x00\xaf\x4e\x87\xa5\xd7\x58\x37\xa4" "\xeb\xed\xe6\x99\xd3\xd5\x90\x2f\x7c\x7d\xa0\x52\xbb\xe6\x9b\x93\xfe\x9f" "\xdb\xc9\x8a\x32\x46\xeb\x99\x37\x83\xf1\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x65\xfa" "\xf5\xd5\xa7\x7e\xfc\xbc\x77\x7d\x78\x55\x25\x09\x21\xc9\xd9\x66\xa4\x89" "\x78\x5f\x79\xd6\x8a\x15\x03\x6d\xd4\x3b\xf4\xcc\xa3\xb7\x2c\x3e\xfc\xa2" "\x1d\x8d\x65\x8b\xda\x88\x03\x00\x00\x00\x14\x8b\x79\x78\xa9\x5e\x52\x0d" "\x8b\xc2\xe5\xc9\xec\x70\x74\xd3\xed\xe3\x1c\xc1\xd1\x71\x2d\x19\x5f\x9e" "\x9d\x43\x88\x71\xb2\x73\x04\xed\xc6\x29\x75\x28\x4e\xb9\x43\x71\x2a\x1d" "\x8a\xd3\xd5\xa1\x38\xb3\x3a\x14\xa7\xbb\x43\x71\xaa\x05\x71\xaa\xa1\xb5" "\x38\xb3\x27\x89\x53\x19\x1d\x15\x2d\xb6\xa7\x67\xd2\xf6\xb4\x1e\xa7\xb7" "\x43\x71\xe6\x74\x28\xce\xdc\x0e\xc5\x99\xd7\xa1\x38\xf3\x3b\x14\xa7\x6f" "\xd2\x38\xad\x8f\xc3\x05\x1d\x8a\xb3\xb0\x43\x71\x0e\xeb\x50\x9c\xc3\x3b" "\x14\xe7\x88\x0e\xc5\x79\x4d\x87\xe2\x1c\xd9\xa1\x38\xd9\x39\xe5\xa9\x8e" "\xc3\xb9\xe9\x96\x47\xe5\xc5\x19\xbb\x51\x2e\x8c\x53\x49\xca\xf5\x3b\x9a" "\xcd\xa7\x1f\x99\xd6\x73\xcc\x34\xeb\xe9\x2d\xa8\x67\x6e\xd1\xeb\x71\x8b" "\xf5\xcc\x6e\xb1\x9e\xe3\x32\x8f\x2b\x4d\xb1\x9e\x6a\x8b\xf5\xbc\x7e\x9a" "\xf5\x24\x2d\xd6\xf3\xc6\x69\xd6\x53\x2a\xa8\x27\x8e\xdb\x2b\xb2\xed\x8b" "\xf5\xc4\xb5\x16\xc7\xff\x95\x1d\x8a\xb3\xad\x43\x71\xae\xea\x50\x9c\xab" "\x3b\x14\xe7\xb3\x1d\x8a\xf3\xb9\x0e\xc5\xb9\x66\x9a\x71\x00\x5a\x15\xf3" "\xff\x7d\xf9\x5e\x5f\xe8\xae\xbc\x23\xf4\xa4\x67\x9c\xec\x2c\x40\xcc\x77" "\x17\x8f\xfd\x9c\xf8\x7a\x97\x77\x42\x8a\xf1\x5e\x97\x29\x9f\x55\x14\x2f" "\x9b\xa8\x67\xe2\x2d\x9e\x6a\xfb\xb2\x13\x08\x99\x78\x4b\x32\xe5\x5d\xe3" "\xe2\x55\xea\xf9\xc8\x24\xf1\xaa\x8d\xf1\x96\x66\xee\x2c\xdc\xdf\xec\x84" "\x42\xa6\x7d\x27\x66\xca\xbb\x8b\xe2\x65\x27\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x60\x06\xfd\xfa\xea\x53\x3f\x7e\xde\xbb\x3e\xbc\x2a\x24" "\x61\xf4\x5f\x53\x23\x4d\xc4\xfb\xca\xb3\x56\xac\x18\x68\xa3\xde\x5d\xab" "\x6e\x5e\x5a\x5e\xfd\xf0\xee\xc6\xb2\xee\x4a\x1b\x81\x00\x00\x00\x80\x42" "\x31\x0f\xef\xaa\x97\x54\x43\x77\x65\x79\xe8\x4e\x66\x8d\xdb\xae\x9a\xce" "\x03\x54\xd3\xf5\x72\x5f\x6d\xd9\x3f\x2f\xac\x1c\x5d\x26\x03\xa5\xb1\xf5" "\x9e\x64\xc1\xa4\x8f\xab\xa4\x8f\x5b\xb6\x75\xc3\xa6\x65\x5b\xae\xdc\xf6" "\xe6\x75\x1b\x86\x2e\x19\xbe\x64\x78\xe3\x5b\x97\x9f\xba\xfc\xf4\xc1\xd3" "\x4e\x3f\x6d\xd9\xda\x75\xeb\x87\x07\x6b\x3f\x43\xe8\x2e\x88\x17\x42\x18" "\x9b\x7e\xd8\x72\xe5\xb6\x4f\x0f\xad\x5f\x3f\xbc\x79\x4b\xad\x30\xdb\xfe" "\x45\xe9\xe3\x16\xa5\xeb\x49\xfa\xb8\xfe\xb7\x84\xc1\xd1\xe5\xb5\x69\xfb" "\x17\x16\xd4\x57\x9a\x50\xdf\xcc\xdd\x28\x3e\x7a\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf0\x3f\xec\xda\x5d\x88\x9c\x57\xfd\x07\xf0\xf3\xcc\xcc\xce\x4c" "\xb7\xcd\x3f\xfb\xa7\x6f\xd3\xd0\x6c\x86\xbc\x94\xa8\x45\x93\xb8\x95\x54" "\x4b\xf7\x01\xc1\x42\x9b\x84\x2c\x05\x99\xad\xae\x25\xd8\x04\x8b\x9b\x26" "\xb4\x49\x89\x75\x6c\x03\xb6\x35\x41\x11\x5a\x02\x21\x92\x0b\x23\xb1\xd8" "\x5a\xbc\xe9\x8b\x2d\x62\x5f\x08\x44\x6a\x34\xe0\xc6\x20\x6d\xd1\x5e\xe8" "\x85\xd2\x6a\x25\x2d\xb9\x90\x94\x91\xec\xce\x99\x9d\x99\x9d\xc9\xac\x63" "\x69\xda\xf8\xf9\x5c\xcc\x33\x73\xce\xef\x9c\xdf\x73\xe6\x62\xe1\xfb\xec" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x7c\xb0\xa6\xaa\x23\x13\x95\xd1\xb1\xf1\xc1\x24" "\x84\xa4\x4b\x4d\xad\x83\x38\x97\xcd\xa7\x69\xb9\x8f\xbe\x5f\x7e\x7e\xfb" "\xf7\x0b\xc3\xa7\x57\x36\x8f\x15\x72\x7d\x6c\x04\x00\x00\x00\xf4\x14\x73" "\xf8\x40\x63\xa4\x18\x0a\xb9\x6c\xc8\x86\xab\xa6\x3f\x2d\x0d\x4d\x13\x61" "\x36\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff" "\x7b\xa6\xaa\x23\x13\x95\xd1\xb1\xf1\x8b\x93\x10\x92\x2e\x35\xb5\x0e\xe2" "\x5c\x36\x9f\xa6\xe5\x3e\xfa\xbe\xf1\xce\x93\x9f\x79\x75\x78\xf8\xaf\xcd" "\x63\xa5\x3e\xf6\x01\x00\x00\x00\x7a\x8b\x39\x3c\xd3\x18\x29\x86\x52\x58" "\x16\x06\x92\xab\x5a\xea\xe2\xb3\x81\x45\x6d\xeb\xdb\xeb\xe2\x3e\x8b\xe7" "\x59\xd7\xfe\xec\xa0\x5b\xdd\xb2\x79\xd6\x5d\x33\xcf\xba\x8f\xf5\xa8\xdb" "\x50\xbf\xee\x0a\x00\x00\x00\xf0\xd1\x17\xf3\x7f\xae\x31\x32\x14\x0a\xb9" "\x05\x5d\xf3\x7f\xaf\x5c\x1f\xeb\x96\xb4\xd5\x65\xeb\xd7\x7e\x7e\x2b\x00" "\x00\x00\x00\xfc\x77\x62\xfe\x2f\x34\x46\x4a\xa1\x90\x2b\x35\xf2\xfa\x7c" "\xf3\xfe\xd2\xb6\xba\xb8\xbe\xd7\xff\xed\xe3\xfa\x15\x5d\xd6\xf7\xfa\x7f" "\xfe\xfa\xfa\xd5\xff\xe9\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xa3\x63\xaa\x3a" "\x32\x51\x19\x1d\x1b\xcf\x26\x21\x24\x5d\x6a\x6a\x1d\xc4\xb9\x6c\x3e\x4d" "\xcb\x7d\xf4\x5d\xf3\xc2\xe0\xdf\x6f\x39\xf2\xd0\xd2\xe6\xb1\x42\xae\x8f" "\x8d\x00\x00\x00\x80\x9e\x62\x0e\x9f\x8d\xde\xc5\x50\xc8\x0d\x86\x81\x70" "\xf1\x74\xee\x1f\xbe\xe9\xe0\xd3\x5f\x7c\xfa\xd9\x91\x10\xc2\x4c\xcc\xcf" "\xe7\xc3\xae\x4d\x3b\x76\xdc\xbd\x66\xe6\x35\xd6\xad\x3e\x76\x64\xe0\x7b" "\x47\xdf\xfa\xd6\x9c\xba\xd5\x33\xaf\xe7\xed\x80\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xfb\x66\xaa\x3a\x32\x51\x19\x1d\x1b" "\xbf\x28\x09\x21\xe9\x52\x53\xeb\x20\xce\x65\xf3\x69\x5a\xee\xa3\xef\xeb" "\x9f\xfb\xc2\x9f\x1f\x3f\xf9\xdc\x9b\xcd\x63\xa5\x3e\xf6\x01\x00\x00\x00" "\x7a\x8b\x39\x7c\x36\xfb\x17\x43\x29\xe4\x43\x3e\x5c\x31\xfd\xa9\x39\xeb" "\x9f\x95\x69\x5b\xdf\xed\x99\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x70\xe1\xb8\xe7\x1b\xf7\x7d\x7d\xd3\xe4\xe4\xe6\xbb" "\xbd\xf1\xc6\x1b\x6f\x1a\x6f\xce\xf7\x5f\x26\x00\x00\xe0\xfd\xb6\x24\x24" "\xa1\xf6\x1f\xba\x72\xe3\xf9\xbe\x6b\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xe0\xc3\x60\xaa\x3a\x32\x51\x19\x1d\x1b\x2f\x26\x21" "\x24\x5d\x6a\x6a\x1d\xc4\xb9\x6c\x3e\x4d\xcb\x7d\xf4\x4d\x9f\x3f\x5e\x58" "\x70\xfa\x85\x97\x9a\xc7\x4a\x7d\xec\x03\x00\x00\x00\xf4\x16\x73\xf8\x6c" "\xf6\x2f\x86\x52\x18\x08\x03\xe1\xf2\xe9\x4f\x9d\x9e\x09\x4c\xe7\xff\xa1" "\x0f\xf0\x26\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x80\x0f\x95\xa9\xea\xc8\x44\x65\x74\x6c\x7c\x41\x12\x42\xd2\xa5\xa6\xd6" "\x41\x9c\xcb\xe6\xd3\xb4\xdc\x47\xdf\xc7\x76\x1f\xf8\xec\xe1\x85\xdf\xbd" "\xb9\x79\xac\x90\xeb\x63\x23\x00\x00\x00\xa0\xa7\x98\xc3\xf3\x8d\x91\x62" "\x28\xe4\x3e\x1e\x0a\xe1\xea\xfa\xe7\xc9\xd6\x05\x49\xb6\x7e\xed\xfc\x5c" "\x60\x76\xdd\xf6\x96\x65\x83\xf3\x5e\x57\x6d\x59\x97\x9d\xf7\xba\x3d\x6d" "\x27\xcb\xd5\x4f\x33\xb3\xae\x18\xf7\x1b\x9a\xb9\x36\xd6\x95\xe7\xae\x2b" "\x37\xad\x2b\x85\x46\xfb\x72\xcb\xba\xb0\xaf\x65\xd5\x82\x1e\xf7\x19\x00" "\x00\x00\xe0\x3c\x8a\xf9\xbf\xd0\x18\x19\x0a\x85\x5c\xa1\x29\xe7\xfe\xa4" "\xa5\x7e\x48\xce\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xba\x98\xaa" "\x8e\x4c\x54\x46\xc7\xc6\x93\x24\x84\xa4\x4b\x4d\xad\x83\x38\x97\xcd\xa7" "\x69\xb9\x8f\xbe\xf7\xfd\xe6\xff\x2f\xf9\xca\x4f\xf7\xee\x6c\x1e\x2b\xf5" "\xb1\x0f\x00\x00\x00\xd0\x5b\xcc\xe1\xb3\xd9\xbf\x18\x4a\x61\x71\xf8\xbf" "\xb0\x78\x3a\xf7\x87\xa1\xd6\xfa\x58\xf7\x8f\xca\x99\xc3\x8f\xfe\xf3\x2f" "\x2b\x43\x58\x75\xc5\x89\xe1\x5c\xfb\xb6\x3f\x8c\x6f\x7e\xf5\xfa\x8d\x2f" "\xb6\xbf\x84\x90\x69\xad\xce\x84\xb0\xb0\xde\x2f\xe9\xd2\xef\xd7\xbf\x7b" "\xf4\xde\xe5\xb5\x33\x8f\x87\xb0\xea\xf2\xec\xd5\x73\xfa\x85\x73\xf7\x6b" "\xdd\x32\xad\x3d\x53\xd9\xbc\x7e\xc7\xd1\x13\xdb\x7b\x7c\x39\x00\x00\x00" "\x70\x81\x88\xf9\x7f\xa0\x31\x32\x14\x0a\xb9\xbb\xba\xe6\xff\x98\xbc\x7b" "\xe4\xff\x86\xe9\x00\xbe\xf0\xde\xdd\x3f\xbf\xac\xfe\x5a\x4f\xe4\x6d\x2b" "\x32\x43\xf5\x7e\x99\x2e\xfd\x3e\xbf\xfc\xc9\x3f\xad\x58\xfb\xb7\xb7\xce" "\xe6\xff\x73\xf5\xfb\xd4\x81\xad\x87\x2f\x6b\x69\x38\x33\xd2\x26\x49\x6b" "\xa3\x5b\x77\x6e\x38\x71\xdd\xa1\x4c\x3c\xf5\x4c\xff\x6c\x5b\xff\xf8\xbd" "\x7c\xe9\x9b\x6f\xfe\x6b\xcb\xae\x47\xce\xcc\xf4\x2f\x86\x62\x7d\x7c\x51" "\xae\x53\xff\xb9\xaf\x6d\x2e\x4a\x6b\x93\x99\xfd\xe3\xeb\xde\xdb\x5f\x6d" "\xed\x9f\xeb\x72\xfe\x87\x7e\xfb\xd2\xc9\x5f\x2e\xda\xfb\xee\xd9\xfe\xef" "\x2c\x19\x6c\xf4\xbf\xe6\x1c\xe7\x3f\x77\xff\xc1\x5b\x1f\xde\x77\xfd\x81" "\x23\x1b\x5a\xfb\x87\x10\xca\x9d\xfa\xbf\xfd\xee\xcd\xe1\xca\x3f\xdc\xf9" "\x60\xfb\xf9\x07\xdb\x36\x6e\xfe\xe6\x9b\x5f\xdb\x24\x69\xed\xd8\xd2\x53" "\x87\xd6\x1e\x2c\xdd\xd0\xda\x3f\x69\xeb\x1f\xbf\xff\x9f\x9d\x7c\x6c\xdf" "\x8f\x1f\xf9\xce\xb3\xb1\x7f\xfc\xad\xc8\xca\x65\xf3\xed\x9f\x69\xeb\xff" "\xca\x9e\x4b\x77\xbf\xfc\xc0\xc6\x45\xad\xfd\x33\x5d\xce\xff\xe2\x6d\xaf" "\x0e\x6f\x2b\x7f\xfb\xf7\xed\xe7\xbf\xa3\x65\xd7\x5c\xd7\xbb\x98\x7b\xfe" "\x27\xae\x7d\xea\xf6\xd7\x36\xa5\xf7\xb7\x4f\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x5c\x58\xa6\xaa\x23\x13\x95\xd1\xb1\xf1\x4c\x12\x42" "\xd2\xa5\xa6\xd6\x41\x9c\xcb\xe6\xd3\xb4\xdc\x47\xdf\x37\x6e\x39\xfe\xf6" "\x6d\x7b\x7f\xf4\x83\xe6\xb1\x52\x1f\xfb\x00\x00\x00\x00\xbd\xc5\x1c\x3e" "\x9b\xfd\x8b\xa1\x14\xf2\x21\x1f\x06\xa7\x73\xff\x33\x95\xcd\xeb\x77\x1c" "\x3d\xb1\x3d\x0c\xcd\xcc\x26\xf5\x6b\x6e\x72\xdb\x3d\x3b\x3e\xb1\x65\xdb" "\xce\xbb\xee\x38\x4f\x77\x0e\x00\x00\x00\xcc\x57\xcc\xff\xb9\xc6\xc8\x50" "\x28\xe4\x96\x87\x81\x7a\xfe\x1f\xdd\xba\x73\xc3\x89\xeb\x0e\x65\x62\xfe" "\xcf\xc4\xfc\xbf\xe5\xce\xc9\xcd\xab\x42\xa3\xee\x95\x3d\x97\xee\x7e\xf9" "\x81\x8d\x8b\x1a\xcf\x09\x42\x98\xfe\x59\x40\xf1\x6c\xdd\xa7\x67\xeb\x6e" "\xba\xf1\xf8\xd0\xa9\x3f\x7e\x6d\x45\xc7\xba\x35\xb3\x75\xc7\x96\x9e\x3a" "\xb4\xf6\x60\xe9\x86\x58\x17\x9a\xeb\x56\x87\xc6\xf3\x89\x27\xae\x7d\xea" "\xf6\xd7\x36\xa5\xf7\x37\xee\xaf\xb9\xee\x93\x5f\xdd\x36\x59\x7f\x3c\x11" "\xf7\x1d\xbc\xf5\xe1\x7d\xd7\x1f\x38\xb2\xa1\x71\x8e\xfa\x75\xb0\xbe\x6f" "\xac\x9b\xcc\xec\x1f\x5f\xf7\xde\xfe\x6a\xac\xcb\xd6\xaf\xc5\xfa\xb9\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xb9\xa6\xaa\x23\x13\x95\xd1\xb1" "\xf1\x90\x0d\x21\xe9\x52\x53\xeb\x20\xce\x65\xf3\x69\x5a\xee\xa3\xef\xba" "\xe5\xbf\x78\xf0\x92\xd3\xcf\x2d\x6e\x1e\x2b\xe4\xfa\xd8\x08\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x37\x3b\x70\x20\x00\x00\x00" "\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xaf" "\x9f\xd0\x38\xaa\x38\x0e\xe0\xef\xed\x26\x66\x9b\x4d\xda\xa4\x15\x8c\x8a" "\x69\x5a\x15\xa5\x1e\x2c\x0a\x22\x7a\x51\x51\x91\x56\xa4\xe0\xa9\x52\xa4" "\xda\xda\x83\x28\x08\x22\x4a\x3d\x98\x4a\x2b\x96\xaa\x78\x11\xac\x5e\x8a" "\xa8\xa0\x46\x29\x28\xd8\x58\x2c\xad\x92\x8a\xff\x8a\x17\x0f\x2a\x28\x54" "\x0f\x42\x29\x06\xb4\xa1\x78\x50\xc9\xee\x9b\xcd\x66\xba\xd3\xd5\x89\x0a" "\xda\xcf\x07\x96\xb7\xef\xcd\xcc\x77\x7e\x33\xef\xed\x24\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x29\x7d" "\x3d\x23\x8d\xf6\xf0\x8e\x07\x67\x6e\x3b\xef\xa6\x4f\x1e\xbf\xe7\xc4\x63" "\xb7\xbc\x77\xff\xb6\x4b\x1e\x7d\xfd\x87\xb1\x4d\x37\x7c\xbc\xb7\xff\x95" "\x93\x53\x9b\x57\x6c\xf9\xfa\xc6\x65\x9b\xf6\xdf\xbb\x66\x72\xf7\x8b\x87" "\x7e\x19\x7c\xe7\xb7\xa3\x5d\x83\x1f\x69\x36\xab\x52\xb7\x16\x42\x3c\x1e" "\x43\xa8\xbd\x3f\xfd\xdc\x13\x53\x9f\x9e\x33\x3b\x16\x43\x08\xd5\x38\x34" "\x1e\xc2\x70\x5c\x7a\x68\x38\xe6\x12\x56\xff\x1a\x42\xd8\xdc\xaa\x73\xfe" "\xc6\xb7\x4f\x5c\xb9\x65\xb6\xdd\xb6\xab\x6f\xde\xf8\x92\x5c\x48\xfe\xba" "\x42\xbd\x9a\xd5\xd3\x34\x34\xbf\x5e\xfe\x5f\x6a\x69\x9d\x6d\x9d\x79\xf8" "\xb2\xf0\xed\xf5\xeb\xb7\x7f\xbe\xfc\xad\x37\x7b\x27\x8e\x8d\xcf\xed\x12" "\x6b\x6d\xeb\x29\x84\xc5\x1b\xdb\x8f\xef\x0d\x21\x2c\x4a\x9f\x59\xd9\x6a" "\x1b\xc9\x0e\x4e\xed\xba\x10\x42\x7f\xdb\x71\x57\x77\xa9\xeb\xc2\x3f\x59" "\xff\xe5\x05\xfd\xf3\x53\x7b\x56\x6a\xeb\x5d\x72\xb2\xed\x2b\x73\xfd\x4a" "\x6e\xbf\x7c\x3f\xd3\x9b\x6b\xfb\xbb\x9c\x6f\xa1\x8a\xea\x28\xbb\x5f\x37" "\x03\xb9\x7e\xfe\x61\xb4\x50\x45\x75\x66\xe3\xc3\xa9\x7d\x37\xb5\xab\xfe" "\x62\x7e\x35\xfb\xc4\x50\x89\xa1\xa7\x55\xfe\x7d\x71\x6e\x8d\x84\xb6\x79" "\x8b\x21\x36\xe6\xb2\xd6\xea\x57\x5a\x73\x1b\xd2\xf5\xe7\xfa\x31\xd7\xaf" "\xe4\xfa\xd5\xde\xdc\x75\x35\xce\x9b\x16\x5a\x35\xc6\xf9\xe3\xd9\x7e\xb9" "\xf1\xec\x71\xdc\x93\xc6\x57\xb4\x3f\xab\x3b\xb8\xbd\x60\xfc\xdc\xd4\xd6" "\xd2\x0f\xf5\x64\xd6\x0f\xf9\x2f\x4d\xf5\x53\xbe\xb4\xae\xab\x21\xab\x6b" "\xfa\x34\xb5\xfc\x1b\x2a\x6d\xcf\xa0\x4e\xe3\xad\x89\x4f\x93\x51\x4f\x63" "\xf5\xb8\xf4\x94\x63\x7e\xef\x20\xdb\x36\xb5\xfe\xa9\x8b\xab\x1b\x3e\x38" "\x3c\x54\x50\x47\xdc\x1b\x53\x7e\x2c\x95\xbf\xf5\xb3\xe1\x81\x3b\xdf\xd8" "\xf9\xd0\x48\x51\xfe\xc6\x4a\xca\xaf\x94\xca\xff\x6e\xed\x91\x9f\xee\xd8" "\xf9\xd2\x0b\x85\xf9\xcf\x66\xf9\xd5\x52\xf9\x57\x1c\xe8\x3f\xbe\xf6\xc3" "\x1d\x2b\x0b\xef\xcf\x74\x76\x7f\x7a\x4a\xe5\xdf\x75\xf4\xa3\xa7\x97\x9f" "\x7d\xf7\x44\xa7\xb9\x6e\xe4\xef\xc9\xf2\x6b\xa5\xf2\xaf\x9b\x3c\xd2\x37" "\x38\x73\xe0\x60\x61\xfd\xab\xb3\xfb\xb3\xa8\x54\xfe\x37\xd7\xde\xfc\xfd" "\x6b\x5f\xee\x3b\x56\x98\x1f\xb2\xfc\xfe\x52\xf9\x1b\x26\x1f\x78\xa6\x6f" "\x74\xe6\xd2\xc2\xfc\x83\xcd\x9f\x42\xbd\xb1\x42\x4b\xac\x9f\x9f\x27\xae" "\xfa\x6a\x74\xf4\xc7\xb1\xa2\xfc\x2f\xb2\xfb\x3f\xd8\x21\x3f\x76\xcd\x7f" "\x75\x7c\xf7\x35\x2f\x2f\xd9\xb5\xa6\x70\x7d\xae\xcb\xee\xcf\x50\xa9\xfa" "\x6f\xbd\x68\xff\xf6\x81\x99\x7d\x17\x14\x3d\x3b\xe3\x9e\xbf\xeb\x2f\x27" "\xc0\x99\x69\x59\xfa\x1f\xeb\xc9\xd4\x2f\xfb\x9e\x59\xce\xdc\x5b\x4a\xdb" "\xfb\xc2\xf3\x63\x3d\xcd\x2d\x03\xe9\x33\xb8\xf0\x13\x9d\xb6\x82\xc5\xff" "\x60\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\x07\x3b\x70\x40\x02\x00\x00\x00\x20\xe8\xff\xeb\x76" "\x04\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x4f\x05\x00\x00\xff\xff\xf9\xd7\x26\xaa", 22818)); NONFAILING(syz_mount_image(/*fs=*/0x400000000080, /*dir=*/0x400000000000, /*flags=MS_I_VERSION*/ 0x800000, /*opts=*/0x400000000380, /*chdir=*/1, /*size=*/0x5922, /*img=*/0x4000000003c0)); syscall(__NR_getsockopt, /*fd=*/-1, /*level=*/0, /*optname=*/8, /*optval=*/0ul, /*optlen=*/0ul); syscall(__NR_bpf, /*cmd=*/5ul, /*arg=*/0ul, /*size=*/0ul); syscall(__NR_bpf, /*cmd=*/0x12ul, /*arg=*/0ul, /*size=*/0ul); syscall(__NR_bpf, /*cmd=*/0ul, /*arg=*/0x400000006040ul, /*size=*/0x50ul); res = syscall(__NR_socket, /*domain=*/0xaul, /*type=*/6ul, /*proto=*/0); if (res != -1) r[1] = res; NONFAILING(*(uint16_t*)0x400000000100 = 0xa); NONFAILING(*(uint16_t*)0x400000000102 = htobe16(0x4e21)); NONFAILING(*(uint32_t*)0x400000000104 = htobe32(0)); NONFAILING(memset((void*)0x400000000108, 0, 16)); NONFAILING(*(uint32_t*)0x400000000118 = 0); syscall(__NR_bind, /*fd=*/r[1], /*addr=*/0x400000000100ul, /*addrlen=*/0x1cul); syscall(__NR_connect, /*fd=*/r[1], /*addr=*/0ul, /*addrlen=*/0ul); syscall(__NR_bpf, /*cmd=*/0ul, /*arg=*/0ul, /*size=*/0ul); syscall(__NR_pipe2, /*pipefd=*/0ul, /*flags=*/0ul); syscall(__NR_pipe2, /*pipefd=*/0ul, /*flags=*/0ul); NONFAILING(*(uint32_t*)0x400000006240 = -1); NONFAILING(*(uint64_t*)0x400000006248 = 0x4000000061c0); NONFAILING(*(uint32_t*)0x4000000061c0 = 0); NONFAILING(*(uint64_t*)0x400000006250 = 0); NONFAILING(*(uint64_t*)0x400000006258 = 0); syscall(__NR_bpf, /*cmd=*/2ul, /*arg=*/0x400000006240ul, /*size=*/0x20ul); syscall(__NR_ioctl, /*fd=*/-1, /*cmd=*/0xc0189375, /*arg=*/0ul); NONFAILING(*(uint64_t*)0x400000006300 = 0); NONFAILING(*(uint32_t*)0x400000006308 = 0); NONFAILING(*(uint32_t*)0x40000000630c = 0); NONFAILING(*(uint32_t*)0x400000006310 = 0); syscall(__NR_bpf, /*cmd=*/7ul, /*arg=*/0x400000006300ul, /*size=*/0x18ul); syscall(__NR_bpf, /*cmd=*/5ul, /*arg=*/0ul, /*size=*/0ul); syscall(__NR_ioprio_get, /*which=IOPRIO_WHO_PGRP*/ 2ul, /*who=*/r[0]); NONFAILING(*(uint64_t*)0x4000000000c0 = 0); NONFAILING(*(uint32_t*)0x4000000000c8 = 0); NONFAILING(*(uint64_t*)0x4000000000d0 = 0); NONFAILING(*(uint64_t*)0x4000000000d8 = 1); NONFAILING(*(uint64_t*)0x4000000000e0 = 0); NONFAILING(*(uint64_t*)0x4000000000e8 = 0); NONFAILING(*(uint32_t*)0x4000000000f0 = 0x4000000); syscall(__NR_sendmsg, /*fd=*/-1, /*msg=*/0x4000000000c0ul, /*f=MSG_PROBE|MSG_MORE|MSG_EOR*/ 0x8090ul); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[2] = res; syscall(__NR_mmap, /*addr=*/0x400000000000ul, /*len=*/0x3000ul, /*prot=PROT_GROWSUP|PROT_READ*/ 0x2000001ul, /*flags=MAP_FIXED|MAP_PRIVATE*/ 0x12ul, /*fd=*/r[2], /*offset=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x3ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x400000000000ul, /*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=*/0x400001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }