// 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 319 #endif #ifndef __NR_renameat2 #define __NR_renameat2 316 #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*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000040, "./file1\000", 8); memcpy((void*)0x200000000100, "quota", 5); *(uint8_t*)0x200000000105 = 0x2c; memcpy((void*)0x200000000106, "discard", 7); *(uint8_t*)0x20000000010d = 0x3d; sprintf((char*)0x20000000010e, "0x%016llx", (long long)0xaff9); *(uint8_t*)0x200000000120 = 0x2c; memcpy((void*)0x200000000121, "iocharset", 9); *(uint8_t*)0x20000000012a = 0x3d; memcpy((void*)0x20000000012b, "default", 7); *(uint8_t*)0x200000000132 = 0x2c; memcpy((void*)0x200000000133, "nointegrity", 11); *(uint8_t*)0x20000000013e = 0x2c; memcpy((void*)0x20000000013f, "discard", 7); *(uint8_t*)0x200000000146 = 0x2c; memcpy((void*)0x200000000147, "nodiscard", 9); *(uint8_t*)0x200000000150 = 0x2c; memcpy((void*)0x200000000151, "discard", 7); *(uint8_t*)0x200000000158 = 0x3d; sprintf((char*)0x200000000159, "0x%016llx", (long long)0x82); *(uint8_t*)0x20000000016b = 0x2c; memcpy((void*)0x20000000016c, "errors=continue", 15); *(uint8_t*)0x20000000017b = 0x2c; memcpy((void*)0x20000000017c, "nodiscard", 9); *(uint8_t*)0x200000000185 = 0x2c; memcpy((void*)0x200000000186, "errors=remount-ro", 17); *(uint8_t*)0x200000000197 = 0x2c; *(uint8_t*)0x200000000198 = 0; memcpy( (void*)0x200000009000, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\xaf\x73\x31\xb1\xad\x2c" "\xa2\x60\x21\x34\x49\xcc\x25\x84\xf8\x1a\x8c\x21\x40\x92\x05\x2c\xd8\xb0" "\x40\xde\x22\x5b\x93\x49\x64\xe1\x00\xb2\x0d\x72\x22\x0b\x4f\x34\x1b\x24" "\x78\x08\x10\x12\x4b\x84\x58\xb2\xe2\x01\xb2\x60\xcb\x8e\x07\xc0\x92\x8d" "\x04\xca\x02\xa5\xa2\x9a\x3e\x67\x5c\x53\xe9\x9e\x9e\xf1\x78\xba\xba\x5d" "\xbf\x9f\x34\xae\xfa\xfa\x54\x4d\x9f\xf2\xbf\xab\x2f\x53\x55\x7d\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\x1f\xfe\xe0\xc7\xe7" "\x3b\x11\x71\xf5\x57\xe9\x86\x93\x11\x9f\x8b\x5e\x44\x37\x62\xa5\xac\xd7" "\x22\x62\x65\xed\x64\x75\x9d\xe7\x63\xbb\x39\x9e\x8b\x88\xc1\x52\x44\xb9" "\xfe\xf6\x3f\x27\x22\x5e\x8b\x88\x8f\x8e\x47\x3c\x78\x78\x77\xbd\xbc\xf9" "\xc2\x3e\xfb\xf1\xfd\xbf\xfc\xf3\x8f\x3f\x39\xf6\xa3\x7f\xfc\x79\x70\xf6" "\x7f\x7f\xbd\xdd\x7b\x7d\xd2\x72\x77\xee\xfc\xee\xbf\x7f\xbb\xf7\xf8\xdb" "\x0b\x00\x00\x00\x6d\x54\x14\x45\xd1\x49\x1f\xf3\x4f\x45\x44\x3f\x7d\xb6" "\x07\x00\x9e\x7e\xf9\xf5\xbf\x48\xf2\xed\xea\xb9\xab\x37\xe7\xac\x3f\x6a" "\xb5\x5a\xad\x5e\xc0\xba\xaa\x18\xef\x5e\xb5\x88\x88\xcd\xea\x3a\xe5\x7b" "\x06\x87\xe3\x01\x60\xc1\x6c\xc6\xc7\x4d\x77\x81\x06\xc9\xbf\xd5\xfa\x11" "\x71\xac\xe9\x4e\x00\x73\xad\xd3\x74\x07\x38\x12\x0f\x1e\xde\x5d\xef\xa4" "\x7c\x3b\xd5\xd7\x83\xb5\x51\x7b\x3e\x17\x64\x57\xfe\x9b\x9d\x9d\xeb\x3b" "\x26\x4d\xa7\xa9\x9f\x63\x32\xab\xc7\xd7\x56\xf4\xe2\xd9\x09\xfd\x59\x99" "\x51\x1f\xe6\x49\xce\xbf\x5b\xcf\xff\xea\xa8\x7d\x98\x96\x3b\xea\xfc\x67" "\x65\x52\xfe\xc3\xd1\xa5\x4f\xad\x93\xf3\xef\xd5\xf3\xaf\x79\x7a\xf2\xef" "\x8e\xcd\xbf\xad\x72\xfe\xfd\x03\xe5\xdf\x93\x3f\x00\x00\x00\x00\x00\xcc" "\xb1\xfc\xf7\xff\x93\x0d\x1f\xff\x5d\x3a\xfc\xa6\xec\xcb\x5e\xc7\x7f\xd7" "\x66\xd4\x07\x00\x00\x00\x00\x00\x00\x00\x78\xd2\x0e\x3a\xfe\x5f\xbf\x36" "\xfe\xdf\x0e\xe3\xff\x01\x00\x00\xc0\xdc\x2a\x3f\xab\x97\x7e\x7f\xfc\xd1" "\x6d\x93\xbe\x8b\xad\xbc\xfd\x4a\x27\xe2\x99\xda\xf2\x40\xcb\xa4\x8b\x65" "\x56\x9b\xee\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4\x49\x7f\x74" "\x0e\xef\x95\x4e\xc4\x20\x22\x9e\x59\x5d\x2d\x8a\xa2\xfc\xa9\xaa\xd7\x07" "\x75\xd8\xf5\x17\x5d\xdb\xb7\x1f\xda\xac\xe9\x27\x79\x00\x00\x18\xf9\xe8" "\x78\xed\x5a\xfe\x4e\xc4\x72\x44\x5c\x49\xdf\xf5\x37\x58\x5d\x5d\x2d\x8a" "\xe5\x95\xd5\x62\xb5\x58\x59\xca\xef\x67\x87\x4b\xcb\xc5\x4a\xe5\x73\x6d" "\x9e\x96\xb7\x2d\x0d\xf7\xf1\x86\xb8\x3f\x2c\xca\x5f\xb6\x5c\x59\xaf\x6a" "\xda\xe7\xe5\x69\xed\xf5\xdf\x57\xde\xd7\xb0\xe8\xed\xa3\x63\xb3\xd1\x60" "\xe0\x00\x10\x11\xa3\x57\xa3\x07\x93\x5e\x91\xfe\xef\xf5\x6a\x31\x15\xc5" "\x89\x68\xf8\x4d\x0e\x0b\x62\x8f\xfd\x9f\x05\x65\xff\x67\x3f\x9a\x7e\x9c" "\x02\x00\x00\x00\x47\xaf\x28\x8a\xa2\x93\xbe\xce\xfb\x54\x3a\xe6\xdf\x6d" "\xba\x53\x00\xc0\x4c\xe4\xd7\xff\xfa\x71\x01\xb5\x7a\xd1\xea\x98\xb3\xfe" "\xa8\xd5\x6a\xf5\x3c\xd6\x55\xc5\x78\xf7\xaa\x45\x44\x6c\x56\xd7\x29\xdf" "\x33\x18\x8e\x1f\x00\x16\xcc\x66\x7c\xdc\x74\x17\x68\x90\xfc\x5b\xad\x1f" "\x11\xcf\x37\xdd\x09\x60\xae\x75\x9a\xee\x00\x47\xe2\xc1\xc3\xbb\xeb\x9d" "\x94\x6f\xa7\xfa\x7a\x90\xc6\x77\xcf\xe7\x82\xec\xca\x7f\xb3\xb3\xbd\x5e" "\x5e\x7f\xdc\x74\x9a\xfa\x39\x26\xb3\x7a\x7c\x6d\x45\x2f\x9e\x9d\xd0\x9f" "\xe7\x66\xd4\x87\x79\x92\xf3\xef\xd6\xf3\xbf\x3a\x6a\x1f\xa6\xe5\x0e\x9f" "\x7f\xb1\xeb\xcf\x84\x4d\x9d\x63\x34\x29\xff\x72\x3b\x4f\x36\xd0\x9f\xa6" "\xe5\xfc\x7b\xf5\xfc\x6b\x8e\x7a\xff\x9f\x95\xad\xe8\x8e\xcd\xbf\xad\x72" "\xfe\xfd\x03\xe5\xdf\x93\x3f\x00\x00\x00\x00\x00\xcc\xb1\xfc\xf7\xff\x93" "\x73\x75\xfc\x77\xf8\xb8\x9b\x33\xd5\x5e\xc7\x7f\xd7\xc6\xae\x71\x74\x7d" "\x01\x00\x00\x00\x00\x00\x00\x80\x27\xe5\xc1\xc3\xbb\xeb\xf9\xba\xd7\x7c" "\xfc\xff\x0b\x63\x96\x73\xfd\xe7\xd3\x29\xe7\xdf\x91\x7f\x2b\xe5\xfc\xbb" "\xb5\xfc\xbf\x5a\x5b\xae\x57\x99\xbf\xff\xd6\xa3\xfc\xff\xf3\xf0\xee\xfa" "\x9f\x6e\xff\xfb\xf3\x79\xba\xdf\xfc\x97\xf2\x4c\x27\x3d\xb2\x3a\xe9\x11" "\xd1\x49\xf7\xd4\xe9\xa7\xe9\x61\xb6\xee\xb3\xb6\x06\xbd\x61\x79\x4f\x83" "\x4e\xb7\xd7\x4f\xe7\xfc\x14\x83\x77\xe2\x7a\xdc\x88\x8d\x38\xb7\x6b\xd9" "\x6e\xfa\xff\x78\xd4\x7e\x7e\x57\x7b\xd9\xd3\xc1\x76\x7b\xd1\x1b\xb5\x5f" "\xd8\xd5\xde\xdf\x69\xcf\xeb\x5f\xdc\xd5\x3e\x48\x67\x17\x15\x2b\xb9\xfd" "\x4c\xac\xc7\xcf\xe3\x46\xbc\xbd\xdd\x5e\xb6\x2d\x4d\xd9\xfe\xe5\x29\xed" "\xc5\x94\xf6\x9c\x7f\xcf\xfe\xdf\x4a\x39\xff\x7e\xe5\xa7\xcc\x7f\x35\xb5" "\x77\x6a\xd3\xd2\xfd\x0f\xbb\x9f\xd9\xef\xab\xd3\x71\xf7\xf3\xe6\xf5\x2f" "\xfe\xe6\xdc\xd1\x6f\xce\x54\x5b\xd1\xdb\xd9\xb6\xaa\x72\xfb\x5e\x6c\xa0" "\x3f\xdb\xff\x27\xc7\x86\xf1\xcb\x5b\x1b\x37\xcf\xdc\xb9\x76\xfb\xf6\xcd" "\xf3\x91\x26\xbb\x6e\xbd\x10\x69\xf2\x84\xe5\xfc\x07\xe9\x67\xe7\xf9\xff" "\xa5\x51\x7b\x7e\xde\xaf\xee\xaf\xf7\x3f\x1c\x1e\x38\xff\x79\xb1\x15\xfd" "\x89\xf9\xbf\x54\x99\x2f\xb7\xf7\xe5\x19\xf7\xad\x09\x39\xff\x61\xfa\xc9" "\xf9\xbf\x9d\xda\xc7\xef\xff\x8b\x9c\xff\xe4\xfd\xff\x95\x06\xfa\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7b\x29\x8a\x62\xfb\x12\xd1" "\x37\x23\xe2\x52\xba\xfe\xa7\xa9\x6b\x33\x01\x80\xd9\xca\xaf\xff\x45\x92" "\x6f\x9f\x55\xdd\x9b\xf1\xfd\xa9\xd5\x0b\x5e\x77\xe6\xac\x3f\x33\xad\x3f" "\x29\xe6\xab\x3f\x6a\xf5\x22\xd6\x55\xc5\x78\x6f\x54\x8b\x88\xf8\x7b\x75" "\x9d\xf2\x3d\xc3\xaf\xc7\xfd\x32\x00\x60\x9e\x7d\x12\x11\xff\x6a\xba\x13" "\x34\x46\xfe\x2d\x96\xbf\xef\xaf\x9c\x9e\x6e\xba\x33\xc0\x4c\xdd\x7a\xff" "\x83\x9f\x5e\xbb\x71\x63\xe3\xe6\xad\xa6\x7b\x02\x00\x00\x00\x00\x00\x00" "\x00\x3c\xae\x3c\xfe\xe7\x5a\x65\xfc\xe7\xd3\x45\x51\xdc\xab\x2d\xb7\x6b" "\xfc\xd7\xb7\x62\xed\xb0\xe3\x7f\xf6\xf3\xcc\xce\x00\xa3\x13\x06\xaa\xee" "\x1d\x7c\x9b\xf6\xb2\xd5\x1d\xf6\xba\x95\xe1\xc6\x5f\x88\x49\xe3\x7f\x0f" "\x76\xe6\xf6\x1a\xff\xbb\x3f\xe5\xfe\x06\x53\xda\x87\x53\xda\x97\xa6\xb4" "\x2f\x4f\x69\x1f\x7b\xa1\x47\x45\xce\xff\x85\xca\x78\xe7\xa7\x23\xe2\x54" "\x6d\xf8\xf5\x36\x8c\xff\x5a\x1f\xf3\xbe\x0d\x72\xfe\x2f\x56\x1e\xcf\x65" "\xfe\x5f\xa9\x2d\x57\xcd\xbf\xf8\xc3\x22\xe7\xdf\xdd\x95\xff\xd9\xdb\xef" "\xfd\xe2\xec\xad\xf7\x3f\x78\xf5\xfa\x7b\xd7\xde\xdd\x78\x77\xe3\x67\x17" "\xcf\x9f\x3f\x77\xf1\xd2\xa5\xcb\x97\x2f\x9f\x7d\xe7\xfa\x8d\x8d\x73\xa3" "\x7f\x1b\xec\xf1\xd1\xca\xf9\xe7\xb1\xaf\x9d\x07\xda\x2e\x39\xff\x9c\xb9" "\xfc\xdb\x25\xe7\xff\xa5\x54\xcb\xbf\x5d\x72\xfe\x5f\x4e\xb5\xfc\xdb\x25" "\xe7\x9f\xdf\xef\xc9\xbf\x5d\x72\xfe\xf9\xb3\x8f\xfc\xdb\x25\xe7\xff\x72" "\xaa\xe5\xdf\x2e\x39\xff\xaf\xa5\x5a\xfe\xed\x92\xf3\x7f\x25\xd5\xf2\x6f" "\x97\x9c\xff\xd7\x53\x2d\xff\x76\xc9\xf9\xbf\x9a\x6a\xf9\xb7\x4b\xce\xff" "\x4c\xaa\xe5\xdf\x2e\x39\xff\xb3\xa9\xde\x67\xfe\x2b\x47\xdd\x2f\x66\x23" "\xe7\x9f\x8f\x70\xd9\xff\xdb\x25\xe7\x9f\xcf\x6c\x90\x7f\xbb\xe4\xfc\x2f" "\xa4\x5a\xfe\xed\x92\xf3\xbf\x98\x6a\xf9\xb7\x4b\xce\xff\xb5\x54\xcb\xbf" "\x5d\x72\xfe\xdf\x48\xb5\xfc\xdb\x25\xe7\x7f\x29\xd5\xf2\x6f\x97\x9c\xff" "\x37\x53\x2d\xff\x76\xc9\xf9\x5f\x4e\xb5\xfc\xdb\x25\xe7\xff\xad\x54\xcb" "\xbf\x5d\x72\xfe\xdf\x4e\xb5\xfc\xdb\x25\xe7\xff\x7a\xaa\xe5\xdf\x2e\x39" "\xff\xef\xa4\x5a\xfe\xed\x92\xf3\xff\x6e\xaa\xe5\xdf\x2e\x39\xff\xef\xa5" "\x5a\xfe\xed\x92\xf3\x7f\x23\xd5\xf2\x6f\x97\x47\xdf\xff\x7f\xb8\x99\xdf" "\x9e\x78\x32\xbf\xc7\x4c\x6b\x67\x06\xf3\xd1\x0d\x33\xa3\x99\xa6\x9f\x99" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xba\x59\x9c\x4e\xdc\xf4\x36" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\xca\x0e\x1c\x08\x00\x00\x00\x00" "\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x40" "\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xb0\x77\x77\x31\x72\x9d\xf5\xfd\xc0\xcf\xec\x9b\xd7\x4e\x48\x0c\x84" "\xfc\x9d\xfc\x0d\x6c\x1c\x13\x42\xb2\xc9\xae\xed\xc4\x2f\xb4\x29\x26\xbc" "\x36\xbc\x95\x40\x28\xf4\x05\xdb\xf5\xae\xcd\x82\x63\x1b\xaf\x5d\x02\x8d" "\x64\xd3\x40\x89\x84\x51\x51\x45\xdb\x70\xd1\x16\x10\x6a\x73\x53\x91\x0b" "\x2e\x68\x05\x28\x17\xa8\x15\x52\x25\xd2\x5e\xd0\x1b\x44\x85\xca\x45\x54" "\x05\x14\x90\x2a\xd1\x0a\xb2\xd5\x9c\xf3\x3c\xcf\xce\xcc\xce\xce\xcc\x7a" "\xc7\xbb\x33\xe7\x7c\x3e\x92\xfd\xf3\xce\x9c\x39\xe7\x99\x33\xcf\x9c\x9d" "\xdf\x8c\xbf\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x1a\xdd\xf2\x86\xf9\xcf\xd4\xb2\x2c\xab\xff\xc9\xff\xda\x9e\x65\xd7" "\xd6\xff\xbd\x75\x6a\x7b\x7e\xd9\x6b\x37\x7b\x84\x00\x00\x00\xc0\x7a\xfd" "\x2a\xff\xfb\xf9\xeb\xd3\x05\x87\x7b\xb8\x51\xc3\x32\xff\xfc\x8a\xef\x7d" "\x7d\x69\x69\x69\x29\x7b\xff\xe8\x9f\x8f\x7f\x61\x69\x29\x5d\x31\x95\x65" "\xe3\x5b\xb2\x2c\xbf\x2e\x7a\xea\x47\x1f\xa8\x35\x2e\x13\x3c\x96\x4d\xd6" "\x46\x1a\x7e\x1e\xe9\xb2\xf9\xd1\x2e\xd7\x8f\x75\xb9\x7e\xbc\xcb\xf5\x13" "\x5d\xae\xdf\xd2\xe5\xfa\xc9\x2e\xd7\xaf\xd8\x01\x2b\x6c\x2d\xde\x8f\xc9" "\x57\xb6\x3b\xff\xe7\xf6\x62\x97\x66\x37\x64\xe3\xf9\x75\xbb\xdb\xdc\xea" "\xb1\xda\x96\x91\x91\xf8\x5e\x4e\xae\x96\xdf\x66\x69\xfc\x44\xb6\x90\x9d" "\xca\xe6\xb3\xd9\xa6\xe5\x8b\x65\x6b\xf9\xf2\xdf\xbc\xa5\xbe\xad\xb7\x66" "\x71\x5b\x23\x0d\xdb\xda\x59\x9f\x21\x3f\x7b\xf4\x78\x1c\x43\x2d\xec\xe3" "\xdd\x4d\xdb\x5a\x5e\x67\xf4\x93\xd7\x67\x53\x3f\xff\xd9\xa3\xc7\xff\xf6" "\xfc\x73\x37\xb5\xab\x5d\x77\x43\xd3\xfa\x8a\x71\xde\xbe\xab\x3e\xce\x4f" "\x85\x4b\x8a\xb1\xd6\xb2\x2d\x69\x9f\xc4\x71\x8e\x34\x8c\x73\x67\x9b\xc7" "\x64\xb4\x69\x9c\xb5\xfc\x76\xf5\x7f\xb7\x8e\xf3\xf9\x1e\xc7\x39\xba\x3c" "\xcc\x0d\xd5\xfa\x98\x4f\x66\x23\xf9\xbf\x9f\xc9\xf7\xd3\x58\xe3\xdb\x7a" "\x69\x3f\xed\x0c\x97\xfd\xe2\xd6\x2c\xcb\x2e\x2d\x0f\xbb\x75\x99\x15\xdb" "\xca\x46\xb2\x6d\x4d\x97\x8c\x2c\x3f\x3e\x93\xc5\x8c\xac\xaf\xa3\x3e\x95" "\x5e\x92\x8d\xad\x69\x9e\xde\xd2\xc3\x3c\xad\xd7\xb9\xdd\xcd\xf3\xb4\xf5" "\x39\x11\x1f\xff\x5b\xc2\xed\xc6\x56\x19\x43\xe3\xc3\xf4\x93\x4f\x4e\x34" "\x3c\xee\xbf\x5c\xba\x92\x79\x1a\xd5\xef\x75\x31\x86\xa5\xd1\xe5\xcb\x8a" "\x31\xb4\xce\xc1\x7e\x3f\x57\x06\x65\x0e\xc6\x79\xf1\x4c\x7e\xa7\x1f\x6f" "\x3b\x07\x77\x87\xfb\xff\xe8\x6d\xab\xcf\xc1\xb6\x73\xa7\xcd\x1c\x4c\xf7" "\xbb\x61\x0e\xee\xea\x36\x07\x47\x26\x46\xf3\x31\xa7\x07\xa1\x96\xdf\x66" "\x79\x0e\xee\x69\x5a\x7e\x34\xdf\x52\x2d\xaf\xcf\xde\xd6\x79\x0e\xce\x9c" "\x7f\xf8\xec\xcc\xe2\xc7\x3f\x71\xd7\xc2\xc3\xc7\x4e\xce\x9f\x9c\x3f\xbd" "\x6f\xcf\x9e\xd9\x7d\xfb\xf7\x1f\x3c\x78\x70\xe6\xc4\xc2\xa9\xf9\xd9\xe2" "\xef\x2b\xdc\xdb\x83\x6f\x5b\x36\x92\x9e\x87\xbb\xc2\xbe\x8b\xcf\x81\x57" "\xb7\x2c\xdb\x38\x55\x97\xbe\x3c\xb1\xe2\xf8\x7b\xa5\xcf\xc3\xc9\xf4\x3c" "\x6c\xfe\x9d\xd5\xee\xb5\x45\xbf\x9f\x87\x63\xad\x77\xae\xb6\x31\x4f\xc8" "\x95\x73\xba\x78\x6e\xbc\xb7\xbe\xd3\x27\x2f\x8f\x64\xab\x3c\xc7\xf2\xc7" "\xe7\x8e\xf5\x3f\x0f\xd3\xfd\x6e\x78\x1e\x8e\x35\x3c\x0f\xdb\xfe\x4e\x69" "\xf3\x3c\x1c\xeb\xe1\x79\x58\x5f\xe6\xec\x1d\xbd\xbd\x66\x19\x6b\xf8\xd3" "\x6e\x0c\xab\xff\x2e\x58\xdf\x1c\xdc\xde\x30\x07\x5b\x5f\x8f\x6c\x6f\x59" "\xb6\xdf\xaf\x47\x06\x65\x0e\x4e\x86\x79\xf1\x83\x3b\x56\xff\x5d\xb0\x33" "\x8c\xf7\xf1\xe9\xb5\xbe\x1e\x19\x5d\x31\x07\xd3\xdd\x0d\xc7\x9e\xfa\x25" "\xe9\xf5\xfe\xe4\xc1\xbc\xb4\x9b\x97\x37\xd7\xaf\xb8\x66\x22\xbb\xb0\x38" "\x7f\xee\xee\x47\x8e\x9d\x3f\x7f\x6e\x4f\x16\xca\x86\x78\x69\xc3\x5c\x69" "\x9d\xaf\xdb\x1a\xee\x53\xb6\x62\xbe\x8e\xac\x79\xbe\x1e\x5e\x78\xc5\xe3" "\x37\xb7\xb9\x7c\x7b\xd8\x57\x93\x77\xd5\xff\x9a\x5c\xf5\xb1\xaa\x2f\x73" "\xcf\xdd\x9d\x1f\xab\xfc\xb7\x5b\xfb\xfd\xd9\x74\xe9\xde\x2c\x94\x3e\xdb" "\xe8\xfd\xd9\xee\xb7\x79\x7d\x7f\x4e\x64\xd9\x17\xbf\xf3\xc9\x07\xbf\xf5" "\xe8\x17\xdf\xb0\xea\xfe\xac\xf7\x9b\x9f\x9a\x59\xff\x6b\xf1\xd4\x97\x36" "\x1c\x7f\xc7\x57\x39\xfe\xc6\xbe\xff\x85\x62\x7b\x69\x55\x8f\x8d\x8e\x8f" "\x15\xcf\xdf\xd1\xb4\x77\xc6\x9b\x8e\xc7\xcd\x0f\xd5\x58\x7e\xec\xaa\xe5" "\xdb\x7e\x7e\xa6\xb7\xe3\xf1\x78\xf8\xb3\xd1\xc7\xe3\x1b\x3a\x1c\x8f\x77" "\xb4\x2c\xdb\xef\xe3\xf1\x78\xeb\x9d\x8b\xc7\xe3\x5a\xb7\x77\x3b\xd6\xa7" "\xf5\xf1\x9c\x0c\xf3\xe4\xd4\x6c\xe7\xe3\x71\x7d\x99\x1d\x7b\xd7\x3a\x27" "\xc7\x3a\x1e\x8f\x6f\x0d\xb5\x16\xf6\xff\x6b\x42\xa7\x90\xfa\xa2\x86\xb9" "\xb3\xda\xbc\x4d\xdb\x1a\x1b\x1b\x0f\xf7\x6b\x2c\x6e\xa1\x79\x9e\xee\x6b" "\x5a\x7e\x3c\xf4\x66\xf5\x6d\x3d\xb9\x37\xbc\x28\x4c\xa3\xec\x6d\x9e\xde" "\x7e\x6b\xb1\xfc\x68\xc3\xed\xa2\x8d\x9a\xa7\x53\x2d\xcb\xf6\x7b\x9e\xa6" "\xf7\xbe\x56\x9b\xa7\xb5\x6e\xef\xbe\x5d\x99\xd6\xc7\x73\x32\xcc\x8b\x1b" "\xf6\x75\x9e\xa7\xf5\x65\x9e\xbe\x67\xfd\xc7\xce\xad\xf1\x9f\x0d\xc7\xce" "\x89\x6e\x73\x70\x7c\x74\xa2\x3e\xe6\xf1\x34\x09\xf3\xe3\x7d\xb6\xb4\x35" "\xce\xc1\xbb\xb3\xe3\xd9\x99\xec\x54\x36\x97\x5f\x3b\x91\xcf\xa7\x5a\xbe" "\xad\xe9\x7b\x7b\x3b\x56\x4e\x84\x3f\x1b\x7d\xac\xdc\xd1\x61\x0e\xde\xde" "\xb2\x6c\xbf\xe7\x60\xfa\x3d\xb6\xda\xdc\xab\x8d\xad\xbc\xf3\x7d\xd0\xfa" "\x78\x4e\x86\x79\xf1\xc4\xbd\x9d\xe7\x60\x7d\x99\x37\x1e\xe8\xef\x6b\xd7" "\xdb\xc3\x25\x69\x99\x86\xd7\xae\xad\xef\xaf\xad\xf6\x9e\xd7\xcd\x2d\xbb" "\xe9\x6a\xcd\x95\xb1\x30\xce\xef\x1c\xe8\xfc\xde\x6c\x7d\x99\x53\x07\xd7" "\xda\x67\x76\xde\x4f\x77\x86\x4b\xae\x69\xb3\x9f\x5a\x9f\xbf\xab\x3d\xa7" "\xe6\xb2\x8d\xd9\x4f\x3b\xc2\x38\x9f\x3b\xb8\xfa\x7e\xaa\x8f\xa7\xbe\xcc" "\x17\x0e\xf5\x38\x9f\x0e\x67\x59\x76\xf1\xa3\xf7\xe7\xef\xf7\x86\xcf\x57" "\x2e\x5e\xf8\xfe\xd7\x9b\x3e\x77\x69\xf7\x99\xce\xc5\x8f\xde\xff\xd3\x17" "\x9d\xf8\xa7\xb5\x8c\x1f\x80\xe1\xf7\x42\x51\xb6\x15\xbf\xeb\x1a\x3e\x99" "\xea\xe5\xf3\x7f\x00\x00\x00\x60\xf3\x75\xfb\x0f\xea\xe9\x3d\xee\xc9\xf0" "\x19\xa6\xfe\x1f\x00\x00\x00\xca\x28\xf6\xfd\xf1\x7f\x85\x27\xfa\x7f\x00" "\x00\x00\x28\x8d\xd8\xf7\x8f\x85\x9a\x94\xa1\xff\xff\xe3\xee\x8b\xec\x78" "\xe3\x73\x0b\x2f\x5c\xcc\x52\x32\x7f\x29\x88\xd7\xa7\xdd\xf0\x40\xb1\x5c" "\xcc\xb8\xce\x86\x9f\xa7\x96\x96\xd5\x2f\xbf\xff\xab\xf3\xff\xfd\x8f\x17" "\x7b\x1b\xde\x48\x96\x65\xbf\x7c\xe0\x8f\xda\x2e\xbf\xe3\x81\x38\xae\xc2" "\x54\x18\xe7\x53\x6f\x6a\xbe\x7c\x85\xaf\xdf\xd5\xd3\xb6\x8f\x3e\x74\x31" "\x6d\xb7\x31\xbf\xfe\xa5\xb0\xfe\x78\x7f\x7a\x9d\x06\xed\x22\xb8\xb3\x59" "\x96\x7d\xf3\xfa\xcf\xe5\xdb\x99\xfa\xc0\xe5\xbc\x3e\xfd\xc0\xd1\xbc\x3e" "\x78\xe9\xf1\xc7\xea\xcb\x3c\x7f\xa8\xf8\x39\xde\xfe\xd9\x97\x16\xcb\xff" "\x55\xf8\xbf\x2b\x87\x4f\x1c\x6b\xba\xfd\xb3\x61\x3f\xfc\x38\xd4\xd9\xb7" "\xb5\xdf\x1f\xf1\x76\x5f\xbb\xfc\x9a\x9d\x07\xde\xb7\xbc\xbd\x78\xbb\xda" "\xae\xeb\xf2\xbb\xfd\xc4\x07\x8b\xf5\xc6\xef\xc9\xf9\xfc\x63\xc5\xf2\x71" "\x3f\xaf\x36\xfe\x6f\x7d\xf6\xc9\xaf\xd5\x97\x7f\xe4\x55\xed\xc7\x7f\x71" "\xa4\xfd\xf8\x9f\x0c\xeb\xfd\x6a\xa8\xff\xf3\xf2\x62\xf9\xc6\xc7\xa0\xfe" "\x73\xbc\xdd\xa7\xc3\xf8\xe3\xf6\xe2\xed\xee\xfe\xca\xb7\xdb\x8e\xff\xa9" "\xcf\x14\xcb\x9f\x7d\x73\xb1\xdc\xd1\x50\xe3\xf6\x6f\x0f\x3f\xef\x7e\xf3" "\x73\x0b\x8d\xfb\xeb\x91\xda\xb1\xa6\xfb\x95\xbd\xa5\x58\x2e\x6e\x7f\xf6" "\xfb\x7f\x9a\x5f\x1f\xd7\x17\xd7\xdf\x3a\xfe\xc9\x23\x97\x9b\xf6\x47\xeb" "\xfc\x78\xfa\xdf\x8a\xf5\xcc\xb4\x2c\x1f\x2f\x8f\xdb\x89\xfe\xa1\x65\xfb" "\xf5\xf5\x34\xce\xcf\xb8\xfd\x27\xff\xe4\x68\xd3\x7e\xee\xb6\xfd\xa7\x1e" "\x7c\xf6\xe5\xf5\xf5\xb6\x6e\xff\xce\x96\xe5\xce\x7e\xf4\x8e\x7c\xfb\xcb" "\xeb\x6b\xfe\xc6\xa6\xbf\xfe\xf4\xe7\xda\x6e\x2f\x8e\xe7\xf0\xdf\x9f\x6d" "\xba\x3f\x87\xdf\x1d\x9e\xc7\x61\xfb\x4f\x7c\x30\xcc\xc7\x70\xfd\xff\x3e" "\x55\xac\xaf\xf5\xdb\x15\x8e\xbe\xbb\xf9\xf8\x13\x97\xff\xd2\xf6\x8b\x4d" "\xf7\x27\x7a\xeb\xcf\x8b\xed\x3f\xf5\xba\x93\x79\xdd\x32\xb9\x75\xdb\x35" "\xd7\xbe\xe8\xba\x4b\xef\xaa\xef\xbb\x2c\x7b\x66\x4b\xb1\xbe\x6e\xdb\x3f" "\xf9\x37\x67\x9a\xc6\xff\xe5\x1b\x8b\xfd\x11\xaf\x8f\xff\xc5\xac\x75\xfb" "\xab\xb9\xf4\xca\x62\xfb\xe7\x3e\x36\x7d\xfa\xcc\xe2\x85\x85\xb9\xb4\x57" "\x1f\xbd\x3e\xff\xee\x9c\xb7\x17\xe3\x89\xe3\xbd\x3e\x1c\x5b\x5b\x7f\x3e" "\x72\xe6\xfc\x87\xe6\xcf\x4d\xcd\x4e\xcd\x66\xd9\x54\x79\xbf\x42\xef\x8a" "\x7d\x25\xd4\x9f\x16\xe5\x52\xe7\xa5\x97\x56\x1c\x41\xef\x78\x28\x3c\x9e" "\x37\xff\xe5\x37\xb7\xdd\xf6\xaf\x9f\x8d\x97\xff\xfb\x7b\x8b\xcb\x2f\xbf" "\xad\xf8\xbd\xf5\xea\xb0\xdc\xe7\xc3\xe5\xdb\xc3\xe3\xb7\xb6\xed\xaf\xf4" "\xc4\x2d\x37\xe6\xcf\xef\xda\xd3\x61\x84\x4b\x2b\xbf\x2f\x78\x3d\x76\xee" "\xfe\xaf\x83\x3d\x2d\x18\xee\x7f\xeb\xeb\x82\x38\xdf\xcf\xbe\xec\x43\xf9" "\x7e\xa8\x5f\x97\xff\xde\x88\xcf\xeb\x75\x8e\xff\x87\x73\xc5\x7a\xbe\x11" "\xf6\xeb\x52\xf8\x66\xe6\x5d\x37\x2e\x6f\xaf\x71\xf9\xf8\xdd\x08\x97\xdf" "\x53\x3c\xdf\xd7\xbd\xff\xc2\x61\x2e\x3e\xae\x7f\x17\x1e\xef\x77\xfc\xb8" "\x58\x7f\x1c\x57\xbc\xbf\x3f\x0c\xaf\x63\xbe\xbd\xa3\xf9\x78\x17\xe7\xc7" "\x37\x2e\x8e\xb4\xae\x3f\xff\x16\x8f\x4b\xe1\x78\x92\x5d\x2a\xae\x8f\x4b" "\xc5\xfd\x7d\xf9\xf9\x1b\xdb\x0e\x2f\x7e\x0f\x49\x76\xe9\xa6\xfc\xe7\x3f" "\x4b\xeb\xb9\x69\x4d\x77\x73\x35\x8b\x1f\x5f\x9c\x39\xb5\x70\xfa\xc2\x23" "\x33\xe7\xe7\x17\xcf\xcf\x2c\x7e\xfc\x13\x47\x1e\x3e\x73\xe1\xf4\xf9\x23" "\xf9\x77\x79\x1e\xf9\x70\xb7\xdb\x2f\x1f\x9f\xb6\xe5\xc7\xa7\xb9\xf9\xfd" "\xf7\x64\xf9\xd1\xea\x4c\x51\xae\xb2\xcd\x1e\xff\xd9\x87\x8e\xcf\x1d\x98" "\xbd\x6d\x6e\xfe\xc4\xb1\x0b\x27\xce\x3f\x74\x76\xfe\xdc\xc9\xe3\x8b\x8b" "\xc7\xe7\xe7\x16\x6f\x3b\x76\xe2\xc4\xfc\xc7\xba\xdd\x7e\x61\xee\xbe\x3d" "\x7b\x0f\xed\x3b\xb0\x77\xfa\xe4\xc2\xdc\x7d\x07\x0f\x1d\xda\x77\x68\x7a" "\xe1\xf4\x99\xfa\x30\x8a\x41\x75\xb1\x7f\xf6\x23\xd3\xa7\xcf\x1d\xc9\x6f" "\xb2\x78\xdf\x3d\x87\xf6\xdc\x7b\xef\x3d\xb3\xd3\x0f\x9f\x99\x9b\xbf\xef" "\xc0\xec\xec\xf4\x85\x6e\xb7\xcf\x7f\x37\x4d\xd7\x6f\xfd\x87\xd3\xe7\xe6" "\x4f\x1d\x3b\xbf\xf0\xf0\xfc\xf4\xe2\xc2\x27\xe6\xef\xdb\x73\x68\xff\xfe" "\xbd\x5d\xbf\x0d\xf0\xe1\xb3\x27\x16\xa7\x66\xce\x5d\x38\x3d\x73\x61\x71" "\xfe\xdc\x4c\x71\x5f\xa6\xce\xe7\x17\xd7\x7f\xf7\x75\xbb\x3d\xe5\xb4\xf8" "\x1f\xc5\xeb\xd9\x56\xb5\xe2\x8b\xf8\xb2\x77\xdd\xb9\x3f\x7d\x3f\x6b\xdd" "\x57\x3f\xb9\xea\xaa\x8a\x45\x5a\xbe\x40\xf4\xb9\xf0\x5d\x34\xdf\x7d\xf1" "\xd9\x83\xbd\xfc\x1c\xfb\xfe\xf1\x50\x93\x32\xf4\xff\x00\x00\x00\x40\x2e" "\xf6\xfd\x13\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x6f\x09\x35\xd1" "\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x32\xd4\xf4\x5f\x02\x2a\xd2\xff\x97" "\x2e\xff\xbf\xe3\x62\x4f\xdb\x97\xff\xdf\xcc\xfc\x7f\x7e\xf6\x67\xf9\x7f" "\xf9\xff\x8d\xcf\xff\x87\xfc\xfd\x33\xef\x19\xb4\xfc\x7f\x71\xbc\x90\xff" "\xef\x8f\xf5\xe6\xef\xe5\xff\x03\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f" "\xfa\x60\xd0\xf2\xff\xb1\xef\xdf\x9a\x65\x3e\xff\x07\x00\x00\x80\x92\x8a" "\x7d\xff\xb6\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xaf\x09\x35\xd1" "\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\xda\x50\x93\x8a\xf4\xff\xf2\xff\xf2" "\xff\xce\xff\x2f\xff\x2f\xff\xdf\x7e\xfb\xf2\xff\xc3\x49\xfe\xbf\x33\xf9" "\xff\x2e\xe4\xff\x67\xb2\x6a\xe5\xff\x2f\xf5\x73\xfc\x9b\x90\xff\xdf\xda" "\xf8\x83\xfc\x3f\x83\x68\xd0\xf2\xff\xb1\xef\x7f\x51\xa8\x49\x45\xfa\x7f" "\x00\x00\x00\xa8\x82\xd8\xf7\x5f\x17\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88" "\x7d\xff\xf5\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x6f\x0f\x35\xa9" "\x48\xff\x2f\xff\xbf\xae\xfc\x7f\xca\x5c\xc9\xff\x37\x8f\x5f\xfe\xbf\x99" "\xfc\x7f\x98\x0f\xf2\xff\xf2\xff\x1b\x40\xfe\xbf\x33\xf9\xff\x2e\xe4\xff" "\x9d\xff\x7f\xb8\xf2\xff\x4d\xe4\xff\x19\x44\x83\x96\xff\x8f\x7d\xff\x8b" "\x43\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\x25\xa1\x26\xfa\x7f" "\x00\x00\x00\x18\x3c\x63\x57\x76\xb3\xd8\xf7\xbf\x34\xd4\x64\x45\xff\x7f" "\x85\x1b\x00\x00\x00\x00\x36\x5d\xec\xfb\x6f\xc8\x5a\x82\xe0\x15\xf9\xfc" "\x5f\xfe\xdf\xf9\xff\xe5\xff\xe5\xff\xe5\xff\xdb\x6f\xbf\xf7\xfc\xff\x68" "\x26\xff\x3f\x38\xe4\xff\x3b\x93\xff\xef\x42\xfe\x5f\xfe\x5f\xfe\x5f\xfe" "\x9f\xbe\x1a\xb4\xfc\x7f\xde\xf7\x67\x93\xd9\xcb\x42\x4d\x2a\xd2\xff\x03" "\x00\x00\x40\x15\xc4\xbe\xff\xc6\x50\x93\x1e\xfa\xff\x2d\x57\x6d\x54\x00" "\x00\x00\x40\x3f\xc5\xbe\xff\xff\x85\x9a\xf8\xfc\x1f\x00\x00\x00\x4a\x23" "\xf6\xfd\x3b\x42\x4d\x2a\xd2\xff\xcb\xff\x97\x26\xff\xff\x8b\xc6\x87\x4e" "\xfe\x5f\xfe\xbf\xd3\xf6\xe5\xff\x9d\xff\xbf\xcc\xe4\xff\x3b\x93\xff\xef" "\x42\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f\xbe\x1a\xb4\xfc\x7f\xec\xfb\x6f\x0a" "\x35\xa9\x48\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x9b\x43\x4d\xf4\xff\x00" "\x00\x00\x50\x1a\xb1\xef\xff\xff\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8" "\xf7\xef\x0c\x35\xa9\x48\xff\x2f\xff\x3f\xe0\xf9\xff\x98\x1c\x75\xfe\x7f" "\xf9\x7f\xf9\xff\x81\xcc\xff\x4f\xca\xff\x0f\x1c\xf9\xff\xce\xe4\xff\xbb" "\xe8\x25\xff\x7f\xad\xfc\xff\x6a\xe4\xff\xe5\xff\xe5\xff\x69\x35\x68\xf9" "\xff\xd8\xf7\xbf\x3c\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\x5f" "\x11\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x2b\x43\x4d\xf4\xff\x00" "\x00\x00\x50\x1a\xb1\xef\x9f\x0a\x35\xa9\x48\xff\xbf\x96\xfc\x7f\xed\x92" "\xfc\xff\x6a\xae\xf2\xf9\xff\x27\x7a\x38\xff\x7f\x13\xf9\x7f\xf9\xff\x4e" "\xdb\x97\xff\x77\xfe\xff\x32\x93\xff\xef\x4c\xfe\xbf\x0b\xe7\xff\x97\xff" "\x97\xff\x97\xff\xa7\xaf\x06\x2d\xff\x1f\xfb\xfe\x5b\x42\x4d\x2a\xd2\xff" "\x03\x00\x00\x40\x15\xc4\xbe\x7f\x57\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23" "\xf6\xfd\xb7\x86\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xbf\x3b\xd4\xa4" "\x22\xfd\xbf\xf3\xff\x0f\x45\xfe\x3f\x93\xff\x97\xff\x97\xff\x97\xff\x97" "\xff\xef\x8d\xfc\x7f\x67\xf2\xff\x5d\xc8\xff\xcb\xff\xcb\xff\xcb\xff\xd3" "\x57\x83\x96\xff\x8f\x7d\xff\xab\x42\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15" "\xc4\xbe\xff\xb6\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x5f\x1d\x6a" "\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xed\xa1\x26\x15\xe9\xff\xe5\xff" "\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xdb\x6f\x5f\xfe\x7f\x38\xc9\xff\x77\x26" "\xff\xdf\x85\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x7d\x35\x68\xf9\xff\xd8\xf7" "\xbf\x26\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\xef\x08\x35\xd1" "\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\xce\x50\x13\xfd\x3f\x00\x00\x00\x94" "\x46\xec\xfb\xa7\x43\x4d\x2a\xd2\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xcb" "\xff\xb7\xdf\xbe\xfc\xff\x70\x92\xff\xef\x4c\xfe\xbf\x0b\xf9\x7f\xf9\x7f" "\xf9\x7f\xf9\x7f\xfa\x6a\xd0\xf2\xff\xb1\xef\xbf\x2b\xd4\xa4\x22\xfd\x3f" "\x00\x00\x00\x54\x41\xec\xfb\xef\x0e\x35\xd1\xff\x03\x00\x00\x40\x69\xc4" "\xbe\x7f\x26\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xd9\x50\x93\x8a" "\xf4\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x6b\xca\xff\xbf\x72\x79\xbd\xf2" "\xff\x05\xf9\xff\xc1\x22\xff\xdf\x99\xfc\x7f\x17\xf2\xff\xf2\xff\x9b\x9e" "\xff\x1f\x97\xff\xa7\x54\x06\x2d\xff\x1f\xfb\xfe\x3d\xa1\x26\x15\xe9\xff" "\x01\x00\x00\xa0\x0a\x62\xdf\xbf\x37\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11" "\xfb\xfe\x7d\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xdf\x13\x6a\x52" "\x91\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xbf\xaf\xf9\xff\x5a\xbb\xf9\x50\xaa\xfc" "\x7f\x03\xf9\xff\x82\xfc\xff\x60\x91\xff\xef\xac\xff\xf9\xff\x78\x17\xe5" "\xff\xe5\xff\xe5\xff\x9d\xff\x5f\xfe\x9f\x95\x06\x2d\xff\x1f\xfb\xfe\x7b" "\x43\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\x7f\x7f\xa8\x89\xfe\x1f" "\x00\x00\x00\x4a\x23\xf6\xfd\x07\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1" "\xef\x3f\x18\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xdf\xf9\xff\xe5\xff" "\xdb\x6f\x5f\xfe\x7f\x38\xc9\xff\x77\xe6\xfc\xff\x5d\xc8\xff\xcb\xff\x0f" "\x71\xfe\xbf\x3e\xb7\xe4\xff\x19\x34\x83\x96\xff\x8f\x7d\xff\xa1\x50\x93" "\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\x7f\x6d\xa8\x89\xfe\x1f\x00\x00" "\x00\x4a\x23\xf6\xfd\xbf\x16\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff" "\xaf\x87\x9a\x54\xa4\xff\x97\xff\x97\xff\x97\xff\x97\xff\x1f\xf4\xfc\xff" "\x84\xfc\xbf\xfc\xff\x1a\xc8\xff\x77\x26\xff\xdf\x85\xfc\xbf\xfc\xff\x10" "\xe7\xff\x9d\xff\x9f\x41\x34\x68\xf9\xff\xd8\xf7\xdf\x17\x6a\x52\x91\xfe" "\x1f\x00\x00\x00\xaa\x20\xf6\xfd\xbf\x11\x6a\xa2\xff\x07\x00\x00\x80\xd2" "\x88\x7d\xff\xeb\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x3f\x1c\x6a" "\x52\x91\xfe\x5f\xfe\x7f\x83\xf2\xff\xf1\x42\xf9\x7f\xf9\x7f\xf9\x7f\xe7" "\xff\x97\xff\xbf\xaa\xe4\xff\x3b\x93\xff\xef\x42\xfe\x5f\xfe\x5f\xfe\x5f" "\xfe\x9f\xbe\x1a\xb4\xfc\x7f\xec\xfb\x5f\x1f\x6a\x52\x91\xfe\x1f\x00\x00" "\x00\xaa\x20\xf6\xfd\xf7\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xff" "\x86\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xdf\x18\x6a\x52\x91\xfe" "\x5f\xfe\xdf\xf9\xff\x37\x3f\xff\x3f\xde\x34\x76\xf9\xff\xe5\xdb\xc9\xff" "\x17\xe4\xff\xe5\xff\xd7\x42\xfe\xbf\x33\xf9\xff\x2e\xe4\xff\xe5\xff\xe5" "\xff\xe5\xff\xe9\xab\x41\xcb\xff\xc7\xbe\xff\x4d\xa1\x26\x15\xe9\xff\x01" "\x00\x00\xa0\x0a\x62\xdf\xff\xe6\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec" "\xfb\xdf\x12\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x5b\x43\x4d\x2a" "\xd2\xff\xcb\xff\xcb\xff\x6f\x7e\xfe\xdf\xf9\xff\xe5\xff\x0b\xf2\xff\xf2" "\xff\xfd\x20\xff\xdf\x99\xfc\x7f\x17\xfd\xcf\xff\x8f\xb7\xac\x5f\xfe\xff" "\x2a\xda\xec\xf1\xcb\xff\xcb\xff\xb3\xd2\xa0\xe5\xff\x63\xdf\xff\x9b\xa1" "\x26\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf\xff\x40\xa8\x89\xfe\x1f\x00" "\x00\x00\x4a\x23\xf6\xfd\x6f\x0b\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe" "\xff\xed\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xdb" "\x6f\x5f\xfe\x7f\x38\xc9\xff\x77\x36\x64\xf9\xff\x5f\x5d\x17\x2e\x1f\xe2" "\xfc\x7f\xeb\xfa\xe5\xff\xaf\xa2\xcd\x1e\xff\x5a\xf3\xff\x63\x2d\x3f\x5f" "\x95\xfc\xff\x8f\x56\xcb\xff\x2f\x6d\x69\xbd\xbd\xfc\x3f\x57\xc3\xa0\xe5" "\xff\x63\xdf\xff\x8e\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\x7f" "\x67\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xef\x0a\x35\xd1\xff\x03" "\x00\x00\x40\x69\xc4\xbe\xff\xb7\x42\x4d\x2a\xd2\xff\xcb\xff\xd7\xc7\xb1" "\x9c\x5e\x96\xff\x97\xff\xcf\x2f\x90\xff\x97\xff\x97\xff\x1f\x5a\xf2\xff" "\x9d\x0d\x59\xfe\xbf\x0c\xe7\xff\x6f\x5d\xbf\xfc\xff\x55\xb4\xd9\xe3\x77" "\xfe\x7f\xf9\x7f\x56\x1a\xb4\xfc\x7f\xec\xfb\xdf\x1d\x6a\x52\x91\xfe\x1f" "\x00\x00\x00\xaa\x20\xf6\xfd\x0f\x86\x9a\xf4\xd6\xff\x3f\xdf\xdf\x77\xe5" "\x01\x00\x00\x80\xab\x21\xf6\xfd\xef\x09\x35\xf1\xf9\x3f\x00\x00\x00\x94" "\x46\xec\xfb\xdf\x1b\x6a\x52\x91\xfe\x5f\xfe\xdf\xf9\xff\xe5\xff\xe5\xff" "\xe5\xff\xdb\x6f\x5f\xfe\x7f\x38\xc9\xff\x77\x26\xff\xdf\x85\xfc\xbf\xfc" "\xff\xa0\xe5\xff\xff\x53\xfe\x9f\xe1\x36\x68\xf9\xff\xd8\xf7\x3f\x14\x6a" "\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\xef\x0b\x35\xd1\xff\x03\x00" "\x00\x40\x69\xc4\xbe\xff\xb7\x43\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef" "\x7f\x7f\xa8\x49\x45\xfa\x7f\xf9\xff\x61\xc9\xff\x4f\xc9\xff\xaf\x31\xff" "\x3f\x11\x2e\x93\xff\x97\xff\x97\xff\xaf\x16\xf9\xff\xce\xe4\xff\xbb\x90" "\xff\x97\xff\x1f\xb4\xfc\xbf\xf3\xff\x33\xe4\x06\x2d\xff\x1f\xfb\xfe\x0f" "\x84\x9a\xf4\xde\xff\x4f\xf6\xbc\x24\x00\x00\x00\xb0\x29\x62\xdf\xff\x3b" "\xa1\x26\x15\xf9\xfc\x1f\x00\x00\x00\xaa\x20\xf6\xfd\xbf\x1b\x6a\xa2\xff" "\x07\x00\x00\x80\xd2\x88\x7d\xff\xef\x85\x9a\x54\xa4\xff\x97\xff\x1f\x96" "\xfc\xbf\xf3\xff\x67\xce\xff\x2f\xff\xdf\x72\x7f\x4a\x99\xff\x1f\x91\xff" "\x5f\xaf\x8d\xcb\xff\xc7\x23\x8f\xfc\xbf\xfc\xbf\xfc\x7f\x24\xff\x2f\xff" "\x2f\xff\x4f\xab\x41\xcb\xff\xc7\xbe\xff\xf7\x43\x4d\x2a\xd2\xff\x03\x00" "\x00\x40\x15\xc4\xbe\xff\x83\xa1\x26\xfa\x7f\x00\x00\x00\x18\x0a\xed\xfe" "\x4f\x76\xab\xd8\xf7\x1f\x09\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff" "\x68\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9\x7f\xf9\xff\x2b\xca\xff\xe7\x8b\x5d" "\xd5\xfc\xff\x5f\xec\xfa\x97\x1f\x7c\xef\x9d\x47\xf7\xc8\xff\x57\x2b\xff" "\xef\xfc\xff\xeb\xb6\xa1\xe7\xff\xaf\x3f\xf9\x9d\xff\x5f\xfe\x5f\xfe\x3f" "\x91\xff\x97\xff\x97\xff\xa7\xd5\xa0\xe5\xff\x63\xdf\x7f\x2c\xd4\x64\xb9" "\xf1\x7b\xbb\x13\xfc\x03\x00\x00\xc0\x70\x8b\x7d\xff\x1f\x84\x9a\x54\xe4" "\xf3\x7f\x00\x00\x00\xa8\x82\xd8\xf7\x1f\x0f\x35\xd1\xff\x03\x00\x00\x40" "\x69\xc4\xbe\x7f\x2e\xd4\xa4\x22\xfd\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xf3\xff" "\xf7\x3b\xff\x1f\xf7\xc7\x30\xe5\xff\xa7\xb7\x0c\x51\xfe\x3f\x1e\x74\xe5" "\xff\xdb\xda\xd0\xfc\xff\xfb\x96\x73\xe2\xf2\xff\x6b\xcd\xff\x4f\xb4\xbd" "\xb4\x35\xff\x5f\x93\xff\x6f\x22\xff\xbf\xe6\xf1\x7f\x37\xcb\x32\xf9\x7f" "\xf9\x7f\x36\xd1\xa0\xe5\xff\x63\xdf\x3f\x1f\x6a\x52\x91\xfe\x1f\x00\x00" "\x00\xaa\x20\xf4\xfd\x23\x27\x8a\xba\x7c\x85\xfe\x1f\x00\x00\x00\x4a\x23" "\xf6\xfd\x27\x43\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\xff\x50\xa8\x49" "\x45\xfa\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xe7\xff\x6f\xbf\xfd\x81\xcd" "\xff\x3b\xff\x7f\x47\xf2\xff\x9d\x0d\x4e\xfe\xbf\x3d\xe7\xff\x97\xff\x1f" "\xe6\xf1\xcb\xff\xcb\xff\xb3\xd2\xa0\xe5\xff\x63\xdf\xbf\x10\x6a\x52\x91" "\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\x1f\x0e\x35\xd1\xff\x03\x00\x00\x40" "\x69\xc4\xbe\xff\x23\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x9f\x0a" "\x35\xa9\x48\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xff\x7f\xec\xdd\xc7\x93" "\x65\xe5\x79\xc7\xf1\x3b\xd0\x13\xba\xa8\x72\x79\xe7\x85\x17\x66\xef\x3f" "\x81\x85\x59\xdb\x3b\x6f\xbc\x60\xe3\x8d\xab\x5c\xae\x32\x0e\x38\x27\x06" "\x63\x2b\x0b\xe5\x1c\x50\x16\x0a\x28\x21\x21\x94\x50\x4e\xa0\x84\x84\xb2" "\x90\x84\x72\x0e\x28\x23\xa9\x46\xc5\xf4\xf3\x3c\xdd\x3d\x7d\xfa\xdc\xee" "\x99\xdb\x7d\xcf\x79\xdf\xcf\x67\xa1\x87\x69\x68\xee\x1d\x15\xc5\xf0\x9b" "\x9e\xef\x1c\xfd\xff\xf0\xeb\xeb\xff\xe7\x49\xff\x3f\x4e\xff\xbf\x84\xfe" "\x5f\xff\xaf\xff\xd7\xff\xb3\x52\x53\xeb\xff\x73\xf7\xff\x6d\xdc\xd2\xc9" "\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x36\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xff\x2e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x3e\x6e\xe9" "\x64\xff\xeb\xff\xf5\xff\xcd\xf6\xff\x7f\xa2\xff\xdf\xef\xf5\xf5\xff\xfa" "\xff\x96\xe9\xff\xc7\xe9\xff\x87\x9c\xdc\xfe\x43\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x67\xa5\xa6\xd6\xff\xe7\xee\xff\x87\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x3d\xc8\xdd\xff\x8f\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x5d\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x53\xdc\xd2\xfe\xfe\x3f\xb5\xd8" "\xdb\xff\x9f\x58\xac\xa7\xff\x3f\x75\xe1\x9f\x3b\xe6\xfe\x3f\x33\x5e\xfd" "\x7f\x4b\xfd\xbf\xe7\xff\xef\xfb\xfa\xfa\x7f\xfd\x7f\xcb\x8e\xb7\xff\xbf" "\xe1\xa1\x7f\xf3\xe9\xff\x67\xdf\xff\xef\xa0\xff\xd7\xff\xeb\xff\xf5\xff" "\xac\xd4\xd4\xfa\xff\xdc\xfd\xff\x1c\xb7\xb4\xbf\xff\x01\x00\x00\xa0\x1b" "\xb9\xfb\xff\x25\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x35\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x2d\x6e\xe9\x64\xff\x7b\xfe\xbf\xe7" "\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xd7\xd7\xff\xcf\x93\xe7\xff\x8f\xeb\xa9" "\xff\xbf\xee\xde\x2b\xae\x7d\xe0\xf6\x3f\xbc\xe3\x30\xaf\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xac\xd6\xd4\xfa\xff\xdc\xfd\xff\x1e\xb7\x74\xb2\xff\x01" "\x00\x00\xa0\x07\xb9\xfb\xff\x23\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\xff\x33\x6e\xb1\xff\x01\x00\x00\x60\x86\x36\x07\x3f\x9a\xbb\xff\xbf\xe2" "\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\x8f\xfe\xff\x8c\xfe\x5f\xff\xaf\xff" "\x6f\x81\xfe\x7f\x5c\x4f\xfd\xff\xc5\xbc\xbe\xfe\x5f\xff\xaf\xff\xd7\xff" "\xb3\x5a\x53\xeb\xff\x73\xf7\xff\x77\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e" "\xe4\xee\xff\x9f\xb8\xc5\xfe\x07\x00\x00\x80\xe9\x1a\xfa\x85\xd8\x23\x72" "\xf7\x5f\x1f\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x67\xe3\x96\x4e\xf6" "\xbf\xfe\xff\xe8\xfb\xff\xdf\xea\xff\xe7\xd1\xff\x7b\xfe\xbf\xfe\x5f\xff" "\xdf\x04\xfd\xff\x38\xfd\xff\x12\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4a\x4d" "\xad\xff\xcf\xdd\x7f\x43\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff" "\xdf\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x31\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\xff\x2f\x6e\xe9\x64\xff\xeb\xff\x3d\xff\x5f\xff\xaf" "\xff\xd7\xff\x0f\xbf\xbe\xfe\x7f\x9e\xa6\xdd\xff\x6f\x2c\x7d\x7d\xfd\xbf" "\xfe\x7f\xe6\xfd\xff\x49\xfd\xbf\xfe\x5f\xff\xcf\x4e\x87\xec\xff\x1f\x1c" "\xf9\xd7\xf6\x4a\xfa\xff\xdc\xfd\xff\x1f\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\x1f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x0f\x8f\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x47\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xbf\xe8\xfe\x7f\xef\x3f\x7a\xe7\xe9\xff\x87\xe9\xff\x8f" "\xc7\xb4\xfb\xff\xe5\xba\xe9\xff\x4f\x0c\xff\x5e\x08\xfa\xff\xd9\xf7\xff" "\x9e\xff\xaf\xff\xd7\xff\xb3\xcb\xd4\x9e\xff\x9f\xbb\xff\x91\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x51\x71\xcb\xc8\xfe\x3f\xf4\x4f\xe6" "\x03\x00\x00\x00\x6b\x95\xbb\xff\xd1\x71\x8b\xaf\xff\x03\x00\x00\xc0\xec" "\x65\x75\x96\xbb\xff\x31\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\x3d\xff\x7f\xf8\xf5\xc7\xfa\xff\x3b\x76\xbc\x3f\xfd\xff\xb4\xe8\xff\xc7" "\x4d\xa6\xff\xdf\x87\xfe\x5f\xff\x3f\xe7\xf7\xaf\xff\xd7\xff\xb3\xd7\xd4" "\xfa\xff\xdc\xfd\x8f\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x37" "\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xe3\xe2\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\xf1\x71\x4b\x27\xfb\x7f\xb8\xff\xdf\xfe\xf3\xfa\xff" "\x83\xd1\xff\xef\x7e\xff\xfa\xff\xe1\x7f\x3e\x56\xd5\xff\xe7\xdf\x51\xff" "\x3f\xda\xff\x5f\xed\xf9\xff\x7d\xd2\xff\x8f\xd3\xff\x2f\xb1\xab\xff\xff" "\xf3\x8d\xc5\x42\xff\xaf\xff\xd7\xff\x47\xff\xbf\xb9\xec\xf3\xf5\xff\x0c" "\x99\x5a\xff\x9f\xbb\xff\x09\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb" "\xff\x89\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa4\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\x7f\x72\xdc\xd2\xc9\xfe\xf7\xfc\x7f\xfd\xbf\xfe" "\x7f\x7e\xfd\xbf\xe7\xff\x6f\x59\xe7\xf3\xff\x17\xc7\xde\xff\x6f\xe8\xff" "\x0f\x48\xff\x3f\x4e\xff\xbf\x84\xe7\xff\xeb\xff\xf5\xff\xe3\xcf\xff\x1f" "\xf9\x5d\x00\xf4\xff\x0c\x99\x5a\xff\x9f\xbb\xff\x29\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\xa9\x71\x8b\xfd\x0f\x00\x00\x00\xf3\xb0\xf3" "\xd7\x0e\x5c\xf8\x0b\x4a\x43\xee\xfe\xa7\xc5\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xd3\xe3\x96\x76\xf6\xff\xe8\xb3\x3a\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\xff\x70\xfd\xff\x46\x7d\x4b\xff\xbf\xc5\xf3\xff\xa7\x45\xff\x3f\x4e" "\xff\xbf\x84\xfe\xff\x28\xfa\xf9\x8d\xc6\xfa\xff\x9b\xf7\xfb\xfc\x29\xf4" "\xff\xd7\x1f\x75\xff\x3f\x42\xff\xcf\x90\x5d\xfd\xff\x9d\xdb\x1f\x5f\x57" "\xff\x9f\xbb\xff\x19\x71\x4b\x3b\xfb\x1f\x00\x00\x00\xba\x97\xbb\xff\x99" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xac\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x76\xdc\xd2\xc9\xfe\x3f\xf2\xfe\x7f\xe4\x77\x1f\xd0" "\xff\xeb\xff\xf5\xff\x73\xec\xff\xb7\xe9\xff\xb7\xe8\xff\xa7\x45\xff\x3f" "\x4e\xff\xbf\x84\xfe\xdf\xf3\xff\x3d\xff\x5f\xff\xcf\x4a\xed\xea\xff\x77" "\x58\x57\xff\x9f\xbb\xff\x39\x71\xcb\xe8\xf0\x3b\xbd\xe4\x7b\x09\x00\x00" "\x00\x4c\x49\xee\xfe\xe7\xc6\x2d\x9d\x7c\xfd\x1f\x00\x00\x00\x7a\x90\xbb" "\xff\xe6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x5e\xdc\xd2\xc9\xfe" "\xf7\xfc\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\x7e\x7d\xfd\xff\x3c\x5d\x52" "\x7f\x7f\x99\xfe\xbf\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x9f\x15\x98\x5a" "\xff\x9f\xbb\xff\xf9\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x05" "\x71\x8b\xfd\x0f\x00\x00\x00\x73\x32\xfa\x9b\xf5\xe7\xee\x7f\x61\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x28\x6e\xe9\x64\xff\xeb\xff\x8f\xb6" "\xff\xcf\x8f\xeb\xff\xf5\xff\x0b\xfd\xbf\xfe\x5f\xff\x7f\x2c\xba\x7d\xfe" "\xff\x89\xa1\x1f\x89\xf6\xda\xa7\xff\xbf\xfb\xaf\xcf\xfe\xd9\xee\x8f\xe8" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x9f\x03\xfa\xfd\x91\x3f\x37\x89\xfe\xff" "\xdc\xf6\x7f\x5d\xe6\xee\x7f\x71\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4" "\xee\x7f\x49\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x34\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\x6f\x89\x5b\x0e\xb9\xff\xc7\x9a\x87\x29\xd3" "\xff\x7b\xfe\xbf\xfe\x5f\xff\xaf\xff\x1f\x7e\x7d\xfd\xff\x3c\x75\xdb\xff" "\x1f\x90\xe7\xff\x2f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd4\x24\xfa\xff" "\x1d\xdf\xce\xdd\xff\xb2\xb8\xc5\xd7\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f" "\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x88\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x57\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x0f\xbf\xbe\xfe\x7f\x9e\xf4\xff\xe3\xf4\xff\x4b\xcc\xa9\xff\xbf" "\xe5\x12\xfa\xff\x8d\xe1\x0f\xaf\xbb\x9f\xbf\x54\xeb\x7e\xff\xfa\x7f\xfd" "\x3f\x7b\x4d\xad\xff\xcf\xdd\x7f\x6b\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e" "\xe4\xee\x7f\x55\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x3a\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x13\xb7\x74\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x3f\xfc\xfa\xfa\xff\x79\xd2\xff\x8f\xd3\xff\x2f\x16" "\x8b\xd7\x8d\xbc\x81\xa1\xfe\xff\xdc\xe9\x69\xf6\xff\x9e\xff\x3f\xb9\xf7" "\xaf\xff\xd7\xff\xb3\xd7\xd4\xfa\xff\xdc\xfd\xaf\x8d\x5b\x3a\xd9\xff\x00" "\x00\x00\xd0\x81\x2b\x37\xcf\x9f\x33\xf1\x53\xc1\xf6\x3f\x00\x00\x00\xb4" "\x28\x77\xff\x6d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xfa\xb8\xa5" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xb7\xfb\xff\xfa\x9e\xe8\xff\xf5\xff\xfa" "\xff\xd9\xd2\xff\x8f\xd3\xff\x2f\x31\xa7\xe7\xff\xeb\xff\x27\xf7\xfe\xf5" "\xff\xfa\x7f\xf6\x9a\x5a\xff\x9f\xbb\xff\x0d\x71\x4b\x27\xfb\x1f\x00\x00" "\x00\x7a\x90\xbb\xff\xf6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x63" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x11\xb7\x74\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xe7\xff\xeb\xff\x87\x5f\x5f\xff\x3f\x4f\x47\xd7\xff\x2f" "\xf4\xff\xfa\x7f\xfd\xff\x12\xfa\x7f\xfd\xbf\xfe\x9f\x0b\x4d\xad\xff\xcf" "\xdd\xff\xa6\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xe6\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x4b\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\xbf\x35\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\xf8\xf5\xf5\xff\xf3\xe4\xf9\xff\xe3\xf4\xff\x4b\xe8\xff\xf5\xff\xfa\x7f" "\xfd\x3f\x2b\x35\xdc\xff\x5f\xbf\xb6\xfe\x3f\x77\xff\xdb\xe2\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\x9d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xf6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x47\xdc\xd2\xc9" "\xfe\xd7\xff\xeb\xff\x77\xf7\xff\x8b\x85\xfe\x5f\xff\x7f\xf0\xfe\xff\x06" "\xfd\xff\xa5\xf5\xff\x67\x16\xfa\xff\x95\xd3\xff\x8f\xd3\xff\x2f\xa1\xff" "\x6f\xb3\xff\xbf\x6c\xd1\x50\xff\xbf\xb9\xef\xe7\xeb\xff\x99\xa2\xa9\x3d" "\xff\x3f\x77\xff\x3b\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xbb" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xdd\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\x9e\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\x7b\xfe\xbf\xfe" "\xdf\xf3\xff\x87\x5f\xdf\xf3\xff\xe7\x49\xff\x3f\x4e\xff\xbf\x84\xfe\xff" "\x92\xfa\xff\xfc\xf1\x78\x72\xfd\xbf\xe7\xff\xeb\xff\x59\x9b\xa9\xf5\xff" "\xb9\xfb\xdf\x1b\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xdf\x17\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x8f\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x0f\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\x0f\xbf\xbe\xfe\x7f\x9e\xf4\xff\xe3\xf4\xff\x4b\xe8\xff\xdb\x7c\xfe\x7f" "\x1f\xfd\xff\xe6\x42\xff\xcf\x04\x4d\xad\xff\xcf\xdd\xff\xc1\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x57\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\xdf\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8a\x5b\x3a" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\x9e\xfd\xff\x19\xfd\xbf\xfe\x5f\xff\x3f" "\x68\x2a\xfd\xff\x55\x57\xfd\xe9\x3d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef\xf9" "\xff\xfa\xff\xde\x4d\xad\xff\xcf\xdd\xff\xe1\xb8\xa5\x93\xfd\x0f\x00\x00" "\x00\x3d\xc8\xdd\xff\x91\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x68" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x2c\x6e\xe9\x64\xff\xef\xed" "\xff\x4f\x2e\xb6\x0a\xd5\x2d\x43\xfd\x7f\x34\x6a\xb3\xef\xff\x4f\xef\x78" "\x1f\x49\xff\xaf\xff\x3f\xff\x81\x19\xf4\xff\x0b\xfd\xbf\xfe\x5f\xff\x3f" "\x68\x2a\xfd\xbf\xe7\xff\x5f\xdc\xfb\xd7\xff\xeb\xff\xe7\xfc\xfe\x0f\xd5" "\xff\x5f\xb9\xf7\xf3\xf5\xff\xb4\x68\x6a\xfd\x7f\xee\xfe\x7b\xe2\x96\x4e" "\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xc7\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x13\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x6f\xdc\xd2" "\xc9\xfe\xf7\xfc\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f\x7e\x7d\xfd\xff\x3c" "\xe9\xff\xc7\xe9\xff\x97\x58\x57\xff\x7f\xd9\xf6\xfb\xd5\xff\xcf\xf7\xfd" "\x37\xf3\xfc\xff\xcb\xf5\xff\xac\xce\xd4\xfa\xff\xdc\xfd\x9f\x8c\x5b\x3a" "\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x9f\x8a\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x4f\xc7\x2d\xf6\x3f\x00\x00\x00\xcc\xd6\xe6\x05\xdf\xce\xdd" "\xff\x99\xb8\xa5\x93\xfd\xaf\xff\x3f\x9e\xfe\xff\xf7\xe2\x63\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x3f\x5a\xfa\xff\x71\xfa\xff\x72\xe1\x77\x6d\x4b" "\x3f\xcf\xff\x3f\x33\xf4\xc1\x75\xf7\xf3\x97\x6a\xdd\xef\xbf\x99\xfe\xdf" "\xf3\xff\x59\xa1\xa9\xf5\xff\xb9\xfb\x3f\x1b\xb7\x74\xb2\xff\x01\x00\x00" "\xa0\x07\xb9\xfb\x3f\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x9f\x8f" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x2f\xc4\x2d\x9d\xec\x7f\xfd\x7f" "\x37\xcf\xff\xbf\xff\x54\xb7\xfd\xff\x5f\xea\xff\x2f\x78\x7d\xfd\xbf\xfe" "\xbf\x65\xfa\xff\xfc\x11\x7d\x98\xfe\x7f\x89\x7e\xfa\xff\x41\xeb\xee\xe7" "\xe7\xfe\xfe\xf5\xff\xfa\x7f\xf6\x9a\x5a\xff\x9f\xbb\xff\xbe\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xc5\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xff\x52\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x39\x6e\xe9" "\x64\xff\xeb\xff\xbb\xe9\xff\x6f\xdc\x7a\x9f\x3d\xf6\xff\x9e\xff\xaf\xff" "\xd7\xff\xf7\x44\xff\x3f\x4e\xff\xbf\x84\xfe\x5f\xff\xdf\x7e\xff\x7f\x6a" "\xbf\xcf\xd7\xff\x73\x14\xa6\xd6\xff\xe7\xee\xbf\xff\xc4\x46\x97\xfb\x1f" "\x00\x00\x00\xe6\xea\x2f\xfe\xf8\x6f\xee\x3b\xe8\x5f\x7b\xff\xf9\xff\x3d" "\xb3\xf8\x4a\xdc\x72\xf5\xe2\xdc\x01\xbf\x8c\x0d\x00\x00\x00\x4c\xdc\x43" "\xbb\xff\xc4\xc6\x62\xf1\xd5\xf3\xdf\xf2\xf5\x7f\x00\x00\x00\x68\x51\xee" "\xfe\xaf\xc5\x2d\x9d\xec\x7f\xfd\x7f\x5f\xfd\x7f\x9f\xcf\xff\xd7\xff\xeb" "\xff\xf5\xff\x3d\xd1\xff\x8f\xd3\xff\x2f\xa1\xff\xd7\xff\xb7\xdf\xff\xef" "\x4b\xff\xcf\x51\x98\x5a\xff\x9f\xbb\xff\xeb\x71\xcb\x8e\xe1\xb7\x71\xe8" "\xef\x25\x00\x00\x00\x30\x25\xb9\xfb\xbf\x11\xb7\x74\xf2\xf5\x7f\x00\x00" "\x00\xe8\x41\xee\xfe\x6f\xc6\x2d\x7b\xf6\xbf\xdf\x0e\x10\x00\x00\x00\xe6" "\x2a\x77\xff\xb7\xe2\x96\x4e\xbe\xfe\xbf\xce\xfe\xff\x72\xfd\xff\xf2\xfe" "\x7f\x71\x44\xfd\x7f\xfc\x75\xfa\xff\x2d\xfa\x7f\xfd\xff\xd0\xeb\xeb\xff" "\xe7\x49\xff\x3f\xee\x12\xfb\xff\x73\x27\xf4\xff\xfa\xff\x11\xfa\x7f\xfd" "\xbf\xfe\x9f\x0b\x4d\xad\xff\xcf\xdd\xff\xed\xb8\xa5\x93\xfd\x0f\x00\x00" "\x00\x8d\xda\xf5\x33\x0a\xb9\xfb\xbf\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c" "\xdc\xfd\xdf\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xef\xc5\x2d\x9d" "\xec\x7f\xcf\xff\x3f\xe2\xfe\xff\xa1\xbf\xc1\xee\x7e\x3e\x53\xf5\x23\x7c" "\xfe\xff\x66\xfd\x91\xe7\xff\x77\xde\xff\xdf\x74\x66\xf0\xf5\xf5\xff\xfa" "\xff\x96\xe9\xff\xc7\x79\xfe\xff\x12\xfb\xf4\xff\xf9\x5f\x88\xfa\xff\x71" "\x13\xea\xff\x4f\xeb\xff\xf5\xff\x4c\xc3\xd4\xfa\xff\xdc\xfd\xdf\x8f\x5b" "\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x3f\x88\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x1f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x8f\xe2" "\x96\x4e\xf6\xbf\xfe\x7f\xe2\xcf\xff\xbf\xa8\xfe\xff\x00\xcf\xff\xd7\xff" "\xf7\xd1\xff\xef\xf3\xfa\xed\xf4\xff\x7f\x70\xc5\xd9\xbb\xae\xf9\xab\xdb" "\x6e\xd5\xff\xb3\xed\x38\xfb\xff\xfc\x67\x41\xff\xdf\x7e\xff\xef\xf9\xff" "\xb3\xeb\xff\x3d\xff\x5f\xff\xcf\x44\xac\xbe\xff\xdf\xd8\xf5\xc1\xc3\xf6" "\xff\xb9\xfb\x7f\x1c\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x1f\x88" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9f\xc4\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x4f\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\x3f\x95\xfe\x3f\xff" "\xbf\x5e\x43\xff\x7f\xf6\xa2\xfb\xff\xcd\xc5\x62\xb1\x96\xfe\x3f\x9b\xe2" "\xde\xfb\x7f\xcf\xff\xd7\xff\xef\xe5\xf9\xff\xe3\xf4\xff\x4b\xe8\xff\xf5" "\xff\xfa\x7f\xfd\x3f\x2b\xb5\xfa\xfe\x7f\xf7\x07\x0f\xdb\xff\xe7\xee\xff" "\x59\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x79\xdc\x92\xfb\xff" "\xc4\xa1\x7f\xea\x1e\x00\x00\x00\x98\x98\xdc\xfd\xbf\x88\x5b\x7c\xfd\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\x97\x71\x4b\x27\xfb\x5f\xff\xaf\xff\x9f\x4a" "\xff\x9f\x3c\xff\x7f\xfb\xf3\xda\x7a\xfe\xff\x35\x15\xa7\xf6\xd9\xff\xff" "\x51\xfd\x91\xfe\xff\x68\xe9\xff\xc7\xe9\xff\x97\xd0\xff\xeb\xff\xf5\xff" "\xfa\x7f\x56\x6a\x6a\xfd\x7f\xee\xfe\x5f\xc5\x2d\x9d\xec\x7f\x00\x00\x00" "\xe8\x41\xee\xfe\x07\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xd7\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x9b\xb8\xa5\x93\xfd\xaf\xff\x6f" "\xb5\xff\xcf\x22\x5e\xff\xaf\xff\x9f\x4a\xff\xef\xf9\xff\x9e\xff\x7f\x3c" "\xba\xec\xff\x4f\x1e\xfc\xef\xaf\xff\x5f\x42\xff\xaf\xff\xd7\xff\xeb\xff" "\x59\xa9\xa9\xf5\xff\xb9\xfb\x7f\x17\x00\x00\xff\xff\x00\x67\x60\xd3", 25235); syz_mount_image( /*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_POSIXACL|MS_SYNCHRONOUS|MS_STRICTATIME|MS_SILENT|MS_NOSUID|0xc*/ 0x101801e, /*opts=*/0x200000000100, /*chdir=*/0x24, /*size=*/0x6293, /*img=*/0x200000009000); syscall(__NR_renameat2, /*oldfd=*/-1, /*old=*/0ul, /*newfd=*/-1, /*new=*/0ul, /*flags=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*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=*/0x200001000000ul, /*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; }