// https://syzkaller.appspot.com/bug?id=511ee41424db6837525d63d4967ef22084687c52 // 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 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #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)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 33 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x62b7 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x62b7) // } // ] // returns fd_dir memcpy((void*)0x200000000080, "jfs\000", 4); memcpy((void*)0x200000000440, "./file3\000", 8); memcpy( (void*)0x200000014500, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x42\xd3\xa8" "\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01\x0e\x5c" "\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11\x57\xbe\x70" "\xe0\x8f\x00\x21\x71\x41\x42\x88\x23\x27\xfe\x80\x1e\xb8\x72\xe3\x0f\x20" "\x52\x82\x04\xea\xa9\x83\xc6\x7e\x1e\x67\x3c\x5d\x7b\xed\x38\xbb\xb3\xf6" "\x7c\x3e\x92\x33\xf3\xdb\x67\xc6\xfb\x4c\xbe\x3b\xfb\xe2\x99\xd9\x27\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xf8\xe1\x0f\x7e\x7c" "\xa1\x88\x88\x6b\xbf\x4a\x37\x9c\x8a\xf8\x5c\xf4\x23\x7a\x11\x4b\x55\xbd" "\x12\x11\x4b\x2b\xa7\xf2\xf2\x83\x88\x78\x21\x36\x9b\xe3\xf9\x88\x18\x2e" "\x44\x14\xb9\xf1\xd9\x88\xd7\x23\xe2\xe3\x93\x11\x0f\x1f\xdd\x5b\xad\x6e" "\xba\xb8\xcf\x7e\x7c\xff\x2f\xff\xfc\xc3\x4f\x4e\xfc\xe8\x1f\x7f\x1e\x9e" "\xfb\xdf\x5f\xef\xf4\xdf\xd8\x6d\xb9\xbb\x77\x7f\xfb\xdf\xbf\xdd\x7f\xf2" "\xed\x05\x00\x00\x80\x2e\x2a\xcb\xb2\x2c\xd2\xc7\xfc\xd3\xe9\xf3\x7d\xaf" "\xed\x4e\x01\x00\x33\x91\x5f\xff\xcb\x24\xdf\xae\x9e\xbb\x7a\x7d\xce\xfa" "\xa3\x56\xab\xd5\xea\x23\x58\xd7\x95\xe3\xdd\xaf\x17\x11\xb1\x5e\x5f\xa7" "\x7a\xcf\xe0\x70\x3c\x00\x1c\x31\xeb\xf1\x49\xdb\x5d\xa0\x45\xf2\xef\xb4" "\x41\x44\x9c\x68\xbb\x13\xc0\x5c\x2b\xda\xee\x00\x53\xf1\xf0\xd1\xbd\xd5" "\x22\xe5\x5b\xd4\x5f\x0f\x56\xb6\xda\xf3\xb9\x20\x3b\xf2\x5f\x2f\xb6\xaf" "\xef\xd8\x6d\x3a\x49\xf3\x1c\x93\x59\x3d\xbe\x36\xa2\x1f\xcf\xed\xd2\x9f" "\xa5\x19\xf5\x61\x9e\xe4\xfc\x7b\xcd\xfc\xaf\x6d\xb5\x8f\xd2\x72\xd3\xce" "\x7f\x56\x76\xcb\x7f\xb4\x75\xe9\x53\xe7\xe4\xfc\xfb\xcd\xfc\x1b\x8e\x4f" "\xfe\xbd\xb1\xf9\x77\x55\xce\x7f\x70\xa0\xfc\xfb\xf2\x07\x00\x00\x00\x00" "\x80\x39\x96\xff\xfe\x7f\xaa\xe5\xe3\xbf\x0b\x87\xdf\x94\x7d\xd9\xeb\xf8" "\xef\xca\x8c\xfa\x00\x00\x00\x00\x00\x00\x00\x00\x4f\xdb\x61\xc7\xff\xdb" "\x56\x18\xff\x0f\x00\x00\x00\xe6\x55\xf5\x59\xbd\xf2\xbb\x93\x8f\x6f\xab" "\x9f\xeb\x3f\x8a\x9d\xb7\x5f\x2d\x22\x9e\x69\x2c\x0f\x74\x4c\xba\x58\x66" "\xb9\xed\x7e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x97\x0c\xb6\xce" "\xe1\xbd\x5a\x44\x0c\x23\xe2\x99\xe5\xe5\xb2\x2c\xab\x9f\xba\x66\x7d\x50" "\x87\x5d\xff\xa8\xeb\xfa\xf6\x43\x97\xb5\xfd\x24\x0f\x00\x00\x5b\x3e\x3e" "\xd9\xb8\x96\xbf\x88\x58\x8c\x88\xab\xe9\xbb\xfe\x86\xcb\xcb\xcb\x65\xb9" "\xb8\xb4\x5c\x2e\x97\x4b\x0b\xf9\xfd\xec\x68\x61\xb1\x5c\xaa\x7d\xae\xcd" "\xd3\xea\xb6\x85\xd1\x3e\xde\x10\x0f\x46\x65\xf5\xcb\x16\x6b\xeb\xd5\x4d" "\xfa\xbc\x3c\xa9\xbd\xf9\xfb\xaa\xfb\x1a\x95\xfd\x7d\x74\x6c\x36\x5a\x0c" "\x1c\x00\x22\x62\xeb\xd5\xe8\xa1\x57\xa4\x63\xa6\x2c\x9f\x8d\xb6\xdf\xe5" "\x70\x34\xd8\xff\x8f\x1f\xfb\x3f\xfb\xd1\xf6\xe3\x14\x00\x00\x00\x98\xbe" "\xb2\x2c\xcb\x22\x7d\x9d\xf7\xe9\x74\xcc\xbf\xd7\x76\xa7\x00\x80\x99\xc8" "\xaf\xff\xcd\xe3\x02\x6a\xb5\x5a\xad\x56\xab\x8f\x5f\x5d\x57\x8e\x77\xbf" "\x5e\x44\xc4\x7a\x7d\x9d\xea\x3d\x83\xe1\xf8\x01\xe0\x88\x59\x8f\x4f\xda" "\xee\x02\x2d\x92\x7f\xa7\x0d\x22\xe2\x85\xb6\x3b\x01\xcc\xb5\xa2\xed\x0e" "\x30\x15\x0f\x1f\xdd\x5b\x2d\x52\xbe\x45\xfd\xf5\x20\x8d\xef\x9e\xcf\x05" "\xd9\x91\xff\x7a\xb1\xb9\x5e\x5e\x7f\xdc\x74\x92\xe6\x39\x26\xb3\x7a\x7c" "\x6d\x44\x3f\x9e\xdb\xa5\x3f\xcf\xcf\xa8\x0f\xf3\x24\xe7\xdf\x6b\xe6\x7f" "\x6d\xab\x7d\x94\x96\x9b\x76\xfe\xb3\xb2\x5b\xfe\xd5\x76\x9e\x6a\xa1\x3f" "\x6d\xcb\xf9\xf7\x9b\xf9\x37\x1c\x9f\xfc\x7b\x63\xf3\xef\xaa\x9c\xff\xe0" "\x40\xf9\xf7\xe5\x0f\x00\x00\x00\x00\x00\x73\x2c\xff\xfd\xff\xd4\x5c\x1d" "\xff\x1d\x3d\xe9\xe6\x4c\xb4\xd7\xf1\xdf\x95\xa9\xdd\x2b\x00\x00\x00\x00" "\x00\x00\x00\x4c\xd7\xc3\x47\xf7\x56\xf3\x75\xaf\xf9\xf8\xff\x17\xc6\x2c" "\xe7\xfa\xcf\xe3\x29\xe7\x5f\xc8\xbf\x93\x72\xfe\xbd\x46\xfe\x5f\x6d\x2c" "\xd7\xaf\xcd\x3f\x78\xfb\x71\xfe\xff\x79\x74\x6f\xf5\x8f\x77\xfe\xfd\xf9" "\x3c\xdd\x6f\xfe\x0b\x79\xa6\x48\x8f\xac\x22\x3d\x22\x8a\x74\x4f\xc5\x20" "\x4d\x0f\xb3\x75\x9f\xb5\x31\xec\x8f\xaa\x7b\x1a\x16\xbd\xfe\x20\x9d\xf3" "\x53\x0e\xdf\x8d\x1b\x71\x33\xd6\xe2\xfc\x8e\x65\x7b\xe9\xff\xe3\x71\xfb" "\x85\x1d\xed\x55\x4f\x87\x9b\xed\x65\x7f\xab\xfd\xe2\x8e\xf6\xc1\x76\x7b" "\x5e\xff\xd2\x8e\xf6\x61\x3a\xd3\xa9\x5c\xca\xed\x67\x63\x35\x7e\x1e\x37" "\xe3\x9d\xcd\xf6\xaa\x6d\x61\xc2\xf6\x2f\x4e\x68\x2f\x27\xb4\xe7\xfc\xfb" "\x4f\x6d\xff\xdf\xdf\xb7\xc1\xda\xff\xe7\x43\xce\x7f\x50\xfb\xa9\xf2\x5f" "\x4e\xed\x45\x63\x5a\x79\xf0\x51\xef\x33\xfb\x7d\x7d\x3a\xee\x7e\xde\xba" "\xf1\xc5\xdf\x9c\x9f\xfe\xe6\x4c\xb4\x11\xfd\xed\x6d\xab\xab\xb6\xef\xa5" "\x16\xfa\xb3\xf9\x7f\x72\x62\x14\xbf\xbc\xbd\x76\xeb\xec\xdd\xeb\x77\xee" "\xdc\xba\x10\x69\xb2\xe3\xd6\x8b\x91\x26\x4f\x59\xce\x7f\x98\x7e\xb6\x9f" "\xff\x5f\xde\x6a\xcf\xcf\xfb\xf5\xfd\xf5\xc1\x47\xa3\x03\xe7\x3f\x2f\x36" "\x62\xb0\x6b\xfe\x2f\xd7\xe6\xab\xed\x7d\x65\xc6\x7d\x6b\x43\xce\x7f\x94" "\x7e\x72\xfe\xef\xa4\xf6\xf1\xfb\xff\x01\xf2\xef\xfd\x69\x66\xdb\xb2\x1f" "\x7b\xed\xff\xaf\xb6\xd0\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xd8\x4b\x59\x96\x9b\x97\x88\xbe\x15\x11\x97\xd3\xf5\x3f\x6d\x5d\x9b" "\x09\x00\xcc\x56\x7e\xfd\x2f\x93\x7c\xfb\xac\xea\xfe\x8c\xef\x4f\xad\x3e" "\xe2\x75\x31\x67\xfd\x99\x69\xfd\x69\x39\x5f\xfd\x51\xab\x8f\x62\x5d\x57" "\x8e\xf7\x66\xbd\x88\x88\xbf\xd7\xd7\xa9\xde\x33\xfc\x7a\xdc\x2f\x03\x00" "\xe6\xd9\xa7\x11\xf1\xaf\xb6\x3b\x41\x6b\xe4\xdf\x61\xf9\xfb\xfe\xaa\xe9" "\x99\xb6\x3b\x03\xcc\xd4\xed\x0f\x3e\xfc\xe9\xf5\x9b\x37\xd7\x6e\xdd\x6e" "\xbb\x27\x00\x00\x00\x00\x00\x00\x00\xc0\x93\xca\xe3\x7f\xae\xd4\xc6\x7f" "\x3e\x53\x96\x65\x73\x14\xe7\x1d\xe3\xbf\xbe\x1d\x2b\x87\x1d\xff\x75\x90" "\x67\xb6\x07\x18\xdd\x65\xa0\xea\xfe\xc1\xb7\x69\x2f\x1b\xbd\x51\xbf\x57" "\x1b\x6e\xfc\xc5\xd8\x6d\xfc\xef\xe1\xf6\xdc\x5e\xe3\x7f\x0f\x26\xdc\xdf" "\x70\x42\xfb\x68\x42\xfb\xc2\x84\xf6\xc5\x09\xed\x63\x2f\xf4\xa8\xc9\xf9" "\xbf\x58\x1b\xef\xfc\x4c\x44\x9c\x6e\x0c\xbf\xfe\xc4\xe3\xbf\xce\x99\xbd" "\xc6\x7f\x6d\x8e\x79\xdf\x05\x39\xff\x97\x6a\x8f\xe7\x2a\xff\xaf\x34\x96" "\xab\xe7\x5f\xfe\xfe\x28\xe7\xdf\xdb\x91\xff\xb9\x3b\xef\xff\xe2\xdc\xed" "\x0f\x3e\x7c\xed\xc6\xfb\xd7\xdf\x5b\x7b\x6f\xed\x67\x97\x2e\x5c\x38\x7f" "\xe9\xf2\xe5\x2b\x57\xae\x9c\x7b\xf7\xc6\xcd\xb5\xf3\x5b\xff\xb6\xd8\xe3" "\xe9\xca\xf9\xe7\xb1\xaf\x9d\x07\xda\x2d\x39\xff\x9c\xb9\xfc\xbb\x25\xe7" "\xff\xa5\x54\xcb\xbf\x5b\x72\xfe\x5f\x4e\xb5\xfc\xbb\x25\xe7\x9f\xdf\xef" "\xc9\xbf\x5b\x72\xfe\xf9\xb3\x8f\xfc\xbb\x25\xe7\xff\x4a\xaa\xe5\xdf\x2d" "\x39\xff\xaf\xa5\x5a\xfe\xdd\x92\xf3\x7f\x35\xd5\xf2\xef\x96\x9c\xff\xd7" "\x53\x2d\xff\x6e\xc9\xf9\xbf\x96\x6a\xf9\x77\x4b\xce\xff\x6c\xaa\xe5\xdf" "\x2d\x39\xff\x73\xa9\xde\x67\xfe\x4b\xd3\xee\x17\xb3\x91\xf3\xcf\x47\xb8" "\xec\xff\xdd\x92\xf3\xcf\x67\x36\xc8\xbf\x5b\x72\xfe\x17\x53\x2d\xff\x6e" "\xc9\xf9\x5f\x4a\xb5\xfc\xbb\x25\xe7\xff\x7a\xaa\xe5\xdf\x2d\x39\xff\x6f" "\xa4\x5a\xfe\xdd\x92\xf3\xbf\x9c\x6a\xf9\x77\x4b\xce\xff\x9b\xa9\x96\x7f" "\xb7\xe4\xfc\xaf\xa4\x5a\xfe\xdd\x92\xf3\xff\x56\xaa\xe5\xdf\x2d\x39\xff" "\x6f\xa7\x5a\xfe\xdd\x92\xf3\x7f\x23\xd5\xf2\xef\x96\x9c\xff\x77\x52\x2d" "\xff\x6e\xc9\xf9\x7f\x37\xd5\xf2\xef\x96\x9c\xff\xf7\x52\x2d\xff\x6e\xc9" "\xf9\xbf\x99\x6a\xf9\x77\xcb\xe3\xef\xff\x37\x63\xc6\x8c\x99\x3c\xd3\xf6" "\x33\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x34\x8b\xd3\x89\xdb" "\xde\x46\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x3f\x3b\x70\x20\x00" "\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\xd8\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xc2\xde\xdd\xc5\xc8\x75\xd6\xf7\x03\x3f\xb3\x6f\xde\x38" "\x90\x18\x08\xf9\x3b\xf9\x9b\xb0\x71\x4c\x08\xce\x26\xbb\x7e\x89\x5f\x68" "\x5d\x4c\x78\x6d\x78\x2b\x09\xa1\xd0\x17\x6c\xd7\xbb\x36\x0b\x7e\xc3\x6b" "\x97\x40\xa3\xda\x51\xa0\x44\xc2\xa8\xb4\xa2\x6d\xb8\x68\x0b\x08\xb5\xb9" "\xa9\xb0\x2a\x2e\x68\x05\x28\x17\xa8\x55\xa5\x4a\xd0\x5e\xd0\x1b\x44\x85" "\xca\x45\x54\x05\x14\x90\x2a\xb5\x15\xb0\xd5\xcc\x79\x9e\x67\x67\x66\x67" "\x67\x76\xbd\xb3\xeb\x33\xe7\x7c\x3e\x92\xfd\xf3\xce\x9c\x99\xf3\x9c\x33" "\xcf\x39\xb3\xbf\x5d\x7f\xe7\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\xb3\x3b\xdf\x30\xfb\xa9\x5a\x96\x65\xb5\x5a\x2d\xbf\x61\x4b" "\x96\xbd\xa8\x5e\x6f\x98\xd8\xd2\xb8\xe5\xb5\xd7\x77\x7c\x00\x00\x00\xc0" "\xda\xfd\xbc\xf1\xf7\x0b\x37\xa7\x1b\x0e\xaf\xe0\x41\x4d\xcb\xfc\xe3\x1d" "\xdf\xfe\xea\xc2\xc2\xc2\x42\xf6\xbe\xe1\x3f\x19\xfd\xdc\xc2\x42\xba\x63" "\x22\xcb\x46\x37\x65\x59\xe3\xbe\xe8\xea\x0f\xde\x5f\x6b\x5e\x26\x78\x32" "\x1b\xaf\x0d\x35\x7d\x3d\xd4\x63\xf5\xc3\x3d\xee\x1f\xe9\x71\xff\x68\x8f" "\xfb\xc7\x7a\xdc\xbf\xa9\xc7\xfd\xe3\x3d\xee\x5f\xb2\x03\x96\xb8\x21\xab" "\xa5\x27\xdb\xd1\xf8\xe7\x96\x7c\x97\x66\xb7\x64\xa3\x8d\xfb\x76\x74\x78" "\xd4\x93\xb5\x4d\x43\xf5\x7d\x97\x1e\x9b\xd5\x1a\x8f\x59\x18\x3d\x91\xcd" "\x65\xa7\xb2\xd9\x6c\xba\x65\xf9\x7c\xd9\x5a\x63\xf9\xaf\xdf\x59\x5f\xd7" "\x5b\xb3\xb8\xae\xa1\xa6\x75\x6d\xab\xcf\x90\x9f\x3c\x7e\x3c\x8e\xa1\x16" "\xf6\xf1\x8e\x96\x75\x2d\x3e\x67\xf4\xa3\xd7\x67\x13\x3f\xfd\xc9\xe3\xc7" "\xff\xea\xc2\xf3\xb7\x75\xaa\x3d\x77\x43\xcb\xf3\xe5\xe3\xbc\x67\x7b\x7d" "\x9c\x9f\x08\xb7\xe4\x63\xad\x65\x9b\xd2\x3e\x89\xe3\x1c\x6a\x1a\xe7\xb6" "\x0e\xaf\xc9\x70\xcb\x38\x6b\x8d\xc7\xd5\xff\xdd\x3e\xce\x17\x56\x38\xce" "\xe1\xc5\x61\x6e\xa8\xf6\xd7\x7c\x3c\x1b\x6a\xfc\xfb\x3b\x8d\xfd\x34\x52" "\xcb\x3a\xec\xa7\x6d\xe1\xb6\xff\xbe\x2b\xcb\xb2\xcb\x8b\xc3\x6e\x5f\x66" "\xc9\xba\xb2\xa1\x6c\x73\xcb\x2d\x43\x8b\xaf\xcf\x78\x3e\x23\xeb\xcf\x51" "\x9f\x4a\x2f\xcd\x46\xba\xcf\xd3\x85\x5a\xcb\x3c\xbd\x73\x05\xf3\xb4\x5e" "\x67\x76\xb4\xce\xd3\xf6\x63\x22\xbe\xfe\x77\x86\xc7\x8d\x2c\x33\x86\xe6" "\x97\xe9\x47\x4f\x8c\x35\xbd\xee\x3f\x5b\xb8\x96\x79\x1a\xd5\xb7\x7a\xb9" "\x63\xa5\x7d\x0e\xf6\xfb\x58\x29\xca\x1c\x8c\xf3\xe2\x3b\x8d\x8d\x7e\xaa" "\xe3\x1c\xdc\x11\xb6\xff\xf1\xbb\x97\x9f\x83\x1d\xe7\x4e\x87\x39\x98\xb6" "\xbb\x69\x0e\x6e\xef\x35\x07\x87\xc6\x86\x1b\x63\x4e\x2f\x42\xad\xf1\x98" "\xc5\x39\xb8\xab\x65\xf9\xe1\xc6\x9a\x6a\x8d\xfa\xdc\xdd\xdd\xe7\xe0\xd4" "\x85\xd3\xe7\xa6\xe6\x3f\xf6\xf1\xfb\xe6\x4e\x1f\x3b\x39\x7b\x72\xf6\xcc" "\x9e\x5d\xbb\xa6\xf7\xec\xdb\x77\xe0\xc0\x81\xa9\x13\x73\xa7\x66\xa7\xf3" "\xbf\xaf\x71\x6f\x17\xdf\xe6\x6c\x28\x1d\x03\xdb\xc3\xbe\x8b\xc7\xc0\xab" "\xdb\x96\x6d\x9e\xaa\x0b\x5f\x1c\x5b\x72\xfe\xbd\xd6\xe3\x70\xbc\xcb\x71" "\xb8\xa5\x6d\xd9\x7e\x1f\x87\x23\xed\x1b\x57\xdb\x98\x03\x72\xe9\x9c\xce" "\x8f\x8d\xf7\xd4\x77\xfa\xf8\x95\xa1\x6c\x99\x63\xac\xf1\xfa\xec\x5c\xfb" "\x71\x98\xb6\xbb\xe9\x38\x1c\x69\x3a\x0e\x3b\xbe\xa7\x74\x38\x0e\x47\x56" "\x70\x1c\xd6\x97\x39\xb7\x73\x65\xdf\xb3\x8c\x34\xfd\xe9\x34\x86\xe5\xdf" "\x0b\xd6\x36\x07\xb7\x34\xcd\xc1\xf6\xef\x47\xda\xe7\x60\xbf\xbf\x1f\x29" "\xca\x1c\x1c\x0f\xf3\xe2\x7b\x3b\x97\x7f\x2f\xd8\x16\xc6\xfb\xd4\xe4\x6a" "\xbf\x1f\x19\x5e\x32\x07\xd3\xe6\x86\x73\x4f\xfd\x96\xf4\xfd\xfe\xf8\x81" "\x46\xe9\x34\x2f\x6f\xaf\xdf\x71\xe3\x58\x76\x71\x7e\xf6\xfc\xfd\x8f\x1d" "\xbb\x70\xe1\xfc\xae\x2c\x94\x0d\xf1\xb2\xa6\xb9\xd2\x3e\x5f\x37\x37\x6d" "\x53\xb6\x64\xbe\x0e\xad\x7a\xbe\x1e\x9e\xbb\xe3\xa9\xdb\x3b\xdc\xbe\x25" "\xec\xab\xf1\xfb\xea\x7f\x8d\x2f\xfb\x5a\xd5\x97\xd9\x7b\x7f\xf7\xd7\xaa" "\xf1\xee\xd6\x79\x7f\xb6\xdc\xba\x3b\x0b\xa5\xcf\xc2\xfe\x5c\xd8\xb4\x41" "\xfb\xb3\xd3\xbb\x79\x7d\x7f\x8e\x65\xd9\xe7\xbf\xf5\xc4\xc3\xdf\x78\xfc" "\xf3\x6f\x58\x76\x7f\xd6\xfb\xcd\x4f\x4c\xad\xfd\x7b\xf1\xd4\x97\x36\x9d" "\x7f\x47\x97\x39\xff\xc6\xbe\xff\x17\xf9\xfa\xd2\x53\x3d\x39\x3c\x3a\x92" "\x1f\xbf\xc3\x69\xef\x8c\xb6\x9c\x8f\x5b\x5f\xaa\x91\xc6\xb9\xab\xd6\x58" "\xf7\x0b\x53\x2b\x3b\x1f\x8f\x86\x3f\x1b\x7d\x3e\xbe\xa5\xcb\xf9\x78\x6b" "\xdb\xb2\xfd\x3e\x1f\x8f\xb6\x6f\x5c\x3c\x1f\xd7\x7a\xfd\xb4\x63\x6d\xda" "\x5f\xcf\xf1\x30\x4f\x4e\x4d\x77\x3f\x1f\xd7\x97\xd9\xba\x7b\xb5\x73\x72" "\xa4\xeb\xf9\xf8\xae\x50\x6b\x61\xff\xbf\x26\x74\x0a\xa9\x2f\x6a\x9a\x3b" "\xcb\xcd\xdb\xb4\xae\x91\x91\xd1\xb0\x5d\x23\x71\x0d\xad\xf3\x74\x4f\xcb" "\xf2\xa3\xa1\x37\xab\xaf\xeb\x99\xdd\xd7\x36\x4f\xef\xb9\x2b\x7f\xae\xe1" "\xb4\x75\x8b\x36\x6a\x9e\x4e\xb4\x2d\xdb\xef\x79\x9a\x7e\xf6\xb5\xdc\x3c" "\xad\xf5\xfa\xe9\xdb\xb5\x69\x7f\x3d\xc7\xc3\xbc\xb8\x65\x4f\xf7\x79\x5a" "\x5f\xe6\xd9\xbd\x6b\x3f\x77\xde\x10\xff\xd9\x74\xee\x1c\xeb\x35\x07\x47" "\x87\xc7\xea\x63\x1e\x4d\x93\xb0\x71\xbe\xcf\x16\x6e\x88\x73\xf0\xfe\xec" "\x78\x76\x36\x3b\x95\xcd\x34\xee\x1d\x6b\xcc\xa7\x5a\x63\x5d\x93\x0f\xac" "\x6c\x0e\x8e\x85\x3f\x1b\x7d\xae\xdc\xda\x65\x0e\xde\xd3\xb6\x6c\xbf\xe7" "\x60\x7a\x1f\x5b\x6e\xee\xd5\x46\x96\x6e\x7c\x1f\xb4\xbf\x9e\xe3\x61\x5e" "\x3c\xfd\x40\xf7\x39\x58\x5f\xe6\x8d\xfb\xfb\xfb\xbd\xeb\x3d\xe1\x96\xb4" "\x4c\xd3\xf7\xae\xed\x3f\x5f\x5b\xee\x67\x5e\xb7\xb7\xed\xa6\xf5\x9a\x2b" "\x23\x61\x9c\xdf\xda\xdf\xfd\x67\xb3\xf5\x65\x4e\x1d\x58\x6d\x9f\xd9\x7d" "\x3f\xdd\x1b\x6e\xb9\xb1\xc3\x7e\x6a\x3f\x7e\x97\x3b\xa6\x66\xb2\x8d\xd9" "\x4f\x5b\xc3\x38\x9f\x3f\xb0\xfc\x7e\xaa\x8f\xa7\xbe\xcc\xe7\x0e\xae\x70" "\x3e\x1d\xce\xb2\xec\xd2\x47\x1e\x6c\xfc\xbc\x37\xfc\x7e\xe5\x6f\x2f\x7e" "\xf7\xab\x2d\xbf\x77\xe9\xf4\x3b\x9d\x4b\x1f\x79\xf0\xc7\x2f\x3e\xf1\x0f" "\xab\x19\x3f\x00\x83\xef\x17\x79\xd9\x9c\xbf\xd7\x35\xfd\x66\x6a\x25\xbf" "\xff\x07\x00\x00\x00\x06\x42\xec\xfb\x87\x42\x4d\xf4\xff\x00\x00\x00\x50" "\x1a\xb1\xef\x8f\xff\x2b\x3c\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x24" "\xd4\xa4\x22\xfd\xff\xd6\x37\x3e\x3f\xf7\x8b\x4b\x59\x4a\xe6\x2f\x04\xf1" "\xfe\xb4\x1b\x1e\xca\x97\x8b\x19\xd7\xe9\xf0\xf5\xc4\xc2\xa2\xfa\xed\x0f" "\x7e\x79\xf6\xbf\xfe\xfe\xd2\xca\xd6\x3d\x94\x65\xd9\xcf\x1e\xfa\xbd\x8e" "\xcb\x6f\x7d\x28\x8e\x2b\x37\x11\xc6\x79\xf5\x4d\xad\xb7\x2f\xf1\xd5\xfb" "\x56\xb4\xee\xa3\x8f\x5e\x4a\xeb\x6d\xce\xaf\x7f\x21\x3c\x7f\xdc\x9e\x95" "\x4e\x83\x4e\x11\xdc\xe9\x2c\xcb\xbe\x7e\xf3\x67\x1a\xeb\x99\x78\xff\x95" "\x46\x7d\xf6\xa1\xa3\x8d\xfa\xf0\xe5\xa7\x9e\xac\x2f\xf3\xc2\xc1\xfc\xeb" "\xf8\xf8\xe7\x5e\x96\x2f\xff\xe7\x21\xfc\x7b\xf8\xc4\xb1\x96\xc7\x3f\x17" "\xf6\xc3\x0f\x43\x9d\x7e\x5b\xe7\xfd\x11\x1f\xf7\x95\x2b\xaf\xd9\xb6\xff" "\xbd\x8b\xeb\x8b\x8f\xab\x6d\xbf\xa9\xb1\xd9\x4f\x7f\x20\x7f\xde\xf8\x39" "\x39\x9f\x7d\x32\x5f\x3e\xee\xe7\xe5\xc6\xff\x8d\x4f\x3f\xf3\x95\xfa\xf2" "\x8f\xbd\xaa\xf3\xf8\x2f\x0d\x75\x1e\xff\x33\xe1\x79\xbf\x1c\xea\xff\xbc" "\x22\x5f\xbe\xf9\x35\xa8\x7f\x1d\x1f\xf7\xc9\x30\xfe\xb8\xbe\xf8\xb8\xfb" "\xbf\xf4\xcd\x8e\xe3\xbf\xfa\xa9\x7c\xf9\x73\x6f\xce\x97\x3b\x1a\x6a\x5c" "\xff\x3d\xe1\xeb\x1d\x6f\x7e\x7e\xae\x79\x7f\x3d\x56\x3b\xd6\xb2\x5d\xd9" "\x5b\xf2\xe5\xe2\xfa\xa7\xbf\xfb\x87\x8d\xfb\xe3\xf3\xc5\xe7\x6f\x1f\xff" "\xf8\x91\x2b\x2d\xfb\xa3\x7d\x7e\x3c\xfb\xaf\xf9\xf3\x4c\xb5\x2d\x1f\x6f" "\x8f\xeb\x89\xfe\xae\x6d\xfd\xf5\xe7\x69\x9e\x9f\x71\xfd\xcf\xfc\xc1\xd1" "\x96\xfd\xdc\x6b\xfd\x57\x1f\x7e\xee\x15\xf5\xe7\x6d\x5f\xff\xbd\x6d\xcb" "\x9d\xfb\xc8\xce\xc6\xfa\x17\x9f\xaf\xf5\x13\x9b\xfe\xe2\x93\x9f\xe9\xb8" "\xbe\x38\x9e\xc3\x7f\x73\xae\x65\x7b\x0e\xbf\x3b\x1c\xc7\x61\xfd\x4f\x7f" "\x20\xcc\xc7\x70\xff\xff\x5e\xcd\x9f\xaf\xfd\xd3\x15\x8e\xbe\xbb\xf5\xfc" "\x13\x97\xff\xc2\x96\x4b\x2d\xdb\x13\xbd\xf5\xa7\xf9\xfa\xaf\xbe\xee\x64" "\xa3\x6e\x1a\xbf\x61\xf3\x8d\x2f\x7a\xf1\x4d\x97\x5f\x59\xdf\x77\x59\xf6" "\x9d\x4d\xf9\xf3\xf5\x5a\xff\xc9\xbf\x3c\xdb\x32\xfe\x2f\xde\x9a\xef\x8f" "\x78\x7f\xcc\xe8\xb7\xaf\x7f\x39\x71\xfd\xe7\x3f\x3a\x79\xe6\xec\xfc\xc5" "\xb9\x99\xb4\x57\x1f\xbf\xb9\xf1\xd9\x39\x6f\xcf\xc7\x13\xc7\x7b\x73\x38" "\xb7\xb6\x7f\x7d\xe4\xec\x85\x0f\xce\x9e\x9f\x98\x9e\x98\xce\xb2\x89\xf2" "\x7e\x84\xde\x35\xfb\x52\xa8\x3f\xce\xcb\xe5\xee\x4b\x2f\x2c\x39\x83\xee" "\x7c\x34\xbc\x9e\xb7\xff\xd9\xd7\x37\xdf\xfd\x2f\x9f\x8e\xb7\xff\xdb\x7b" "\xf2\xdb\xaf\xbc\x2d\x7f\xdf\x7a\x75\x58\xee\xb3\xe1\xf6\x2d\xe1\xf5\x5b" "\xdd\xfa\x97\x7a\xfa\xce\x5b\x1b\xc7\x77\xed\xd9\x30\xc2\x85\xa5\x9f\x17" "\xbc\x16\xdb\x76\xfc\xe7\x81\x15\x2d\x18\xb6\xbf\xfd\xfb\x82\x38\xdf\xcf" "\xbd\xfc\x83\x8d\xfd\x50\xbf\xaf\xf1\xbe\x11\x8f\xeb\x35\x8e\xff\xfb\x33" "\xf9\xf3\x7c\x2d\xec\xd7\x85\xf0\xc9\xcc\xdb\x6f\x5d\x5c\x5f\xf3\xf2\xf1" "\xb3\x11\xae\x3c\x92\x1f\xef\x6b\xde\x7f\xe1\x34\x17\x5f\xd7\xbf\x0e\xaf" "\xf7\x3b\x7e\x98\x3f\x7f\x1c\x57\xdc\xde\xef\x87\xef\x63\xbe\xb9\xb5\xf5" "\x7c\x17\xe7\xc7\xd7\x2e\x0d\xb5\x3f\x7f\xe3\x53\x3c\x2e\x87\xf3\x49\x76" "\x39\xbf\x3f\x2e\x15\xf7\xf7\x95\x17\x6e\xed\x38\xbc\xf8\x39\x24\xd9\xe5" "\xdb\x1a\x5f\xff\x71\x7a\x9e\xdb\x56\xb5\x99\xcb\x99\xff\xd8\xfc\xd4\xa9" "\xb9\x33\x17\x1f\x9b\xba\x30\x3b\x7f\x61\x6a\xfe\x63\x1f\x3f\x72\xfa\xec" "\xc5\x33\x17\x8e\x34\x3e\xcb\xf3\xc8\x87\x7a\x3d\x7e\xf1\xfc\xb4\xb9\x71" "\x7e\x9a\x99\xdd\xb7\x37\x6b\x9c\xad\xce\xe6\x65\x9d\x5d\xef\xf1\x9f\x7b" "\xf4\xf8\xcc\xfe\xe9\xbb\x67\x66\x4f\x1c\xbb\x78\xe2\xc2\xa3\xe7\x66\xcf" "\x9f\x3c\x3e\x3f\x7f\x7c\x76\x66\xfe\xee\x63\x27\x4e\xcc\x7e\xb4\xd7\xe3" "\xe7\x66\x0e\xed\xda\x7d\x70\xcf\xfe\xdd\x93\x27\xe7\x66\x0e\x1d\x38\x78" "\x70\xcf\xc1\xc9\xb9\x33\x67\xeb\xc3\xc8\x07\xd5\xc3\xbe\xe9\x0f\x4f\x9e" "\x39\x7f\xa4\xf1\x90\xf9\x43\x7b\x0f\xee\x7a\xe0\x81\xbd\xd3\x93\xa7\xcf" "\xce\xcc\x1e\xda\x3f\x3d\x3d\x79\xb1\xd7\xe3\x1b\xef\x4d\x93\xf5\x47\xff" "\xee\xe4\xf9\xd9\x53\xc7\x2e\xcc\x9d\x9e\x9d\x9c\x9f\xfb\xf8\xec\xa1\x5d" "\x07\xf7\xed\xdb\xdd\xf3\xd3\x00\x4f\x9f\x3b\x31\x3f\x31\x75\xfe\xe2\x99" "\xa9\x8b\xf3\xb3\xe7\xa7\xf2\x6d\x99\xb8\xd0\xb8\xb9\xfe\xde\xd7\xeb\xf1" "\x94\xd3\xfc\xbf\xe7\xdf\xcf\xb6\xab\xe5\x1f\xc4\x97\xbd\xeb\xde\x7d\xe9" "\xf3\x59\xeb\xbe\xfc\xc4\xb2\x4f\x95\x2f\xd2\xf6\x01\xa2\xcf\x87\xcf\xa2" "\xf9\xa7\x97\x9c\x3b\xb0\x92\xaf\x63\xdf\x3f\x1a\x6a\x52\x91\xfe\x1f\x00" "\x00\x00\xaa\x20\xf6\xfd\x63\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7" "\x6f\x0a\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x3c\xd4\xa4\x22\xfd" "\x7f\xe9\xf2\xff\x5b\x2f\xad\x68\xfd\xf2\xff\xf2\xff\xcd\xfb\x4b\xfe\xbf" "\x62\xf9\xff\x47\x8a\x96\xff\xcf\xcf\x17\xf2\xff\xfd\xb1\xd6\xfc\xbd\xfc" "\x7f\x20\xff\x2f\xff\x2f\xff\x3f\x30\xf9\xff\x85\xf0\x86\x24\xff\x4f\x11" "\x15\x2d\xff\x1f\xfb\xfe\x1b\xb2\xac\x92\xfd\x3f\x00\x00\x00\x54\x41\xec" "\xfb\x37\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\x7f\x63\xa8\x89\xfe" "\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x2f\x0a\x35\xa9\x48\xff\xbf\xd2\xfc\xff" "\x88\xfc\x7f\x57\xf2\xff\xad\xe3\x97\xff\xef\x3c\x3f\xe4\xff\xe5\xff\xe5" "\xff\xd7\x9f\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\x4f\x65\xd5\xca\xff\x5f\xee" "\xe7\xf8\x5d\xff\x5f\xfe\x9f\xa5\x8a\x96\xff\x8f\x7d\xff\x8b\x43\x4d\x2a" "\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\xa6\x50\x13\xfd\x3f\x00\x00\x00" "\x94\x46\xec\xfb\x6f\x0e\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x4b" "\xa8\x49\x45\xfa\x7f\xd7\xff\x97\xff\x97\xff\x97\xff\x97\xff\xef\xbc\x7e" "\xf9\xff\xc1\x54\x94\xfc\x7f\x76\x8d\xeb\x97\xff\x97\xff\xbf\xde\xf9\x7f" "\xd7\xff\x97\xff\x97\xff\xa7\x9f\x8a\x96\xff\x8f\x7d\xff\x4b\x42\x4d\x2a" "\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\xa5\xa1\x26\xfa\x7f\x00\x00\x00" "\x28\x9e\x91\x6b\x7b\x58\xec\xfb\x5f\x16\x6a\xb2\xa4\xff\xbf\xc6\x15\x00" "\x00\x00\x00\xd7\x5d\xec\xfb\x6f\xc9\xda\x82\xe0\x15\xf9\xfd\xbf\xfc\xbf" "\xfc\x7f\xf1\xf3\xff\x9b\xd2\x7d\xf2\xff\xf2\xff\x59\x21\xf3\xff\xc3\x99" "\xfc\x7f\x71\x14\x25\xff\xef\xfa\xff\xd7\x36\x7e\xf9\x7f\xf9\xff\x41\x1e" "\xbf\xfc\xbf\xfc\x3f\x4b\x15\x2d\xff\xdf\xe8\xfb\xb3\xf1\xec\xe5\xa1\x26" "\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf\x7f\x6b\xa8\x89\xfe\x1f\x00\x00" "\x00\x4a\x23\xf6\xfd\xff\x2f\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe" "\xad\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff\xaf\x77\xfe\x7f\xb4\x6d\xec\xae" "\xff\xbf\xf8\x38\xf9\xff\x5c\xf1\xf3\xff\xae\xff\x5f\x24\xf2\xff\xdd\xc9" "\xff\xf7\x20\xff\x2f\xff\x2f\xff\x2f\xff\x4f\x5f\x15\x2d\xff\x1f\xfb\xfe" "\xdb\x42\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\xf6\x50\x13\xfd" "\x3f\x00\x00\x00\x94\x46\xec\xfb\xff\x7f\xa8\x89\xfe\x1f\x00\x00\x00\x4a" "\x23\xf6\xfd\xdb\x42\x4d\x2a\xd2\xff\xcb\xff\x17\x3c\xff\x1f\x93\xa3\x25" "\xce\xff\xf7\xbe\xfe\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\xff\xca\xc9\xff\x77" "\x27\xff\xdf\x83\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x7d\x55\xb4\xfc\x7f\xec" "\xfb\x5f\x11\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\x77\x84\x9a" "\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xff\xca\x50\x13\xfd\x3f\x00\x00\x00" "\x94\x46\xec\xfb\x27\x42\x4d\x2a\xd2\xff\xcb\xff\x17\x3c\xff\x9f\xe7\xe0" "\xc7\xca\x7c\xfd\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\x7e\x92\xff\xef\x4e" "\xfe\xbf\x87\x70\x9a\xfb\x51\x96\x65\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xac" "\x5d\xd1\xf2\xff\xb1\xef\xbf\x33\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41" "\xec\xfb\xb7\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\x7f\x57\xa8\x89" "\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x3b\x42\x4d\x2a\xd2\xff\xcb\xff\x0f" "\x44\xfe\x3f\x93\xff\x97\xff\x97\xff\x2f\x4f\xfe\xff\x8f\x6e\xcc\xbf\x96" "\xff\x5f\x1f\xf2\xff\xdd\xc9\xff\xf7\xe0\xfa\xff\xf2\xff\xf2\xff\xf2\xff" "\xf4\x55\xd1\xf2\xff\xb1\xef\x7f\x55\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8" "\x82\xd8\xf7\xdf\x1d\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xab\x43" "\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\xbf\x27\xd4\xa4\x22\xfd\xbf\xfc" "\xbf\xfc\x7f\xc1\xf2\xff\x43\xcd\x8f\x93\xff\x97\xff\xcf\x4a\x98\xff\x77" "\xfd\xff\xf5\x25\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2\xff\xf2\xff" "\xf4\x55\xd1\xf2\xff\xb1\xef\x7f\x4d\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8" "\x82\xd8\xf7\xef\x0c\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\xde\x50" "\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x27\x43\x4d\x2a\xd2\xff\xcb\xff" "\xcb\xff\x17\x2c\xff\xef\xfa\xff\xf2\xff\xf2\xff\xf2\xff\x6b\x22\xff\xdf" "\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xf4\x55\xd1\xf2\xff\xb1" "\xef\xbf\x2f\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\xef\x0f\x35" "\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x2a\xd4\x44\xff\x0f\x00\x00\x00" "\xa5\x11\xfb\xfe\xe9\x50\x93\x8a\xf4\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff" "\xab\xca\xff\xbf\x72\xf1\x79\xe5\xff\x73\xf2\xff\xc5\x22\xff\xdf\x9d\xfc" "\x7f\x0f\xf2\xff\xf2\xff\xd7\x3d\xff\x3f\x2a\xff\x4f\xa9\x14\x2d\xff\x1f" "\xfb\xfe\x5d\xa1\x26\xa9\xf1\x1b\xbb\x86\xad\x04\x00\x00\x00\x8a\x24\xf6" "\xfd\xbb\x43\x4d\x2a\xf2\xfb\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xef\x09\x35" "\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x6f\xa8\x49\x45\xfa\x7f\xf9\x7f" "\xf9\x7f\xf9\x7f\xf9\x7f\xd7\xff\xef\xbc\x7e\xf9\xff\xc1\x24\xff\xdf\x5d" "\xff\xf3\xff\x71\x13\xe5\xff\xe5\xff\xe5\xff\x5d\xff\x5f\xfe\x9f\xa5\x8a" "\x96\xff\x8f\x7d\xff\x03\xa1\x26\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf" "\xbf\x2f\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xfd\xa1\x26\xfa\x7f" "\x00\x00\x00\x28\x8d\xd8\xf7\x1f\x08\x35\xa9\x48\xff\x2f\xff\x2f\xff\x2f" "\xff\x2f\xff\x2f\xff\xdf\x79\xfd\xf2\xff\x83\x49\xfe\xbf\x3b\xd7\xff\xef" "\xa1\x78\xf9\xff\xd7\x35\x3f\x7c\x23\xf3\xff\xf5\x75\xc9\xff\xcb\xff\xcb" "\xff\xb3\x7a\x8f\xfc\x7e\xf3\x57\x45\xcb\xff\xc7\xbe\xff\x60\xa8\x49\x45" "\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xbf\x36\xd4\x44\xff\x0f\x00\x00\x00" "\xa5\x11\xfb\xfe\x5f\x0a\x35\xe9\xde\xff\x6f\x5a\xdf\x51\x01\x00\x00\x00" "\xfd\x14\xfb\xfe\x5f\x0e\x35\xa9\xc8\xef\xff\xe5\xff\xe5\xff\xe5\xff\xe5" "\xff\xe5\xff\x3b\xaf\x5f\xfe\x7f\x30\xc9\xff\x77\x27\xff\xdf\x43\xf1\xf2" "\xff\x2d\x5c\xff\xbf\xd8\xe3\x97\xff\x97\xff\x67\xa9\xa2\xe5\xff\x63\xdf" "\x7f\x28\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\x7f\x25\xd4\x44" "\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xd7\x85\x9a\xe8\xff\x01\x00\x00\xa0" "\x34\x62\xdf\x7f\x38\xd4\xa0\x53\x9c\xbb\x94\xe4\xff\xe5\xff\x07\x33\xff" "\x3f\x2e\xff\x2f\xff\x5f\xba\xfc\xff\x58\x7c\x5e\xf9\xff\x35\x91\xff\xef" "\x4e\xfe\xbf\x07\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xfa\xaa\x68\xf9\xff\xd8" "\xf7\xbf\x3e\xd4\xc4\xef\xff\x01\x00\x00\xa0\x34\x62\xdf\xff\x60\xa8\x89" "\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x6f\x08\x35\xd1\xff\x03\x00\x00\x40" "\x69\xc4\xbe\xff\x8d\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff\x07\x33\xff\xef" "\xfa\xff\x99\xfc\x7f\xe9\xf2\xff\xae\xff\xdf\x1f\xf2\xff\xdd\xc9\xff\xf7" "\x20\xff\x2f\xff\xbf\x7e\xf9\xff\x9e\xef\x14\xf2\xff\x94\x51\xd1\xf2\xff" "\xb1\xef\x7f\x53\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xbf\x39" "\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xb7\x84\x9a\xe8\xff\x01\x00" "\x00\xa0\x34\x62\xdf\xff\xd6\x50\x93\x8a\xf4\xff\xf2\xff\xf2\xff\xd7\x33" "\xff\x9f\xbb\x2c\xff\x2f\xff\xdf\xb0\x2e\xf9\xff\xcb\xf5\x1d\x2d\xff\x5f" "\x25\xf2\xff\xdd\xc9\xff\xf7\x20\xff\x2f\xff\xef\xfa\xff\xf2\xff\xf4\x55" "\xd1\xf2\xff\xb1\xef\xff\xd5\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1" "\xef\x7f\x28\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xb7\x85\x9a\xe8" "\xff\x01\x00\x00\xa0\x34\x62\xdf\xff\xf6\x50\x93\x8a\xf4\xff\xf2\xff\xf2" "\xff\xae\xff\x2f\xff\x5f\xea\xfc\xbf\xeb\xff\x57\x8e\xfc\x7f\x77\x03\x96" "\xff\xff\xf9\x4d\xe1\x76\xf9\xff\x9c\xfc\x7f\xb1\xc7\xbf\xda\xfc\xff\x48" "\xdb\xd7\xeb\x92\xff\xff\xc1\x72\xf9\xff\x85\x4d\xed\x8f\x97\xff\x67\x3d" "\x14\x2d\xff\x1f\xfb\xfe\x77\x84\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88" "\x7d\xff\x3b\x43\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x57\xa8\x49" "\x53\xff\xdf\xd7\xff\x78\x07\x00\x00\x00\x6c\xb8\xd8\xf7\xff\x5a\xa8\x49" "\x45\x7e\xff\x2f\xff\x5f\x1f\xc7\x62\x7a\x59\xfe\x5f\xfe\xbf\x71\x83\xfc" "\xbf\xfc\xbf\xfc\xff\xc0\x92\xff\xef\x6e\xc0\xf2\xff\xae\xff\xdf\x46\xfe" "\xbf\xd8\xe3\x77\xfd\x7f\xf9\x7f\x96\x2a\x5a\xfe\x3f\xf6\xfd\xef\x0e\x35" "\xa9\x48\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x87\x43\x4d\xf4\xff\x00\x00" "\x00\x50\x1a\xb1\xef\x7f\x24\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe" "\xf7\x84\x9a\x54\xa4\xff\x97\xff\x77\xfd\x7f\xf9\x7f\xf9\x7f\xf9\xff\xce" "\xeb\x97\xff\x1f\x4c\xf2\xff\xdd\xc9\xff\xf7\x20\xff\x2f\xff\x5f\xb4\xfc" "\xff\x7f\xc8\xff\x33\xd8\x8a\x96\xff\x8f\x7d\xff\xa3\xa1\x26\x15\xe9\xff" "\x01\x00\x00\xa0\x0a\x62\xdf\xff\xde\x50\x13\xfd\x3f\x00\x00\x00\x94\x46" "\xec\xfb\x7f\x3d\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xf7\x85\x9a" "\x54\xa4\xff\x97\xff\x1f\x94\xfc\xff\xc4\x80\xe6\xff\x9f\x90\xff\x5f\xc7" "\xfc\xff\x1d\x37\xe5\xcb\xc9\xff\xcb\xff\xb3\x48\xfe\xbf\x3b\xf9\xff\x1e" "\xe4\xff\xe5\xff\x8b\x96\xff\x77\xfd\x7f\x06\x5c\xd1\xf2\xff\xb1\xef\x7f" "\x7f\xa8\xc9\xca\xfb\xff\xf1\x15\x2f\x09\x00\x00\x00\xac\xa3\x91\x65\xef" "\x89\x7d\xff\x6f\x84\x9a\x54\xe4\xf7\xff\x00\x00\x00\x50\x05\xb1\xef\xff" "\xcd\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x7f\x2b\xd4\xa4\x22\xfd" "\xbf\xfc\xff\xa0\xe4\xff\x5d\xff\x3f\x93\xff\x77\xfd\xff\xb6\xed\x91\xff" "\x97\xff\xef\x64\xe3\xf2\xff\xf1\xcc\x23\xff\x2f\xff\x5f\xac\xfc\xff\x96" "\x55\x6d\x70\xab\xeb\x9d\x9f\x5f\xab\xeb\x3d\xfe\xea\xe6\xff\xf3\x77\x46" "\xf9\x7f\x3a\x29\x5a\xfe\x3f\xf6\xfd\xbf\x1d\x6a\x52\x91\xfe\x1f\x00\x00" "\x00\xaa\x20\xf6\xfd\x1f\x08\x35\xd1\xff\x03\x00\x00\xc0\x40\xe8\xf4\x7f" "\xb2\xdb\xc5\xbe\xff\x48\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x47" "\x43\x4d\x2a\xd2\xff\xcb\xff\xcb\xff\xcb\xff\x17\x34\xff\xff\xa7\xdb\xff" "\xf9\x7b\xdf\x7e\xe7\xd1\x5d\xf2\xff\xf2\xff\xf2\xff\xab\xb2\xa1\xd7\xff" "\xaf\x1f\xfc\xae\xff\x2f\xff\x5f\xb0\xfc\xff\x5a\x5c\xef\xfc\xfc\x46\x8d" "\xbf\xb6\xcc\xa5\xc1\xe4\xff\x5d\xff\x9f\xfe\x2b\x5a\xfe\x3f\xf6\xfd\xc7" "\x42\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\x77\x42\x4d\xf4\xff" "\x00\x00\x00\x50\x1a\xb1\xef\x3f\x1e\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88" "\x7d\xff\x4c\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9\x7f\xf9\xff\x82\xe6\xff\x07" "\xf8\xfa\xff\x71\x7f\xc8\xff\xb7\xea\x5b\xfe\x3f\x9e\x74\xe5\xff\x3b\xda" "\xd0\xfc\xff\x7b\x17\x73\xe2\xf2\xff\xab\xcd\xff\x8f\x75\xbc\x55\xfe\x5f" "\xfe\x7f\x90\xc7\x2f\xff\x2f\xff\xcf\x52\x45\xcb\xff\xc7\xbe\x7f\x36\xd4" "\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xe8\xfb\x87\x4e\xe4\x75\xf1\x0e\xfd" "\x3f\x00\x00\x00\x94\x46\xec\xfb\x4f\x86\x9a\xe8\xff\x01\x00\x00\xa0\x34" "\x62\xdf\xff\xc1\x50\x93\x8a\xf4\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xae" "\xff\xdf\x79\xfd\xdd\xf2\xff\xb5\x91\x15\xe5\xff\x5b\x36\xc5\xf5\xff\x37" "\x86\xfc\x7f\x77\xc5\xc9\xff\x77\x26\xff\x2f\xff\x3f\xc8\xe3\x97\xff\x97" "\xff\x67\xa9\xa2\xe5\xff\x63\xdf\x3f\x17\x6a\x52\x91\xfe\x1f\x00\x00\x00" "\xaa\x20\xf6\xfd\x1f\x0a\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\xc3" "\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x9f\x0a\x35\xa9\x48\xff\x2f" "\xff\xff\x7f\xec\xdd\xc9\x97\xa5\x75\x7d\xc7\xf1\x5b\xd0\x4d\x57\x1f\xb2" "\xc8\x2e\x8b\x6c\x72\x4e\x96\xf9\x13\x58\x84\x75\xb2\x4f\x16\x59\x24\x8b" "\xe4\x9c\x9c\x9c\x13\x48\x02\x09\x99\x69\x9c\x47\x14\x15\x67\x45\x71\x56" "\x70\x00\x41\x44\xc5\x79\x02\x27\x14\x67\x50\x51\x71\x1e\x71\x42\xd4\xd3" "\x1e\xaa\xbe\xdf\x6f\xd7\xf0\xdc\x7b\xab\x9a\x5b\x7d\x9f\xe7\xf7\x7b\xbd" "\x16\x7c\xd3\x15\xaa\xef\xb5\x4f\x0b\xfd\xe9\xea\xb7\x8f\xfe\x5f\xff\xaf" "\xff\xd7\xff\x0f\xbf\xfe\x68\x9f\xff\xaf\xff\x5f\x48\xff\xbf\x98\xfe\x7f" "\x09\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa5\xc6\xd6\xff\xe7\xee\xff\xe7\xb8" "\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x49\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\x5f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x12" "\xb7\x74\xb2\xff\xf5\xff\xfa\xff\x66\xfb\xff\x3f\xd7\xff\xcf\x7b\x7d\xfd" "\xbf\xfe\xbf\x65\xfa\xff\xc5\xf4\xff\x4b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\x2b\x35\xb6\xfe\x3f\x77\xff\xbf\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41" "\xee\xfe\x7f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xcb\xe2\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\xf2\xb8\xa5\x93\xfd\xbf\xa7\xff\xdf\x98" "\xf5\xd9\xff\x67\xc6\xab\xff\x6f\xa9\xff\xf7\xfc\xff\xb9\xaf\xaf\xff\x7f" "\x14\xfd\xff\xf9\xfa\xff\xb1\x3b\xb7\xfd\xff\x55\x8f\xfc\x93\x4f\xff\xaf" "\xff\xd7\xff\x07\xfd\xff\x81\xfa\xff\x13\xf3\x3e\x5f\xff\x4f\x8b\xc6\xd6" "\xff\xe7\xee\xff\xf7\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x1f" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x45\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\xff\x67\xdc\xd2\xc9\xfe\x5f\xdd\xf3\xff\x4f\x6e\x7d\x7c" "\xa2\xfd\x7f\xd1\xff\xeb\xff\xb7\x3e\xa0\xff\xd7\xff\xcf\xeb\xff\x8f\x9d" "\xf9\xb6\xfe\x7f\x9c\x3c\xff\x7f\xb1\x9e\xfa\xff\xcb\xee\xb9\xf0\x92\x07" "\x6f\xfd\xe3\xdb\x0e\xf3\xfa\xfa\x7f\xfd\xbf\xe7\xff\xeb\xff\x59\xad\xb1" "\xf5\xff\xb9\xfb\xff\x2b\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff" "\x77\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x4f\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xff\x6f\xdc\xd2\xc9\xfe\x5f\x5d\xff\x3f\xe9\xe7\xff" "\x17\xfd\xbf\xfe\x7f\xeb\x03\xfa\x7f\xfd\xff\xbc\xfe\xff\xaf\x3c\xff\x7f" "\xec\xf4\xff\x8b\xf5\xd4\xff\x9f\xcd\xeb\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f" "\xab\xb5\xee\xfe\x3f\xbf\xe3\xfc\x76\xee\xfe\xff\x8b\x5b\x3a\xd9\xff\x00" "\x00\x00\xd0\x83\xdc\xfd\xff\x1f\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\x57\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xa9\xb8\xa5\x93\xfd\xaf" "\xff\x3f\xfa\xfe\xff\x77\xfa\x7f\xfd\x7f\x5c\xfd\xbf\xfe\x5f\xff\x7f\xf4" "\xf4\xff\x8b\xe9\xff\x97\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x56\x6a\xdd\xfd" "\xff\xde\x6f\xe7\xee\xbf\x2a\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7" "\x3f\x26\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x1b\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\x8f\x8b\x5b\x3a\xd9\xff\xfa\x7f\xcf\xff\xd7\xff" "\xeb\xff\xf5\xff\xc3\xaf\xaf\xff\x9f\x26\xfd\xff\x62\xfa\xff\x25\xf4\xff" "\x07\xea\xe7\x8f\xcf\xf9\xfc\xbf\xbd\xf4\xf2\xe3\xfa\xff\x09\xf6\xff\xf1" "\x0b\x29\xfd\x3f\x47\xe1\x90\xfd\xff\xc3\x0b\xfe\xb1\xbd\x92\xfe\x3f\x77" "\xff\xe3\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x13\xe2\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x89\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xa4\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x67\xdd\xff" "\xef\xff\xa9\xb7\x45\xff\x3f\x4c\xff\x7f\x6e\xe8\xff\x17\x1b\x4d\xff\xbf" "\x71\x6c\xf0\xc3\xfa\xff\x69\xf4\xff\xf3\x78\xfe\xff\x44\xfb\xff\xa0\xff" "\xe7\x28\x8c\xed\xf9\xff\xb9\xfb\x9f\x1c\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\x9f\x12\xb7\x2c\xd8\xff\x87\xfe\xcd\x7c\x00\x00\x00\x60\xad" "\x72\xf7\x3f\x35\x6e\xf1\xf5\x7f\x00\x00\x00\x98\xbc\xac\xce\x72\xf7\x3f" "\x2d\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xe7\xff\x0f\xbf\xfe" "\xa2\xfe\xff\xb6\x1d\xef\x4f\xff\x3f\x2e\xfa\xff\xc5\x46\xd3\xff\xcf\xa1" "\xff\xd7\xff\x4f\xf9\xfd\xeb\xff\xf5\xff\xec\x37\xb6\xfe\x3f\x77\xff\xd3" "\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xd5\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\x8c\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f" "\x66\xdc\xd2\xc9\xfe\x1f\xee\xff\xcf\xfc\xff\xf5\xff\x07\xa3\xff\xdf\xfd" "\xfe\xf5\xff\xc3\x3f\x3f\x56\xd5\xff\xe7\xf7\xa8\xff\x5f\xd8\xff\x5f\xec" "\xf9\xff\x7d\xd2\xff\x2f\x76\xee\xfb\xff\x13\xfa\xff\xdd\xdf\xbf\xfe\xff" "\x08\xad\xfb\xfd\x37\xde\xff\x9f\x5c\xf6\xf9\xfa\x7f\x86\x8c\xad\xff\xcf" "\xdd\x7f\x4d\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x56\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\x9f\x13\xb7\x74\xb2\xff\xd7\xfc\xfc\xff\xab\x2e\x98\xf7\xbe\xf4" "\xff\x5b\xf4\xff\xfa\x7f\xcf\xff\x1f\xe7\xf3\xff\x67\xe7\xbc\xff\x3f\xa6" "\xff\x3f\x20\xfd\xff\x62\x9e\xff\xbf\x84\xfe\x5f\xff\xaf\xff\xf7\xfc\x7f" "\x56\x6a\x6c\xfd\x7f\xee\xfe\x6b\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\xe0" "\xda\x87\x66\x5b\xbb\xff\xb9\xb3\x99\xfd\x0f\x00\x00\x00\x53\xb4\xf3\xcf" "\x0e\xec\xfd\x03\xa5\x21\x77\xff\xf3\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\xf9\x71\x4b\x27\xfb\x7f\xcd\xfd\xff\x51\x3d\xff\xff\xf8\xb2\xd7" "\xd6\xff\xeb\xff\x77\xfe\x78\xe9\xff\xf5\xff\x43\xaf\x3f\xae\xfe\xdf\xf3" "\xff\x0f\x4a\xff\xbf\x98\xfe\x7f\x09\xfd\xff\x51\xf4\xf3\xc7\x1a\xeb\xff" "\xaf\x9b\xf7\xf9\x63\xe8\xff\xaf\xd4\xff\x33\x32\xbb\xfa\xff\x3b\xce\x7c" "\x7c\x5d\xfd\x7f\xee\xfe\x17\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee" "\xfe\x17\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x8b\xe2\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\xc5\x71\x4b\x27\xfb\xff\xc8\xfb\xff\x93\xf3" "\x5f\xfb\x08\xfb\xff\xa5\xf4\xff\xfa\xff\x9d\x3f\x5e\xfa\x7f\xfd\xff\xd0" "\xeb\xeb\xff\xa7\x49\xff\xbf\x98\xfe\x7f\x09\xfd\xbf\xe7\xff\x7b\xfe\xbf" "\xfe\x9f\x95\xda\xd5\xff\xef\xb0\xae\xfe\x3f\x77\xff\x4b\xe2\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\x4b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\xba\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x59\xdc\xd2\xc9" "\xfe\x6f\xf4\xf9\xff\x4b\xe9\xff\xf5\xff\x3b\x7f\xbc\xf4\xff\xfa\xff\xa1" "\xd7\xd7\xff\x4f\x93\xfe\x7f\x31\xfd\xff\x12\xfa\x7f\xfd\xbf\xfe\x7f\x79" "\xff\xbf\xf7\x5f\xd4\x41\xff\xcf\x90\xb1\xf5\xff\xb9\xfb\x5f\x1e\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xaf\x8f\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x57\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x2b\xe3\x96" "\x4e\xf6\xbf\xfe\xff\x68\xfb\xff\xfc\xb8\xfe\x5f\xff\x3f\x3b\x4c\xff\x1f" "\x9f\xa0\xff\xdf\xa6\xff\xd7\xff\x1f\xc6\xd4\xfa\xff\xbd\xff\xfd\x39\xeb" "\x7e\x7d\x63\xe8\xdf\x44\xfb\xcd\xe9\xff\xef\xfa\xc7\x53\x7f\xb9\xfb\x23" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef\xf9\xff\xac\xc0\x28\xfa\xff\xd3\x67\x7e" "\x75\x99\xbb\xff\x55\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xd5" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x9a\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x6d\xdc\x72\xc8\xfd\xff\x87\x2b\x7d\x57\xe7\x8e\xfe" "\xdf\xf3\xff\xf5\xff\x23\xec\xff\x83\xfe\x7f\x9b\xfe\x5f\xff\x7f\x18\x53" "\xeb\xff\xf7\xf2\xfc\x7f\xfd\xbf\xfe\x7f\xba\xef\x5f\xff\xaf\xff\x67\xbf" "\x51\xf4\xff\x3b\xbe\x9d\xbb\xff\x75\x71\x8b\xaf\xff\x03\x00\x00\x40\x33" "\x72\xf7\xbf\x3e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x10\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x37\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x6f\xb9\xff\x3f\xb9\x86\xfe\x7f\x73\x36\x4c\xff\x7f\x6e\xe8" "\xff\x17\xd3\xff\x2f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd4\xd8\xfa\xff" "\xdc\xfd\x37\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x37\xc6\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x9b\xe2\x16\xfb\x1f\x00\x00\x00\xa6" "\x24\xd3\xb1\x41\xb9\xfb\xdf\x1c\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\xbf\xe5\xfe\xdf\xf3\xff\xfb\x33\xd1\xfe\xbf\xfe\x31\x38\xd5\xfe\xff" "\xfc\x29\xf5\xff\x37\x2d\x78\x03\x43\xfd\xff\xe9\x13\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xcf\x59\x1a\x5b\xff\x9f\xbb\xff\x2d\x71\x4b\x27\xfb\x1f\x00\x00" "\x00\x7a\x90\xbb\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x39" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x1a\xb7\x74\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfc\xfa\xfa\xff\x69\x9a\x68\xff\x5f\xa6" "\xda\xff\x7b\xfe\xbf\xfe\x7f\xa6\xff\xd7\xff\xeb\xff\x19\x30\xb6\xfe\x3f" "\x77\xff\x2d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xd6\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x5b\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\xdf\x16\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f" "\xfc\xfa\xfa\xff\x69\x3a\xba\xfe\x7f\xb6\xbe\xfe\xff\x81\xf3\x0e\xfb\xdd" "\xcc\xa5\xff\x5f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x59\xa9\xb1\xf5\xff\xb9" "\xfb\xdf\x1e\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x8f\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x77\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x3b\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\x3f\xcd\xfe\xff\x9a\xcd\xa1" "\xf7\xaf\xff\xd7\xff\xcf\xf4\xff\xdd\xf3\xfc\xff\xc5\xf4\xff\x4b\xe8\xff" "\xf5\xff\xfa\x7f\xfd\x3f\x2b\x35\xb6\xfe\x3f\x77\xff\xbb\xe2\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\x1d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xee\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x4f\xdc\xd2\xc9" "\xfe\xd7\xff\xeb\xff\x77\xf7\xff\xb3\xd9\x34\xfa\x7f\xcf\xff\x9f\xe9\xff" "\x5b\xe8\xff\x37\x67\xfa\xff\x95\xd3\xff\x2f\x76\xb0\xfe\xff\x62\xfd\xbf" "\xfe\xbf\xad\xfe\xff\xbc\x59\x43\xfd\xff\xc9\xb9\x9f\xaf\xff\x67\x8c\xc6" "\xd6\xff\xe7\xee\x7f\x6f\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f" "\x5f\xdc\x62\xff\x03\x00\x00\x40\x03\xb6\xff\xec\x4c\xee\xfe\xf7\xc7\x2d" "\xf6\x3f\x00\x00\x00\x8c\xd9\xb1\xc3\xfc\xcd\xb9\xfb\x3f\x10\xb7\x74\xb2" "\xff\xa7\xdf\xff\x9f\xd8\xf3\x89\xfa\xff\xd9\x6c\x76\xef\x15\xcd\x3f\xff" "\x5f\xff\x3f\xd3\xff\xb7\xd0\xff\xd7\x8f\xaa\xfe\x7f\x75\xf4\xff\x8b\x79" "\xfe\xff\x12\xfa\xff\x36\xfb\x7f\xcf\xff\xd7\xff\xb3\x36\x63\xeb\xff\x73" "\xf7\x7f\x30\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x28\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c" "\xdc\xfd\x1f\x89\x5b\x3a\xd9\xff\xd3\xef\xff\xf7\x7e\xa2\xfe\x7f\xf6\xa8" "\x9e\xff\xaf\xff\xdf\xfa\x80\xfe\x5f\xff\xaf\xff\x9f\x2c\xfd\xff\x62\xfa" "\xff\x25\xf4\xff\x4b\xfb\xf9\x8d\x39\xbf\xee\x99\xe9\xff\xf5\xff\xfa\x7f" "\x06\x8c\xad\xff\xcf\xdd\xff\xd1\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\x7f\x67\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x15\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8b\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\x9a\xfd\xff\xa6\xfe\x5f\xff\xaf\xff\x1f\x34\x96\xfe\xff\xa2\x8b\xfe" "\xe2\x6e\xfd\xbf\xfe\xbf\xc5\xfe\x7f\x11\xfd\xbf\xfe\x5f\xff\xcf\x5e\x63" "\xeb\xff\x73\xf7\x7f\x3c\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f" "\x22\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x19\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x9f\x8a\x5b\x3a\xd9\xff\xfb\xfb\xff\xe3\xb3\xed\x42" "\x75\xdb\x50\xff\x1f\x8d\x9a\xfe\x7f\x07\xfd\xff\xee\xf7\xaf\xff\x1f\xfe" "\xf9\xe1\xf9\xff\xfa\x7f\xfd\xff\xd1\x1b\x4b\xff\xef\xf9\xff\x67\xf7\xfe" "\xf5\xff\xfa\xff\x29\xbf\xff\x43\xf5\xff\x7f\xb2\xff\xf3\xf5\xff\xb4\x68" "\x6c\xfd\x7f\xee\xfe\xbb\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff" "\xa7\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x33\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\x7f\x4f\xdc\xd2\xc9\xfe\xf7\xfc\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x1f\x7e\x7d\xfd\xff\x34\xe9\xff\x17\xd3\xff\x2f\xa1\xff\xd7" "\xff\x7b\xfe\xff\xa5\x7f\x7f\xbe\xfe\x9f\xd5\x19\x5b\xff\x9f\xbb\xff\xb3" "\x71\xcb\xd6\xf0\xfb\xd3\x3f\x38\xcb\xff\x98\x00\x00\x00\xc0\x88\xe4\xee" "\xff\x5c\xdc\xd2\xc9\xd7\xff\x01\x00\x00\xa0\x07\xb9\xfb\x3f\x1f\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x5f\x88\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x1f\x7e\x7d\xfd\xff\x34\xe9\xff\x17\xd3\xff\x2f\xd1" "\x4f\xff\xbf\x39\xf4\xc1\x75\xf7\xf3\x8f\xd6\xba\xdf\x7f\x33\xfd\xbf\xe7" "\xff\xb3\x42\x63\xeb\xff\x73\xf7\x7f\x31\x6e\xe9\x64\xff\x03\x00\x00\x40" "\x0f\x72\xf7\x7f\x29\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x1c\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xf7\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe" "\xbf\xfd\xfe\xff\xef\xf4\xff\x7b\x5e\x5f\xff\xaf\xff\x6f\x99\xfe\x3f\xff" "\x8d\x3e\x4c\xff\xbf\x44\x3f\xfd\xff\xa0\x75\xf7\xf3\x53\x7f\xff\xfa\x7f" "\xfd\x3f\xfb\x8d\xad\xff\xcf\xdd\x7f\x5f\xdc\xd2\xc9\xfe\x07\x00\x00\x80" "\x1e\xe4\xee\xff\x4a\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x35\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x16\xb7\x74\xb2\xff\xf5\xff\x7d" "\xf5\xff\x1b\xb3\x1e\xfb\x7f\xcf\xff\xd7\xff\xeb\xff\x7b\x32\x9d\xfe\xff" "\xfa\x63\x43\x1f\xf5\xfc\x7f\xfd\xbf\xfe\x7f\xba\xef\x5f\xff\xaf\xff\x67" "\xbf\xb1\xf5\xff\xb9\xfb\xef\xdf\x38\xd6\xe5\xfe\x07\x00\x00\x80\xa9\xfa" "\xeb\x3f\xfb\xa7\xfb\x0e\xfa\xf7\xde\xbf\xf5\xd7\xcd\xd9\xd7\xe3\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1b\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xcd\xb8\xa5\x93\xfd\xaf\xff\xef\xab\xff\xef\xf3\xf9\xff\xfa\x7f" "\xfd\xbf\xfe\xbf\x27\xd3\xe9\xff\x87\xe9\xff\xf5\xff\xfa\xff\xe9\xbe\x7f" "\xfd\xbf\xfe\x9f\xfd\xc6\xd6\xff\xe7\xee\x7f\x20\x6e\xd9\x31\xfc\x06\xff" "\x07\x7a\x00\x00\x00\x80\xc9\xc8\xdd\xff\xad\xb8\xa5\x93\xaf\xff\x03\x00" "\x00\x40\x0f\x72\xf7\x7f\x3b\x6e\xd9\xb7\xff\x4f\x1f\xf0\x4f\xb5\x03\x00" "\x00\x00\x63\x93\xbb\xff\x3b\x71\x4b\x27\x5f\xff\xd7\xff\x8f\xbc\xff\x9f" "\x1d\x51\xff\x1f\x7f\x9f\xfe\x7f\x9b\xfe\x5f\xff\x3f\xf4\xfa\xfa\xff\x69" "\x6a\xad\xff\x3f\x31\x1b\x55\xff\x7f\x7a\x43\xff\xaf\xff\x5f\x40\xff\xaf" "\xff\xd7\xff\xb3\xd7\xd8\xfa\xff\xdc\xfd\xb7\xdf\x32\xeb\x72\xff\x03\x00" "\x00\x40\xa3\x76\xfd\x8e\xc2\x77\xb7\xfe\xba\x39\xfb\x5e\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\x7f\x3f\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x7f\x10\xb7\x74\xb2\xff\xf5\xff\x23\xef\xff\xcf\xea\xf9\xff\x27\xeb\xff" "\xf2\xfc\xff\xce\xfb\xff\xab\x37\x07\x5f\x5f\xff\xaf\xff\x6f\x59\x6b\xfd" "\xbf\xe7\xff\x6f\x7f\x5c\xff\xbf\x4d\xff\x3f\xee\xf7\xaf\xff\xd7\xff\xb3" "\xdf\x21\xfa\xff\xad\x41\x7a\xd4\xfd\x7f\xee\xfe\x1f\xc6\x2d\x9d\xec\x7f" "\x00\x00\x00\xe8\x41\xee\xfe\x1f\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x8f\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x27\x71\x4b\x27\xfb" "\x5f\xff\xbf\x86\xfe\xff\x9a\x13\xb3\xd9\x91\xf6\xff\x07\x78\xfe\xbf\xfe" "\xbf\x8f\xfe\x7f\xce\xeb\xb7\xd3\xff\xff\xd1\x85\xa7\xee\xfc\x9b\x7f\xb8" "\xf9\x46\xfd\x3f\x67\x9c\xcb\xfe\x3f\x7f\x2e\xe8\xff\xf5\xff\x6b\xe8\xff" "\x6f\x88\x9f\x7f\xfa\xff\x11\xbd\x7f\xfd\xbf\xfe\x9f\xfd\xc6\xf6\xfc\xff" "\xdc\xfd\x3f\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x0f\xc6\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xcf\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xe7\x71\x4b\x27\xfb\x5f\xff\xdf\xe2\xf3\xff\xa7\xd9\xff\xe7" "\x8f\xf5\x1a\xfa\xff\x53\xd3\xeb\xff\xb3\x29\xee\xbd\xff\xf7\xfc\x7f\xfd" "\xff\x7e\x9e\xff\xbf\x98\xfe\x7f\x89\xe9\xf4\xff\x5b\xdf\xf6\xfc\xff\x71" "\xbd\x7f\xfd\xbf\xfe\x9f\xfd\xc6\xd6\xff\xe7\xee\xff\x45\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\xff\x65\xdc\x92\xfb\x7f\xe3\xd0\xbf\x75\x0f" "\x00\x00\x00\x8c\x4c\xee\xfe\x5f\xc5\x2d\xbe\xfe\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\x50\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xc7\xd2\xff\x27\xcf\xff\x3f" "\xf3\x79\x9e\xff\xbf\x4d\xff\xaf\xff\x3f\x0c\xfd\xff\x62\xfa\xff\x25\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\x95\x1a\x5b\xff\x9f\xbb\xff\xd7\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xe1\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xff\x4d\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x36\x6e\xe9" "\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\xf5\xff\xd3\xa4" "\xff\x5f\x4c\xff\xff\x88\x0b\xe6\xbf\x01\xfd\xbf\xfe\x5f\xff\xaf\xff\x67" "\xa5\xc6\xd6\xff\xe7\xee\xff\x7d\x00\x00\x00\xff\xff\x0e\xc0\x5b\x76", 25271); syz_mount_image(/*fs=*/0x200000000080, /*dir=*/0x200000000440, /*flags=*/0, /*opts=*/0x200000000480, /*chdir=*/1, /*size=*/0x62b7, /*img=*/0x200000014500); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {63 67 72 6f 75 70 2e 63 6f 6e 74 72 6f 6c 6c 65 72 73 00} // (length 0x13) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000040, "cgroup.controllers\000", 19); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=*/0x275a, /*mode=*/0); // setxattr$security_capability arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 31 00} (length 0xe) // } // name: ptr[in, buffer] { // buffer: {73 65 63 75 72 69 74 79 2e 63 61 70 61 62 69 6c 69 74 79 00} // (length 0x14) // } // val: nil // size: len = 0x0 (8 bytes) // flags: setxattr_flags = 0x0 (8 bytes) // ] memcpy((void*)0x200000000240, "./file0/file1\000", 14); memcpy((void*)0x200000000280, "security.capability\000", 20); syscall(__NR_setxattr, /*path=*/0x200000000240ul, /*name=*/0x200000000280ul, /*val=*/0ul, /*size=*/0ul, /*flags=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-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=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-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); use_temporary_dir(); loop(); return 0; }