// https://syzkaller.appspot.com/bug?id=3e6a8499b70dc448ca4f8dcd150ba509b9b69a26 // 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 #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 use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } 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 void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } 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_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } 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 void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void 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"); if (symlink("/dev/binderfs", "./binderfs")) { } } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); 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; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x200001c0, "jfs\000", 4); memcpy((void*)0x200002c0, "./file0\000", 8); memcpy((void*)0x20000240, "noquota", 7); *(uint8_t*)0x20000247 = 0x2c; memcpy((void*)0x20000248, "usrquota", 8); *(uint8_t*)0x20000250 = 0x2c; memcpy((void*)0x20000251, "nointegrity", 11); *(uint8_t*)0x2000025c = 0x2c; memcpy((void*)0x2000025d, "iocharset", 9); *(uint8_t*)0x20000266 = 0x3d; memcpy((void*)0x20000267, "cp1251", 6); *(uint8_t*)0x2000026d = 0x2c; memcpy((void*)0x2000026e, "gid", 3); *(uint8_t*)0x20000271 = 0x3d; sprintf((char*)0x20000272, "0x%016llx", (long long)0); *(uint8_t*)0x20000284 = 0x2c; memcpy((void*)0x20000285, "discard", 7); *(uint8_t*)0x2000028c = 0x2c; memcpy((void*)0x2000028d, "noquota", 7); *(uint8_t*)0x20000294 = 0x2c; *(uint8_t*)0x20000295 = 0; memcpy( (void*)0x200063c0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x42\xd3\xa8" "\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01\x0e\x5c" "\x38\xa0\x5e\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11\x57\xbe\x70" "\xe0\x8f\x00\x21\x71\x44\x88\x23\x27\xfe\x80\x1e\xb8\x72\xe3\x0f\x20\x52" "\x82\x04\xea\x01\x75\xd0\x78\x9f\xc7\x99\xdd\xee\x66\xed\x3a\xbb\xb3\xf6" "\x7c\x3e\x92\x33\xf3\x9b\x67\xc6\xfb\x4c\xbe\x3b\xde\x5d\xcf\x8c\x9f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x87\x3f\xf8\xf1" "\x85\x22\x22\xae\xfe\x2a\x2d\x38\x15\xf1\xb9\xe8\x46\x74\x22\xd6\xaa\x7a" "\x23\x22\xd6\x36\x4e\xe5\xf5\x7b\x11\xf1\x5c\xec\x36\xc7\xb3\x11\xd1\x5f" "\x89\xa8\xb6\xdf\xfd\xe7\xe9\x88\x57\x23\xe2\xa3\x93\x11\x0f\x1e\xde\xdd" "\xac\x16\x5f\xdc\x67\x3f\xbe\xff\xe7\x7f\xfc\xe1\x27\x27\x7e\xf4\xf7\x3f" "\xf5\xcf\xfd\xf7\x2f\xb7\xbb\xaf\x4d\x5b\xef\xce\x9d\xdf\xfe\xe7\xaf\xf7" "\x0e\xb7\xcf\x00\x00\x00\xd0\x36\x65\x59\x96\x45\xfa\x98\x7f\x3a\x7d\xbe" "\xef\x34\xdd\x29\x00\x60\x21\xf2\xeb\x7f\x99\xe4\xe5\x6a\xb5\x5a\xad\x56" "\xab\x8f\x5f\x5d\x57\x4e\x76\xaf\x5e\x44\xc4\x76\x7d\x9b\xea\x3d\x83\xd3" "\xf1\x00\x70\xc4\x6c\xc7\xc7\x4d\x77\x81\x06\xc9\xbf\xd5\x7a\x11\x71\xa2" "\xe9\x4e\x00\x4b\xad\x68\xba\x03\xcc\xc5\x83\x87\x77\x37\x8b\x94\x6f\x51" "\x7f\x3d\xd8\x18\xb6\xe7\x6b\x41\x46\xf2\xdf\x2e\xf6\xee\xef\x98\x36\x9d" "\x65\xfc\x1a\x93\x45\x3d\xbf\x76\xa2\x1b\xcf\x4c\xe9\xcf\xda\x82\xfa\xb0" "\x4c\x72\xfe\x9d\xf1\xfc\xaf\x0e\xdb\x07\x69\xbd\x79\xe7\xbf\x28\xd3\xf2" "\x1f\x0c\x6f\x7d\x6a\x9d\x9c\x7f\x77\x3c\xff\x31\xc7\x27\xff\xce\xc4\xfc" "\xdb\x2a\xe7\xdf\x3b\x50\xfe\x5d\xf9\x03\x00\x00\x00\x00\xc0\x12\xcb\xbf" "\xff\x3f\xd5\xf0\xf9\xdf\x95\xc3\xef\xca\xbe\x3c\xee\xfc\xef\xc6\x82\xfa" "\x00\x00\x00\x00\x00\x00\x00\x00\x4f\xda\x61\xc7\xff\xdb\x63\xfc\x3f\x00" "\x00\x00\x58\x5a\xd5\x67\xf5\xca\xef\x4e\x3e\x5a\x36\xed\x6f\xb1\x55\xcb" "\xdf\x2a\x22\x9e\x1a\x5b\x1f\x38\x26\x56\xf7\xb9\x5e\xba\x59\x66\x7d\x9e" "\x7d\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x46\xf5\x86\xd7\xf0\xbe" "\x55\x44\xf4\x23\xe2\xa9\xf5\xf5\xb2\x2c\xab\xaf\xba\xf1\xfa\xa0\x0e\xbb" "\xfd\x51\xd7\xf6\xfd\x87\x36\x6b\xfa\x87\x3c\x00\x00\x0c\x7d\x74\x72\xec" "\x5e\xfe\x62\xf4\x16\xe0\xfe\xfa\xfa\x7a\x59\xae\xae\xad\x97\xeb\xe5\xda" "\x4a\x7e\x3f\x3b\x58\x59\x2d\xd7\x6a\x9f\x6b\xf3\xb4\x5a\xb6\x32\xd8\xc7" "\x1b\xe2\xde\xa0\xac\xbe\xd9\x6a\x6d\xbb\xba\x59\x9f\x97\x67\xb5\x8f\x7f" "\xbf\xea\xb1\x06\x65\x77\x1f\x1d\x5b\x8c\x06\x82\x06\x80\x9a\xe1\xab\xd1" "\x03\xaf\x48\xc7\x4c\x59\x3e\x1d\x4d\xbf\xcb\xe1\x68\x70\xfc\x1f\x3f\x8e" "\x7f\xf6\xa3\xe9\xe7\x29\x00\x00\x00\x30\x7f\x65\x59\x96\x45\xfa\x73\xde" "\xa7\xd3\xf8\x7e\x9d\xa6\x3b\x05\x00\x2c\x44\x7e\xfd\x1f\x3f\x2f\xa0\x7e" "\xf2\xf5\xff\x96\xac\x3f\x6a\xb5\x5a\xad\x6e\x5f\x5d\x57\x4e\x76\xaf\x5e" "\x44\xc4\x76\x7d\x9b\xea\x3d\x83\xe1\xf8\x01\xe0\x88\xd9\x8e\x8f\x9b\xee" "\x02\x0d\x92\x7f\xab\xf5\x22\xe2\xb9\xa6\x3b\x01\x2c\xb5\xa2\xe9\x0e\x30" "\x17\x0f\x1e\xde\xed\x46\xca\xb7\xa8\xbf\x1e\xa4\xf1\xdd\xf3\xb5\x20\x23" "\xf9\x6f\x17\xd5\x76\x9b\x69\xfb\x89\xd3\x59\xc6\xaf\x31\x59\xd4\xf3\x6b" "\x27\xba\xf1\xcc\x94\xfe\x3c\xbb\xa0\x3e\x2c\x93\x2a\xaf\x22\xed\xff\x48" "\xfe\x57\x87\xed\x83\xb4\xde\xbc\xf3\x5f\x94\x69\xf9\x57\xfb\x79\xaa\x81" "\xfe\x34\x2d\xe7\xdf\x1d\xcf\x7f\xcc\xf1\xc9\xbf\x33\x31\xff\xb6\xca\xf9" "\xf7\x0e\x94\x7f\x57\xfe\x00\x00\x00\x00\x00\xb0\xc4\xf2\xef\xff\x4f\x2d" "\xd5\xf9\xdf\xc1\x67\xdd\x9d\x99\x1e\x77\xfe\x77\x63\x6e\x8f\x0a\x00\x00" "\x00\x00\x00\x00\x00\xf3\xf5\xe0\xe1\xdd\xcd\x7c\xdf\x6b\x3e\xff\xff\x85" "\x09\xeb\xb9\xff\xf3\x78\xca\xf9\x17\xf2\x6f\xa5\x9c\x7f\x67\x2c\xff\xaf" "\x8e\xad\xd7\xad\xcd\xdf\x7f\xf3\x51\xfe\xff\x7e\x78\x77\xf3\x8f\xb7\xff" "\xf5\xf9\x3c\xdd\x6f\xfe\x2b\x79\xa6\x48\xcf\xac\x22\x3d\x23\x8a\xf4\x48" "\x45\x2f\x4d\x0f\xb3\x77\x9f\xb6\xd3\xef\x0e\xaa\x47\xea\x17\x9d\x6e\x2f" "\x5d\xf3\x53\xf6\xdf\x89\xeb\x71\x23\xb6\xe2\xfc\xc8\xba\x9d\xf4\xff\xf1" "\xa8\xfd\xc2\x48\x7b\xd5\xd3\xfe\x6e\x7b\xd9\x1d\xb6\x5f\x1c\x69\xef\xed" "\xb5\xe7\xed\x2f\x8d\xb4\xf7\xd3\x95\x4e\xe5\x5a\x6e\x3f\x1b\x9b\xf1\xf3" "\xb8\x11\x6f\xef\xb6\x57\x6d\x2b\x33\xf6\x7f\x75\x46\x7b\x39\xa3\x3d\xe7" "\xdf\x75\xfc\xb7\x52\xce\xbf\x57\xfb\xaa\xf2\x5f\x4f\xed\xc5\xd8\xb4\x72" "\xff\xc3\xce\xa7\x8e\xfb\xfa\x74\xd2\xe3\xbc\x71\xfd\x8b\xbf\x39\x3f\xff" "\xdd\x99\x69\x27\xba\x7b\xfb\x56\x57\xed\xdf\x0b\x0d\xf4\x67\xf7\xff\xe4" "\xc4\x20\x7e\x79\x6b\xeb\xe6\xd9\x3b\xd7\x6e\xdf\xbe\x79\x21\xd2\x64\x64" "\xe9\xc5\x48\x93\x27\x2c\xe7\xdf\x4f\x5f\x7b\x3f\xff\x5f\x1c\xb6\xe7\x9f" "\xfb\xf5\xe3\xf5\xfe\x87\x83\x03\xe7\xbf\x2c\x76\xa2\x37\x35\xff\x17\x6b" "\xf3\xd5\xfe\xbe\xb4\xe0\xbe\x35\x21\xe7\x3f\x48\x5f\x39\xff\xb7\x53\xfb" "\xe4\xe3\xff\x28\xe7\x3f\xfd\xf8\x7f\xb9\x81\xfe\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc0\xe3\x94\x65\xb9\x7b\x8b\xe8\x1b\x11\x71\x39" "\xdd\xff\xd3\xd4\xbd\x99\x00\xc0\x62\xe5\xd7\xff\x32\xc9\xcb\x17\x55\x77" "\x17\xfc\x78\x6a\xf5\x11\xaf\x8b\x25\xeb\xcf\x42\xeb\x4f\xca\xe5\xea\x8f" "\x5a\x7d\x14\xeb\xba\x72\xb2\xd7\xeb\x45\x44\xfc\xad\xbe\x4d\xf5\x9e\xe1" "\xd7\x93\xbe\x19\x00\xb0\xcc\x3e\x89\x88\x7f\x36\xdd\x09\x1a\x23\xff\x16" "\xcb\x7f\xef\xaf\x9a\x9e\x69\xba\x33\xc0\x42\xdd\x7a\xff\x83\x9f\x5e\xbb" "\x71\x63\xeb\xe6\xad\xa6\x7b\x02\x00\x00\x00\x00\x00\x00\x00\x7c\x56\x79" "\xfc\xcf\x8d\xda\xf8\xcf\x67\xca\xb2\xbc\x37\xb6\xde\xc8\xf8\xaf\x6f\xc6" "\xc6\x61\xc7\xff\xec\xe5\x99\xbd\x01\x46\xa7\x0c\x54\xdd\x3d\xf8\x3e\x3d" "\xce\x4e\x67\xd0\xed\xd4\x86\x1b\x7f\x3e\xa6\x8d\xff\xdd\xdf\x9b\x7b\xdc" "\xf8\xdf\xbd\x19\x8f\xd7\x9f\xd1\x3e\x98\xd1\xbe\x32\xa3\x7d\x75\x46\xfb" "\xc4\x1b\x3d\x6a\x72\xfe\xcf\xd7\xc6\x3b\x3f\x13\x11\xa7\xc7\x86\x5f\x6f" "\xc3\xf8\xaf\xe3\x63\xde\xb7\x41\xce\xff\x85\xda\xf3\xb9\xca\xff\x2b\x63" "\xeb\xd5\xf3\x2f\x7f\x7f\x94\xf3\xef\x8c\xe4\x7f\xee\xf6\x7b\xbf\x38\x77" "\xeb\xfd\x0f\x5e\xb9\xfe\xde\xb5\x77\xb7\xde\xdd\xfa\xd9\xa5\x0b\x17\xce" "\x5f\xba\x7c\xf9\xca\x95\x2b\xe7\xde\xb9\x7e\x63\xeb\xfc\xf0\xdf\x06\x7b" "\x3c\x5f\x39\xff\x3c\xf6\xb5\xeb\x40\xdb\x25\xe7\x9f\x33\x97\x7f\xbb\xe4" "\xfc\xbf\x94\x6a\xf9\xb7\x4b\xce\xff\xcb\xa9\x96\x7f\xbb\xe4\xfc\xf3\xfb" "\x3d\xf9\xb7\x4b\xce\x3f\x7f\xf6\x91\x7f\xbb\xe4\xfc\x5f\x4a\xb5\xfc\xdb" "\x25\xe7\xff\xb5\x54\xcb\xbf\x5d\x72\xfe\x2f\xa7\x5a\xfe\xed\x92\xf3\xff" "\x7a\xaa\xe5\xdf\x2e\x39\xff\x57\x52\x2d\xff\x76\xc9\xf9\x9f\x4d\xb5\xfc" "\xdb\x25\xe7\x7f\x2e\xd5\xfb\xcc\x7f\x6d\xde\xfd\x62\x31\x72\xfe\xf9\x0c" "\x97\xe3\xbf\x5d\x72\xfe\xf9\xca\x06\xf9\xb7\x4b\xce\xff\x62\xaa\xe5\xdf" "\x2e\x39\xff\x4b\xa9\x96\x7f\xbb\xe4\xfc\x5f\x4d\xb5\xfc\xdb\x25\xe7\xff" "\x8d\x54\xcb\xbf\x5d\x72\xfe\x97\x53\x2d\xff\x76\xc9\xf9\x7f\x33\xd5\xf2" "\x6f\x97\x9c\xff\x95\x54\xcb\xbf\x5d\x72\xfe\xdf\x4a\xb5\xfc\xdb\x25\xe7" "\xff\xed\x54\xcb\xbf\x5d\x72\xfe\xaf\xa5\x5a\xfe\xed\x92\xf3\xff\x4e\xaa" "\xe5\xdf\x2e\x39\xff\xef\xa6\x5a\xfe\xed\x92\xf3\xff\x5e\xaa\xe5\xdf\x2e" "\x39\xff\xd7\x53\x2d\xff\x76\x79\xf4\xf7\xff\xcd\x98\x31\x63\x26\xcf\x34" "\xfd\x93\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\xb7\x88\xcb\x89" "\x9b\xde\x47\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xff" "\xb3\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x85\x1d\x38\x10\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xdd\x5d\x8c\x5c\xe5\x7d\x3f\xf0" "\xb3\xaf\x5e\x9b\x04\x9c\x84\xf0\x37\xfc\x9d\xb0\x36\x8e\x31\x66\x61\xd7" "\x2f\xf8\x25\xad\x8b\x03\x84\x50\xc8\x4b\x79\x6d\xe8\x0b\xb6\xeb\x5d\x9b" "\x4d\xfc\x86\xd7\x6e\x80\x22\xd9\x88\xa4\x41\x8a\xa3\x46\x55\xda\x92\x8b" "\xb6\x49\x84\x5a\x6e\xaa\x58\x15\x17\x69\x45\x22\x2e\xa2\x56\x95\x2a\x85" "\xf6\x22\xbd\x89\x52\x55\xca\x05\xaa\x48\x44\x22\x55\x6a\xab\x84\xad\xe6" "\xcc\xf3\x3c\x3b\x33\x7b\x76\x66\x6d\x0f\x66\xe6\x9c\xcf\x47\xc2\x3f\xef" "\xcc\x99\x39\x67\xce\x3c\x33\xbb\xdf\x35\xdf\x5d\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x46\xeb\xee\x9c\xf9\xe2\x40\x96\x65\xb5\xff\xf2\x3f\x56" "\x67\xd9\xbb\x6a\x7f\x5f\x39\xbe\x3a\xbf\xec\xc3\xef\xf4\x11\x02\x00\x00" "\x00\x97\xea\x97\xf9\x9f\x6f\x5e\x95\x2e\xd8\xbb\x8c\x1b\x35\x6c\xf3\x8f" "\x1f\xfc\xfe\xcb\xf3\xf3\xf3\xf3\xd9\xa7\x87\xfe\x64\xe4\xab\xf3\xf3\xe9" "\x8a\xf1\x2c\x1b\x59\x91\x65\xf9\x75\xd1\xf9\xff\x78\x74\xa0\x71\x9b\xe0" "\xb9\x6c\x6c\x60\xb0\xe1\xe3\xc1\x0e\xbb\x1f\xea\x70\xfd\x70\x87\xeb\x47" "\x3a\x5c\x3f\xda\xe1\xfa\x15\x1d\xae\x1f\xeb\x70\xfd\xa2\x13\xb0\xc8\xca" "\xfa\xf7\x63\xf2\x3b\xdb\x90\xff\x75\x75\xfd\x94\x66\x57\x67\x23\xf9\x75" "\x1b\x0a\x6e\xf5\xdc\xc0\x8a\xc1\xc1\xf8\xbd\x9c\xdc\x40\x7e\x9b\xf9\x91" "\x43\xd9\x6c\x76\x24\x9b\xc9\xa6\x9a\xb6\xaf\x6f\x3b\x90\x6f\xff\xca\xba" "\xda\xbe\xee\xc9\xe2\xbe\x06\x1b\xf6\xb5\xb6\xb6\x42\x7e\xf6\xcc\xc1\x78" "\x0c\x03\xe1\x1c\x6f\x68\xda\xd7\xc2\x7d\x46\x3f\xf9\x48\x36\xfe\xf3\x9f" "\x3d\x73\xf0\xaf\x4e\xbd\x71\x6d\xd1\xec\x78\x1a\x9a\xee\xaf\x7e\x9c\x9b" "\xd6\xd7\x8e\xf3\xf3\xe1\x92\xfa\xb1\x0e\x64\x2b\xd2\x39\x89\xc7\x39\xd8" "\x70\x9c\x6b\x0b\x9e\x93\xa1\xa6\xe3\x1c\xc8\x6f\x57\xfb\x7b\xeb\x71\xbe" "\xb9\xcc\xe3\x1c\x5a\x38\xcc\xcb\xaa\xf5\x39\x1f\xcb\x06\xf3\xbf\xbf\x96" "\x9f\xa7\xe1\xc6\x6f\xeb\xa5\xf3\xb4\x36\x5c\xf6\xdf\x37\x64\x59\x76\x76" "\xe1\xb0\x5b\xb7\x59\xb4\xaf\x6c\x30\x5b\xd5\x74\xc9\xe0\xc2\xf3\x33\x56" "\x5f\x91\xb5\xfb\xa8\x2d\xa5\xf7\x66\xc3\x17\xb4\x4e\xd7\x2d\x63\x9d\xd6" "\xe6\xf4\x86\xe6\x75\xda\xfa\x9a\x88\xcf\xff\xba\x70\xbb\xe1\x25\x8e\xa1" "\xf1\x69\xfa\xc9\xb3\xa3\x0d\xcf\xfb\x2f\xe6\x2f\x66\x9d\x46\xb5\x47\xbd" "\xd4\x6b\xa5\x75\x0d\x76\xfb\xb5\xd2\x2b\x6b\x30\xae\x8b\xd7\xf2\x07\xfd" "\x7c\xe1\x1a\xdc\x10\x1e\xff\x33\x1b\x97\x5e\x83\x85\x6b\xa7\x60\x0d\xa6" "\xc7\xdd\xb0\x06\xd7\x77\x5a\x83\x83\xa3\x43\xf9\x31\xa7\x27\x61\x20\xbf" "\xcd\xc2\x1a\xdc\xd2\xb4\xfd\x50\xbe\xa7\x81\x7c\xbe\xbe\xb1\xfd\x1a\x9c" "\x3c\x75\xf4\xc4\xe4\xdc\x53\x4f\xdf\x32\x7b\xf4\xc0\xe1\x99\xc3\x33\xc7" "\xb6\x6d\xd9\x32\xb5\x6d\xc7\x8e\x5d\xbb\x76\x4d\x1e\x9a\x3d\x32\x33\x55" "\xff\xf3\x22\xcf\x76\xef\x5b\x95\x0d\xa6\xd7\xc0\xfa\x70\xee\xe2\x6b\xe0" "\xc6\x96\x6d\x1b\x97\xea\xfc\x37\x46\x17\xbd\xff\x5e\xec\xeb\x70\xac\xcd" "\xeb\x70\x75\xcb\xb6\xdd\x7e\x1d\x0e\xb7\x3e\xb8\x81\xcb\xf3\x82\x5c\xbc" "\xa6\xeb\xaf\x8d\x87\x6a\x27\x7d\xec\xdc\x60\xb6\xc4\x6b\x2c\x7f\x7e\x36" "\x5f\xfa\xeb\x30\x3d\xee\x86\xd7\xe1\x70\xc3\xeb\xb0\xf0\x73\x4a\xc1\xeb" "\x70\x78\x19\xaf\xc3\xda\x36\x27\x36\x2f\xef\x6b\x96\xe1\x86\xff\x8a\x8e" "\x61\xe9\xcf\x05\x97\xb6\x06\x57\x37\xac\xc1\xd6\xaf\x47\x5a\xd7\x60\xb7" "\xbf\x1e\xe9\x95\x35\x38\x16\xd6\xc5\x0f\x37\x2f\xfd\xb9\x60\x6d\x38\xde" "\xe7\x27\x2e\xf4\xeb\x91\xa1\x45\x6b\x30\x3d\xdc\xf0\xde\x53\xbb\x24\x7d" "\xbd\x3f\xb6\x2b\x1f\x45\xeb\xf2\xba\xda\x15\x57\x8c\x66\xa7\xe7\x66\x4e" "\xde\xfa\xe4\x81\x53\xa7\x4e\x6e\xc9\xc2\xb8\x2c\xde\xd7\xb0\x56\x5a\xd7" "\xeb\xaa\x86\xc7\x94\x2d\x5a\xaf\x83\x17\xbc\x5e\xf7\xce\x7e\xf0\xf9\xeb" "\x0a\x2e\x5f\x1d\xce\xd5\xd8\x2d\xb5\x3f\xc6\x96\x7c\xae\x6a\xdb\x6c\xbf" "\xb5\xfd\x73\x95\x7f\x76\x2b\x3e\x9f\x4d\x97\x6e\xcd\xc2\xe8\xb2\xcb\x7d" "\x3e\x8b\x3e\x9b\xd7\xce\xe7\x68\x96\x7d\xed\x7b\xcf\x3e\xf0\x9d\x67\xbe" "\x76\xe7\x92\xe7\xb3\x96\x37\x3f\x3f\x79\xe9\x5f\x8b\xa7\x5c\xda\xf0\xfe" "\x3b\xb2\xc4\xfb\x6f\xcc\xfd\x6f\xd5\xf7\x97\xee\xea\xb9\xa1\x91\xe1\xfa" "\xeb\x77\x28\x9d\x9d\x91\xa6\xf7\xe3\xe6\xa7\x6a\x38\x7f\xef\x1a\xc8\xf7" "\xfd\xe6\xe4\xf2\xde\x8f\x47\xc2\x7f\x97\xfb\xfd\xf8\xea\x36\xef\xc7\x6b" "\x5a\xb6\xed\xf6\xfb\xf1\x48\xeb\x83\x8b\xef\xc7\x03\x9d\xbe\xdb\x71\x69" "\x5a\x9f\xcf\xb1\xb0\x4e\x8e\x4c\xb5\x7f\x3f\xae\x6d\xb3\x66\xeb\x85\xae" "\xc9\xe1\xb6\xef\xc7\x37\x84\x39\x10\xce\xff\x4d\x21\x29\xa4\x5c\xd4\xb0" "\x76\x96\x5a\xb7\x69\x5f\xc3\xc3\x23\xe1\x71\x0d\xc7\x3d\x34\xaf\xd3\x6d" "\x4d\xdb\x8f\x84\x6c\x56\xdb\xd7\x4b\x5b\x2f\x6e\x9d\x6e\xba\xa1\x7e\x5f" "\x43\xe9\xd1\x2d\xb8\x5c\xeb\x74\xbc\x65\xdb\x6e\xaf\xd3\xf4\xbd\xaf\xa5" "\xd6\xe9\x40\xa7\xef\xbe\x5d\x9c\xd6\xe7\x73\x2c\xac\x8b\xab\xb7\xb5\x5f" "\xa7\xb5\x6d\x5e\xdd\x7e\xe9\xef\x9d\x2b\xe3\x5f\x1b\xde\x3b\x47\x3b\xad" "\xc1\x91\xa1\xd1\xda\x31\x8f\xa4\x45\x98\xbf\xdf\x67\xf3\x2b\xe3\x1a\xbc" "\x35\x3b\x98\x1d\xcf\x8e\x64\xd3\xf9\xb5\xa3\xf9\x7a\x1a\xc8\xf7\x35\x71" "\xdb\xf2\xd6\xe0\x68\xf8\xef\x72\xbf\x57\xae\x69\xb3\x06\x37\xb5\x6c\xdb" "\xed\x35\x98\x3e\x8f\x2d\xb5\xf6\x06\x86\x17\x3f\xf8\x2e\x68\x7d\x3e\xc7" "\xc2\xba\x78\xe1\xb6\xf6\x6b\xb0\xb6\xcd\x5d\x3b\xbb\xfb\xb5\xeb\xa6\x70" "\x49\xda\xa6\xe1\x6b\xd7\xd6\xef\xaf\x2d\xf5\x3d\xaf\xeb\x5a\x4e\xd3\xdb" "\xb5\x56\x86\xc3\x71\x7e\x6f\x67\xfb\xef\xcd\xd6\xb6\x39\xb2\xeb\x42\x73" "\x66\xfb\xf3\x74\x73\xb8\xe4\x8a\x82\xf3\xd4\xfa\xfa\x5d\xea\x35\x35\x9d" "\x5d\x9e\xf3\xb4\x26\x1c\xe7\x1b\xbb\x96\x3e\x4f\xb5\xe3\xa9\x6d\xf3\xd5" "\xdd\xcb\x5c\x4f\x7b\xb3\x2c\x3b\xf3\xc4\x1d\xf9\xf7\x7b\xc3\xbf\xaf\xfc" "\xed\xe9\x1f\xbc\xdc\xf4\xef\x2e\x45\xff\xa6\x73\xe6\x89\x3b\x7e\xfa\xee" "\x43\xff\x70\x21\xc7\x0f\x40\xff\x7b\xab\x3e\x56\xd5\x3f\xd7\x35\xfc\xcb" "\xd4\x72\xfe\xfd\x1f\x00\x00\x00\xe8\x0b\x31\xf7\x0f\x86\x99\xc8\xff\x00" "\x00\x00\x50\x1a\x31\xf7\xc7\xff\x2b\x3c\x91\xff\x01\x00\x00\xa0\x34\x62" "\xee\x1f\x0e\x33\xa9\x48\xfe\x5f\x73\xd7\x1b\xb3\x6f\x9d\xc9\x52\x33\x7f" "\x3e\x88\xd7\xa7\xd3\x70\x6f\x7d\xbb\xd8\x71\x9d\x0a\x1f\x8f\xcf\x2f\xa8" "\x5d\x7e\xc7\x8b\x33\xff\xf5\xf7\x67\x96\xb7\xef\xc1\x2c\xcb\x7e\x71\xef" "\x1f\x14\x6e\xbf\xe6\xde\x78\x5c\x75\xe3\xe1\x38\xcf\x7f\xb4\xf9\xf2\x45" "\x5e\xbe\x65\x59\xfb\xde\xff\xf0\x99\xb4\xdf\xc6\xfe\xfa\xd7\xc3\xfd\xc7" "\xc7\xb3\xdc\x65\x50\x54\xc1\x9d\xca\xb2\xec\x95\xab\xbe\x9c\xef\x67\xfc" "\xd1\x73\xf9\x7c\xf5\xde\xfd\xf9\x7c\xe0\xec\xf3\xcf\xd5\xb6\x79\x73\x77" "\xfd\xe3\x78\xfb\xd7\xdf\x57\xdf\xfe\xcf\x43\xf9\x77\xef\xa1\x03\x4d\xb7" "\x7f\x3d\x9c\x87\x1f\x87\x39\x75\x5f\xf1\xf9\x88\xb7\xfb\xd6\xb9\x9b\xd6" "\xee\x7c\x64\x61\x7f\xf1\x76\x03\xeb\xaf\xcc\x1f\xf6\x0b\x8f\xd5\xef\x37" "\xfe\x9c\x9c\xaf\x3c\x57\xdf\x3e\x9e\xe7\xa5\x8e\xff\x3b\x5f\x7a\xe9\x5b" "\xb5\xed\x9f\xfc\x50\xf1\xf1\x9f\x19\x2c\x3e\xfe\x97\xc2\xfd\xbe\x18\xe6" "\xff\x7c\xa0\xbe\x7d\xe3\x73\x50\xfb\x38\xde\xee\x0b\xe1\xf8\xe3\xfe\xe2" "\xed\x6e\xfd\xe6\x77\x0b\x8f\xff\xfc\x17\xeb\xdb\x9f\xb8\xbb\xbe\xdd\xfe" "\x30\xe3\xfe\x37\x85\x8f\x37\xdc\xfd\xc6\x6c\xe3\xf9\x7a\x72\xe0\x40\xd3" "\xe3\xca\x3e\x56\xdf\x2e\xee\x7f\xea\x07\x7f\x94\x5f\x1f\xef\x2f\xde\x7f" "\xeb\xf1\x8f\xed\x3b\xd7\x74\x3e\x5a\xd7\xc7\xab\xff\x5a\xbf\x9f\xc9\x96" "\xed\xe3\xe5\x71\x3f\xd1\xdf\xb5\xec\xbf\x76\x3f\x8d\xeb\x33\xee\xff\xa5" "\x3f\xdc\xdf\x74\x9e\x3b\xed\xff\xfc\x03\xaf\x7f\xa0\x76\xbf\xad\xfb\xbf" "\xb9\x65\xbb\x13\x4f\x6c\xce\xf7\xbf\x70\x7f\xcd\x3f\xb1\xe9\x2f\xbe\xf0" "\xe5\xc2\xfd\xc5\xe3\xd9\xfb\x37\x27\x9a\x1e\xcf\xde\xfb\xc3\xeb\x38\xec" "\xff\x85\xc7\xc2\x7a\x0c\xd7\xff\xef\xf9\xfa\xfd\xb5\xfe\x74\x85\xfd\xf7" "\x37\xbf\xff\xc4\xed\xbf\xbe\xfa\x4c\xd3\xe3\x89\xee\xf9\x79\x7d\xff\xe7" "\x6f\x3f\x9c\xcf\x15\x63\x2b\x57\x5d\xf1\xae\x77\x5f\x79\xf6\xfa\xda\xb9" "\xcb\xb2\xd7\x56\xd4\xef\xaf\xd3\xfe\x0f\xff\xe5\xf1\xa6\xe3\xff\xc6\x35" "\xf5\xf3\x11\xaf\x8f\x1d\xfd\xd6\xfd\x2f\x25\xee\xff\xe4\xe7\x26\x8e\x1d" "\x9f\x3b\x3d\x3b\x9d\xce\xea\x33\x57\xe5\x3f\x3b\xe7\xe3\xf5\xe3\x89\xc7" "\x7b\x55\x78\x6f\x6d\xfd\x78\xdf\xf1\x53\x8f\xcf\x9c\x1c\x9f\x1a\x9f\xca" "\xb2\xf1\xf2\xfe\x08\xbd\x8b\xf6\xcd\x30\x7f\x5a\x1f\x67\x2f\xf4\xf6\x9b" "\x1f\x0e\xcf\xe7\x75\x7f\xf6\xca\xaa\x8d\xff\xf2\xa5\x78\xf9\xbf\x3d\x54" "\xbf\xfc\xdc\x7d\xf5\xcf\x5b\x37\x86\xed\xbe\x12\x2e\x5f\x1d\x9e\xbf\x4b" "\xdd\xff\x0b\xeb\xae\xc9\x5f\xdf\x03\xaf\xd6\x3f\x6e\xea\xb1\x77\xc1\xda" "\x0d\xff\xb9\x6b\x59\x1b\x86\xc7\xdf\xfa\x75\x41\x5c\xef\x27\xde\xff\x78" "\x7e\x1e\x6a\xd7\xe5\x9f\x37\xe2\xeb\xfa\x12\x8f\xff\x47\xd3\xf5\xfb\xf9" "\x76\x38\xaf\xf3\xe1\x27\x33\xaf\xbf\x66\x61\x7f\x8d\xdb\xc7\x9f\x8d\x70" "\xee\xc1\xfa\xeb\xfd\x92\xcf\x5f\x78\x9b\x8b\xcf\xeb\x5f\x87\xe7\xfb\x13" "\x3f\xae\xdf\x7f\x3c\xae\xf8\x78\x7f\x14\xbe\x8e\xf9\xee\x9a\xe6\xf7\xbb" "\xb8\x3e\xbe\x7d\x66\xb0\xf5\xfe\xf3\x9f\xe2\x71\x36\xbc\x9f\x64\x67\xeb" "\xd7\xc7\xad\xe2\xf9\x3e\xf7\xe6\x35\x85\x87\x17\x7f\x0e\x49\x76\xf6\xda" "\xfc\xe3\x3f\x4e\xf7\x73\xed\x05\x3d\xcc\xa5\xcc\x3d\x35\x37\x79\x64\xf6" "\xd8\xe9\x27\x27\x4f\xcd\xcc\x9d\x9a\x9c\x7b\xea\xe9\x7d\x47\x8f\x9f\x3e" "\x76\x6a\x5f\xfe\xb3\x3c\xf7\x7d\xa6\xd3\xed\x17\xde\x9f\x56\xe5\xef\x4f" "\xd3\x33\x3b\xb6\x67\xf9\xbb\xd5\xf1\xfa\x78\x9b\xbd\xd3\xc7\x7f\xe2\xe1" "\x83\xd3\x3b\xa7\x36\x4e\xcf\x1c\x3a\x70\xfa\xd0\xa9\x87\x4f\xcc\x9c\x3c" "\x7c\x70\x6e\xee\xe0\xcc\xf4\xdc\xc6\x03\x87\x0e\xcd\x7c\xae\xd3\xed\x67" "\xa7\xf7\x6c\xd9\xba\x7b\xdb\xce\xad\x13\x87\x67\xa7\xf7\xec\xda\xbd\x7b" "\xdb\xee\x89\xd9\x63\xc7\x6b\x87\x51\x3f\xa8\x0e\x76\x4c\x7d\x76\xe2\xd8" "\xc9\x7d\xf9\x4d\xe6\xf6\x6c\xdf\xbd\xe5\xb6\xdb\xb6\x4f\x4d\x1c\x3d\x3e" "\x3d\xb3\x67\xe7\xd4\xd4\xc4\xe9\x4e\xb7\xcf\x3f\x37\x4d\xd4\x6e\xfd\xfb" "\x13\x27\x67\x8e\x1c\x38\x35\x7b\x74\x66\x62\x6e\xf6\xe9\x99\x3d\x5b\x76" "\xef\xd8\xb1\xb5\xe3\x4f\x03\x3c\x7a\xe2\xd0\xdc\xf8\xe4\xc9\xd3\xc7\x26" "\x4f\xcf\xcd\x9c\x9c\xac\x3f\x96\xf1\x53\xf9\xc5\xb5\xcf\x7d\x9d\x6e\x4f" "\x39\xcd\xfd\x7b\xfd\xeb\xd9\x56\x03\xf5\x1f\xc4\x97\x7d\xea\xe6\x1d\xe9" "\xe7\xb3\xd6\xbc\xf8\xec\x92\x77\x55\xdf\xa4\xe5\x07\x88\xbe\x11\x7e\x16" "\xcd\x3f\xbd\xe7\xc4\xae\xe5\x7c\x1c\x73\xff\x48\x98\x49\x45\xf2\x3f\x00" "\x00\x00\x54\x41\xcc\xfd\xa3\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd" "\x2b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xc7\xc2\x4c\x2a\x92\xff" "\x4b\xd7\xff\x5f\x73\x66\x59\xfb\xd7\xff\xd7\xff\x6f\x3c\x5f\xfa\xff\x15" "\xeb\xff\x3f\xd8\x6b\xfd\xff\xfa\xfb\x85\xfe\x7f\x77\xe8\xff\xb7\xa7\xff" "\xdf\x81\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x5d\xd5\x6b\xfd\xff\x98\xfb\x57" "\x66\x59\x25\xf3\x3f\x00\x00\x00\x54\x41\xcc\xfd\xab\xc2\x4c\xe4\x7f\x00" "\x00\x00\x28\x8d\x98\xfb\xaf\x08\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee" "\x7f\x57\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1" "\xfe\xf5\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\x4f\x66\xd5\xea\xff" "\x9f\xed\xe6\xf1\xeb\xff\xeb\xff\xb3\x58\xaf\xf5\xff\x63\xee\x7f\x77\x98" "\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x57\x86\x99\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\x5f\x15\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xbf" "\x3a\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x78\xff" "\xfa\xff\xfd\x49\xff\xbf\x3d\xfd\xff\x0e\xf4\xff\xfd\xfe\x7f\xfd\x7f\xfd" "\x7f\xba\xaa\xd7\xfa\xff\x31\xf7\xbf\x27\xcc\xa4\x22\xf9\x1f\x00\x00\x00" "\xaa\x20\xe6\xfe\xf7\x86\x99\xc8\xff\x00\x00\x00\xd0\x7b\x86\x2f\xee\x66" "\x31\xf7\xbf\x2f\xcc\x64\x51\xfe\xbf\xc8\x1d\x00\x00\x00\x00\xef\xb8\x98" "\xfb\xaf\xce\x5a\x8a\xe0\x15\xf9\xf7\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\xff\xe2\xfd\x2f\xbf\xff\x3f\x94\xe9\xff\xf7\x0e\xfd\xff\xf6\xf4\xff" "\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x9f\xe7\xfe\x6c" "\x2c\x7b\x7f\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xd7\x84\x99" "\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xff\xbf\x30\x13\xf9\x1f\x00\x00\x00" "\x4a\x23\xe6\xfe\x35\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xc5\xfb\xf7\xfb\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\xeb" "\xff\xeb\xff\xeb\xff\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\xda\x30\x93\x8a\xe4" "\x7f\x00\x00\x00\xa8\x82\x98\xfb\xaf\x0b\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xff\xff\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x6b\xc3\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xf7\xaf\xff\xdf" "\x9f\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea" "\xb5\xfe\x7f\xcc\xfd\x1f\x08\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9" "\xff\x83\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xd7\x87\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\x8f\x87\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\x17\xef\x5f\xff\xbf\x3f\xe9\xff\xb7\xa7\xff\xdf\x81" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x5d\xd5\x6b\xfd\xff\x98\xfb\xd7\x85\x99" "\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x3e\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\xff\x86\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x0d" "\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb\xd7" "\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f" "\x57\xf5\x5a\xff\x3f\xe6\xfe\x0f\x85\x99\x54\x24\xff\x03\x00\x00\x40\x15" "\xc4\xdc\xbf\x31\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xc6\x30\x13" "\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x4d\x61\x26\x15\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff" "\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\x9b" "\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xdf\x1c\x66\x22\xff\x03" "\x00\x00\x40\x69\xc4\xdc\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73" "\xff\x44\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1" "\xfe\xf5\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\xeb\xff\xeb\xff\xeb" "\xff\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\x96\x30\x93\x8a\xe4\x7f\x00\x00\x00" "\xa8\x82\x98\xfb\x6f\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x9f\x0c" "\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x9f\x0a\x33\xa9\x48\xfe\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xbf\xa0\xfe\xff\xf5\x0b\xf7\xab\xff\x5f\xa7\xff" "\xdf\x5b\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\xff\x1d\xef\xff\x8f\xe8" "\xff\x53\x2a\xbd\xd6\xff\x8f\xb9\x7f\x4b\x98\x49\x45\xf2\x3f\x00\x00\x00" "\x54\x41\xcc\xfd\x5b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xb7\x85" "\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x6f\x0f\x33\xa9\x48\xfe\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xf7\xfb\xff\x8b\xf7\xaf\xff\xdf\x9f\xf4\xff\xdb" "\xeb\x7e\xff\x3f\x3e\x44\xfd\x7f\xfd\x7f\xfd\x7f\xbf\xff\x5f\xff\x9f\xc5" "\x7a\xad\xff\x1f\x73\xff\x6d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31" "\xf7\xef\x08\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xdf\x19\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\xbf\x2b\xcc\xa4\x22\xf9\xbf\xcc\xfd\xff\xf9" "\xf9\xf9\x25\xb7\xd4\xff\xd7\xff\x6f\x3c\x5f\xfa\xff\xfa\xff\x45\xfb\xd7" "\xff\xef\x4f\xfa\xff\xed\xf9\xfd\xff\x1d\xe8\xff\xeb\xff\xeb\xff\xeb\xff" "\xd3\x55\xbd\xd6\xff\x8f\xb9\x7f\x77\x98\x49\x45\xf2\x3f\x00\x00\x00\x54" "\x41\xcc\xfd\x1f\x0e\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x95\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x5f\x0d\x33\xa9\x48\xfe\x2f\x73" "\xff\xbf\x1d\xfd\x7f\xfd\xff\xc6\xf3\xa5\xff\xaf\xff\x5f\xb4\x7f\xfd\xff" "\xfe\xa4\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74\x55" "\xaf\xf5\xff\x63\xee\xdf\x13\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73" "\xff\xaf\x85\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\xdf\x1e\x66\x22\xff" "\x03\x00\x00\x40\x69\xc4\xdc\xbf\x37\xcc\xa4\x22\xf9\xbf\x42\xfd\xff\x81" "\xc6\x12\xa6\xfe\xbf\xfe\x7f\xe3\xf9\xd2\xff\xd7\xff\x2f\xda\xbf\xfe\x7f" "\x7f\xd2\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba\xaa" "\xd7\xfa\xff\x31\xf7\x7f\x24\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6" "\xfe\x3b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xef\x0c\x33\x91\xff" "\x01\x00\x00\xa0\x34\x62\xee\xbf\x2b\xcc\xa4\x22\xf9\xbf\x42\xfd\xff\x26" "\xfa\xff\xfa\xff\x8d\xe7\x4b\xff\x5f\xff\xbf\x68\xff\xfa\xff\xfd\x49\xff" "\xbf\x3d\xfd\xff\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xaa\x5e\xeb\xff" "\xc7\xdc\xff\xd1\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\xef\x0e" "\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x58\x98\x89\xfc\x0f\x00\x00" "\x00\xa5\x11\x73\xff\x3d\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xc5\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf" "\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\x5f\x0f\x33\xa9\x48" "\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xde\x30\x13\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\xfb\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\x3f\x1e\x66" "\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\xbc\x7f\xfd\xff" "\xfe\xa4\xff\xdf\x5e\x9f\xf5\xff\x7f\x79\x65\xb8\x5c\xff\xbf\x4e\xff\xbf" "\xb7\x8f\xbf\xbf\xfa\xff\xf3\x2b\x5a\x6f\xaf\xff\xcf\xdb\xa1\xd7\xfa\xff" "\x31\xf7\x7f\x22\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x4f\x86" "\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x7f\x2a\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\xff\x37\xc2\x4c\x2a\x92\xff\xf5\xff\x6b\xc7\xb1\xd0\x5e" "\xd6\xff\xd7\xff\xcf\x2f\xd0\xff\xd7\xff\xd7\xff\xef\x5b\xfa\xff\xed\xf5" "\x59\xff\xdf\xef\xff\x6f\xa1\xff\xdf\xdb\xc7\xdf\x5f\xfd\xff\xc5\xf4\xff" "\x79\x3b\xf4\x5a\xff\x3f\xe6\xfe\xfb\xc3\x4c\x2a\x92\xff\x01\x00\x00\xa0" "\x0a\x62\xee\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xc1\x30" "\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x87\xc2\x4c\x2a\x92\xff\xf5\xff" "\xfd\xfe\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2\xfd\xeb\xff\xf7\x27\xfd\xff\xf6" "\xf4\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff\x1f\x73" "\xff\xc3\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x3f\x12\x66\x22" "\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x9b\x61\x26\xf2\x3f\x00\x00\x00\x94" "\x46\xcc\xfd\x9f\x0e\x33\xa9\x48\xfe\xd7\xff\xef\x97\xfe\xff\xb8\xfe\xbf" "\xfe\xbf\xfe\x7f\xcb\xe3\xd1\xff\xd7\xff\x2f\xa2\xff\xdf\x9e\xfe\x7f\x07" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\x7f\x34\xcc" "\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xdf\x0a\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\xff\xed\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe" "\xdf\x09\x33\xa9\x48\xfe\xd7\xff\xef\x97\xfe\xbf\xdf\xff\x9f\xe9\xff\xeb" "\xff\xb7\x3c\x1e\xfd\x7f\xfd\xff\x22\x97\xaf\xff\x1f\xdf\x79\xf4\xff\xf5" "\xff\xf5\xff\x23\xfd\x7f\xfd\x7f\xfd\x7f\x5a\xf5\x5a\xff\x3f\xe6\xfe\xdf" "\x0d\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xb1\x30\x13\xf9\x1f" "\x00\x00\x00\xfa\x42\xd1\xff\x93\xdd\x2a\xe6\xfe\x7d\x61\x26\xf2\x3f\x00" "\x00\x00\x94\x46\xcc\xfd\xfb\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\x7b\xb4\xff\xff\xa7\xeb\xff\xf9\x87\xdf\xff\xe4\xfe\x2d\xfa\xff\xfa\xff" "\xfa\xff\x17\xe4\xb2\xfe\xfe\xff\xda\x8b\xdf\xef\xff\xd7\xff\xd7\xff\x4f" "\xf4\xff\xf5\xff\xf5\xff\x69\xd5\x6b\xfd\xff\x98\xfb\x0f\x84\x99\x54\x24" "\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x7b\x61\x26\xf2\x3f\x00\x00\x00\x94" "\x46\xcc\xfd\x07\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xa7\xc3\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x7b\xb4\xff\xdf\xc7\xbf\xff\x3f\x9e" "\x0f\xfd\xff\x66\x5d\xeb\xff\xc7\x37\x5d\xfd\xff\x42\x97\xb5\xff\xff\xc8" "\x42\x4f\x5c\xff\xff\x42\xfb\xff\xa3\x85\x97\xea\xff\xeb\xff\xf7\xf3\xf1" "\xeb\xff\xeb\xff\xb3\x58\xaf\xf5\xff\x63\xee\x9f\x09\x33\xa9\x48\xfe\x07" "\x00\x00\x80\x2a\x08\xb9\x7f\xf0\x50\x7d\x2e\x5c\x21\xff\x03\x00\x00\x40" "\x69\xc4\xdc\x7f\x38\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xf1\x30" "\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xbf\xff\xbf\x78\xff\x3d" "\xdb\xff\xf7\xfb\xff\xdb\xd2\xff\x6f\xaf\x77\xfa\xff\xc5\xf4\xff\xf5\xff" "\xfb\xf9\xf8\xf5\xff\xf5\xff\x59\xac\xd7\xfa\xff\x31\xf7\xcf\x86\x99\x54" "\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\x99\x30\x13\xf9\x1f\x00\x00\x00" "\x4a\x23\xe6\xfe\xcf\x86\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x1f\x09" "\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\xde\xbf\xfe" "\x7f\x7f\xd2\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba" "\xaa\xd7\xfa\xff\x31\xf7\x1f\x0d\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88" "\xb9\xff\x58\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xf1\x30\x13\xf9" "\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x13\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff" "\xa5\xed\xff\xdf\xae\xff\xbf\xd4\xfe\xf5\xff\xf5\xff\xcb\x4c\xff\xbf\x3d" "\xfd\xff\x0e\xf4\xff\xf5\xff\xff\x8f\xbd\xfb\x58\xb2\xeb\xac\xfa\x38\x7c" "\xf4\x7d\x32\x58\xe5\x0b\x60\xc0\x84\x39\x97\xe0\x09\x63\xb8\x00\x06\x4c" "\x18\x40\x15\xc5\x00\x0a\x4c\x4e\x96\xc9\xd1\xe4\x60\x92\xc9\xd9\x04\x1b" "\x8c\x49\x26\x27\x9b\x64\x30\x19\x93\xc1\xe4\x60\xa2\x0d\x55\xa2\x5c\x5a" "\x6b\xa9\xbb\xb5\x7b\x1f\xb5\x7c\x5a\xda\xe7\x5d\xcf\x33\x59\x20\xd3\xec" "\x43\x95\xb0\xf5\x57\xeb\x57\x5b\xff\xaf\xff\x67\xa3\x96\xd6\xff\xe7\xee" "\x7f\x44\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x19\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\x97\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\xa3\xe2\x96\x26\xfb\x7f\x4f\xff\x7f\x64\xd5\xb3\xff\xcf\x8c\x57\xff" "\x3f\x52\xff\xef\xfd\xff\xfb\x3e\x5f\xff\xaf\xff\x1f\xd9\xb9\xed\xff\x2f" "\xbb\xf3\xef\x7c\xfa\x7f\xfd\xbf\xfe\x3f\xe8\xff\xf5\xff\xfa\x7f\xf6\x5a" "\x5a\xff\x9f\xbb\xff\xd1\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f" "\x4c\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x36\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\x1f\x17\xb7\x34\xd9\xff\xde\xff\xef\xfd\xff\xfa\xff" "\xa9\xfe\xff\x98\xfe\x5f\xff\xaf\xff\xdf\x52\xde\xff\x3f\xaf\x53\xff\x7f" "\xc9\xcd\x17\x3d\xec\xb6\x6b\xef\x79\xdd\x41\x9e\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\x6c\xd6\xd2\xfa\xff\xdc\xfd\x8f\x8f\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x13\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x89\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa4\xb8\xa5\xc9\xfe\xd7\xff\xeb" "\xff\x37\xdd\xff\x1f\x1f\xa2\xff\xf7\xfe\x7f\xfd\xbf\xfe\x7f\x5b\xe9\xff" "\xe7\x75\xea\xff\xcf\xe6\xf9\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x66\x2d\xad" "\xff\xcf\xdd\xff\xe4\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x25" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x2f\x8d\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\xe3\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x7b\xff\xbf\xfe\x5f" "\xff\x3f\xfd\x7c\xfd\xff\x76\xd2\xff\xcf\xd3\xff\xaf\xa1\xff\xd7\xff\xeb" "\xff\xf5\xff\x6c\xd4\xd2\xfa\xff\xdc\xfd\x97\xc5\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\xa9\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb4" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x7a\xdc\xd2\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfa\xf9\xfa\xff\xed\xa4\xff\x9f\xa7\xff" "\x5f\x43\xff\x7f\x57\xfb\xf9\x0b\xf4\xff\xfa\x7f\xfd\x3f\x3b\x1d\xb0\xff" "\xbf\x63\xe6\x6f\xdb\x1b\xe9\xff\x73\xf7\x3f\x23\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\xcf\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x67" "\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xb3\xe3\x96\x75\xfb\xff\xe8" "\x61\x7e\xaa\x73\x47\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xd3\xcf\xd7\xff" "\x6f\x27\xfd\xff\xbc\xc5\xf4\xff\x47\xa6\x7f\x21\xa5\xff\xdf\xfa\xfe\xdf" "\xfb\xff\xf5\xff\xfa\x7f\x76\x59\xda\xfb\xff\x73\xf7\x3f\x27\x6e\xf1\xfd" "\x7f\x00\x00\x00\x18\x46\xee\xfe\xe7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\xf3\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xf9\x71\x4b\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe9\xe7\xcf\xf5\xff\xd7\xed" "\xf8\x7c\xfa\xff\x65\xd1\xff\xcf\x5b\x4c\xff\xbf\x0f\xfd\xbf\xfe\x7f\x9b" "\x3f\xbf\xfe\x5f\xff\xcf\xe9\x96\xd6\xff\xe7\xee\x7f\x41\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x2f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\x17\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8b\xe2\x96\x26\xfb" "\x7f\xba\xff\x3f\xf5\xd7\xf5\xff\x67\x46\xff\xbf\xfb\xf3\xeb\xff\xa7\x7f" "\x7e\x6c\xaa\xff\xcf\xff\x46\xfd\xff\x6c\xff\x7f\x1f\xef\xff\xef\x49\xff" "\x3f\x4f\xff\xbf\x86\xfe\x5f\xff\xaf\xff\xdf\xaf\xff\x3f\xb6\xee\xeb\xf5" "\xff\x4c\x59\x5a\xff\x9f\xbb\xff\xc5\x71\x4b\x93\xfd\x0f\x00\x00\x00\xa3" "\x3a\xb1\xe3\x9b\x4b\xb9\xfb\x5f\x12\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x2f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x97\xc5\x2d\x4d\xf6" "\xbf\xf7\xff\xeb\xff\xf5\xff\xdb\xd7\xff\x7b\xff\xff\x49\xe7\xf3\xfd\xff" "\xab\x73\xde\xff\x1f\xd5\xff\x9f\x21\xfd\xff\x3c\xfd\xff\x1a\xfa\x7f\xfd" "\xbf\xfe\xdf\xfb\xff\xd9\xa8\xa5\xf5\xff\xb9\xfb\x5f\x1e\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x57\xc4\x2d\xf6\x3f\x00\x00\x00\x6c\x87\x9d" "\x7f\x76\x60\xef\x1f\x28\x0d\xb9\xfb\x5f\x19\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\xaf\x8a\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x52" "\xff\x7f\x6c\xe2\xb7\x6b\xf5\xff\xde\xff\x7f\x10\xfa\xff\x79\xfa\xff\x35" "\xf4\xff\x87\xd1\xcf\x1f\x1d\xac\xff\xbf\x72\xbf\xaf\x5f\x42\xff\x7f\xa9" "\xfe\x9f\x85\xd9\xd5\xff\x5f\x7f\xea\xc7\xcf\x57\xff\x9f\xbb\xff\x8a\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x3a\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x5f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x8d" "\x5b\x9a\xec\xff\x43\xef\xff\x8f\xed\xff\x6c\xfd\xbf\xfe\x5f\xff\x7f\x98" "\xfd\xff\xed\xfb\x3e\x7f\xc9\xfd\xbf\xf7\xff\xeb\xff\xef\x2a\xfd\xff\x3c" "\xfd\xff\x1a\xfa\x7f\xef\xff\xf7\xfe\x7f\xfd\x3f\x1b\xb5\xab\xff\xdf\xe1" "\x7c\xf5\xff\xb9\xfb\x5f\x17\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\xd7\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x95\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\x86\xb8\xa5\xc9\xfe\xf7\xfe\x7f\xfd\xbf\xfe\x7f" "\xd4\xfe\x7f\xff\xe7\xeb\xff\xf5\xff\x23\xd3\xff\xcf\xd3\xff\xaf\xa1\xff" "\x3f\xd3\x7e\xfe\x8a\xa9\xaf\xd7\xff\xeb\xff\xf5\xff\xec\xb5\xb4\xfe\x3f" "\x77\xff\x1b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xa6\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x73\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\xbf\x25\x6e\x69\xb2\xff\xf5\xff\x87\xdb\xff\xe7\x8f\xeb\xff\xf5" "\xff\x2b\xfd\xbf\xfe\x5f\xff\x7f\x4e\xb4\xed\xff\x8f\x4c\xfd\x93\xe8\x74" "\xfb\xf4\xff\x37\x3e\xe4\xf8\xfd\x76\xff\x88\xfe\x5f\xff\xef\xfd\xff\xfa" "\x7f\xfd\x3f\x1b\xb0\x88\xfe\xff\xc4\xa9\x5f\x5d\xe6\xee\x7f\x6b\xdc\xd2" "\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x16\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x6f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x77\xc4\x2d" "\x4d\xf6\xbf\xfe\xdf\xfb\xff\xf5\xff\xfa\x7f\xfd\xff\xf4\xf3\xf5\xff\xdb" "\xa9\x6d\xff\x7f\x86\xbc\xff\x7f\x0d\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa3" "\x16\xd1\xff\xef\xf8\xf7\xb9\xfb\xdf\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\x77\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xbb\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x3d\x71\x4b\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xe9\xe7\xeb\xff\xb7\x93\xfe\x7f\x9e\xfe\x7f\x0d" "\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa3\x0e\xa1\xff\x3f\xb2\xf3\x1f\xae\x07" "\xed\xff\x73\xf7\x5f\x15\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xf7" "\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xfb\xe2\x16\xfb\x1f\x00\x00" "\x00\x86\x91\xbb\xff\xfd\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\xff\xe9\xe7\xeb\xff\xb7\x93\xfe\x7f\x9e\xfe\x7f\xb5\x5a\x5d\x3d\xf3" "\x01\xa6\xfa\xff\x13\x77\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xce\xd2\xd2\xde" "\xff\x9f\xbb\xff\x03\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x3a" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xaf\x89\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\x0f\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xa7\x9f\xaf\xff\xdf\x4e\xfa\xff\x79\xfa\xff\x35\xbc\xff\x5f\xff\xaf" "\xff\xd7\xff\xb3\x51\x4b\xeb\xff\x73\xf7\x7f\x28\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\xd7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x87" "\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xba\xb8\xa5\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf4\xf3\xf5\xff\xdb\xe9\xf0\xfa\xff\x95" "\xfe\x5f\xff\xaf\xff\x5f\x43\xff\xaf\xff\xd7\xff\xb3\xd7\xd2\xfa\xff\xdc" "\xfd\x1f\x89\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x47\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x63\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\xf1\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf4" "\xf3\xf5\xff\xdb\xc9\xfb\xff\xe7\xe9\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xfa" "\x7f\x36\x6a\x69\xfd\x7f\xee\xfe\x4f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\xfa\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x64\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x2a\x6e\x69\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x3f\xfd\xfc\x73\xd0\xff\x5f\xb8\xd2\xff\x6f\x9c\xfe" "\x7f\x9e\xfe\x7f\x0d\xfd\xff\x98\xfd\xff\xff\xad\x06\xea\xff\x8f\xed\xfb" "\xf5\xfa\x7f\x96\x68\x69\xfd\x7f\xee\xfe\x4f\xc7\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\x33\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd9" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x5c\xdc\xd2\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfa\xf9\xde\xff\xbf\x9d\xf4\xff\xf3\xf4" "\xff\x6b\xe8\xff\xc7\xec\xff\xbd\xff\x5f\xff\xcf\x79\xb3\xb4\xfe\x3f\x77" "\xff\xe7\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x85\xb8\xc5\xfe" "\x07\x00\x00\x80\x61\xe4\xee\xff\x62\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\x7f\x29\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfd" "\x7c\xfd\xff\x76\xd2\xff\xcf\xd3\xff\xaf\xa1\xff\xd7\xff\xeb\xff\xf5\xff" "\x6c\xd4\xd2\xfa\xff\xdc\xfd\x5f\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20" "\x77\xff\x0d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x63\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\x7f\x25\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xff\x76\xf6\xff\x17\xea\xff\xf5\xff\xfa\xff\x49\x4b\xe9\xff\x2f\xbe\xf8" "\xbe\x37\xe9\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xdf\xdd\xd2\xfa\xff" "\xdc\xfd\x5f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xd7\xe2\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xeb\x71\xd3\xdd\xce\xdb\x27\x02\x00" "\x00\x00\x36\x2d\x77\xff\x37\xe2\x96\x26\xdf\xff\x3f\xbd\xff\xbf\x60\x75" "\xb2\x50\x3d\x69\xaa\xff\x8f\x46\x4d\xff\xbf\x83\xfe\x7f\xf7\xe7\xd7\xff" "\x4f\xff\xfc\xf0\xfe\x7f\xfd\xbf\xfe\xff\xf0\x2d\xa5\xff\xf7\xfe\xff\xb3" "\xfb\xfc\xfa\x7f\xfd\xff\x36\x7f\xfe\x03\xf5\xff\xf7\x3a\xfd\xeb\xf5\xff" "\x8c\x68\x69\xfd\x7f\xee\xfe\x9b\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8" "\xdd\xff\xcd\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x56\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xdf\x1c\xb7\x34\xd9\xff\xde\xff\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xd3\xcf\xd7\xff\x6f\x27\xfd\xff\x3c\xfd\xff\x1a\xfa" "\x7f\xfd\xbf\xf7\xff\x3f\xfc\x41\xff\xaf\xff\x67\x73\x96\xd6\xff\xe7\xee" "\xff\x76\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x13\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\xdf\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\xef\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xa7\x9f" "\xaf\xff\xdf\x4e\xfa\xff\x79\xfa\xff\x35\xf4\xff\xfa\x7f\xfd\xbf\xf7\xff" "\xb3\x51\x4b\xeb\xff\x73\xf7\x7f\x3f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x3f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x1f\xc6\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x8f\xe2\x96\x26\xfb\x5f\xff\xaf\xff\x1f" "\xbf\xff\x7f\xa0\xfe\x7f\xcf\xf3\xf5\xff\xfa\xff\x91\x9d\x75\x7f\x1f\xff" "\x47\x1e\xa1\xff\xbf\x60\xe6\xaf\xe9\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xfa" "\x7f\x36\x6a\x69\xfd\x7f\xee\xfe\x5b\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\xe3\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x49\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x34\x6e\x69\xb2\xff\xc7\xe9\xff\x6f" "\x8d\x4f\xa1\xff\x5f\xcd\xf4\xff\x47\x56\x1d\xfb\x7f\xef\xff\xd7\xff\x6f" "\x6f\xff\x7f\xe7\x67\xd3\xff\x1f\x8c\xf7\xff\xcf\xd3\xff\xaf\xa1\xff\xd7" "\xff\xeb\xff\xf5\xff\x6c\xd4\xd2\xfa\xff\xdc\xfd\x3f\x8b\x5b\x9a\xec\x7f" "\x00\x00\x00\xd8\x56\xf7\xbf\xf7\x43\x6f\x39\xd3\xff\x6c\xee\xfe\x9f\xc7" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x2f\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\x97\x71\x4b\x93\xfd\x3f\x4e\xff\x9f\x5f\xa8\xff\x5f\x79" "\xff\xbf\xfe\x7f\xcd\xf3\xf5\xff\xdb\xd3\xff\x7b\xff\xff\xc1\xe9\xff\xe7" "\xe9\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6a\x69\xfd\x7f\xee\xfe" "\x5f\xc5\x2d\x3b\x86\xdf\xd1\x03\xff\xaf\x04\x00\x00\x00\x96\x24\x77\xff" "\xaf\xe3\x96\x26\xdf\xff\x07\x00\x00\x80\x0e\x72\xf7\xdf\x1a\xb7\x9c\xb6" "\xff\x4f\x9c\xe1\x9f\x6a\x07\x00\x00\x00\x96\x26\x77\xff\x6f\xe2\x96\x26" "\xdf\xff\xd7\xff\x2f\xbc\xff\x5f\xe9\xff\xf5\xff\xfa\xff\x43\xee\xff\xeb" "\xe3\xeb\xff\xc7\xa0\xff\x9f\x77\x17\xfb\xff\x13\x47\xf4\xff\xfa\xff\x19" "\xfa\x7f\xfd\xbf\xfe\x9f\xbd\x96\xd6\xff\xe7\xee\xff\x6d\xdc\xd2\x64\xff" "\x03\x00\x00\xc0\xa0\x76\xfd\x8e\x42\xee\xfe\xdf\xc5\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\xef\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x0f" "\x71\x4b\x93\xfd\xaf\xff\x5f\x78\xff\x7f\x56\xef\xff\x3f\x56\xff\x4a\xff" "\xdf\xbc\xff\xbf\xfc\xc2\xc9\xe7\xeb\xff\xbd\xff\x7f\x64\xfa\xff\x79\xde" "\xff\xbf\x86\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x51\x4b\xeb\xff\x73\xf7\xff" "\x31\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f\x8a\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x3f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\x5f\xe2\x96\x26\xfb\x5f\xff\x3f\x62\xff\xef\xfd\xff\xfa\xff\xf9\xe7\x8f" "\xd3\xff\xdf\xe3\xa2\xe3\x37\x3c\xe0\xc1\xd7\x5c\xa5\xff\xe7\x94\x73\xd9" "\xff\xe7\xcf\x05\xfd\xbf\xfe\x5f\xff\x7f\x92\xfe\x5f\xff\xaf\xff\x67\xaf" "\xa5\xf5\xff\xb9\xfb\xff\x1a\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\xdb\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x6f\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xf7\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xdb" "\xd8\xff\x67\x53\xdc\xbd\xff\xf7\xfe\x7f\xfd\xff\xe9\xbc\xff\x7f\x9e\xfe" "\x7f\x0d\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa3\x96\xd6\xff\xe7\xee\xff\x47" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xff\x19\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\xff\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x7f" "\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xdf\xc6\xfe\xdf\xfb\xff\x57\xfa" "\x7f\xfd\xff\x3e\xf4\xff\xf3\xf4\xff\x6b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\x1b\xb5\xb4\xfe\x3f\x77\xff\xed\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\xbf\x23\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x13\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\xff\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x4f\x3f\x5f\xff\xbf\x9d\xf4\xff\xf3\xf4\xff\x6b\xe8\xff" "\xf5\xff\xfa\x7f\xfd\x3f\x1b\xb5\xb4\xfe\x3f\x77\xff\xff\x02\x00\x00\xff" "\xff\x23\x0e\x7d\xb4", 24773); syz_mount_image( /*fs=*/0x200001c0, /*dir=*/0x200002c0, /*flags=MS_LAZYTIME|MS_REC|MS_SYNCHRONOUS|MS_STRICTATIME|MS_NOSUID|0x8*/ 0x300401a, /*opts=*/0x20000240, /*chdir=*/5, /*size=*/0x60c5, /*img=*/0x200063c0); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }