// https://syzkaller.appspot.com/bug?id=cb731e386d5b0a865a031d5591346e83e0eb52ec // 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 #include #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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"); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 2; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); if (call == 0) break; event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, fs_options[bcachefs_options]] { // fs_options[bcachefs_options] { // elems: array[fs_opt_elem[bcachefs_options]] { // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // metadata_checksum: fs_opt["metadata_checksum", // stringnoz[bcachefs_checksum]] { // name: buffer: {6d 65 74 61 64 61 74 61 5f 63 68 65 63 6b // 73 75 6d} (length 0x11) eq: const = 0x3d (1 bytes) val: // buffer: {6e 6f 6e 65} (length 0x4) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // data_checksum: fs_opt["data_checksum", // stringnoz[bcachefs_checksum]] { // name: buffer: {64 61 74 61 5f 63 68 65 63 6b 73 75 6d} // (length 0xd) eq: const = 0x3d (1 bytes) val: buffer: {63 // 72 63 36 34} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // fix_errors: fs_opt["fix_errors", // stringnoz[bcachefs_fix_errors]] { // name: buffer: {66 69 78 5f 65 72 72 6f 72 73} (length 0xa) // eq: const = 0x3d (1 bytes) // val: buffer: {79 65 73} (length 0x3) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // norecovery: buffer: {6e 6f 72 65 63 6f 76 65 72 79} (length // 0xa) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // str_hash: fs_opt["str_hash", stringnoz[bcachefs_str_hash]] { // name: buffer: {73 74 72 5f 68 61 73 68} (length 0x8) // eq: const = 0x3d (1 bytes) // val: buffer: {63 72 63 36 34} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // data_checksum: fs_opt["data_checksum", // stringnoz[bcachefs_checksum]] { // name: buffer: {64 61 74 61 5f 63 68 65 63 6b 73 75 6d} // (length 0xd) eq: const = 0x3d (1 bytes) val: buffer: {63 // 72 63 36 34} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // data_checksum: fs_opt["data_checksum", // stringnoz[bcachefs_checksum]] { // name: buffer: {64 61 74 61 5f 63 68 65 63 6b 73 75 6d} // (length 0xd) eq: const = 0x3d (1 bytes) val: buffer: {63 // 72 63 33 32 63} (length 0x6) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // nochanges: buffer: {6e 6f 63 68 61 6e 67 65 73} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // btree_node_mem_ptr_optimization: buffer: {62 74 72 65 65 5f // 6e 6f 64 65 5f 6d 65 6d 5f 70 74 72 5f 6f 70 74 69 6d 69 7a // 61 74 69 6f 6e} (length 0x1f) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // journal_transaction_names: buffer: {6a 6f 75 72 6e 61 6c 5f // 74 72 61 6e 73 61 63 74 69 6f 6e 5f 6e 61 6d 65 73} (length // 0x19) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // wide_macs: buffer: {77 69 64 65 5f 6d 61 63 73} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // degraded: buffer: {64 65 67 72 61 64 65 64} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // fix_errors: fs_opt["fix_errors", // stringnoz[bcachefs_fix_errors]] { // name: buffer: {66 69 78 5f 65 72 72 6f 72 73} (length 0xa) // eq: const = 0x3d (1 bytes) // val: buffer: {79 65 73} (length 0x3) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // obj_role: fs_opt["obj_role", stringnoz] { // name: buffer: {6f 62 6a 5f 72 6f 6c 65} (length 0x8) // eq: const = 0x3d (1 bytes) // val: buffer: {64 61 74 61 5f 63 68 65 63 6b 73 75 6d} // (length 0xd) // } // } // comma: const = 0x2c (1 bytes) // } // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0xff (1 bytes) // size: len = 0x5921 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5921) // } // ] // returns fd_dir memcpy((void*)0x200058c0, "bcachefs\000", 9); memcpy((void*)0x20000000, "./file1\000", 8); memcpy((void*)0x20000040, "metadata_checksum", 17); *(uint8_t*)0x20000051 = 0x3d; memcpy((void*)0x20000052, "none", 4); *(uint8_t*)0x20000056 = 0x2c; memcpy((void*)0x20000057, "data_checksum", 13); *(uint8_t*)0x20000064 = 0x3d; memcpy((void*)0x20000065, "crc64", 5); *(uint8_t*)0x2000006a = 0x2c; memcpy((void*)0x2000006b, "fix_errors", 10); *(uint8_t*)0x20000075 = 0x3d; memcpy((void*)0x20000076, "yes", 3); *(uint8_t*)0x20000079 = 0x2c; memcpy((void*)0x2000007a, "norecovery", 10); *(uint8_t*)0x20000084 = 0x2c; memcpy((void*)0x20000085, "str_hash", 8); *(uint8_t*)0x2000008d = 0x3d; memcpy((void*)0x2000008e, "crc64", 5); *(uint8_t*)0x20000093 = 0x2c; memcpy((void*)0x20000094, "data_checksum", 13); *(uint8_t*)0x200000a1 = 0x3d; memcpy((void*)0x200000a2, "crc64", 5); *(uint8_t*)0x200000a7 = 0x2c; memcpy((void*)0x200000a8, "data_checksum", 13); *(uint8_t*)0x200000b5 = 0x3d; memcpy((void*)0x200000b6, "crc32c", 6); *(uint8_t*)0x200000bc = 0x2c; memcpy((void*)0x200000bd, "nochanges", 9); *(uint8_t*)0x200000c6 = 0x2c; memcpy((void*)0x200000c7, "btree_node_mem_ptr_optimization", 31); *(uint8_t*)0x200000e6 = 0x2c; memcpy((void*)0x200000e7, "journal_transaction_names", 25); *(uint8_t*)0x20000100 = 0x2c; memcpy((void*)0x20000101, "wide_macs", 9); *(uint8_t*)0x2000010a = 0x2c; memcpy((void*)0x2000010b, "degraded", 8); *(uint8_t*)0x20000113 = 0x2c; memcpy((void*)0x20000114, "fix_errors", 10); *(uint8_t*)0x2000011e = 0x3d; memcpy((void*)0x2000011f, "yes", 3); *(uint8_t*)0x20000122 = 0x2c; memcpy((void*)0x20000123, "obj_role", 8); *(uint8_t*)0x2000012b = 0x3d; memcpy((void*)0x2000012c, "data_checksum", 13); *(uint8_t*)0x20000139 = 0x2c; *(uint8_t*)0x2000013a = 0; memcpy( (void*)0x20010b40, "\x78\x9c\xec\xdd\x6d\x90\x5c\x55\x9d\x30\xf0\x7b\xbb\x7b\x32\x9d\x99" "\xbc\x4c\x02\x48\x04\x99\x0c\x81\x28\x82\x9a\x09\x6f\x85\x2f\xa5\xa3" "\x8f\x6f\x05\x48\xc5\xc2\x52\xc2\x13\x85\x81\x4c\x30\x3a\x09\xa9\x64" "\x10\x08\x28\xc1\x07\x7c\xa0\x00\x0b\x2d\x2d\x45\xfd\x80\x16\x52\x0f" "\x1a\x2d\xaa\xe0\x51\x22\x25\xf2\xb2\x09\xab\x28\xc5\xea\x52\x5b\x48" "\xad\xee\xa2\x1f\xdc\x42\x96\x94\x40\x96\xb2\x5c\x67\x6b\xa6\xef\xe9" "\xe9\xbe\xd3\x77\x6e\x4f\x4f\x77\x5e\xe0\xf7\xab\x64\x6e\xdf\xd3\xa7" "\xff\xe7\xdc\x7b\x4f\xdf\xbe\xff\xd3\x3d\xd3\x11\x00\x00\x00\xaf\x0a" "\x7b\xae\xdf\xb6\xef\x9c\xa3\xde\xf7\x8b\xcf\x8f\xbc\x74\xcd\x07\x7f" "\xb2\xe9\xda\xa8\xb7\x38\x59\x5e\x0e\x15\xfa\x92\xe5\x15\x07\xaa\x87" "\xec\x4f\xdd\xa5\x65\x93\xcb\xf4\xb8\x78\xc3\x55\xdf\xfb\xe3\xc0\xc5" "\xef\xf9\xf9\xdd\x3d\xdf\x7d\x79\xf7\xfa\x63\x37\xfc\xf6\xbd\x87\x5d" "\x7c\xff\xa7\xce\xdc\x75\xdb\x37\x1f\x7a\x71\xe1\xbd\x7f\x7f\x26\x2f" "\x6e\x18\x4f\x27\x4e\xad\xc7\xcf\xc5\x51\x54\xfe\xe9\xde\xaf\x7e\x61" "\xf7\x63\x47\x4e\x94\xc5\x51\x14\x15\xe3\xbe\x1d\x51\xb4\x24\x5e\xfa" "\xd0\x92\x38\x15\x62\xf0\xaf\x51\x14\xad\x4f\x56\x7a\x4a\xf5\x77\xde" "\xf3\xd2\x29\x1b\x26\x96\xd7\xde\xd4\x5d\x57\xbe\x38\x15\xc4\x78\x7f" "\x75\x2b\x27\xe3\x6c\xfb\xbe\xcb\x4f\x8a\x7e\xf7\xee\xb5\xd7\xfd\x6a" "\xf9\x0f\x7f\xd0\xb5\xf3\xd9\x1d\x53\x55\xe2\x72\xcd\x78\x8a\xa2\x45" "\x17\xd6\x3e\xbe\x2b\x79\xfc\xfc\x64\x7d\x28\x59\x2e\x0b\x0f\x4e\x96" "\x6b\x26\xc6\x68\xcd\xe3\xce\xc8\xe9\xd7\x71\x4d\xf6\x7f\x55\xc6\xfa" "\xd1\xc9\x72\x5e\xb2\xec\xcd\x89\x13\xee\x5f\x91\x5a\x2f\xa4\xea\xa5" "\xd7\x83\xae\xd4\xb2\x27\xa7\xbd\xb9\xca\xea\x47\xab\xf5\xf2\x2c\x48" "\xad\xa7\x4f\x46\x73\x95\xd5\xcf\x50\xbe\x24\x59\xfe\x38\x59\x9e\x38" "\xcb\xf8\xc5\xf0\x3f\x8e\x0a\x71\x54\xaa\x76\x7f\x34\x9e\x1a\x23\x51" "\xcd\x71\x8b\xa3\x78\xf2\x58\x96\xab\xeb\x85\xea\xb1\x8d\x92\xed\x4f" "\xad\xc7\xa9\xf5\x42\x6a\xbd\xd8\x95\xda\xae\xc9\x76\x93\x81\x56\x8c" "\xe3\xfa\xf2\x50\x2f\x55\x1e\x4e\xc7\xa5\xa4\xfc\xd8\xda\x73\x75\x03" "\xe7\x66\x94\xbf\x36\x59\x96\x93\x27\xea\xcb\x61\x3d\x4a\xdf\xa8\xe8" "\x9d\x76\xa3\xba\x5d\x93\x42\xbf\xf6\xce\xd0\x97\xfd\x61\x62\x3f\x75" "\xcf\x50\x5e\x3d\xf0\xc9\xc1\xe8\x4d\xca\x7a\xe3\xa5\xd3\x1e\x33\xde" "\x40\xb8\x6f\xf7\xda\x9b\x57\x16\xd7\x3d\xbc\xa7\x2f\xa3\x1f\xf1\xdd" "\x71\x12\x3f\x6e\x29\xfe\xf6\x5f\x2e\x59\xf0\x89\xef\xdf\x78\xd9\xb2" "\xac\xf8\x17\x16\x92\xf8\x85\x96\xe2\xff\xfe\xac\xc7\x9f\x3f\xff\xc6" "\xef\x7c\x23\x33\xfe\xad\x21\x7e\xb1\xa5\xf8\x27\x3f\xd0\xf3\xdc\x59" "\x8f\x5c\xbf\x22\x73\xff\xec\x0d\xfb\xa7\xd4\x52\xfc\xe1\x67\x1e\xbd" "\x65\xf9\xe1\x17\xed\xcc\xec\xff\xed\x21\x7e\xb9\xa5\xf8\x43\xbb\x1e" "\xef\x5e\xb8\xef\x81\x07\x33\xfb\x3f\x18\xf6\xcf\xfc\x96\xe2\x3f\xfd" "\xf6\xf7\xff\xe1\xae\x27\xef\x7b\x36\x33\x7e\x14\xe2\xf7\xb4\x14\x7f" "\xdd\xae\x2d\x5f\xec\xee\xdf\x77\x42\x66\xfc\x07\xc3\xfe\xe9\x6d\x6d" "\xfc\xbc\xb0\xf3\xf4\xa7\xfa\xfb\xff\x34\x90\x15\xff\x89\x10\x7f\x61" "\x4b\xf1\xef\xdc\x71\xdb\xdb\xee\x58\x7c\xd3\x99\x99\xc7\x77\x4d\xd8" "\x3f\x7d\x2d\xc5\x3f\xfb\xf8\xfb\xaf\x5b\xb0\xef\xbe\x63\xb2\xce\x9d" "\xf1\xed\xed\x7a\xe5\x04\x78\x75\x3a\x2c\xb9\xc6\xba\x21\x59\xcf\xcc" "\x33\x4b\x33\xe7\x99\x73\x55\x93\x2f\x7c\x7d\xa0\x54\xb9\xe6\x2b\x27" "\x79\xcd\xc2\x76\x36\x94\x32\xd1\xce\xa2\x0e\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\xe0\xd5" "\xe9\x88\x93\xfe\xf1\x03\xff\xfe\xd1\xbe\xe7\x4a\xc9\x7a\x77\x72\xe3" "\xe9\x42\x65\x19\xca\xe7\x45\x51\x3c\x3f\x8a\xa2\x6d\x63\xc3\x5b\xc7" "\x36\x6e\xbe\x64\xe0\x53\x97\x5e\xb6\x75\xf3\xf0\xe8\xc0\xf0\xd8\xc0" "\xc8\xe6\xb1\xad\x57\x0e\x9c\xfa\xa6\x81\xad\x23\x5b\x46\x87\xaf\x9c" "\xb8\x77\xf0\xcd\xa7\x54\x1e\xb7\x34\x8a\x2b\xcb\xf8\x98\x69\x6d\x8f" "\x8f\x8f\x8f\x17\xfa\xea\xcb\x42\x7b\xff\xeb\xf8\x9d\xbf\x5b\x79\xc6" "\x7f\xfc\x39\x8a\x06\x8f\xf8\x4d\x7f\x29\xb3\xff\xab\x6e\xdb\x74\xc7" "\xe1\x0d\x7e\xa6\xc4\x43\xe3\xef\xda\x74\xd9\x39\xbf\x39\xed\xdb\xc9" "\x76\xf5\x25\xfd\xea\xcb\xe8\x57\x94\xd1\xaf\xff\x3c\xef\x6f\x77\x7c" "\x79\xef\x1f\x4f\x88\xa2\xc1\xd7\xcc\xd4\xaf\x47\x9f\x7e\xe7\xcf\xea" "\x3a\x34\x59\x30\x15\x27\x51\xe8\x8e\x2a\x1d\xea\x8e\x7b\x1a\xf6\xa3" "\xda\xeb\xa4\x3f\x61\x7f\x95\x36\x6c\x1c\x1d\x19\xcc\xdf\xbf\xc5\x8c" "\xed\xf8\xdf\x57\x3d\xfb\xd7\x0d\x57\x7c\xe9\x6f\x95\xfd\x5b\xce\xdc" "\x8e\x26\xf7\xef\xfc\xa1\xf1\xd1\xc2\xd7\xd6\x9e\xfd\xdf\x5f\xbb\xba" "\x52\x70\xb0\x1e\xf7\xbc\xfd\x1d\xb6\x22\xf4\x2f\xec\xbf\x72\xb2\xbf" "\x17\x25\xdb\xb5\x28\x63\xbb\x4a\x19\xdb\x75\xfd\xaf\x1e\x7c\xf2\xa7" "\x47\xdd\xf8\xe2\x8e\x68\xb0\xf4\xc2\xf2\xe9\x6d\xe7\x6d\x57\x57\x32" "\x00\xba\xe2\xd7\x36\xd5\x6e\x68\xa1\x27\x5e\x52\x57\x5e\x4e\xea\x87" "\x23\x1e\x1e\xb7\x6a\x6c\xd3\x96\x55\xdb\xae\xdc\xfe\xe6\x8d\x9b\x86" "\x2f\x19\xb9\x64\x64\xf3\x5b\x57\x9f\xba\xfa\xf4\xc1\xd3\x4e\x3f\x6d" "\xd5\xe4\x96\xaf\x6a\xf3\xf6\x87\xf6\x5f\xdf\xe4\xf6\xef\x9f\xf1\xb4" "\xf8\x33\x3b\x7e\x1c\x7e\x36\x37\x9e\xf2\xfa\x15\xf6\x47\x31\x63\x7f" "\x4c\xf4\x2b\x7f\x7f\xd4\xf6\x28\xeb\xf9\xd7\x73\xee\x17\xbe\xf2\xd6" "\xdb\x1e\x39\xa7\x52\x90\x37\xce\x43\xed\xea\xf9\x24\x59\xf6\x4c\x1c" "\xe7\xd5\x51\xcd\x78\x9b\xbe\xaf\x1a\x1d\xe7\xbc\xfd\x10\x45\xd1\x40" "\x6d\x59\xd8\x0f\xcf\xbf\x78\x66\x74\xe4\xbf\x6c\xbc\x2e\xef\x3c\x54" "\x7b\x64\x6a\x7f\xa6\xc4\x43\xe3\x8f\xad\xf8\xcb\xb7\xcf\xf8\xd6\xb2" "\x77\x54\x0a\x26\xce\xf3\xa5\x4e\x9f\xe7\x6b\x3b\xd4\xe2\x79\xbe\xda" "\xeb\xa9\xfe\x4c\xee\xaf\x72\x72\x3c\x0e\xd6\xfd\xdb\x9d\x8c\xec\xee" "\xb8\xb7\x61\xbf\x56\x3f\xf6\x48\xd7\xcd\x7b\xfe\xfc\xd9\x6a\xff\xe6" "\xcd\x8b\xae\x18\x1e\x1b\xdb\xba\xba\xf2\x73\x41\xd2\xd3\x05\xf1\xd1" "\x0d\xfb\x95\x2e\x0d\xdb\xb5\x7c\xf2\x67\x31\x4a\x76\x4b\x54\x1d\xa6" "\x0d\xc6\xeb\x84\xae\xa8\xd2\xbf\xf4\xf9\x33\x54\x4f\xef\xd5\xde\xe4" "\xbe\xde\x78\x69\xc3\xed\x4a\x0b\xf7\xed\x5e\x7b\xf3\xca\xe2\xba\x87" "\xf7\x64\xed\xe9\xf8\xee\x4a\x8b\xf3\xa3\x85\x95\x65\xfc\xba\x8c\x9a" "\xa3\xa9\x07\x16\xab\x1d\x6e\xd4\xfe\xa1\x30\x3e\xe6\x35\xe8\x57\xff" "\x07\xbe\x75\xef\x47\xef\xfd\xd1\xa9\xd3\xc6\xc7\xc9\x95\x9f\x79\xdb" "\x15\x67\x6c\xd7\x0f\x9f\xbc\xf3\x2b\xdf\xfd\xd2\xff\xfd\x51\xfb\xb6" "\xeb\x03\xef\x7c\xbc\xef\x2f\xff\xfa\xc9\x95\x95\x82\xfd\x72\xfd\xd8" "\x86\xf3\x4a\xb5\xd7\x49\x7f\xe2\xda\xf3\xca\xc9\x51\x94\xf7\xfc\x5b" "\x1e\x35\xde\x8e\xcc\xe7\x5f\xa1\xf1\xf6\xe4\x3d\xff\xd2\xed\x4c\xd5" "\x6f\x1c\x6f\x20\xb5\xde\x1b\x15\x5b\x7a\xbe\x9e\xfc\x40\xcf\x73\x67" "\x3d\x72\xfd\x8a\xcc\xe7\xeb\xde\x66\x9f\xaf\x57\xd7\xad\x15\x73\x9e" "\xaf\x07\xcb\xf8\x39\x70\xcf\xaf\xba\x81\x12\x0f\x8d\xff\xfc\x86\xc3" "\x76\x3c\x74\xcd\x9a\xa3\x2a\x05\x79\xe3\xba\x5a\xbb\xd1\xb8\x3e\xa5" "\x89\xfc\x23\x63\xbb\x7e\x76\xfe\x53\xfd\x97\x0e\xfc\x9f\x7f\x6e\xdf" "\x79\xe3\x7b\x6f\xba\xe7\x82\xdf\x0e\x0f\x7d\xae\x52\x70\xb0\x1c\xf7" "\x72\xb2\x7f\xcb\x19\xfb\xb7\xda\xeb\x90\x77\xd6\xee\xdf\xb7\x5c\x7c" "\xe9\xe8\xfa\x4a\x79\xb3\xd7\xbf\xe9\xed\xe9\xfc\xf5\x6f\xb2\xcc\xc9" "\x7f\xc2\xa9\x64\xdb\x95\xdb\x3f\x3d\x3c\x3a\x3a\xb2\x75\x5b\x73\xdb" "\xd5\xec\xeb\x69\x68\x27\xbd\x97\x5b\x7d\x3d\x0d\x67\xb7\xa5\x39\xdb" "\x55\x98\xb6\x5d\x9d\xbb\x11\xd5\xbc\xb2\xcf\xf5\xf9\x16\xfa\xbf\xbe" "\xe5\xfd\x55\xff\x7c\xeb\x8d\xe2\x96\x5e\x17\xb6\xff\x72\xc9\x82\x4f" "\x7c\xff\xc6\xcb\xfa\xa6\x3d\x2a\x69\xe8\xc2\x42\x12\xbf\xd0\x52\xfc" "\xdf\x9f\xf5\xf8\xf3\xe7\xdf\xf8\x9d\x6f\x64\xc6\xbf\x35\xc4\x2f\xb5" "\x14\x7f\xf8\x99\x47\x6f\x59\x7e\xf8\x45\x3b\x33\xe3\xdf\x1e\x27\xf1" "\xcb\x2d\xc5\x1f\xda\xf5\x78\xf7\xc2\x7d\x0f\x3c\x98\x19\x7f\x30\xf4" "\x7f\x7e\x4b\xf1\x9f\x7e\xfb\xfb\xff\x70\xd7\x93\xf7\x3d\x9b\x19\x3f" "\x0a\xf1\x7b\x5b\xdb\xff\x2f\xec\x3c\xfd\xa9\xfe\xfe\x3f\x65\xc6\x7f" "\x22\x4e\xda\x99\xb8\x46\x8a\xa2\x7b\x5e\x3a\x65\x43\x65\x3d\x8e\xba" "\x92\xe7\x5b\xe8\x47\x57\x5d\xbf\xa2\xf4\x7a\x9c\x5a\x2f\xa4\xd6\x8b" "\xb5\xeb\x85\x28\x79\x36\x25\x0d\x14\xe3\xb8\xbe\x3c\xd4\x4b\xca\x8f" "\xad\xe9\x4b\x23\x1f\xcb\x28\x0f\x57\x61\xe5\x65\x95\xe5\xcb\x61\x3d" "\x4a\xdf\x98\xb9\xfc\x60\x53\xa8\x39\xf7\x37\x2a\xcf\xbb\x4e\x05\x00" "\x78\xa5\x0b\xef\xff\x87\x6b\xd0\xf0\xfe\xff\x48\x72\xa1\x94\x3d\xd3" "\x00\x53\xe6\x9a\x87\x2d\xcb\x88\x1b\xf2\xb0\xa9\xf9\x9c\xfa\x77\x11" "\x96\x25\xf1\xc3\xe3\xc3\x3c\x60\xff\x5b\xa2\xc1\x89\xe5\xb5\x03\x95" "\x0b\xfd\x9c\xf9\x9c\x1d\xe9\xf9\x9c\xf0\x7c\x48\xcf\x73\x86\x76\x4e" "\x38\xae\x3e\x46\xab\xf3\x9c\x79\xf3\xef\x2b\x52\xeb\xa1\x5f\x95\xf9" "\xf2\x52\x4d\x1e\x9a\x98\x9e\xd7\x94\xa2\x26\xe6\xdf\xa7\xb7\x33\xf3" "\xfc\x7b\x6a\xf3\xf3\xe7\xc7\x07\x6e\x98\xd6\xad\x81\x9a\x79\xab\xf4" "\xf1\xeb\x4a\x66\xcc\x1a\x7d\xde\x21\xd5\xdf\xd2\x44\x84\xac\xf1\x91" "\x9e\x17\x0b\x9f\xe7\xe8\x5f\x14\xad\x99\x6c\xaf\xb9\xf1\x31\xed\x73" "\x34\xe1\x38\xa4\x3f\x47\x13\xda\x39\x2a\x75\xe2\x6c\xf5\x73\x34\x73" "\x1d\x1f\xa1\xdb\x33\x8c\x8f\xc9\x2e\xe7\xbf\xbf\x31\xfd\xf8\x45\x33" "\xec\xdf\xa9\xe3\xd7\x38\x5a\xfa\xf8\xcd\xe2\x78\x97\x27\xea\x77\xfa" "\xfd\xd9\xfc\x79\xc3\xb8\xae\xa5\x70\xdf\xc1\x33\x6f\xd8\xd9\xf7\xc3" "\xcc\x4b\x66\xc4\x4f\x9e\x60\x07\xfb\xbc\x61\x28\x0f\xdb\x51\x6a\x72" "\x3e\xf1\xa3\x19\xe5\xed\x9a\x4f\x0c\xa7\x8b\xd0\xaf\xbd\x33\xf4\x65" "\x7f\x30\x9f\x08\xbc\x52\x85\xfc\x3f\xbc\x46\x4c\xe4\xff\x13\x17\xe0" "\xff\x95\xaa\x97\x77\x1d\x9a\xbe\x6a\x0c\xf1\x32\x3f\x27\x54\x6c\xdc" "\x9f\xbc\xbc\xa3\xe6\xea\x3c\xa9\xb1\xa3\xa5\xd7\xf1\x75\xbb\xb6\x7c" "\xb1\xbb\x7f\xdf\x09\x99\xd7\x39\x0f\x36\xfb\xb9\x9f\x2d\x75\x6b\x3d" "\x39\x9f\xfb\xc9\xdb\x8f\x2b\x53\xeb\xb9\xfb\x31\x63\x82\x26\x2f\xdf" "\x9b\x6c\x67\xbc\x51\xfd\xc6\xf1\xd2\x9f\xcb\xe8\x8d\x16\xb6\xb4\xdf" "\xef\xdc\x71\xdb\xdb\xee\x58\x7c\xd3\x99\x99\xfb\x7d\x4d\xe5\x85\x34" "\x7f\xbf\x7f\xa5\x6e\x6d\x61\xce\x7e\x3f\xf0\xf9\x42\xe3\xf8\xf2\x05" "\xf9\x42\xb4\x1f\xe6\xcf\x0e\x58\x3e\x92\x7c\xf0\xa9\x53\xf9\xc8\x47" "\x32\xca\x67\x9b\x8f\xf4\x4c\xbb\x51\xdd\xae\x49\x87\x5c\x3e\xd2\xb5" "\x7f\xfb\x05\x00\x1c\x3a\x42\xfe\x5f\x7d\xff\x2c\xc9\xff\xff\x2d\x55" "\x2f\x2f\x6f\x3d\x31\xb5\x1e\xe2\x65\xe6\xad\x19\xd7\x27\x59\x79\xeb" "\x87\x92\xe5\x15\xa9\xfa\xbd\xc9\x6f\x54\xcc\xf6\xba\xf9\xec\xe3\xef" "\xbf\x6e\xc1\xbe\xfb\x8e\xc9\xcc\x5b\x6e\x6f\x36\x0f\xfd\x7f\x75\x6b" "\x7d\xb9\x79\xe8\xdc\xf2\xe6\xcc\x3c\x62\x4d\x7b\x3e\x2f\x9e\x99\x47" "\x54\xf3\xac\xb9\xe5\x89\x99\xfd\xaf\xe6\x89\x73\xcb\xd3\x33\xe3\x57" "\xf3\xf4\xb9\xe5\xd1\x99\xfb\xa7\x9a\x47\xcf\x6d\x1e\x20\x33\x7e\x75" "\x1e\xe0\x50\xcf\x73\x7b\x3a\x3a\x5f\x77\x00\xf3\xe8\x42\xd4\xc9\x3c" "\x3a\xf9\xf5\xea\x4e\xe5\xd1\xe7\x66\x94\xd7\xe6\xd1\x3d\x4d\xe4\xd1" "\xbd\xd3\x6e\x54\xb7\x6b\x92\x3c\x1a\x00\xe0\xc0\x0a\xf9\x7f\xb8\x8c" "\x0b\xf9\xff\x23\xa9\x7a\x73\xbd\x6e\xcf\xcc\x0b\xda\x74\xdd\x9e\xfe" "\x7b\x20\xd5\xf8\x4f\xb4\x9e\x57\x86\xeb\xeb\xe6\xf2\xca\x4e\xe7\x7d" "\x9d\xce\x5b\x3b\x9d\xd7\x77\x7a\x5e\xe2\x50\xcf\x8b\x3b\x3d\x2f\xd4" "\xd9\x79\xb2\x03\xf6\xfe\xf2\x41\x90\x17\x47\xf2\x62\x00\x00\x0e\x11" "\x21\xff\x9f\x9f\xac\x67\xe7\xff\x0d\xf2\x93\xe4\x1a\xb0\x99\xfc\x24" "\x33\x7f\xab\xe6\x27\x9d\x7e\xdf\x57\x7e\xde\x30\xbe\xfc\x7c\xbf\xbc" "\x6f\x7d\xe0\xe7\xbf\xe4\xff\xf2\xff\x7c\xf2\x7f\x00\x80\x57\xb6\x90" "\xff\x87\x5f\x7b\x0c\x7f\xff\xef\x1f\x92\xf5\xf4\xdf\xad\xef\x2d\xc9" "\xd3\x1b\xc6\xdf\x4f\x79\xfa\x90\x3c\xbd\x71\xfc\x57\x4c\x9e\x3e\xb7" "\xcf\x01\xe4\xcf\xb3\x99\x07\x30\x0f\x90\xcf\x3c\x00\x00\xc0\x2b\x4b" "\xd7\x64\xa6\x34\xfd\xf7\xec\x3f\x9e\x2c\xd3\xbf\x67\x9f\xf5\x7b\xf9" "\xe7\x67\xd4\xaf\x31\x7f\xa6\x7e\x94\x92\x0a\x17\x8d\x6d\x1d\x19\xb9" "\xe0\xb2\x2d\xeb\x87\xc7\x46\x2e\xd8\x7c\xe9\xfa\x91\x6d\x17\xd4\x5d" "\x7e\xce\x35\x6f\xcc\xcc\x5b\x92\xbc\xb1\x2b\x2a\x25\xfb\xa3\x71\xbd" "\x74\xde\xb6\x38\xf9\x7b\x08\x8b\x33\xfe\x1e\x42\xba\x7e\x08\x7b\xf4" "\xe4\x8d\xe9\x7f\x0f\x21\xdd\xec\xfc\x9c\xbf\x23\x30\x75\xfc\x9a\xeb" "\x6f\xd6\xf1\x2b\xcc\x50\xbf\xd1\xf8\xc8\x3a\xde\x59\xf1\x3f\x96\x51" "\x3f\xa8\x1e\xff\x8b\x3f\x79\xf2\x05\x1b\xb6\x5d\xb0\x71\xf3\xc6\xb1" "\x8d\xc3\xa3\x1b\xb7\x8f\xd4\xd7\x9b\xc8\x5a\x7b\x66\xf1\xbd\x99\x61" "\xb7\xcc\xea\x7b\x33\x53\x3f\xa6\x29\xcc\xfe\xfb\x3b\xdb\xd3\x8f\xc2" "\xb4\x7e\x74\x25\xfb\x23\xeb\xfb\xd9\xe3\x54\x3f\x96\x24\x3d\x59\x92" "\xf5\x3d\xaf\x19\xfd\xfe\xc5\x3f\x7d\xf9\x33\xc7\x8f\xff\xed\xae\x28" "\x1a\x3c\xa2\xf8\xba\x39\xed\xbf\x78\x68\xfc\xff\x9f\x37\xf2\xa1\xb1" "\x3d\xbf\xd9\x32\xd1\xff\xc2\x8c\xfd\xaf\xd6\x4c\xfa\x95\xf7\x7d\xa5" "\xe9\xfa\x61\x7b\x4a\xa3\x97\x6e\x1b\x3b\x69\xc3\xa5\x97\x6d\x4e\x7f" "\xa3\x64\x6b\xc2\x7c\x46\xa1\xba\xde\xa1\xf9\x8c\xe4\xe9\x5f\x6c\x72" "\x7e\x62\x5d\x46\xf9\x6c\xe7\x27\x8a\xd3\x6e\x1c\x9c\x9a\x9e\x9f\x00" "\x00\xa0\x4e\x78\xff\x3f\x5c\xcf\x86\xf7\x0f\xbf\x94\x5c\x40\x85\xf2" "\x19\xf2\xf4\xcb\xb7\x6e\x1c\x1b\x1b\xd9\x5c\xa9\x37\xd7\xf7\x8f\x33" "\xf3\xf4\xc1\xe6\xf2\xf4\xf4\xf7\x92\xe5\xe5\xe9\xe9\xfa\x61\x7b\x9b" "\xcd\xd3\xcb\x73\xcc\xd3\xa7\xda\x3f\x27\xd9\xbe\x99\xf3\xf4\x74\x7f" "\xb3\xf2\xf4\xac\xbc\x3b\x2b\xfe\x47\x32\xea\xcf\x56\xf3\xe3\x64\x6e" "\x9f\xf3\xc8\x1c\x27\x17\x36\x37\x4e\xd2\xdf\x67\x90\x37\x4e\xd2\xf5" "\x67\x3b\x4e\xe2\x56\xc7\xc9\x82\xc6\xed\xe7\x8d\x93\x46\xf5\x1b\x8d" "\x93\xac\xe3\x9e\x15\xff\xc3\x19\xf5\xb3\x34\x3f\x1e\xe6\xf6\xb9\x9c" "\xcc\xf1\x70\x6b\x73\xe3\xe1\x8d\xa9\xf5\xbc\xf1\x90\xae\x3f\xdb\xf1" "\x50\x98\xe3\x79\x23\xdd\x7e\xde\x78\x68\x54\xbf\xd1\x78\xc8\x3a\xbe" "\x59\xf1\xcf\xc9\xa8\xdf\xac\xfa\xf1\x31\x31\x30\x26\xc7\xc5\xc8\x05" "\x97\x5f\xba\xf5\xd3\x35\xf5\x3a\xfd\xfd\x17\x73\xef\x5f\x67\xbf\xff" "\xa3\x55\xcd\xf7\xbf\xb3\x9f\xfb\xea\x7c\xff\x3b\xfb\xb9\xb2\xce\xf7" "\x7f\x6e\x9f\x2b\xcb\xec\xff\x13\x73\x9b\x09\x6b\xbe\xff\x9d\xfd\x7e" "\x97\x56\xed\xb7\xf9\xda\xe4\xc3\x66\x79\x9f\x3f\xcb\x9b\xc7\x5d\x9b" "\x51\x3e\xdb\x79\xdc\x79\xd3\x6e\x1c\x9c\xcc\xe3\xc2\x81\x13\xf2\xff" "\xf0\x76\x4f\xc8\xff\x6f\x4a\x96\xed\x7e\x1b\xe8\x10\xff\x9e\xb4\xc9" "\xbb\x3b\xf9\x3a\x77\xe8\x7f\xfe\xbe\xb3\xd7\x31\x5e\xcf\x67\x68\xec" "\x20\xe0\xf5\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x39\xdd\xa5\x65\x93\xcb" "\x3d\xd7\x6f\xdb\x77\xce\x51\xef\xfb\xc5\xe7\x47\x5e\xba\xe6\x83\x3f" "\xd9\x74\xed\x1b\xae\xfa\xde\x1f\x07\x2e\x7e\xcf\xcf\xef\xee\xf9\xee" "\xcb\xbb\xd7\x1f\xbb\xe1\xb7\xef\x3d\xec\xe2\xfb\x3f\x75\xe6\xae\xdb" "\xbe\xf9\xd0\x8b\x0b\xef\xfd\xfb\x33\xb9\x81\xfb\x2a\x8b\x13\x93\xd5" "\x72\x14\xc5\xcf\xc5\x51\x54\xfe\xe9\xde\xaf\x7e\x61\xf7\x63\x47\x4e" "\x94\xc5\x51\x14\x15\xe3\xbe\x1d\x51\xb4\x24\x5e\xfa\xd0\x92\x38\x15" "\x61\xf0\xaf\x51\x14\xad\xaf\xf6\xb3\xfe\xce\x7b\x5e\x3a\x65\xc3\xc4" "\xf2\xda\x9b\xba\xeb\xca\x17\xa7\x82\xa4\xb7\x2b\xea\x2d\x86\xfe\xd4" "\xf5\x33\xba\x22\x77\x8b\x38\x04\x95\x93\x71\xb6\x7d\xdf\xe5\x27\x45" "\xbf\x7b\xf7\xda\xeb\x7e\xb5\xfc\x87\x3f\xe8\xda\xf9\xec\x8e\xa9\x2a" "\x71\xb9\x66\x3c\x45\xd1\xa2\x0b\xa3\xe2\xd4\x9d\x5d\x51\x14\xcd\x4f" "\xfe\x4f\x08\xa3\x6d\x59\x78\x70\xb2\x5c\x13\x45\x51\x4f\x4d\xbb\x67" "\xe4\xf4\xeb\xb8\x26\xfb\xbf\x2a\x63\xfd\xe8\x64\x39\x2f\x59\xf6\xe6" "\xc4\x09\xf7\xaf\x48\xad\x17\x52\xf5\xd2\xeb\x41\x57\x6a\xd9\x93\xd3" "\xde\x5c\x65\xf5\xa3\xd5\x7a\x79\x16\xa4\xd6\xd3\x27\xa3\xb9\xca\xea" "\x67\x28\x5f\x92\x2c\x7f\x9c\x2c\x4f\x9c\x65\xfc\x62\xf8\x1f\x47\x85" "\x38\x2a\x55\xbb\x3f\x1a\x4f\x8d\x91\xa8\xe6\xb8\xc5\x51\x3c\x79\x2c" "\xcb\xd5\xf5\x42\xf5\xd8\x46\xc9\xf6\xa7\xd6\xe3\xd4\x7a\x21\xb5\x5e" "\xec\x4a\x6d\xd7\x64\xbb\xc9\x40\x2b\xc6\x71\x7d\x79\xa8\x97\x2a\x0f" "\xa7\xe3\x52\x52\x7e\x6c\xed\xb9\xba\x81\x73\x33\xca\x5f\x9b\x2c\xcb" "\xc9\x13\xf5\xe5\xb0\x1e\xa5\x6f\x54\xf4\x4e\xbb\x51\xdd\xae\x49\xa1" "\x5f\x7b\x67\xe8\xcb\xfe\x50\xa8\x39\x07\x35\x2a\xaf\x1e\xf8\xe4\x60" "\xf4\x26\x65\xbd\xf1\xd2\x69\x8f\x19\x6f\x20\xdc\xb7\x7b\xed\xcd\x2b" "\x8b\xeb\x1e\xde\xd3\x97\xd1\x8f\xf8\xee\x38\x89\x1f\xb7\x14\x7f\xfb" "\x2f\x97\x2c\xf8\xc4\xf7\x6f\xbc\x6c\x59\x56\xfc\x0b\x0b\x49\xfc\x42" "\x4b\xf1\x7f\x7f\xd6\xe3\xcf\x9f\x7f\xe3\x77\xbe\x91\x19\xff\xd6\x10" "\xbf\xd8\x52\xfc\x93\x1f\xe8\x79\xee\xac\x47\xae\x5f\x91\xb9\x7f\xf6" "\x86\xfd\x53\x6a\x29\xfe\xf0\x33\x8f\xde\xb2\xfc\xf0\x8b\x76\x66\xf6" "\xff\xf6\x10\xbf\xdc\x52\xfc\xa1\x5d\x8f\x77\x2f\xdc\xf7\xc0\x83\x99" "\xfd\x1f\x0c\xfb\x67\x7e\x4b\xf1\x9f\x7e\xfb\xfb\xff\x70\xd7\x93\xf7" "\x3d\x9b\x19\x3f\x0a\xf1\x7b\x5a\x8a\xbf\x6e\xd7\x96\x2f\x76\xf7\xef" "\x3b\x21\x33\xfe\x83\x61\xff\xf4\xb6\x36\x7e\x5e\xd8\x79\xfa\x53\xfd" "\xfd\x7f\x1a\xc8\x8a\xff\x44\x88\xbf\xb0\xa5\xf8\x77\xee\xb8\xed\x6d" "\x77\x2c\xbe\xe9\xcc\xcc\xe3\xbb\x26\xec\x9f\xbe\x96\xe2\x9f\x7d\xfc" "\xfd\xd7\x2d\xd8\x77\xdf\x31\x59\xe7\xce\xf8\xf6\x76\xbd\x72\x02\xbc" "\x3a\x1d\x96\x5c\x63\xdd\x90\xac\xcf\x2a\xcf\x6c\xa3\x9a\x7c\xe1\xeb" "\x03\xa5\xca\x35\xdf\x82\xe4\xff\xc2\x76\x36\x94\x32\xd1\xce\xa2\x0e" "\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\x00\x00\x00\x00\xe0\x95\xe9\xd7\x57\x9f\xfa\xf1\xf3" "\xde\xf5\xe1\xb5\xa5\x38\x8a\xe2\x8c\x3a\xe3\x0d\x84\xfb\x8a\xf3\x86" "\x86\x06\x5a\x68\x77\xf8\x99\x47\x6f\x59\x7e\xf8\x45\x3b\x6b\xcb\x96" "\xb5\x10\x07\x00\x00\x00\xc8\x17\xf2\xf0\x42\xb5\xa4\x1c\x2d\x8b\x2e" "\x8f\xe7\x47\x47\x37\xac\x1f\xe6\x08\x8e\x0e\x6b\x71\x7d\x79\x7a\x0e" "\x61\xfe\x54\xcd\xb6\xc4\x29\xb4\x29\x4e\xb1\x4d\x71\x4a\x6d\x8a\xd3" "\xd5\xa6\x38\xf3\xda\x14\xa7\xbb\x4d\x71\xca\x39\x71\xca\x51\x73\x71" "\xe6\xcf\x18\xa7\xd0\x74\x7f\x7a\xda\x14\xa7\xb7\x4d\x71\x16\x34\x1f" "\x27\x3d\xf4\xeb\xe2\x2c\x6c\x53\x7f\x16\xb5\x29\xce\xe2\x36\xc5\xe9" "\x9b\x31\x4e\xf3\xe3\x70\x49\x9b\xe2\x2c\x6d\x53\x9c\xc3\xda\x14\xe7" "\xf0\x36\xc5\x39\xa2\x4d\x71\x5e\xd3\xa6\x38\x47\xb6\x29\x4e\x7a\x4e" "\x79\xb6\xe3\x70\x61\x52\xf3\xa8\xac\x38\x93\x37\x8a\xb9\x71\x4a\x71" "\xb1\x7a\x47\xa3\xf9\xf4\xd0\xce\x31\x73\x6c\xa7\xb7\xc9\x76\xd2\x73" "\xf6\x21\xce\xf9\x4d\xb6\x33\xbf\xc9\x76\x8e\x4b\x3d\xae\x30\xcb\xed" "\x29\x37\xd9\xce\xeb\xe7\xd8\x4e\xdc\x64\x3b\x6f\x9c\x63\x3b\x85\x9c" "\x76\xc2\xb8\xbd\x22\xdd\xbf\xd0\x4e\x58\x6b\x72\xfc\x5f\xd9\xa6\x38" "\xdb\xdb\x14\xe7\xaa\x36\xc5\xb9\xba\x4d\x71\x3e\xdb\xa6\x38\x9f\x6b" "\x53\x9c\x6b\xe6\x18\x07\xa0\x59\x21\xff\x9f\xca\xf7\xfa\xa2\xee\xd2" "\x3b\xa2\x9e\xe4\x8c\x93\x9e\x05\x08\xf9\xee\xf2\xc9\x9f\xd3\x5f\xef" "\xb2\x4e\x48\x21\xde\xeb\x52\xe5\xf3\xf2\xe2\xa5\x13\xf5\x54\xbc\xe5" "\xb3\xed\x5f\xc3\x2c\x6a\x2a\xde\x8a\x54\x79\x57\x5d\xbc\x52\x35\x1f" "\x99\x21\x5e\xb9\x36\xde\xca\xd4\x9d\x35\xdb\x5b\x97\x1a\xc7\xe9\x0d" "\xc8\xe8\xdf\x89\xa9\xf2\xee\xba\xfe\x35\xd8\xde\xf4\xc4\x02\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\xd0\xaf" "\xaf\x3e\xf5\xe3\xe7\xbd\xeb\xc3\x6b\xa3\x38\x9a\xf8\xd7\xd0\x78\x03" "\xe1\xbe\xe2\xbc\xa1\xa1\x81\x16\xda\xdd\xbd\xf6\xe6\x95\xc5\x75\x0f" "\xef\xa9\x2d\xeb\x2e\xb5\x10\x08\x00\x00\x00\xc8\x15\xf2\xf0\xae\x6a" "\x49\x39\xea\x2e\xad\x8e\xba\xe3\x79\x75\xf5\xca\xc9\x3c\x40\x39\x59" "\x2f\xf6\x55\x96\xfd\x8b\xa2\x35\x13\xcb\x78\xa0\x30\xb9\xde\x13\x2f" "\x99\xf1\x71\xa5\xe4\x71\xab\xc6\x36\x6d\x59\xb5\xed\xca\xed\x6f\xde" "\xb8\x69\xf8\x92\x91\x4b\x46\x36\xbf\x75\xf5\xa9\xab\x4f\x1f\x3c\xed" "\xf4\xd3\x56\x6d\xd8\x38\x3a\x32\x58\xf9\x19\x45\xdd\x39\xf1\xa2\x28" "\x9a\x9c\x7e\xd8\x76\xe5\xf6\x4f\x0f\x8f\x8e\x8e\x6c\xdd\x56\x29\x9c" "\xec\x7f\xf7\x54\xa5\x65\xc9\xe3\x96\x25\xeb\x71\xf2\xb8\xfe\xb7\x44" "\x83\x13\xcb\x6b\x93\xfe\x2f\xcd\x69\xaf\x30\xad\xbd\xce\xdd\x68\xea" "\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\xc3\xae\xdd\x85\xc8\x79" "\x95\x71\x00\x3f\xef\xcc\xec\xcc\x74\xdb\x98\x95\x7e\x4d\x43\xb3\x19" "\xf2\x51\xa2\x16\x4d\xe2\x56\x52\x2d\xdd\x17\x04\x0b\x6d\x12\xb2\x14" "\x64\xb6\xba\x96\x60\x13\x2c\x6e\x9a\xd0\x26\x25\xd6\xb1\x0d\xd8\xd6" "\x04\x45\x68\x09\x84\x48\x6e\x22\xb1\xd8\x5a\xbc\xe9\x87\x2d\x62\x3f" "\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\xcc\x64\x36\x63\x69\xda\xf4\xf7\xbb" "\x78\xdf\x99\x73\x9e\x73\x9e\x39\x73\xb1\xf0\x7f\x77\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\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\xd0\x54\x75\x64\xa2\x32\x3a\x36" "\x3e\x98\x84\x90\x74\xa9\xa9\x75\x10\xe7\xb2\xf9\x34\x2d\xf7\xd1\xf7" "\xeb\xcf\x6f\xfd\x71\x61\xf8\xe4\xf2\xe6\xb1\x42\xae\x8f\x8d\x00\x00" "\x00\x80\x9e\x62\x0e\x1f\x68\x8c\x14\x43\x21\x97\x0d\xd9\x70\xd5\xf4" "\xbb\xc5\xa1\x69\x22\xcc\xe6\x7e\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\xe3\x67\xaa\x3a\x32" "\x51\x19\x1d\x1b\xbf\x38\x09\x21\xe9\x52\x53\xeb\x20\xce\x65\xf3\x69" "\x5a\xee\xa3\xef\x1b\xef\x3c\xf9\x85\x57\x87\x87\xff\xd1\x3c\x56\xea" "\x63\x1f\x00\x00\x00\xa0\xb7\x98\xc3\x33\x8d\x91\x62\x28\x85\x25\x61" "\x20\xb9\xaa\xa5\x2e\x3e\x1b\x58\xd0\xb6\xbe\xbd\x2e\xee\xb3\x70\x8e" "\x75\xed\xcf\x0e\xba\xd5\x2d\x99\x63\xdd\x35\x73\xac\xfb\x54\x8f\xba" "\x75\xf5\xfb\x8e\x00\x00\x00\x00\x1f\x7d\x31\xff\xe7\x1a\x23\x43\xa1" "\x90\x9b\xd7\x35\xff\xf7\xca\xf5\xb1\x6e\x51\x5b\x5d\xb6\x7e\xef\xe7" "\xb7\x02\x00\x00\x00\xc0\xff\x27\xe6\xff\x42\x63\xa4\x14\x0a\xb9\x52" "\x23\xaf\xcf\x35\xef\x2f\x6e\xab\x8b\xeb\x7b\xfd\xdf\x3e\xae\x5f\xd6" "\x65\x7d\xaf\xff\xe7\xaf\xad\xdf\xfd\x9f\x1e\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\x3a\xa6" "\xaa\x23\x13\x95\xd1\xb1\xf1\x6c\x12\x42\xd2\xa5\xa6\xd6\x41\x9c\xcb" "\xe6\xd3\xb4\xdc\x47\xdf\x55\x2f\x0c\xfe\xeb\x96\x43\x0f\x2d\x6e\x1e" "\x2b\xe4\xfa\xd8\x08\x00\x00\x00\xe8\x29\xe6\xf0\xd9\xe8\x5d\x0c\x85" "\xdc\x60\x18\x08\x17\x4f\xe7\xfe\xe1\x9b\xf6\x3f\xfd\xd5\xa7\x9f\x1d" "\x09\x21\xcc\xc4\xfc\x7c\x3e\xec\xd8\xb0\x6d\xdb\xdd\xab\x66\xae\xb1" "\x6e\xe5\x91\x43\x03\x3f\x3a\xfc\xd6\xf7\xce\xa8\x5b\x39\x73\x3d\x6f" "\x07\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xde\x37\x53\xd5\x91\x89\xca\xe8\xd8\xf8\x45\x49" "\x08\x49\x97\x9a\x5a\x07\x71\x2e\x9b\x4f\xd3\x72\x1f\x7d\x5f\xff\xd2" "\x57\xfe\xf6\xf8\xf1\xe7\xde\x6c\x1e\x2b\xf5\xb1\x0f\x00\x00\x00\xd0" "\x5b\xcc\xe1\xb3\xd9\xbf\x18\x4a\x21\x1f\xf2\xe1\x8a\xe9\x77\xcd\x59" "\xff\xb4\x4c\xdb\xfa\x6e\xcf\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x0b\xc7\x3d\xdf\xb9\xef\xdb\x1b\x26\x27\x37\xde\xed\x85" "\x17\x5e\x78\xd1\x78\x71\xbe\xff\x32\x01\x00\x00\xef\xb7\x45\x21\x09" "\xb5\x73\x74\xe5\xfa\xf3\xfd\xa9\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\x80\x0f\x83\xa9\xea\xc8" "\x44\x65\x74\x6c\xbc\x98\x84\x90\x74\xa9\xa9\x75\x10\xe7\xb2\xf9\x34" "\x2d\xf7\xd1\x37\x7d\xfe\x68\x61\xde\xc9\x17\x5e\x6a\x1e\x2b\xf5\xb1" "\x0f\x00\x00\x00\xd0\x5b\xcc\xe1\xb3\xd9\xbf\x18\x4a\x61\x20\x0c\x84" "\xcb\xa7\xdf\x75\x7a\x26\x30\x9d\xff\x87\x3e\xc0\x0f\x09\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\xa8\x4c\x55\x47\x26\x2a\xa3\x63" "\xe3\xf3\x92\x10\x92\x2e\x35\xb5\x0e\xe2\x5c\x36\x9f\xa6\xe5\x3e\xfa" "\x3e\xb6\x73\xdf\x17\x0f\xce\xff\xe1\xcd\xcd\x63\x85\x5c\x1f\x1b\x01" "\x00\x00\x00\x3d\xc5\x1c\x9e\x6f\x8c\x14\x43\x21\xf7\xe9\x50\x08\x57" "\xd7\xdf\x4f\xb6\x2e\x48\xb2\xf5\x7b\xe7\xe7\x02\xb3\xeb\xb6\xb6\x2c" "\x1b\x9c\xf3\xba\x6a\xcb\xba\xec\x9c\xd7\xed\x6a\x3b\x59\xae\x7e\x9a" "\x99\x75\xc5\xb8\xdf\xd0\xcc\xbd\xb1\xae\x7c\xe6\xba\x72\xd3\xba\x52" "\x68\xb4\x2f\xb7\xac\x0b\x7b\x5a\x56\xcd\xeb\xf1\x39\x03\x00\x00\x00" "\x9c\x47\x31\xff\x17\x1a\x23\x43\xa1\x90\x2b\x34\xe5\xdc\x9f\xb7\xd4" "\x0f\xc9\xb9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\x17\x53\xd5\x91\x89\xca\xe8\xd8\x78\x92\x84\x90\x74\xa9" "\xa9\x75\x10\xe7\xb2\xf9\x34\x2d\xf7\xd1\xf7\xbe\xdf\x7f\xf2\x92\x6f" "\xfc\x62\xf7\xf6\xe6\xb1\x52\x1f\xfb\x00\x00\x00\x00\xbd\xc5\x1c\x3e" "\x9b\xfd\x8b\xa1\x14\x16\x86\x4f\x84\x85\xd3\xb9\x3f\x0c\xb5\xd6\xc7" "\xba\x7f\x57\x4e\x1d\x7c\xf4\x3f\x7f\x5f\x1e\xc2\x8a\x2b\x8e\x0d\xe7" "\xba\xee\xff\xdb\xd7\x6f\x7c\xb1\xfd\x12\x42\xa6\xb5\x28\x13\xc2\xfc" "\x7a\xbf\xa4\x4b\xbf\xdf\xfd\xf1\xd1\x7b\x97\xd6\x4e\x3d\x1e\xc2\x8a" "\xcb\xb3\x57\x9f\x6b\xbf\xd6\x2d\xd3\xda\x33\x95\x8d\x6b\xb7\x1d\x3e" "\xb6\xf5\x2c\x5f\x0c\x00\x00\x00\x5c\x40\x62\xfe\x1f\x68\x8c\x0c\x85" "\x42\xee\xae\xae\xf9\x3f\x26\xef\x73\xca\xff\xf3\xef\xdd\xf9\xab\xcb" "\xea\xd7\x7a\x22\x6f\x5b\x91\x19\xaa\xf7\xcb\x74\xe9\xf7\xe5\xa5\x4f" "\xfe\x75\xd9\xea\x7f\xbe\x75\x3a\xff\x9f\xad\xdf\xe7\xf6\x6d\x3e\x78" "\x59\x4b\xc3\x99\x91\x36\x49\x5a\x1b\xdd\xbc\x7d\xdd\xb1\xeb\x0e\x64" "\xe2\xa9\x67\xfa\x67\xdb\xfa\xc7\xef\xe5\x6b\xdf\x7d\xf3\xbf\x9b\x76" "\x3c\x72\x6a\xa6\x7f\x31\x14\xeb\xe3\x0b\x72\x9d\xfa\x9f\x79\x2d\xb4" "\x96\x5d\x94\xd6\x26\x33\x7b\xc7\xd7\xbc\xb7\xb7\xda\xda\x3f\xd7\xe5" "\xfc\x0f\xfd\xe1\xa5\xe3\xbf\x59\xb0\xfb\xdd\xd3\xfd\xdf\x59\x34\xd8" "\xe8\x7f\xcd\x59\xce\xdf\xdc\x3f\x9c\xd1\x7f\xf0\xd6\x87\xf7\x5c\xbf" "\xef\xd0\xba\xd6\xfe\x21\x84\x72\xa7\xfe\x6f\xbf\x7b\x73\xb8\xf2\xcf" "\x77\x3e\xd8\x7e\xfe\xc1\xb6\x8d\x9b\xbf\xf9\xe6\x6b\x9b\x24\xad\x1d" "\x59\x7c\xe2\xc0\xea\xfd\xa5\x1b\x5a\xfb\x27\x6d\xfd\xe3\xf7\xff\xcb" "\xe3\x8f\xed\xf9\xd9\x23\x3f\x78\x36\xf6\x8f\xbf\x15\x59\xbe\x64\xae" "\xfd\x33\x6d\xfd\x5f\xd9\x75\xe9\xce\x97\x1f\x58\xbf\xa0\xb5\x7f\xa6" "\xcb\xf9\x5f\xbc\xed\xd5\xe1\x2d\xe5\xef\xff\xa9\xfd\xfc\x77\xf4\x7d" "\xfe\x27\xae\x7d\xea\xf6\xd7\x36\xa4\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\xfa\xf6\x6d\xbb\x7f\xfa\x93\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\x8d\x6b\xb7\x1d\x3e\xb6\x35\x0c\xcd\xcc\x26\xf5" "\x7b\x6e\x72\xcb\x3d\xdb\x3e\xb3\x69\xcb\xf6\xbb\xee\x38\x4f\x9f\x1c" "\x00\x00\x00\x98\xab\x98\xff\x73\x8d\x91\xa1\x50\xc8\x2d\x0d\x03\xf5" "\xfc\x3f\xba\x79\xfb\xba\x63\xd7\x1d\xc8\xcc\xe4\xff\x5a\x21\x56\xe5" "\x36\xdd\x39\xb9\x71\x45\x68\xd4\xbd\xb2\xeb\xd2\x9d\x2f\x3f\xb0\x7e" "\x41\xe3\x39\x41\x08\xd3\x3f\x0b\x28\x9e\xae\xfb\xfc\x6c\xdd\x4d\x37" "\x1e\x1d\x3a\xf1\x97\x6f\x2d\xeb\x58\xb7\x6a\xb6\xee\xc8\xe2\x13\x07" "\x56\xef\x2f\xdd\x10\xeb\x42\x73\xdd\xca\xd0\x78\x3e\xf1\xc4\xb5\x4f" "\xdd\xfe\xda\x86\xf4\xfe\x58\x97\x69\xae\xfb\xec\x37\xb7\x4c\xd6\x1f" "\x4f\xc4\x7d\x07\x6f\x7d\x78\xcf\xf5\xfb\x0e\xad\xcb\xc4\xe7\x18\xf5" "\xfb\x60\x7d\xdf\x58\x37\x99\xd9\x3b\xbe\xe6\xbd\xbd\xd5\x58\x97\xad" "\xdf\x8b\xf5\x73\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\x67\x9a\xaa\x8e\x4c\x54\x46\xc7\xc6\x43\x36\x84\xa4" "\x4b\x4d\xad\x83\x38\x97\xcd\xa7\x69\xb9\x8f\xbe\x6b\x96\xfe\xfa\xc1" "\x4b\x4e\x3e\xb7\xb0\x79\xac\x90\xeb\x63\x23\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x1f\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\x9b\xd0\x3a\xaa\x3e" "\x0e\xc0\xe7\xdc\x9b\xbc\xb9\xcd\x4d\xda\xa4\x7d\xc1\xa8\x98\xa6\x55" "\x51\xea\xc2\xa2\x20\xa2\x1b\x15\x15\x69\x45\x0a\xae\x2a\x45\xaa\xad" "\x5d\x88\x82\x20\xa2\xd4\x85\xa9\xb4\x62\xa9\x8a\x1b\xc1\xea\xa6\x88" "\x2e\xd4\x28\x05\x05\x1b\x8b\xa5\x55\x52\xf1\xab\x08\xe2\x42\x05\x85" "\xea\x42\x28\xc5\x80\x36\x14\x17\x2a\x49\xce\xb9\xbd\x99\x66\xbc\x75" "\x8c\x82\xfa\x3c\x30\x9c\x7b\xce\xcc\xfc\xe6\x3f\x73\x4e\x26\xf7\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x28\x3d\x5d\x43\x9f\x4d\xb7" "\x87\x77\xdc\x3f\x75\xcb\x39\x37\x7c\xf8\xe8\x5d\x27\x1e\xb9\xe9\xed" "\x7b\xb7\x5d\xf4\xf0\x2b\xdf\x8d\x6c\xba\xee\x83\xbd\xbd\x2f\x9d\x9c" "\xd8\xbc\x62\xcb\x97\xd7\x2f\xdb\xb4\xff\xee\x35\xe3\xbb\x9f\x3f\xf4" "\x53\xff\x9b\xbf\x1c\xed\x18\xfc\xd0\x6c\xb3\x2a\x75\x1b\x21\xc4\xe3" "\x31\x84\xc6\x3b\x93\xcf\x3c\x36\xf1\xd1\x59\xd3\x63\x31\x84\x50\x8f" "\x03\xa3\x21\x0c\xc6\xa5\x87\x06\x63\x21\x61\xf5\xcf\x21\x84\xcd\xad" "\x3a\xe7\xee\x7c\xe3\xc4\xe5\x5b\xa6\xdb\x6d\xbb\x7a\xe6\x8c\x2f\x29" "\x84\x14\xef\x2b\x34\xeb\xb9\x9e\x59\x03\x73\xeb\xe5\xdf\xa5\x91\xd6" "\xd9\xd6\xa9\x07\x2f\x09\x5f\x5f\xbb\x7e\xfb\x27\xcb\x5f\x7f\xad\x7b" "\xec\xd8\xe8\xa9\x43\x62\xa3\x6d\x3d\x85\xb0\x78\x63\xfb\xf9\xdd\x21" "\x84\x45\x69\x9b\x96\x57\xdb\x50\x3e\x39\xb5\xeb\x42\x08\xbd\x6d\xe7" "\x5d\xd9\xa1\xae\xf3\xcf\xb0\xfe\x4b\x4b\xfa\xe7\xa6\xf6\x7f\xa9\x6d" "\x76\xc8\xc9\xfb\x57\x16\xfa\xb5\xc2\x71\xc5\x7e\xd6\x5d\x68\x7b\x3b" "\x5c\xaf\x9a\xd8\xb1\x8e\xa2\x33\x3d\xae\x93\xbe\xd2\x4a\x16\x46\x59" "\x9d\x79\x7c\x30\xb5\x6f\xa5\x76\xd5\x1f\xcc\xaf\xe7\x2d\x86\x5a\x0c" "\x5d\xad\xf2\xef\x89\xa7\xd6\x48\x68\x9b\xb7\x18\xe2\xcc\x5c\x36\x5a" "\xfd\x5a\x6b\x6e\x43\xba\xff\x42\x3f\x16\xfa\xb5\x42\xbf\xde\x5d\xb8" "\xaf\x99\xeb\xa6\x85\x56\x8f\x71\xee\x78\x3e\xae\x30\x9e\x5f\xc7\x5d" "\x69\x7c\x45\xfb\xbb\x7a\x1e\xb7\x96\x8c\x9f\x9d\xda\x46\xfa\x43\x3d" "\x99\xfb\xa1\xf8\x61\x56\xf3\xb4\x0f\xad\xfb\x9a\x91\xeb\x9a\xfc\x9d" "\x5a\xfe\x0e\xb5\xb6\x77\xd0\x7c\xe3\xad\x89\x4f\x93\xd1\x4c\x63\xcd" "\xb8\xf4\xb4\x73\x7e\x9d\x47\xde\x37\xb1\xfe\x89\x0b\xeb\x1b\xde\x3d" "\x3c\x50\x52\x47\xdc\x1b\x53\x7e\xac\x94\xbf\xf5\xe3\xc1\xbe\xdb\x5f" "\xdd\xf9\xc0\x50\x59\xfe\xc6\x5a\xca\xaf\x55\xca\xff\x66\xed\x91\x1f" "\x6e\xdb\xf9\xc2\x73\xa5\xf9\x4f\xe7\xfc\x7a\xa5\xfc\xcb\x0e\xf4\x1e" "\x5f\xfb\xde\x8e\x95\xa5\xcf\x67\x32\x3f\x9f\xae\x4a\xf9\x77\x1c\x7d" "\xff\xc9\xe5\xff\xbf\x73\xac\xb4\xfe\x3d\x39\xbf\x51\x29\xff\x9a\xf1" "\x23\x3d\xfd\x53\x07\x0e\x96\xd6\xbf\x3a\x3f\x9f\x45\x95\xf2\xbf\xba" "\xfa\xc6\x6f\x5f\xfe\x7c\xdf\xb1\xd2\xfc\x90\xf3\x7b\x2b\xe5\x6f\x18" "\xbf\xef\xa9\x9e\xe1\xa9\x8b\x4b\xf3\x0f\xe6\xe7\xd3\xac\xb6\x7e\x7e" "\x1c\xbb\xe2\x8b\xe1\xe1\xef\x47\xca\xf2\x3f\xcd\xf9\xfd\x95\xf2\xc3" "\xe8\xee\xab\x5e\x5c\xb2\x6b\x4d\xe9\xfc\xae\xcb\xcf\x67\xa0\x52\xfe" "\xcd\x17\xec\xdf\xde\x37\xb5\xef\xbc\xb2\x77\x67\xdc\xb3\x50\xff\x39" "\x01\xfe\x9b\x96\xa5\xef\x58\x8f\xa7\x7e\xd5\xdf\x99\x7f\x56\xdb\xef" "\x85\x67\x47\xba\x66\xbf\xf3\xf5\xa5\xad\x7f\x21\x2f\x54\x30\x7d\x9d" "\xc5\x7f\x61\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\xc0\x6f\xec" "\xc0\x01\x09\x00\x00\x00\x80\xa0\xff\xaf\xdb\x11\x28\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\xaf" "\x3e\x2f\xa8", 22817); syz_mount_image(/*fs=*/0x200058c0, /*dir=*/0x20000000, /*flags=*/0, /*opts=*/0x20000040, /*chdir=*/-1, /*size=*/0x5921, /*img=*/0x20010b40); break; case 1: // syz_genetlink_get_family_id$batadv arguments: [ // name: ptr[in, buffer] { // buffer: {62 61 74 61 64 76 00} (length 0x7) // } // fd: sock_nl_generic (resource) // ] // returns genl_batadv_family_id memcpy((void*)0x20000080, "batadv\000", 7); syz_genetlink_get_family_id(/*name=*/0x20000080, /*fd=*/-1); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }