// https://syzkaller.appspot.com/bug?id=309c1d363b3a562cee2f23e9a4013984a0015f2a // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #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 __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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 void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static 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 int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset, unsigned int total_len) { struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset); if (offset == total_len || offset + hdr->nlmsg_len > total_len) return -1; return hdr->nlmsg_len; } 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_add_device(struct nlmsg* nlmsg, int sock, const char* type, const char* name) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_veth(struct nlmsg* nlmsg, int sock, const char* name, const char* peer) { netlink_add_device_impl(nlmsg, "veth", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_nest(nlmsg, VETH_INFO_PEER); nlmsg->pos += sizeof(struct ifinfomsg); netlink_attr(nlmsg, IFLA_IFNAME, peer, strlen(peer)); netlink_done(nlmsg); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_xfrm(struct nlmsg* nlmsg, int sock, const char* name) { netlink_add_device_impl(nlmsg, "xfrm", name, true); netlink_nest(nlmsg, IFLA_INFO_DATA); int if_id = 1; netlink_attr(nlmsg, 2, &if_id, sizeof(if_id)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_hsr(struct nlmsg* nlmsg, int sock, const char* name, const char* slave1, const char* slave2) { netlink_add_device_impl(nlmsg, "hsr", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); int ifindex1 = if_nametoindex(slave1); netlink_attr(nlmsg, IFLA_HSR_SLAVE1, &ifindex1, sizeof(ifindex1)); int ifindex2 = if_nametoindex(slave2); netlink_attr(nlmsg, IFLA_HSR_SLAVE2, &ifindex2, sizeof(ifindex2)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_linked(struct nlmsg* nlmsg, int sock, const char* type, const char* name, const char* link) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_vlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t id, uint16_t proto) { netlink_add_device_impl(nlmsg, "vlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_VLAN_ID, &id, sizeof(id)); netlink_attr(nlmsg, IFLA_VLAN_PROTOCOL, &proto, sizeof(proto)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_macvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link) { netlink_add_device_impl(nlmsg, "macvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); uint32_t mode = MACVLAN_MODE_BRIDGE; netlink_attr(nlmsg, IFLA_MACVLAN_MODE, &mode, sizeof(mode)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_geneve(struct nlmsg* nlmsg, int sock, const char* name, uint32_t vni, struct in_addr* addr4, struct in6_addr* addr6) { netlink_add_device_impl(nlmsg, "geneve", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_GENEVE_ID, &vni, sizeof(vni)); if (addr4) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE, addr4, sizeof(*addr4)); if (addr6) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE6, addr6, sizeof(*addr6)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } #define IFLA_IPVLAN_FLAGS 2 #define IPVLAN_MODE_L3S 2 #undef IPVLAN_F_VEPA #define IPVLAN_F_VEPA 2 static void netlink_add_ipvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t mode, uint16_t flags) { netlink_add_device_impl(nlmsg, "ipvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_IPVLAN_MODE, &mode, sizeof(mode)); netlink_attr(nlmsg, IFLA_IPVLAN_FLAGS, &flags, sizeof(flags)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } 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 int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev, const void* addr, int addrsize) { struct ifaddrmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120; hdr.ifa_scope = RT_SCOPE_UNIVERSE; hdr.ifa_index = if_nametoindex(dev); netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize); netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize); return netlink_send(nlmsg, sock); } static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in_addr in_addr; inet_pton(AF_INET, addr, &in_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr)); if (err < 0) { } } static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in6_addr in6_addr; inet_pton(AF_INET6, addr, &in6_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr)); if (err < 0) { } } static void netlink_add_neigh(struct nlmsg* nlmsg, int sock, const char* name, const void* addr, int addrsize, const void* mac, int macsize) { struct ndmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ndm_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ndm_ifindex = if_nametoindex(name); hdr.ndm_state = NUD_PERMANENT; netlink_init(nlmsg, RTM_NEWNEIGH, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, NDA_DST, addr, addrsize); netlink_attr(nlmsg, NDA_LLADDR, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; static int tunfd = -1; #define TUN_IFACE "syz_tun" #define LOCAL_MAC 0xaaaaaaaaaaaa #define REMOTE_MAC 0xaaaaaaaaaabb #define LOCAL_IPV4 "172.20.20.170" #define REMOTE_IPV4 "172.20.20.187" #define LOCAL_IPV6 "fe80::aa" #define REMOTE_IPV6 "fe80::bb" #define IFF_NAPI 0x0010 static void initialize_tun(void) { tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 200; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { exit(1); } char sysctl[64]; sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/accept_dad", TUN_IFACE); write_file(sysctl, "0"); sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/router_solicitations", TUN_IFACE); write_file(sysctl, "0"); int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); netlink_add_addr4(&nlmsg, sock, TUN_IFACE, LOCAL_IPV4); netlink_add_addr6(&nlmsg, sock, TUN_IFACE, LOCAL_IPV6); uint64_t macaddr = REMOTE_MAC; struct in_addr in_addr; inet_pton(AF_INET, REMOTE_IPV4, &in_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in_addr, sizeof(in_addr), &macaddr, ETH_ALEN); struct in6_addr in6_addr; inet_pton(AF_INET6, REMOTE_IPV6, &in6_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in6_addr, sizeof(in6_addr), &macaddr, ETH_ALEN); macaddr = LOCAL_MAC; netlink_device_change(&nlmsg, sock, TUN_IFACE, true, 0, &macaddr, ETH_ALEN, NULL); close(sock); } #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 static struct nlmsg nlmsg2; static void initialize_devlink_ports(const char* bus_name, const char* dev_name, const char* netdev_prefix) { struct genlmsghdr genlhdr; int len, total_len, id, err, offset; uint16_t netdev_index; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (rtsock == -1) exit(1); id = netlink_query_family_id(&nlmsg, sock, DEVLINK_FAMILY_NAME, true); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_PORT_GET; netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); err = netlink_send_ext(&nlmsg, sock, id, &total_len, true); if (err < 0) { goto error; } offset = 0; netdev_index = 0; while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) { struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + offset + len; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) { char* port_name; char netdev_name[IFNAMSIZ]; port_name = (char*)(attr + 1); snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix, netdev_index); netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0, netdev_name); break; } } offset += len; netdev_index++; } error: close(rtsock); close(sock); } #define DEV_IPV4 "172.20.20.%d" #define DEV_IPV6 "fe80::%02x" #define DEV_MAC 0x00aaaaaaaaaa static void netdevsim_add(unsigned int addr, unsigned int port_count) { write_file("/sys/bus/netdevsim/del_device", "%u", addr); if (write_file("/sys/bus/netdevsim/new_device", "%u %u", addr, port_count)) { char buf[32]; snprintf(buf, sizeof(buf), "netdevsim%d", addr); initialize_devlink_ports("netdevsim", buf, "netdevsim"); } } #define WG_GENL_NAME "wireguard" enum wg_cmd { WG_CMD_GET_DEVICE, WG_CMD_SET_DEVICE, }; enum wgdevice_attribute { WGDEVICE_A_UNSPEC, WGDEVICE_A_IFINDEX, WGDEVICE_A_IFNAME, WGDEVICE_A_PRIVATE_KEY, WGDEVICE_A_PUBLIC_KEY, WGDEVICE_A_FLAGS, WGDEVICE_A_LISTEN_PORT, WGDEVICE_A_FWMARK, WGDEVICE_A_PEERS, }; enum wgpeer_attribute { WGPEER_A_UNSPEC, WGPEER_A_PUBLIC_KEY, WGPEER_A_PRESHARED_KEY, WGPEER_A_FLAGS, WGPEER_A_ENDPOINT, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, WGPEER_A_LAST_HANDSHAKE_TIME, WGPEER_A_RX_BYTES, WGPEER_A_TX_BYTES, WGPEER_A_ALLOWEDIPS, WGPEER_A_PROTOCOL_VERSION, }; enum wgallowedip_attribute { WGALLOWEDIP_A_UNSPEC, WGALLOWEDIP_A_FAMILY, WGALLOWEDIP_A_IPADDR, WGALLOWEDIP_A_CIDR_MASK, }; static void netlink_wireguard_setup(void) { const char ifname_a[] = "wg0"; const char ifname_b[] = "wg1"; const char ifname_c[] = "wg2"; const char private_a[] = "\xa0\x5c\xa8\x4f\x6c\x9c\x8e\x38\x53\xe2\xfd\x7a\x70\xae\x0f\xb2\x0f\xa1" "\x52\x60\x0c\xb0\x08\x45\x17\x4f\x08\x07\x6f\x8d\x78\x43"; const char private_b[] = "\xb0\x80\x73\xe8\xd4\x4e\x91\xe3\xda\x92\x2c\x22\x43\x82\x44\xbb\x88\x5c" "\x69\xe2\x69\xc8\xe9\xd8\x35\xb1\x14\x29\x3a\x4d\xdc\x6e"; const char private_c[] = "\xa0\xcb\x87\x9a\x47\xf5\xbc\x64\x4c\x0e\x69\x3f\xa6\xd0\x31\xc7\x4a\x15" "\x53\xb6\xe9\x01\xb9\xff\x2f\x51\x8c\x78\x04\x2f\xb5\x42"; const char public_a[] = "\x97\x5c\x9d\x81\xc9\x83\xc8\x20\x9e\xe7\x81\x25\x4b\x89\x9f\x8e\xd9\x25" "\xae\x9f\x09\x23\xc2\x3c\x62\xf5\x3c\x57\xcd\xbf\x69\x1c"; const char public_b[] = "\xd1\x73\x28\x99\xf6\x11\xcd\x89\x94\x03\x4d\x7f\x41\x3d\xc9\x57\x63\x0e" "\x54\x93\xc2\x85\xac\xa4\x00\x65\xcb\x63\x11\xbe\x69\x6b"; const char public_c[] = "\xf4\x4d\xa3\x67\xa8\x8e\xe6\x56\x4f\x02\x02\x11\x45\x67\x27\x08\x2f\x5c" "\xeb\xee\x8b\x1b\xf5\xeb\x73\x37\x34\x1b\x45\x9b\x39\x22"; const uint16_t listen_a = 20001; const uint16_t listen_b = 20002; const uint16_t listen_c = 20003; const uint16_t af_inet = AF_INET; const uint16_t af_inet6 = AF_INET6; const struct sockaddr_in endpoint_b_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_b), .sin_addr = {htonl(INADDR_LOOPBACK)}}; const struct sockaddr_in endpoint_c_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_c), .sin_addr = {htonl(INADDR_LOOPBACK)}}; struct sockaddr_in6 endpoint_a_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_a)}; endpoint_a_v6.sin6_addr = in6addr_loopback; struct sockaddr_in6 endpoint_c_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_c)}; endpoint_c_v6.sin6_addr = in6addr_loopback; const struct in_addr first_half_v4 = {0}; const struct in_addr second_half_v4 = {(uint32_t)htonl(128 << 24)}; const struct in6_addr first_half_v6 = {{{0}}}; const struct in6_addr second_half_v6 = {{{0x80}}}; const uint8_t half_cidr = 1; const uint16_t persistent_keepalives[] = {1, 3, 7, 9, 14, 19}; struct genlmsghdr genlhdr = {.cmd = WG_CMD_SET_DEVICE, .version = 1}; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) { return; } id = netlink_query_family_id(&nlmsg, sock, WG_GENL_NAME, true); if (id == -1) goto error; netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_a, strlen(ifname_a) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_a, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_a, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[0], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v6, sizeof(endpoint_c_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[1], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_b, strlen(ifname_b) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_b, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_b, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[2], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v4, sizeof(endpoint_c_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[3], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_c, strlen(ifname_c) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_c, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_c, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[4], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[5], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } error: close(sock); } static void initialize_netdevices(void) { char netdevsim[16]; sprintf(netdevsim, "netdevsim%d", (int)procid); struct { const char* type; const char* dev; } devtypes[] = { {"ip6gretap", "ip6gretap0"}, {"bridge", "bridge0"}, {"vcan", "vcan0"}, {"bond", "bond0"}, {"team", "team0"}, {"dummy", "dummy0"}, {"nlmon", "nlmon0"}, {"caif", "caif0"}, {"batadv", "batadv0"}, {"vxcan", "vxcan1"}, {"veth", 0}, {"wireguard", "wg0"}, {"wireguard", "wg1"}, {"wireguard", "wg2"}, }; const char* devmasters[] = {"bridge", "bond", "team", "batadv"}; struct { const char* name; int macsize; bool noipv6; } devices[] = { {"lo", ETH_ALEN}, {"sit0", 0}, {"bridge0", ETH_ALEN}, {"vcan0", 0, true}, {"tunl0", 0}, {"gre0", 0}, {"gretap0", ETH_ALEN}, {"ip_vti0", 0}, {"ip6_vti0", 0}, {"ip6tnl0", 0}, {"ip6gre0", 0}, {"ip6gretap0", ETH_ALEN}, {"erspan0", ETH_ALEN}, {"bond0", ETH_ALEN}, {"veth0", ETH_ALEN}, {"veth1", ETH_ALEN}, {"team0", ETH_ALEN}, {"veth0_to_bridge", ETH_ALEN}, {"veth1_to_bridge", ETH_ALEN}, {"veth0_to_bond", ETH_ALEN}, {"veth1_to_bond", ETH_ALEN}, {"veth0_to_team", ETH_ALEN}, {"veth1_to_team", ETH_ALEN}, {"veth0_to_hsr", ETH_ALEN}, {"veth1_to_hsr", ETH_ALEN}, {"hsr0", 0}, {"dummy0", ETH_ALEN}, {"nlmon0", 0}, {"vxcan0", 0, true}, {"vxcan1", 0, true}, {"caif0", ETH_ALEN}, {"batadv0", ETH_ALEN}, {netdevsim, ETH_ALEN}, {"xfrm0", ETH_ALEN}, {"veth0_virt_wifi", ETH_ALEN}, {"veth1_virt_wifi", ETH_ALEN}, {"virt_wifi0", ETH_ALEN}, {"veth0_vlan", ETH_ALEN}, {"veth1_vlan", ETH_ALEN}, {"vlan0", ETH_ALEN}, {"vlan1", ETH_ALEN}, {"macvlan0", ETH_ALEN}, {"macvlan1", ETH_ALEN}, {"ipvlan0", ETH_ALEN}, {"ipvlan1", ETH_ALEN}, {"veth0_macvtap", ETH_ALEN}, {"veth1_macvtap", ETH_ALEN}, {"macvtap0", ETH_ALEN}, {"macsec0", ETH_ALEN}, {"veth0_to_batadv", ETH_ALEN}, {"veth1_to_batadv", ETH_ALEN}, {"batadv_slave_0", ETH_ALEN}, {"batadv_slave_1", ETH_ALEN}, {"geneve0", ETH_ALEN}, {"geneve1", ETH_ALEN}, {"wg0", 0}, {"wg1", 0}, {"wg2", 0}, }; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) netlink_add_device(&nlmsg, sock, devtypes[i].type, devtypes[i].dev); for (i = 0; i < sizeof(devmasters) / (sizeof(devmasters[0])); i++) { char master[32], slave0[32], veth0[32], slave1[32], veth1[32]; sprintf(slave0, "%s_slave_0", devmasters[i]); sprintf(veth0, "veth0_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave0, veth0); sprintf(slave1, "%s_slave_1", devmasters[i]); sprintf(veth1, "veth1_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave1, veth1); sprintf(master, "%s0", devmasters[i]); netlink_device_change(&nlmsg, sock, slave0, false, master, 0, 0, NULL); netlink_device_change(&nlmsg, sock, slave1, false, master, 0, 0, NULL); } netlink_add_xfrm(&nlmsg, sock, "xfrm0"); netlink_device_change(&nlmsg, sock, "bridge_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "bridge_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "hsr_slave_0", "veth0_to_hsr"); netlink_add_veth(&nlmsg, sock, "hsr_slave_1", "veth1_to_hsr"); netlink_add_hsr(&nlmsg, sock, "hsr0", "hsr_slave_0", "hsr_slave_1"); netlink_device_change(&nlmsg, sock, "hsr_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "hsr_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "veth0_virt_wifi", "veth1_virt_wifi"); netlink_add_linked(&nlmsg, sock, "virt_wifi", "virt_wifi0", "veth1_virt_wifi"); netlink_add_veth(&nlmsg, sock, "veth0_vlan", "veth1_vlan"); netlink_add_vlan(&nlmsg, sock, "vlan0", "veth0_vlan", 0, htons(ETH_P_8021Q)); netlink_add_vlan(&nlmsg, sock, "vlan1", "veth0_vlan", 1, htons(ETH_P_8021AD)); netlink_add_macvlan(&nlmsg, sock, "macvlan0", "veth1_vlan"); netlink_add_macvlan(&nlmsg, sock, "macvlan1", "veth1_vlan"); netlink_add_ipvlan(&nlmsg, sock, "ipvlan0", "veth0_vlan", IPVLAN_MODE_L2, 0); netlink_add_ipvlan(&nlmsg, sock, "ipvlan1", "veth0_vlan", IPVLAN_MODE_L3S, IPVLAN_F_VEPA); netlink_add_veth(&nlmsg, sock, "veth0_macvtap", "veth1_macvtap"); netlink_add_linked(&nlmsg, sock, "macvtap", "macvtap0", "veth0_macvtap"); netlink_add_linked(&nlmsg, sock, "macsec", "macsec0", "veth1_macvtap"); char addr[32]; sprintf(addr, DEV_IPV4, 14 + 10); struct in_addr geneve_addr4; if (inet_pton(AF_INET, addr, &geneve_addr4) <= 0) exit(1); struct in6_addr geneve_addr6; if (inet_pton(AF_INET6, "fc00::01", &geneve_addr6) <= 0) exit(1); netlink_add_geneve(&nlmsg, sock, "geneve0", 0, &geneve_addr4, 0); netlink_add_geneve(&nlmsg, sock, "geneve1", 1, 0, &geneve_addr6); netdevsim_add((int)procid, 4); netlink_wireguard_setup(); for (i = 0; i < sizeof(devices) / (sizeof(devices[0])); i++) { char addr[32]; sprintf(addr, DEV_IPV4, i + 10); netlink_add_addr4(&nlmsg, sock, devices[i].name, addr); if (!devices[i].noipv6) { sprintf(addr, DEV_IPV6, i + 10); netlink_add_addr6(&nlmsg, sock, devices[i].name, addr); } uint64_t macaddr = DEV_MAC + ((i + 10ull) << 40); netlink_device_change(&nlmsg, sock, devices[i].name, true, 0, &macaddr, devices[i].macsize, NULL); } close(sock); } static void initialize_netdevices_init(void) { int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); struct { const char* type; int macsize; bool noipv6; bool noup; } devtypes[] = { {"nr", 7, true}, {"rose", 5, true, true}, }; unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) { char dev[32], addr[32]; sprintf(dev, "%s%d", devtypes[i].type, (int)procid); sprintf(addr, "172.30.%d.%d", i, (int)procid + 1); netlink_add_addr4(&nlmsg, sock, dev, addr); if (!devtypes[i].noipv6) { sprintf(addr, "fe88::%02x:%02x", i, (int)procid + 1); netlink_add_addr6(&nlmsg, sock, dev, addr); } int macsize = devtypes[i].macsize; uint64_t macaddr = 0xbbbbbb + ((unsigned long long)i << (8 * (macsize - 2))) + (procid << (8 * (macsize - 1))); netlink_device_change(&nlmsg, sock, dev, !devtypes[i].noup, 0, &macaddr, macsize, NULL); } close(sock); } static int read_tun(char* data, int size) { if (tunfd < 0) return -1; int rv = read(tunfd, data, size); if (rv < 0) { if (errno == EAGAIN || errno == EBADF || errno == EBADFD) return -1; exit(1); } return rv; } static void flush_tun() { char data[1000]; while (read_tun(&data[0], sizeof(data)) != -1) { } } #define MAX_FDS 30 #define BTPROTO_HCI 1 #define ACL_LINK 1 #define SCAN_PAGE 2 typedef struct { uint8_t b[6]; } __attribute__((packed)) bdaddr_t; #define HCI_COMMAND_PKT 1 #define HCI_EVENT_PKT 4 #define HCI_VENDOR_PKT 0xff struct hci_command_hdr { uint16_t opcode; uint8_t plen; } __attribute__((packed)); struct hci_event_hdr { uint8_t evt; uint8_t plen; } __attribute__((packed)); #define HCI_EV_CONN_COMPLETE 0x03 struct hci_ev_conn_complete { uint8_t status; uint16_t handle; bdaddr_t bdaddr; uint8_t link_type; uint8_t encr_mode; } __attribute__((packed)); #define HCI_EV_CONN_REQUEST 0x04 struct hci_ev_conn_request { bdaddr_t bdaddr; uint8_t dev_class[3]; uint8_t link_type; } __attribute__((packed)); #define HCI_EV_REMOTE_FEATURES 0x0b struct hci_ev_remote_features { uint8_t status; uint16_t handle; uint8_t features[8]; } __attribute__((packed)); #define HCI_EV_CMD_COMPLETE 0x0e struct hci_ev_cmd_complete { uint8_t ncmd; uint16_t opcode; } __attribute__((packed)); #define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a #define HCI_OP_READ_BUFFER_SIZE 0x1005 struct hci_rp_read_buffer_size { uint8_t status; uint16_t acl_mtu; uint8_t sco_mtu; uint16_t acl_max_pkt; uint16_t sco_max_pkt; } __attribute__((packed)); #define HCI_OP_READ_BD_ADDR 0x1009 struct hci_rp_read_bd_addr { uint8_t status; bdaddr_t bdaddr; } __attribute__((packed)); #define HCI_EV_LE_META 0x3e struct hci_ev_le_meta { uint8_t subevent; } __attribute__((packed)); #define HCI_EV_LE_CONN_COMPLETE 0x01 struct hci_ev_le_conn_complete { uint8_t status; uint16_t handle; uint8_t role; uint8_t bdaddr_type; bdaddr_t bdaddr; uint16_t interval; uint16_t latency; uint16_t supervision_timeout; uint8_t clk_accurancy; } __attribute__((packed)); struct hci_dev_req { uint16_t dev_id; uint32_t dev_opt; }; struct vhci_vendor_pkt_request { uint8_t type; uint8_t opcode; } __attribute__((packed)); struct vhci_pkt { uint8_t type; union { struct { uint8_t opcode; uint16_t id; } __attribute__((packed)) vendor_pkt; struct hci_command_hdr command_hdr; }; } __attribute__((packed)); #define HCIDEVUP _IOW('H', 201, int) #define HCISETSCAN _IOW('H', 221, int) static int vhci_fd = -1; static void rfkill_unblock_all() { int fd = open("/dev/rfkill", O_WRONLY); if (fd < 0) exit(1); struct rfkill_event event = {0}; event.idx = 0; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; event.soft = 0; event.hard = 0; if (write(fd, &event, sizeof(event)) < 0) exit(1); close(fd); } static void hci_send_event_packet(int fd, uint8_t evt, void* data, size_t data_len) { struct iovec iv[3]; struct hci_event_hdr hdr; hdr.evt = evt; hdr.plen = data_len; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = data; iv[2].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static void hci_send_event_cmd_complete(int fd, uint16_t opcode, void* data, size_t data_len) { struct iovec iv[4]; struct hci_event_hdr hdr; hdr.evt = HCI_EV_CMD_COMPLETE; hdr.plen = sizeof(struct hci_ev_cmd_complete) + data_len; struct hci_ev_cmd_complete evt_hdr; evt_hdr.ncmd = 1; evt_hdr.opcode = opcode; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = &evt_hdr; iv[2].iov_len = sizeof(evt_hdr); iv[3].iov_base = data; iv[3].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static bool process_command_pkt(int fd, char* buf, ssize_t buf_size) { struct hci_command_hdr* hdr = (struct hci_command_hdr*)buf; if (buf_size < (ssize_t)sizeof(struct hci_command_hdr) || hdr->plen != buf_size - sizeof(struct hci_command_hdr)) exit(1); switch (hdr->opcode) { case HCI_OP_WRITE_SCAN_ENABLE: { uint8_t status = 0; hci_send_event_cmd_complete(fd, hdr->opcode, &status, sizeof(status)); return true; } case HCI_OP_READ_BD_ADDR: { struct hci_rp_read_bd_addr rp = {0}; rp.status = 0; memset(&rp.bdaddr, 0xaa, 6); hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } case HCI_OP_READ_BUFFER_SIZE: { struct hci_rp_read_buffer_size rp = {0}; rp.status = 0; rp.acl_mtu = 1021; rp.sco_mtu = 96; rp.acl_max_pkt = 4; rp.sco_max_pkt = 6; hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } } char dummy[0xf9] = {0}; hci_send_event_cmd_complete(fd, hdr->opcode, dummy, sizeof(dummy)); return false; } static void* event_thread(void* arg) { while (1) { char buf[1024] = {0}; ssize_t buf_size = read(vhci_fd, buf, sizeof(buf)); if (buf_size < 0) exit(1); if (buf_size > 0 && buf[0] == HCI_COMMAND_PKT) { if (process_command_pkt(vhci_fd, buf + 1, buf_size - 1)) break; } } return NULL; } #define HCI_HANDLE_1 200 #define HCI_HANDLE_2 201 #define HCI_PRIMARY 0 #define HCI_OP_RESET 0x0c03 static void initialize_vhci() { int hci_sock = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI); if (hci_sock < 0) exit(1); vhci_fd = open("/dev/vhci", O_RDWR); if (vhci_fd == -1) exit(1); const int kVhciFd = 202; if (dup2(vhci_fd, kVhciFd) < 0) exit(1); close(vhci_fd); vhci_fd = kVhciFd; struct vhci_vendor_pkt_request vendor_pkt_req = {HCI_VENDOR_PKT, HCI_PRIMARY}; if (write(vhci_fd, &vendor_pkt_req, sizeof(vendor_pkt_req)) != sizeof(vendor_pkt_req)) exit(1); struct vhci_pkt vhci_pkt; if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); if (vhci_pkt.type == HCI_COMMAND_PKT && vhci_pkt.command_hdr.opcode == HCI_OP_RESET) { char response[1] = {0}; hci_send_event_cmd_complete(vhci_fd, HCI_OP_RESET, response, sizeof(response)); if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); } if (vhci_pkt.type != HCI_VENDOR_PKT) exit(1); int dev_id = vhci_pkt.vendor_pkt.id; pthread_t th; if (pthread_create(&th, NULL, event_thread, NULL)) exit(1); int ret = ioctl(hci_sock, HCIDEVUP, dev_id); if (ret) { if (errno == ERFKILL) { rfkill_unblock_all(); ret = ioctl(hci_sock, HCIDEVUP, dev_id); } if (ret && errno != EALREADY) exit(1); } struct hci_dev_req dr = {0}; dr.dev_id = dev_id; dr.dev_opt = SCAN_PAGE; if (ioctl(hci_sock, HCISETSCAN, &dr)) exit(1); struct hci_ev_conn_request request; memset(&request, 0, sizeof(request)); memset(&request.bdaddr, 0xaa, 6); *(uint8_t*)&request.bdaddr.b[5] = 0x10; request.link_type = ACL_LINK; hci_send_event_packet(vhci_fd, HCI_EV_CONN_REQUEST, &request, sizeof(request)); struct hci_ev_conn_complete complete; memset(&complete, 0, sizeof(complete)); complete.status = 0; complete.handle = HCI_HANDLE_1; memset(&complete.bdaddr, 0xaa, 6); *(uint8_t*)&complete.bdaddr.b[5] = 0x10; complete.link_type = ACL_LINK; complete.encr_mode = 0; hci_send_event_packet(vhci_fd, HCI_EV_CONN_COMPLETE, &complete, sizeof(complete)); struct hci_ev_remote_features features; memset(&features, 0, sizeof(features)); features.status = 0; features.handle = HCI_HANDLE_1; hci_send_event_packet(vhci_fd, HCI_EV_REMOTE_FEATURES, &features, sizeof(features)); struct { struct hci_ev_le_meta le_meta; struct hci_ev_le_conn_complete le_conn; } le_conn; memset(&le_conn, 0, sizeof(le_conn)); le_conn.le_meta.subevent = HCI_EV_LE_CONN_COMPLETE; memset(&le_conn.le_conn.bdaddr, 0xaa, 6); *(uint8_t*)&le_conn.le_conn.bdaddr.b[5] = 0x11; le_conn.le_conn.role = 1; le_conn.le_conn.handle = HCI_HANDLE_2; hci_send_event_packet(vhci_fd, HCI_EV_LE_META, &le_conn, sizeof(le_conn)); pthread_join(th, NULL); close(hci_sock); } static long syz_genetlink_get_family_id(volatile long name, volatile long sock_arg) { int fd = sock_arg; if (fd < 0) { fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (fd == -1) { return -1; } } struct nlmsg nlmsg_tmp; int ret = netlink_query_family_id(&nlmsg_tmp, fd, (char*)name, false); if ((int)sock_arg < 0) close(fd); if (ret < 0) { return -1; } return ret; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define XT_TABLE_SIZE 1536 #define XT_MAX_ENTRIES 10 struct xt_counters { uint64_t pcnt, bcnt; }; struct ipt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_entries; unsigned int size; }; struct ipt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_table_desc { const char* name; struct ipt_getinfo info; struct ipt_replace replace; }; static struct ipt_table_desc ipv4_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; static struct ipt_table_desc ipv6_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; #define IPT_BASE_CTL 64 #define IPT_SO_SET_REPLACE (IPT_BASE_CTL) #define IPT_SO_GET_INFO (IPT_BASE_CTL) #define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1) struct arpt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_entries; unsigned int size; }; struct arpt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_table_desc { const char* name; struct arpt_getinfo info; struct arpt_replace replace; }; static struct arpt_table_desc arpt_tables[] = { {.name = "filter"}, }; #define ARPT_BASE_CTL 96 #define ARPT_SO_SET_REPLACE (ARPT_BASE_CTL) #define ARPT_SO_GET_INFO (ARPT_BASE_CTL) #define ARPT_SO_GET_ENTRIES (ARPT_BASE_CTL + 1) static void checkpoint_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; if (table->info.valid_hooks == 0) continue; struct ipt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, level, IPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_arptables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_arptables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; if (table->info.valid_hooks == 0) continue; struct arpt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } else { } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, SOL_IP, ARPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } #define NF_BR_NUMHOOKS 6 #define EBT_TABLE_MAXNAMELEN 32 #define EBT_CHAIN_MAXNAMELEN 32 #define EBT_BASE_CTL 128 #define EBT_SO_SET_ENTRIES (EBT_BASE_CTL) #define EBT_SO_GET_INFO (EBT_BASE_CTL) #define EBT_SO_GET_ENTRIES (EBT_SO_GET_INFO + 1) #define EBT_SO_GET_INIT_INFO (EBT_SO_GET_ENTRIES + 1) #define EBT_SO_GET_INIT_ENTRIES (EBT_SO_GET_INIT_INFO + 1) struct ebt_replace { char name[EBT_TABLE_MAXNAMELEN]; unsigned int valid_hooks; unsigned int nentries; unsigned int entries_size; struct ebt_entries* hook_entry[NF_BR_NUMHOOKS]; unsigned int num_counters; struct ebt_counter* counters; char* entries; }; struct ebt_entries { unsigned int distinguisher; char name[EBT_CHAIN_MAXNAMELEN]; unsigned int counter_offset; int policy; unsigned int nentries; char data[0] __attribute__((aligned(__alignof__(struct ebt_replace)))); }; struct ebt_table_desc { const char* name; struct ebt_replace replace; char entrytable[XT_TABLE_SIZE]; }; static struct ebt_table_desc ebt_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "broute"}, }; static void checkpoint_ebtables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (size_t i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_INFO, &table->replace, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->replace.entries_size > sizeof(table->entrytable)) exit(1); table->replace.num_counters = 0; table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_ENTRIES, &table->replace, &optlen)) exit(1); } close(fd); } static void reset_ebtables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; if (table->replace.valid_hooks == 0) continue; struct ebt_replace replace; memset(&replace, 0, sizeof(replace)); strcpy(replace.name, table->name); socklen_t optlen = sizeof(replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INFO, &replace, &optlen)) exit(1); replace.num_counters = 0; table->replace.entries = 0; for (unsigned h = 0; h < NF_BR_NUMHOOKS; h++) table->replace.hook_entry[h] = 0; if (memcmp(&table->replace, &replace, sizeof(table->replace)) == 0) { char entrytable[XT_TABLE_SIZE]; memset(&entrytable, 0, sizeof(entrytable)); replace.entries = entrytable; optlen = sizeof(replace) + replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_ENTRIES, &replace, &optlen)) exit(1); if (memcmp(table->entrytable, entrytable, replace.entries_size) == 0) continue; } for (unsigned j = 0, h = 0; h < NF_BR_NUMHOOKS; h++) { if (table->replace.valid_hooks & (1 << h)) { table->replace.hook_entry[h] = (struct ebt_entries*)table->entrytable + j; j++; } } table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (setsockopt(fd, SOL_IP, EBT_SO_SET_ENTRIES, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_net_namespace(void) { checkpoint_ebtables(); checkpoint_arptables(); checkpoint_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); checkpoint_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void reset_net_namespace(void) { reset_ebtables(); reset_arptables(); reset_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); reset_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void mount_cgroups(const char* dir, const char** controllers, int count) { if (mkdir(dir, 0777)) { return; } char enabled[128] = {0}; int i = 0; for (; i < count; i++) { if (mount("none", dir, "cgroup", 0, controllers[i])) { continue; } umount(dir); strcat(enabled, ","); strcat(enabled, controllers[i]); } if (enabled[0] == 0) { if (rmdir(dir) && errno != EBUSY) exit(1); return; } if (mount("none", dir, "cgroup", 0, enabled + 1)) { if (rmdir(dir) && errno != EBUSY) exit(1); } if (chmod(dir, 0777)) { } } static void mount_cgroups2(const char** controllers, int count) { if (mkdir("/syzcgroup/unified", 0777)) { return; } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { if (rmdir("/syzcgroup/unified") && errno != EBUSY) exit(1); return; } if (chmod("/syzcgroup/unified", 0777)) { } int control = open("/syzcgroup/unified/cgroup.subtree_control", O_WRONLY); if (control == -1) return; int i; for (i = 0; i < count; i++) if (write(control, controllers[i], strlen(controllers[i])) < 0) { } close(control); } static void setup_cgroups() { const char* unified_controllers[] = {"+cpu", "+io", "+pids"}; const char* net_controllers[] = {"net", "net_prio", "devices", "blkio", "freezer"}; const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit", "memory"}; if (mkdir("/syzcgroup", 0777)) { return; } mount_cgroups2(unified_controllers, sizeof(unified_controllers) / sizeof(unified_controllers[0])); mount_cgroups("/syzcgroup/net", net_controllers, sizeof(net_controllers) / sizeof(net_controllers[0])); mount_cgroups("/syzcgroup/cpu", cpu_controllers, sizeof(cpu_controllers) / sizeof(cpu_controllers[0])); write_file("/syzcgroup/cpu/cgroup.clone_children", "1"); write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1"); } static void setup_cgroups_loop() { int pid = getpid(); char file[128]; char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); write_file(file, "32"); snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(file, sizeof(file), "%s/memory.soft_limit_in_bytes", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.limit_in_bytes", cgroupdir); write_file(file, "%d", 300 << 20); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); } static void setup_cgroups_test() { char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } } static void initialize_cgroups() { if (mkdir("./syz-tmp/newroot/syzcgroup", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/unified", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/cpu", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/net", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/syzcgroup/unified", "./syz-tmp/newroot/syzcgroup/unified", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/cpu", "./syz-tmp/newroot/syzcgroup/cpu", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/net", "./syz-tmp/newroot/syzcgroup/net", NULL, bind_mount_flags, NULL)) { } } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); initialize_cgroups(); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); initialize_vhci(); sandbox_common(); drop_caps(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_tun(); initialize_netdevices(); sandbox_common_mount_tmpfs(); loop(); exit(1); } #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 setup_loop() { setup_cgroups_loop(); checkpoint_net_namespace(); } 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); } reset_net_namespace(); } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); setup_cgroups_test(); write_file("/proc/self/oom_score_adj", "1000"); flush_tun(); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static const char* setup_usb() { if (chmod("/dev/raw-gadget", 0666)) return "failed to chmod /dev/raw-gadget"; return NULL; } #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; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 11; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); if (call == 8) break; event_timedwait(&th->done, 50 + (call == 8 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { setup_loop(); 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); } } uint64_t r[4] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: res = syscall(__NR_socket, /*domain=*/0x10ul, /*type=*/3ul, /*proto=*/0); if (res != -1) r[0] = res; break; case 1: NONFAILING(*(uint64_t*)0x200000000100 = 0); NONFAILING(*(uint32_t*)0x200000000108 = 0); NONFAILING(*(uint64_t*)0x200000000110 = 0x2000000000c0); NONFAILING(*(uint64_t*)0x2000000000c0 = 0x200000000140); NONFAILING(*(uint32_t*)0x200000000140 = 0x1c); NONFAILING(*(uint16_t*)0x200000000144 = 0x68); NONFAILING(*(uint16_t*)0x200000000146 = 0x78e9); NONFAILING(*(uint32_t*)0x200000000148 = 0); NONFAILING(*(uint32_t*)0x20000000014c = 0); NONFAILING(*(uint8_t*)0x200000000150 = 0xa); NONFAILING(*(uint8_t*)0x200000000151 = 0); NONFAILING(*(uint8_t*)0x200000000152 = 0); NONFAILING(*(uint8_t*)0x200000000153 = 0); NONFAILING(*(uint32_t*)0x200000000154 = 0); NONFAILING(*(uint16_t*)0x200000000158 = 4); NONFAILING(*(uint16_t*)0x20000000015a = 4); NONFAILING(*(uint64_t*)0x2000000000c8 = 0x1c); NONFAILING(*(uint64_t*)0x200000000118 = 1); NONFAILING(*(uint64_t*)0x200000000120 = 0); NONFAILING(*(uint64_t*)0x200000000128 = 0); NONFAILING(*(uint32_t*)0x200000000130 = 0); syscall(__NR_sendmsg, /*fd=*/r[0], /*msg=*/0x200000000100ul, /*f=*/0ul); break; case 2: res = syscall(__NR_socket, /*domain=*/0x10ul, /*type=*/3ul, /*proto=*/0); if (res != -1) r[1] = res; break; case 3: NONFAILING(*(uint64_t*)0x200000000000 = 0); NONFAILING(*(uint32_t*)0x200000000008 = 0); NONFAILING(*(uint64_t*)0x200000000010 = 0x2000000001c0); NONFAILING(*(uint64_t*)0x2000000001c0 = 0x200000000300); NONFAILING(*(uint32_t*)0x200000000300 = 0x24); NONFAILING(*(uint16_t*)0x200000000304 = 0x68); NONFAILING(*(uint16_t*)0x200000000306 = 1); NONFAILING(*(uint32_t*)0x200000000308 = 2); NONFAILING(*(uint32_t*)0x20000000030c = 0x7ffffffc); NONFAILING(*(uint8_t*)0x200000000310 = 0); NONFAILING(*(uint8_t*)0x200000000311 = 0); NONFAILING(*(uint8_t*)0x200000000312 = 0); NONFAILING(*(uint8_t*)0x200000000313 = 0); NONFAILING(*(uint32_t*)0x200000000314 = 0); NONFAILING(*(uint16_t*)0x200000000318 = 0xc); NONFAILING(*(uint16_t*)0x20000000031a = 2); NONFAILING(*(uint32_t*)0x20000000031c = 1); NONFAILING(*(uint8_t*)0x200000000320 = 4); NONFAILING(*(uint8_t*)0x200000000321 = 0); NONFAILING(*(uint16_t*)0x200000000322 = 0); NONFAILING(*(uint64_t*)0x2000000001c8 = 0x24); NONFAILING(*(uint64_t*)0x200000000018 = 1); NONFAILING(*(uint64_t*)0x200000000020 = 0); NONFAILING(*(uint64_t*)0x200000000028 = 0); NONFAILING(*(uint32_t*)0x200000000030 = 0x24008000); syscall(__NR_sendmsg, /*fd=*/r[1], /*msg=*/0x200000000000ul, /*f=MSG_NOSIGNAL*/ 0x4000ul); break; case 4: res = syscall(__NR_socket, /*domain=*/0x10ul, /*type=*/3ul, /*proto=*/0); if (res != -1) r[2] = res; break; case 5: NONFAILING(*(uint64_t*)0x200000000180 = 0); NONFAILING(*(uint32_t*)0x200000000188 = 0); NONFAILING(*(uint64_t*)0x200000000190 = 0x200000000780); NONFAILING(*(uint64_t*)0x200000000780 = 0x200000000380); NONFAILING(memcpy( (void*)0x200000000380, "\x30\x00\x00\x00\x18\x00\xdd\x8d\x00\x00\x00\x00\x00\x00\x00\x00\x0a" "\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x08\x00\x1e\x00\x02", 33)); NONFAILING(*(uint64_t*)0x200000000788 = 0x30); NONFAILING(*(uint64_t*)0x200000000198 = 1); NONFAILING(*(uint64_t*)0x2000000001a0 = 0); NONFAILING(*(uint64_t*)0x2000000001a8 = 0); NONFAILING(*(uint32_t*)0x2000000001b0 = 0); syscall(__NR_sendmsg, /*fd=*/r[2], /*msg=*/0x200000000180ul, /*f=MSG_PROBE|MSG_NOSIGNAL|MSG_EOR*/ 0x4090ul); break; case 6: res = syscall(__NR_socket, /*domain=*/0x10ul, /*type=*/3ul, /*proto=*/0); if (res != -1) r[3] = res; break; case 7: NONFAILING(*(uint64_t*)0x200000000100 = 0); NONFAILING(*(uint32_t*)0x200000000108 = 0); NONFAILING(*(uint64_t*)0x200000000110 = 0x2000000000c0); NONFAILING(*(uint64_t*)0x2000000000c0 = 0x200000000000); NONFAILING(*(uint32_t*)0x200000000000 = 0x24); NONFAILING(*(uint16_t*)0x200000000004 = 0x68); NONFAILING(*(uint16_t*)0x200000000006 = 0x309); NONFAILING(*(uint32_t*)0x200000000008 = 0); NONFAILING(*(uint32_t*)0x20000000000c = 0); NONFAILING(*(uint8_t*)0x200000000010 = 0xa); NONFAILING(*(uint8_t*)0x200000000011 = 0); NONFAILING(*(uint8_t*)0x200000000012 = 0); NONFAILING(*(uint8_t*)0x200000000013 = 0); NONFAILING(*(uint32_t*)0x200000000014 = 0); NONFAILING(*(uint16_t*)0x200000000018 = 4); NONFAILING(*(uint16_t*)0x20000000001a = 0xb); NONFAILING(*(uint16_t*)0x20000000001c = 8); NONFAILING(*(uint16_t*)0x20000000001e = 1); NONFAILING(*(uint32_t*)0x200000000020 = 1); NONFAILING(*(uint64_t*)0x2000000000c8 = 0x24); NONFAILING(*(uint64_t*)0x200000000118 = 1); NONFAILING(*(uint64_t*)0x200000000120 = 0); NONFAILING(*(uint64_t*)0x200000000128 = 0); NONFAILING(*(uint32_t*)0x200000000130 = 0); syscall(__NR_sendmsg, /*fd=*/r[3], /*msg=*/0x200000000100ul, /*f=*/0ul); break; case 8: NONFAILING(memcpy((void*)0x200000000800, "xfs\000", 4)); NONFAILING(memcpy((void*)0x200000000000, "./file0\000", 8)); NONFAILING(memcpy((void*)0x200000000340, "quota", 5)); NONFAILING(*(uint8_t*)0x200000000345 = 0x2c); NONFAILING(memcpy((void*)0x200000000346, "usrquota", 8)); NONFAILING(*(uint8_t*)0x20000000034e = 0x2c); NONFAILING(memcpy((void*)0x20000000034f, "prjquota", 8)); NONFAILING(*(uint8_t*)0x200000000357 = 0x2c); NONFAILING(*(uint8_t*)0x200000000358 = 0); NONFAILING(memcpy( (void*)0x20000000c380, "\x78\x9c\xec\xdd\x0d\x6c\x5d\x65\xfd\xc0\xf1\xd3\xae\xed\x56\xe0\x0f" "\xe4\x8f\x46\x23\x12\xca\x06\x1b\x08\xa3\xb4\x9d\xeb\x78\x51\xda\x32" "\x36\xca\xa0\x20\x13\xa8\x8e\xb7\xc1\xca\x98\x0c\x66\xd8\xa2\x30\x48" "\x28\x1a\x03\x4a\x08\x2a\xf1\x2d\xc4\xc8\x9b\x88\x81\xf8\x82\x33\xbe" "\x80\x61\x6a\x60\x20\x81\x8d\x20\x0c\x44\x05\x13\x19\x60\x02\x8c\x61" "\x36\xd4\x40\xcd\xe9\x3d\xb7\x6b\xef\xba\x86\x3e\xdb\xf3\xd4\xd1\xcf" "\x27\x59\xcf\x3d\xe7\xf6\x77\x76\x7b\xbf\x7d\xce\xa5\x64\x6d\xbb\xe7" "\xcc\xef\xc8\xb2\x9a\xac\xa4\x37\xab\x74\xf3\xf2\x13\x5e\x6c\xbc\xa5" "\xfd\xfb\xdf\x98\xfa\xe0\x51\x8b\xaf\xaf\x7a\xb3\x74\xb4\x6d\x52\x71" "\x77\x43\xb1\x3d\xa0\xd8\x4e\xce\xfa\x4f\xd6\x96\xdf\xae\x2e\x1d\xaa" "\xf9\xf6\xaa\x9f\x57\xe7\x3b\xd5\x83\xcf\xbb\x5b\x7d\x7d\xd5\x9e\x59" "\xf6\xbe\x62\xb7\xad\xd8\xb6\x96\x36\x57\x36\x95\xdf\xaf\xaf\x42\x71" "\x78\xef\xf2\xfd\xd5\x03\x0f\xa3\xea\x2b\xa5\x3f\x03\xea\xf3\x37\x5f" "\x9a\x3d\x79\xd1\xe0\xf3\xe4\xef\x98\x65\xd9\x11\xdb\x7c\xa0\xe3\x54" "\x77\xfb\xdc\x39\xc5\x73\x92\x0d\xea\x36\xa1\xb8\xbb\x6a\xeb\x7d\xfd" "\xdb\x9a\xd2\x9f\x63\xff\x90\x65\xc7\xae\xc9\xb6\xfb\xf9\x31\xa6\x8a" "\xc7\xbb\x68\xcf\xb1\x7e\x20\xbb\x82\xee\xf6\xb9\x9d\x15\xfd\xdb\x8a" "\xce\x55\xc5\x7a\x6c\xa8\x5c\x83\xe3\x51\xe5\xe7\xf9\x05\xe7\x34\x2d" "\x2b\x9e\xc2\xaa\xc1\xd7\xa3\x5d\x4d\x77\xfb\x9c\x93\xb2\x11\xd6\xf1" "\x3f\xfe\xfc\xf5\xde\xbe\xd2\x75\xb3\x36\xcb\xb2\xba\x2c\xcb\x26\x66" "\x59\x36\x69\xac\x7b\xb0\x73\xb4\x77\xb4\x74\xe4\xd7\xfc\xf2\x7e\x91" "\xbd\xbc\xfe\xf7\x1e\xee\xf3\xe2\x9e\xff\x5c\xfb\xd3\x2c\xcb\xfe\xaf" "\x78\x9d\x38\xb2\xfc\x5a\x00\xec\x5a\xda\x3b\x5a\x8e\x1b\x66\xfd\xd7" "\x8d\xb4\xfe\xef\x3d\x71\xdd\xad\xd6\x3f\xec\xfa\x3a\xdb\x3b\x5a\xf2" "\xb5\x5e\xb1\xfe\x27\x8d\xb4\xfe\xa7\xde\x77\xfc\x82\xe2\x8b\xee\xd6" "\xd2\xd4\x3b\x63\xfb\x41\x00\x00\x00\x00\x00\xc3\x5a\x7e\xc5\xca\x8b" "\x17\x2e\x5d\xda\x73\x99\x1b\x6e\xb8\xe1\xc6\xc0\x8d\xb1\xbe\x32\x01" "\xb1\x6d\x5d\xf4\x63\xfd\x48\x80\xd4\x52\xfc\xe7\xc4\x58\x7f\x8c\x00" "\x00\x00\x30\xde\x75\x76\xb5\xbf\x3a\xa1\x6a\xc8\xa1\x09\x83\x77\xf6" "\x7b\xac\xa7\x7f\x3b\x63\x4b\xf7\x45\x2b\xef\x9b\x7d\x72\x79\x5b\xdc" "\x3d\x6f\x98\x53\x0e\xf9\x3e\xff\xbe\xbe\xbe\xbe\x55\x67\x2d\x3d\xbf" "\xd8\x9d\x58\xf1\xfd\xb2\x93\x2a\x87\xf3\xf3\x2f\x79\x70\xe1\xe5\xc5" "\x6e\x43\xe5\xf7\x1f\xd4\xf6\x1f\xad\xcd\xce\xbb\x70\xc9\xd2\x9e\x23" "\xf2\xbf\x6a\x4a\x6d\x76\x79\xbe\xd3\x94\x9f\x77\x6a\x6d\xf6\xd5\x7c" "\xa7\x39\xdf\x99\x56\x9b\xdd\x95\xef\xb4\xf4\xef\xd4\x67\xab\xf3\x9d" "\xc3\x2f\x58\xb6\x74\x51\x7e\xe0\xe0\xc0\x67\xec\xbd\xa5\xb3\xab\x37" "\x9b\x30\xa4\x58\x36\xe4\xb3\x61\x70\xff\x25\x0f\xf6\xfe\xb2\xbc\x1d" "\xe1\x94\xe5\xb3\xf5\xff\x50\x89\xbc\xff\xe6\xa6\xdb\xef\xad\xb8\xaf" "\x6c\x3b\xfd\x07\xce\x7f\xc0\xff\xe0\xcf\x17\x78\x4f\x19\x5d\xff\xeb" "\xae\x2b\x6f\x47\x38\xe5\x36\xeb\x7f\xdd\xe2\x99\x4d\xc3\xdd\xb7\xfd" "\xfe\x03\xe7\x9f\xac\x7f\x5c\xc3\x5c\xff\x87\x34\xaa\xbc\xee\x57\x5c" "\xff\x1b\x86\x39\xe5\xc0\xfc\xaf\xce\xfc\xda\x8b\x79\xff\xe9\x3f\x59" "\x7b\x7d\x71\xa8\xe6\xdd\x5c\xff\x07\x9d\x7f\x4a\x65\xff\xfe\x93\x0f" "\x5c\xff\xf3\x53\x1d\x58\xbe\xfe\xe7\xaf\x2d\x07\xed\xd0\x93\x31\x0e" "\x75\x76\x5d\xf3\xea\x48\xeb\x7f\xe4\xfe\x35\x1f\x2a\xde\xad\x7a\xd0" "\xec\xc0\xd9\x5a\xfa\xee\xfc\x4c\xde\xff\xfe\x1b\xda\x9e\x2a\x0e\xd5" "\x8e\xb2\xff\x81\x23\xad\xff\xaa\x86\x6d\xae\x27\x8c\x52\x67\xd7\xad" "\x7d\x15\xeb\x7f\x14\xfd\xb3\x69\xc3\x9c\x72\xa0\xc9\x1e\xb3\x3b\x57" "\xe5\xfd\xdf\x78\xfb\xf1\x27\x06\xdd\x37\x9a\xfe\x07\x55\xf6\x6f\x5c" "\x71\xc9\x67\x1b\x97\x5f\xb1\x72\xfa\x92\x4b\x16\x2e\xee\x59\xdc\x73" "\x69\x4b\xf3\xcc\xd6\xe6\xd6\xa6\x59\xb3\x66\x36\xf6\x5f\x12\x4a\x6f" "\x77\xec\x49\x19\x47\x76\x6c\xfd\x67\xbb\x55\xcc\x54\x65\xd9\x41\x03" "\xf3\xb3\xae\x3a\x7e\x7d\xde\xff\x4f\xb7\x9d\x71\x47\x71\x68\xd2\x28" "\xfb\x4f\x1d\x71\xfd\x9f\x37\xf4\xb1\x32\xc8\xe4\xea\xac\xae\x2e\xbb" "\x7c\xe1\x8a\x15\x97\x35\x95\xde\x96\x77\x9b\x4b\x6f\x4b\xef\x36\x4c" "\xff\x51\xbc\xfe\x4f\x29\x7f\x11\x55\x5f\x6c\xab\xb2\xec\x83\x03\xf3" "\x87\x5c\xfd\xe6\x61\x79\xff\x7b\xd6\x6f\xba\xbd\x38\x54\x37\xca\xfe" "\xd3\x46\xea\x5f\xb7\xf5\xef\x25\xd0\x0e\xae\xff\x45\x15\x33\x43\xfa" "\x3f\xfa\x78\xcf\x6d\x79\xff\xe5\x87\x7e\xf8\xe2\xe2\xd0\x68\x5f\xff" "\x0f\x1e\x71\xfd\xf7\x5a\xff\x3b\xaa\xb3\xab\xe2\x7f\xf8\xec\x64\x79" "\xff\xd3\x36\x1f\xbd\x21\x70\xfc\x10\x5f\xff\xc5\x95\xa2\x7f\xfd\x86" "\xd6\x1b\x03\xc7\x3f\xa2\x7f\x5c\x29\xfa\xaf\x7e\xa5\xe5\xae\xc0\xf1" "\x43\xf5\x8f\x2b\x45\xff\x07\x1e\x6a\x3c\x3b\x70\xfc\x30\xfd\xe3\x4a" "\xd1\xff\x73\x8f\x1c\xba\x32\x70\x7c\xba\xfe\x71\xa5\xe8\x3f\xfd\xd9" "\x69\xfb\x04\x8e\x1f\xae\x7f\x5c\x29\xfa\xff\xfd\xe9\x29\x33\x02\xc7" "\x1b\xf5\x8f\x2b\x45\xff\x53\x5f\xb8\xf8\xda\xc0\xf1\x23\xf4\x8f\x2b" "\x45\xff\xef\xbc\xbe\xec\x96\xc0\xf1\x26\xfd\xe3\x4a\xd1\xff\x77\x7d" "\x17\x3c\x12\x38\xde\xac\x7f\x5c\x29\xfa\xef\xbe\x71\xf1\x6b\x81\xe3" "\x2d\xfa\xc7\x95\xa2\xff\x8a\xe7\xaf\xdc\x37\x70\x7c\x86\xfe\x71\xa5" "\xe8\xff\x9b\x75\x57\x1f\x13\x38\xfe\x51\xfd\xe3\x4a\xd1\x7f\xc3\xea" "\xe5\xa7\x07\x8e\xcf\xd4\x3f\xae\x14\xfd\x1b\xd7\x7e\xfe\xb2\xc0\xf1" "\x56\xfd\xe3\x4a\xd1\xff\x95\x97\x7f\xf0\xeb\xc0\xf1\x59\xfa\xc7\x95" "\xa2\x7f\xc3\x4b\xb7\x7f\x37\x70\xfc\x48\xfd\xe3\x4a\xd1\xff\xca\x2d" "\x3f\xfe\x67\xe0\xf8\x51\xfa\xc7\x95\xa2\xff\xbd\x6f\xdd\xfd\x64\xe0" "\xf8\xd1\xfa\xc7\x95\xa2\xff\x63\xeb\x7f\x31\x35\x70\xfc\x18\xfd\xe3" "\x4a\xd1\xbf\xe6\x99\x9f\x85\xfe\x3b\xcd\x8f\xe9\x1f\x57\x8a\xfe\xe7" "\x3e\xfc\xc0\x45\x81\xe3\x1f\xd7\x3f\xae\x14\xfd\xbf\xb9\xe6\xbe\x53" "\x02\xc7\x8f\xdd\x7e\xff\x9a\x9d\xf5\x10\xc7\xb5\x14\xfd\xfb\x5e\x38" "\xe5\x85\xc0\xf1\x36\xeb\x3f\xae\x14\xfd\x67\xbe\x3e\x2f\xf4\xf7\xc3" "\xb6\xeb\x1f\x57\x8a\xfe\x97\xf4\xcd\xfd\x51\xe0\x78\x87\xfe\x71\xa5" "\xe8\x7f\xc7\xc6\xe3\xbe\x1c\x38\x7e\x9c\xfe\x71\xa5\xe8\xff\xdc\xf3" "\xe7\x5e\x15\x38\x3e\x5b\xff\xb8\x52\xf4\xff\xff\x75\x0b\x16\x04\x8e" "\x1f\xaf\x7f\x5c\x29\xfa\x77\xae\x3e\xb3\x39\x70\x7c\x8e\xfe\x71\xa5" "\xe8\xdf\xbb\x76\xfe\xfb\x03\xc7\xe7\xea\x1f\x57\x8a\xfe\x73\x5e\xfe" "\xe2\x5f\x02\xc7\x4f\xd0\x3f\xae\x14\xfd\x6f\x7c\xe9\xda\x7f\x07\x8e" "\x77\xea\x1f\x57\x8a\xfe\x7f\xdc\x72\xfd\x4d\x81\xe3\x27\xea\x1f\x57" "\x8a\xfe\xfb\xbd\x75\xe3\xaa\xc0\xf1\x79\xfa\xc7\x95\xa2\xff\xf9\xeb" "\x6f\x6a\x0f\x1c\x3f\x49\xff\xb8\x52\xf4\xbf\xfb\x99\x6f\x5d\x18\x38" "\x7e\xb2\xfe\x71\xa5\xe8\xbf\xf1\xe1\x9b\xf7\x0a\x1c\xef\xd2\x3f\xae" "\x14\xfd\x8f\x5c\xf3\xbd\xd0\x1f\xb6\x7e\x8a\xfe\x71\xa5\xe8\x7f\xc3" "\x1b\xeb\x6f\x0e\x1c\x3f\x55\xff\xb8\x52\xf4\x9f\xfd\xce\x93\xf7\x07" "\x8e\x7f\x42\xff\xb8\x76\x5a\xff\x3d\x86\x3f\x9c\xf7\xdf\xff\xb5\xe7" "\x9f\x0a\x3c\xeb\x69\xfa\xc7\x95\x62\xfd\x3f\xfd\xb7\xe7\x36\x05\x8e" "\xcf\xd7\x3f\xae\x14\xfd\x7f\xf8\xf8\x9a\x89\x81\xe3\x9f\xd4\x3f\xae" "\x14\xfd\xcf\xfb\xed\xef\x87\xfb\x3d\x21\xef\xc6\xe9\xfa\xc7\x95\xa2" "\xff\xd1\x4f\xac\xed\x0c\x1c\x3f\x43\xff\xb8\x52\xf4\xdf\xf4\xd7\x47" "\x2f\x0d\x1c\x3f\x53\xff\xb8\x52\xf4\x9f\xf1\xaf\x7d\xef\x0c\x1c\xef" "\xd6\x3f\xae\x14\xfd\xdf\xde\xbc\xff\x35\x81\xe3\x9f\xd2\x3f\xae\x14" "\xfd\xef\xdc\xb0\xcf\xcb\x81\xe3\x9f\xd6\x3f\xae\x14\xfd\x97\xbd\xf2" "\x81\xb5\x81\xe3\x0b\xf4\x8f\x2b\x45\xff\xbd\x1f\xda\xfd\xa8\xc0\xf1" "\xb3\xf4\x8f\x2b\x45\xff\x67\x1f\xd9\x6b\xbf\xc0\xf1\xb3\xf5\x8f\x2b" "\x45\xff\x2f\x3c\x3b\x61\x45\xe0\xf8\x39\xfa\xc7\x95\xa2\xff\xbc\xa7" "\x27\xce\x0f\x1c\x3f\x57\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xcb\x0e\x1c\x08\x00" "\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x40\x00\x00\x00\x00\x00\xc8\xff" "\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xb0\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85\xbd\x3b\x81\xb7" "\x7c\x2e\xfc\x3f\x7e\x66\x31\x86\xec\xa9\x50\x34\x76\xca\xae\x2c\x29" "\x5b\xd6\xd2\x62\x0b\x91\x25\xbb\x6c\x21\x7b\xa1\x45\x96\x16\x92\x22" "\x2d\x76\xd2\xa6\x50\x21\x4b\x45\x8a\xc8\x9a\x4a\xa5\x94\x16\x25\x49" "\x92\x88\xff\x63\xcc\x5c\xcb\x78\xcf\x34\x7e\xff\x6a\x34\xef\xe7\xf3" "\xf1\x98\x7b\xee\x39\xe7\x3b\xc7\xe7\x7c\x5e\xe7\xf3\xbd\xc7\xfd\xde" "\xfb\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\xa9\xd1\xa6\x6b\x6d\xb8\xfa\x60" "\x30\x72\xfc\xb5\x43\x9f\x76\xff\x49\x7b\xaf\x73\xe7\x92\x27\xaf\x76" "\xc6\xf1\x0b\x5d\xf9\x8a\x1d\x8f\x1e\x76\xdf\xb8\x5b\x57\x1d\x3d\xfe" "\xee\x31\x8f\x4e\x60\xf0\xd8\x83\xad\x3a\xf6\xbe\xe1\xe3\x36\x19\x79" "\xc2\xf9\x67\x0c\x1f\x7b\x65\xf8\x93\x1f\x77\xfa\xe9\xa6\x1b\x36\xd3" "\x60\xd8\xec\x79\x54\x07\x6d\xf9\x2f\x86\x3d\xcb\xd0\x27\xe3\x1e\x74" "\xcc\x60\x30\x18\x76\xd4\xb8\x3f\x8f\x9b\x6e\xec\x87\x55\xee\xb8\xe3" "\x96\x7f\xf1\x58\xd5\x36\x5d\x6d\xed\xb5\xc6\x4e\xde\xb8\x3f\x8f\x77" "\x1b\x31\xfe\xee\xf1\xb7\x3f\xfe\xf9\xc8\x71\x7f\x56\xda\x6a\x30\x58" "\x69\x8b\xc1\x44\x5f\x1f\x53\xde\x06\x77\xdd\x76\xff\x94\x1e\xc3\xff" "\x82\x4d\x57\x5b\x7b\xdd\x09\xfa\x0f\xc6\x77\x7e\xac\xfb\x84\xeb\xbb" "\xd5\x84\xaf\xf3\x0b\x6f\xdc\x75\xa5\x29\x1a\xee\xdf\x64\xd3\xd5\xd6" "\x5a\x6f\x6c\xeb\x89\xad\xe3\xb3\x36\x59\xf5\x8c\x47\x1f\xdb\xaf\x8f" "\x3c\x79\x30\x18\x79\xca\x60\x30\xf2\xd4\xc1\x60\xe4\x69\x53\xba\x07" "\xff\x1e\xab\xad\xbe\xec\xea\x63\xf7\xf9\x43\xd7\xc7\x55\x3f\x74\xe8" "\x0d\x41\xda\xbf\x0f\x9b\x77\xc3\xcd\xa6\x1f\x0c\x06\xd3\x8c\xfb\x3a" "\x31\xf2\xf4\xa1\xaf\x05\xc0\xff\x96\xd5\x56\x5f\xf6\xd5\x61\xfd\x8f" "\x1a\xba\x3f\xad\xff\x55\xee\x98\x69\x2e\xeb\x1f\xfe\xf7\xad\xbb\xda" "\xea\xcb\x0e\x9e\xf4\x3e\x7f\xdc\xad\x87\x0e\xfd\xff\x7d\x5c\xff\x77" "\x8e\x58\xff\xd8\x29\x37\x62\x00\x00\x00\xe0\x99\x7a\xe4\xee\x8b\x2e" "\x1d\x7f\xac\x6f\xf8\x60\x30\xcf\x60\x82\xe3\xbd\x8f\x19\xff\x7d\x81" "\x61\xe7\x5e\x7e\xfd\xf5\x53\x6c\xa0\xcf\x0e\xe1\x38\xd9\xd3\x7f\x66" "\xe2\x7f\xcc\xd8\xce\xa3\xcf\x19\x33\x18\xec\xbe\xf1\x94\x1e\x0a\x53" "\xc0\xb0\x29\x3d\x00\xa6\x28\xfd\xbb\xe9\xdf\x4d\xff\x6e\xfa\x77\xd3" "\xbf\x9b\xfe\xdd\xf4\xef\xa6\x7f\x37\xfd\xbb\xe9\xdf\x4d\xff\x6e\xfa" "\x77\xd3\xbf\xd8\x44\x8e\xff\xcf\x32\x74\xb9\xda\x71\x1b\xad\x3c\x7e" "\xd3\x05\x97\x9f\x7d\x93\xf3\x27\xfc\xfb\x63\x6f\x1b\xfd\x5f\x1f\xf5" "\x14\x33\xb5\x1e\xff\x1f\xec\x3c\x6c\x5c\xcb\xb1\xcd\x77\x1e\x0c\x06" "\xaf\x5f\x6d\x83\x8d\x16\x19\x0c\x06\xe7\x6f\x32\xfb\xf2\xf3\x0d\x1e" "\xbf\x6f\x85\xb1\xf7\xad\x34\xdb\x88\xf1\x27\x08\x58\xe4\xb1\x8f\x0b" "\x4e\xe4\x81\xc7\x3c\xf9\x72\xfa\xc7\x1f\xe3\xdc\xc7\x1e\x7f\xdd\x47" "\x4f\x19\x31\x6c\x82\x41\x3c\xc9\xeb\xd6\xb8\xf8\xc0\x9d\x36\x7d\xe0" "\x65\x13\x5e\x2e\x3c\xf1\xe7\xf1\xf8\xf9\x25\xce\x5f\x77\x8d\x19\x86" "\x7e\x97\x65\xf8\x04\x1b\x4d\xec\xb5\x3a\xf4\xf8\x43\xcf\x65\xc2\xce" "\xe3\xc7\xbe\xc8\xd8\xb1\x2f\xb9\xcf\x6e\x7b\x2e\xb9\xf7\x01\x07\x2e" "\xbe\xf3\x6e\xdb\xec\xb8\xfd\x8e\xdb\xef\xbe\xec\x32\xcb\x2d\xbf\xcc" "\xf2\x4b\xaf\xb0\xc2\x72\x4b\xee\xb0\xf3\xae\xdb\x2f\x35\xee\xe3\x44" "\xe6\x6c\xdc\xac\xcc\x3f\x39\x73\x36\x6a\xc2\x39\xbb\x7b\xb5\x27\xcf" "\xd9\x84\xcf\x6d\x62\x73\x36\x66\xd2\x73\xf6\xd8\x23\xde\x79\xec\x26" "\x17\x0e\xcd\xd9\xc8\x67\x38\x67\xf3\x4f\x7a\xce\xc6\xec\x3c\x34\xd6" "\x31\xd3\x0c\xb6\x7e\x6c\x6a\xc6\xfe\x27\x17\x98\x66\xb0\xff\xd8\x2b" "\x4b\x4f\xfb\xa4\x7d\xcb\x1c\x63\xb7\x7d\xe5\x6c\xc3\x07\x83\x63\x9e" "\x78\xa2\x63\x3f\x9b\xf6\xf1\xd7\xe0\xb0\x43\x77\xfe\x37\x9c\xb7\x64" "\xfc\xe5\xbc\xe3\x2f\xe7\x8b\xe7\x2d\xb9\x60\x62\xe7\x2d\x19\x0c\x9d" "\xb7\x64\xe8\x84\x09\x2b\x8e\xbb\xd8\xe7\x92\xa1\xed\x26\xfc\x3d\xeb" "\xf1\x37\x4f\xf6\x79\x4b\xf6\x5b\xfd\xe1\xf9\x06\x4f\xfb\xbd\xac\xff" "\x88\xff\xd3\xd7\xff\xa7\xf5\x5a\x61\xd8\xe3\x13\x35\x74\xd2\x90\xf1" "\xdb\x8c\xeb\xf5\xc4\x79\x26\x86\xa6\x6d\xd5\x27\x9d\x67\x62\xf9\x74" "\x2e\x99\x7f\xa7\xa7\x8d\x77\xcc\xf0\xc7\x5f\xd7\x69\xbc\xe3\x7f\x2f" "\x6e\xd8\x04\xf3\x3f\xa9\xdf\x8b\x1b\xec\xb8\xc3\xc1\x0b\x8e\x8f\xba" "\xfc\xb8\xbf\xf5\xc8\xff\x39\x4a\xde\x77\xac\xf7\xd8\xc7\x89\xad\xe7" "\x31\x13\x5c\x4e\x6a\xdf\x31\xe2\x89\x4f\x9f\xb8\x75\xfb\x6b\xe7\x9e" "\x70\xdf\xf1\xda\x89\x0f\xf1\x29\xeb\x62\x68\x8e\xa6\x9d\x60\xa3\x89" "\xed\x3b\xf6\xdf\xe6\xca\x9d\x9f\xbc\x6f\x9a\xc8\xbe\x63\xbd\x9d\xc7" "\xff\xa2\xf1\x13\xfb\x8e\xb1\xff\xd9\xf9\x87\xf6\x1d\x63\xc7\xbe\xd0" "\x34\x83\x63\xc6\x5e\x59\x66\xec\x95\x85\xa7\x19\x9c\x3d\xf6\xca\xb2" "\x8f\x5d\x99\x6e\x70\xf9\xd8\x2b\x4b\x6c\xbb\xc7\xae\xdb\x0d\x7b\xec" "\xeb\xd5\xd3\x5e\x07\x8b\x0c\x7b\xca\x0f\x3c\x86\xd7\xed\x5a\x13\xbc" "\x6e\x27\xe3\xfc\x38\xab\x5c\x3d\x18\xac\x72\x55\x7a\x5e\x13\x9f\xce" "\x2c\xbd\x6e\x47\x4d\x62\xbc\xf9\xf7\xb9\x07\x93\xfc\x7d\xee\xcb\xb6" "\x99\xf7\xbc\xc1\x60\x30\xe3\xf8\xe7\xb5\xe2\xd0\xd8\xff\x2f\xd2\x78" "\x47\x4e\x7a\xbc\xe1\xfc\x13\x83\x49\x9d\x7f\x62\x70\xca\xf5\xfb\x9e" "\xf6\x6f\x1e\xef\xe3\xeb\xec\xb1\xd7\xda\xf8\xdd\xf4\x22\x13\xf9\x3b" "\x4f\x59\x67\xb3\x3c\x6d\x9d\x1d\x36\xe2\x49\x2b\x63\x72\xdf\xd7\x6c" "\x17\xb6\x1f\xf7\xf9\x1c\x8f\x3f\xda\xa9\xdb\x5f\x77\xcd\xd0\x1c\x4d" "\x33\xc1\xe3\xfe\xab\xaf\xd1\x43\xcf\x25\xf5\x1f\x7a\xcf\xf7\x64\xc3" "\x0e\x1d\x0c\x9b\xd4\xdc\x4c\xec\x7d\xd8\x53\xe6\x66\xa6\x49\xcf\xcd" "\xe4\xbe\x7f\x59\x64\xfc\x1b\x8c\xe9\x26\x31\x37\x8b\xdd\x77\xc8\xa2" "\x43\x73\x33\xea\x19\xce\xcd\xc2\x13\x99\x9b\x27\xbf\x1f\x7e\xb2\x51" "\x83\xc1\x74\x4f\x9d\x9b\x91\x83\x35\xc7\xbe\xa3\x19\x3f\x37\x0b\x4d" "\xce\xdc\xcc\xf0\xef\x79\xdd\x4c\x1f\xb6\x1f\xf7\xf9\x82\x8f\xdf\x74" "\xeb\x9a\x07\xaf\x30\x34\x37\x61\x2e\xe2\xd7\xff\xa1\xc7\x5f\xe8\x19" "\xce\xcd\xb0\xad\x1f\x7f\xdd\x2c\xf0\xd8\x7d\xf3\x0d\x1f\x8c\x1a\x35" "\xd8\x7f\x9b\x7d\xf6\xd9\x6b\xe9\x71\x1f\x87\xae\x2e\x33\xee\xe3\xa4" "\xd7\xe0\x02\x93\x33\x97\xa3\xff\x3d\x73\x39\xd7\xf8\xbd\xce\xf0\xa7" "\x4f\xce\xe3\x37\xed\x72\xe6\xa3\xcb\xfe\x5f\xd7\xe0\x02\xcf\x74\x2e" "\xc7\x0c\x86\x0f\xfd\x3f\xf7\xce\x13\x2e\x96\x7f\x1f\xdf\xff\xe9\xa6" "\x7f\x37\xfd\xbb\xe9\xdf\x4d\xff\x6e\xfa\x77\x7b\xf0\x3f\xff\x2d\x66" "\x9e\xc5\xac\xff\x62\x13\x39\xfe\x3f\x66\xe8\xfb\x82\x47\x0e\x3b\x7d" "\xc3\xf1\xdf\x8c\x99\xe6\x8a\x07\x66\xdd\x67\x4a\x8f\x77\x0a\x9b\xaa" "\x8f\xff\x8f\xef\xfb\x94\xe3\xff\xfb\xcc\xfa\xc0\x15\xc3\x07\x8f\xdf" "\x37\xc9\xe3\xb3\xe3\xb6\x79\x56\x1e\x9f\x5d\x7e\xdc\xc5\x41\x4b\x0f" "\x6d\x37\xe1\xf1\xc1\xf1\x37\x4f\xf6\xf1\xd9\xfb\x8f\xbe\x6a\xb3\xc1" "\x7f\xe7\xf8\xec\xff\xc9\xd0\x5a\x9d\x8c\xef\x1b\xda\xff\x77\xd3\xbf" "\x9b\xfe\xdd\xf4\xef\xa6\x7f\x37\xfd\xbb\x3d\xd3\xfe\xab\xfc\x87\xc6" "\xc1\x94\x61\xfd\x77\xd3\xbf\x9b\xfe\xdd\xf4\xef\xa6\x7f\x37\xfd\xbb" "\xe9\x5f\x6c\x22\xc7\xff\x97\x1a\xfa\x39\x80\x1b\xf6\x7e\xf8\xf4\xf1" "\x07\x42\xa7\xd9\x7b\xa3\x95\x1e\x9a\xd2\xe3\x9d\xc2\xa6\xea\xe3\xff" "\xe3\xfb\x3e\xe5\xf8\xff\x43\x2b\x6d\xb4\xf7\xf0\xc1\xe3\xf7\x4d\xf2" "\xf8\xff\xb8\x6d\x3a\x8e\xff\xaf\x74\xfb\x89\x87\x0f\x9e\xc5\xc7\xff" "\x87\xd6\xaa\xe3\xff\xfc\x0b\xfa\x77\xd3\xbf\x9b\xfe\xdd\xf4\xef\xa6" "\x7f\x37\xfd\xbb\xe9\xdf\x4d\xff\x6e\xfa\x77\xd3\xbf\x9b\xfe\xdd\xf4" "\xef\xa6\x7f\xb1\x89\x1c\xff\x5f\x75\xe8\xe7\x00\xa6\xd9\x7d\xfe\xf9" "\x87\x7e\x1e\xe0\xa6\x7b\x8e\x18\x31\xa5\xc7\x3b\x85\x4d\xad\xc7\xff" "\xfd\xfb\xff\xbd\xec\xff\xbb\xe9\xdf\x4d\xff\x6e\xfa\x77\xd3\xbf\x9b" "\xfe\xdd\xf4\xef\xa6\x7f\x37\xfd\xbb\xe9\xdf\x4d\xff\x6e\xfa\x77\xd3" "\xbf\x9b\xfe\xc5\xc6\x1f\xff\x1f\x4c\xf0\xcf\x1e\xbe\xd1\xeb\x22\x0a" "\xc7\xff\xff\xb7\x4d\xa4\xff\xfa\xfa\x47\x2d\xfd\x37\xd0\x3f\x6a\xe9" "\xbf\xa1\xfe\x51\x4b\xff\x8d\xf4\x8f\x5a\xfa\x6f\xac\x7f\xd4\xd2\xff" "\x4d\xfa\x47\x2d\xfd\x37\xd1\x3f\x6a\xe9\xbf\xa9\xfe\x51\x4b\xff\xcd" "\xf4\x8f\x5a\xfa\xbf\x59\xff\xa8\xa5\xff\xe6\xfa\x47\x2d\xfd\xb7\xd0" "\x3f\x6a\xe9\xff\x16\xfd\xa3\x96\xfe\x5b\xea\x1f\xb5\xf4\xdf\x4a\xff" "\xa8\xa5\xff\xd6\xfa\x47\x2d\xfd\xb7\xd1\x3f\x6a\xe9\xff\x56\xfd\xa3" "\x96\xfe\xdb\xea\x1f\xb5\xf4\xdf\x4e\xff\xa8\xa5\xff\xf6\xfa\x47\x2d" "\xfd\x77\xd0\x3f\x6a\xe9\xbf\xa3\xfe\x51\x4b\xff\x9d\xf4\x8f\x5a\xfa" "\xef\xac\x7f\xd4\xd2\x7f\x17\xfd\xa3\x96\xfe\x6f\xd3\x3f\x6a\xe9\xbf" "\xab\xfe\x51\x4b\xff\xdd\xf4\x8f\x5a\xfa\xef\xae\x7f\xd4\xd2\x7f\x0f" "\xfd\xa3\x96\xfe\x7b\xea\x1f\xb5\xf4\x7f\xbb\xfe\x51\x4b\xff\xbd\xf4" "\x8f\x5a\xfa\xef\xad\x7f\xd4\xd2\x7f\x1f\xfd\xa3\x96\xfe\xef\xd0\x3f" "\x6a\xe9\xbf\xaf\xfe\x51\x4b\xff\xfd\xf4\x8f\x5a\xfa\xef\xaf\x7f\xd4" "\xd2\xff\x00\xfd\xa3\x96\xfe\x07\xea\x1f\xb5\xf4\x3f\x48\xff\xa8\xa5" "\xff\xc1\xfa\x47\x2d\xfd\xdf\xa9\x7f\xd4\xd2\xff\x5d\xfa\x47\x2d\xfd" "\x0f\xd1\x3f\x6a\xe9\x7f\xa8\xfe\x51\x4b\xff\xc3\xf4\x8f\x5a\xfa\xbf" "\x5b\xff\xa8\xa5\xff\x7b\xf4\x8f\x5a\xfa\xbf\x57\xff\xa8\xa5\xff\xfb" "\xf4\x8f\x5a\xfa\x1f\xae\x7f\xd4\xd2\xff\xfd\xfa\x47\x2d\xfd\x8f\xd0" "\x3f\x6a\xe9\x7f\xa4\xfe\x51\x4b\xff\xa3\xf4\x8f\x5a\xfa\x1f\xad\x7f" "\xd4\xd2\xff\x03\xfa\x47\x2d\xfd\x3f\xa8\x7f\xd4\xd2\xff\x43\xfa\x47" "\x2d\xfd\x3f\xac\x7f\xd4\xd2\xff\x98\xb2\xfe\xa3\x26\x73\xbb\x96\xfe" "\xc7\x96\xf5\x9f\x5c\x2d\xfd\x3f\xa2\x7f\xd4\xd2\xff\x38\xfd\xa3\x96" "\xfe\x1f\xd5\x3f\x6a\xe9\x7f\xbc\xfe\x51\x4b\xff\x8f\xe9\x1f\xb5\xf4" "\xff\xb8\xfe\x51\x4b\xff\x13\xf4\x8f\x5a\xfa\x9f\xa8\x7f\xd4\xd2\xff" "\x13\xfa\x47\x2d\xfd\x4f\xd2\x3f\x6a\xe9\xff\x49\xfd\xa3\x96\xfe\x9f" "\xd2\x3f\x6a\xe9\xff\x69\xfd\xa3\x96\xfe\x9f\xd1\x3f\x6a\xe9\x7f\xb2" "\xfe\x51\x4b\xff\x53\xf4\x8f\x5a\xfa\x9f\xaa\x7f\xd4\xd2\xff\x34\xfd" "\xa3\x96\xfe\xa7\xeb\x1f\xb5\xf4\x3f\x43\xff\xa8\xa5\xff\x99\xfa\x47" "\x2d\xfd\xcf\xd2\x3f\x6a\xe9\x7f\xb6\xfe\x51\x4b\xff\xcf\xea\x1f\xb5" "\xf4\x3f\x47\xff\xa8\xa5\xff\xe7\xf4\x8f\x5a\xfa\x7f\x5e\xff\xa8\xa5" "\xff\x17\xf4\x8f\x5a\xfa\x7f\x51\xff\xa8\xa5\xff\x97\xf4\x8f\x5a\xfa" "\x9f\xab\x7f\xd4\xd2\xff\xcb\xfa\x47\x2d\xfd\xbf\xa2\x7f\xd4\xd2\xff" "\x3c\xfd\xa3\x96\xfe\xe7\xeb\x1f\xb5\xf4\xbf\x40\xff\xa8\xa5\xff\x57" "\xf5\x8f\x5a\xfa\x7f\x4d\xff\xa8\xa5\xff\xd7\xf5\x8f\x5a\xfa\x5f\xa8" "\x7f\xd4\xd2\xff\x22\xfd\xa3\x96\xfe\x17\xeb\x1f\xb5\xf4\xff\x86\xfe" "\x51\x4b\xff\x4b\xf4\x8f\x5a\xfa\x5f\xaa\x7f\xd4\xd2\xff\x32\xfd\xa3" "\x96\xfe\x97\xeb\x1f\xb5\xf4\xff\xa6\xfe\x51\x4b\xff\x6f\xe9\x1f\xb5" "\xf4\xff\xb6\xfe\x51\x4b\xff\x2b\xf4\x8f\x5a\xfa\x5f\xa9\x7f\xd4\xd2" "\xff\x3b\xfa\x47\x2d\xfd\xaf\xd2\x3f\x6a\xe9\xff\x5d\xfd\xa3\x96\xfe" "\xdf\xd3\x3f\x6a\xe9\x7f\xb5\xfe\x51\x4b\xff\x6b\xf4\x8f\x5a\xfa\x7f" "\x7f\x0a\x0d\xe7\xd9\xae\xa5\xff\xb5\xd6\x7f\xd4\xd2\xff\x3a\xfd\xa3" "\x96\xfe\x3f\xd0\x3f\x6a\xe9\x7f\xbd\xfe\x51\x4b\xff\x1b\xf4\x8f\x5a" "\xfa\xdf\xa8\x7f\xd4\xd2\xff\x26\xfd\xa3\x96\xfe\x37\xeb\x1f\xb5\xf4" "\xbf\x45\xff\xa8\xa5\xff\x0f\xf5\x8f\x5a\xfa\xdf\xaa\x7f\xd4\xd2\xff" "\x47\xfa\x47\x2d\xfd\x7f\xac\x7f\xd4\xd2\xff\x27\xfa\x47\x2d\xfd\x6f" "\xd3\x3f\x6a\xe9\xff\x53\xfd\xa3\x96\xfe\x3f\xd3\x3f\x6a\xe9\xff\x73" "\xfd\xa3\x96\xfe\xb7\xeb\x1f\xb5\xf4\xff\x85\xfe\x51\x4b\xff\x5f\xea" "\x1f\xb5\xf4\xbf\x43\xff\xa8\xa5\xff\xaf\xf4\x8f\x5a\xfa\xff\x5a\xff" "\xa8\xa5\xff\x9d\xfa\x47\x2d\xfd\x7f\xa3\x7f\xd4\xd2\xff\xb7\xfa\x47" "\x2d\xfd\x7f\xa7\x7f\xd4\xd2\xff\xf7\xfa\x47\x2d\xfd\xef\xd2\x3f\x6a" "\xe9\xff\x07\xfd\xa3\x96\xfe\x7f\xd4\x3f\x6a\xe9\x7f\xb7\xfe\x51\x4b" "\xff\x3f\xe9\x1f\xb5\xf4\xbf\x47\xff\xa8\xa5\xff\x9f\xf5\x8f\x5a\xfa" "\xdf\xab\x7f\xd4\xd2\xff\x2f\xfa\x47\x2d\xfd\xef\xd3\x3f\x6a\xe9\xff" "\x57\xfd\xa3\x96\xfe\xf7\xeb\x1f\xb5\xf4\xff\x9b\xfe\x51\x4b\xff\x07" "\xf4\x8f\x5a\xfa\xff\x5d\xff\xa8\xa5\xff\x83\xfa\x47\x2d\xfd\xff\xa1" "\x7f\x54\xd2\x7f\xba\x81\xfe\x51\x49\xff\xc1\xc3\xfa\x47\x2d\xfd\xff" "\xa9\x7f\xd4\xd2\xff\x11\xfd\xa3\x96\xfe\x8f\xea\x1f\x95\xf4\x1f\x36" "\xd0\x3f\x6a\xe9\x3f\x4c\xff\xa8\xa5\xff\x70\xfd\xa3\x96\xfe\x23\xf4" "\x8f\x5a\xfa\x8f\xd4\x3f\x6a\xe9\x3f\x8d\xfe\x51\x4b\xff\x51\xfa\x47" "\x2d\xfd\xa7\xd5\x3f\x6a\xe9\x3f\x5a\xff\xa8\xa5\xff\x74\xfa\x47\x2d" "\xfd\xa7\xd7\x3f\x6a\xe9\xff\x1c\xfd\xa3\x96\xfe\x33\xe8\x1f\xb5\xf4" "\x9f\x51\xff\xa8\xa5\xff\x4c\xfa\x47\x2d\xfd\x67\xd6\x3f\x6a\xe9\x3f" "\x8b\xfe\x51\x4b\xff\x59\xf5\x8f\x5a\xfa\xcf\xa6\x7f\xd4\xd2\xff\xb9" "\xfa\x47\x2d\xfd\x67\xd7\x3f\x6a\xe9\xff\x3c\xfd\xa3\x96\xfe\xcf\xd7" "\x3f\x6a\xe9\xff\x02\xfd\xa3\x96\xfe\x73\xe8\x1f\xb5\xf4\x9f\x53\xff" "\xa8\xa5\xff\x5c\xfa\x47\x2d\xfd\x5f\xa8\x7f\xd4\xd2\xff\x45\xfa\x47" "\x2d\xfd\xe7\xd6\x3f\x6a\xe9\x3f\x8f\xfe\xd1\xd4\xd8\x7f\xf9\x99\xc7" "\x7d\xfa\xe4\xfe\x2f\xd6\x3f\x9a\x1a\xfb\xa7\xf5\x3f\x46\xff\xa8\xa5" "\xff\xbc\xfa\x47\x2d\xfd\xe7\xd3\x3f\x6a\xe9\x3f\xbf\xfe\x51\x4b\xff" "\x05\xf4\x8f\x5a\xfa\x2f\xa8\x7f\xd4\xd2\x7f\x21\xfd\xa3\x96\xfe\x0b" "\xeb\x1f\xb5\xf4\x5f\x44\xff\xa8\xa5\xff\xa2\xfa\x47\x2d\xfd\x5f\xa2" "\x7f\xd4\xd2\xff\xa5\xfa\x47\x2d\xfd\x17\xd3\x3f\x6a\xe9\xbf\xb8\xfe" "\x51\x4b\xff\x25\xda\xfb\x3f\xf4\xe8\x38\x13\xdc\xdc\xd2\x7f\xc9\xf6" "\xfe\x13\xd1\xd2\x7f\x29\xfd\xa3\x96\xfe\x4b\xeb\x1f\xb5\xf4\x5f\x46" "\xff\xa8\xa5\xff\xb2\xfa\x47\x2d\xfd\x5f\xa6\x7f\xd4\xd2\xff\xe5\xfa" "\x47\x2d\xfd\x97\xd3\x3f\x6a\xe9\xbf\xbc\xfe\x51\x4b\xff\x15\xf4\x8f" "\x5a\xfa\xaf\xa8\x7f\xd4\xd2\xff\x15\xfa\x47\x2d\xfd\x57\xd2\x3f\x6a" "\xe9\xff\x4a\xfd\xa3\x96\xfe\xaf\xd2\x3f\x6a\xe9\xbf\xb2\xfe\x51\x4b" "\xff\x55\x7a\xfb\xaf\x3c\xa9\x3b\x5b\xfa\xaf\xda\xdb\x7f\x92\x5a\xfa" "\xaf\xa6\x7f\xd4\xd2\x7f\x75\xfd\xa3\x96\xfe\xaf\xd6\x3f\x6a\xe9\xbf" "\x86\xfe\x51\x4b\xff\x35\xf5\x8f\x5a\xfa\xaf\xa5\x7f\xd4\xd2\x7f\x6d" "\xfd\xa3\x96\xfe\xeb\xe8\x1f\xb5\xf4\x5f\x57\xff\xa8\xa5\xff\x6b\xf4" "\x8f\x5a\xfa\xbf\x56\xff\xa8\xa5\xff\x7a\xfa\x47\x2d\xfd\x5f\xa7\x7f" "\xd4\xd2\xff\xf5\xfa\x47\x2d\xfd\xdf\xa0\x7f\xd4\xd2\xff\x8d\xfa\x47" "\x2d\xfd\xd7\xd7\x3f\x6a\xe9\xbf\x81\xfe\x51\x4b\xff\x0d\xf5\x8f\x5a" "\xfa\x6f\xa4\x7f\xd4\xd2\x7f\x63\xfd\xa3\x96\xfe\x6f\xd2\x3f\x6a\xe9" "\xbf\x89\xfe\x51\x4b\xff\x4d\xf5\x8f\x5a\xfa\x6f\xa6\x7f\xd4\xd2\xff" "\xcd\xfa\x47\x2d\xfd\x37\xd7\x3f\x6a\xe9\xbf\x85\xfe\x51\x4b\xff\xb7" "\xe8\x1f\xb5\xf4\xdf\x52\xff\xa8\xa5\xff\x56\xfa\x47\x2d\xfd\xb7\xd6" "\x3f\x6a\xe9\xbf\x8d\xfe\x51\x4b\xff\xb7\xea\x1f\xb5\xf4\xdf\x56\xff" "\xa8\xa5\xff\x76\xfa\x47\x2d\xfd\xb7\xd7\x3f\x6a\xe9\xbf\x83\xfe\x51" "\x4b\xff\x1d\xf5\x8f\x5a\xfa\xef\xa4\x7f\xd4\xd2\x7f\x67\xfd\xa3\x96" "\xfe\xbb\xe8\x1f\xb5\xf4\x7f\x9b\xfe\x51\x4b\xff\x5d\xf5\x8f\x5a\xfa" "\xef\xa6\x7f\xd4\xd2\x7f\x77\xfd\xa3\x96\xfe\x7b\xe8\x1f\xb5\xf4\xdf" "\x73\xe2\xfd\xa7\xfb\xaf\x8c\xeb\x59\xaa\xa5\xff\xdb\xad\xff\xa8\xa5" "\xff\x5e\xfa\x47\x2d\xfd\xf7\xd6\x3f\x6a\xe9\xbf\x8f\xfe\x51\x4b\xff" "\x77\xe8\x1f\x8d\x1a\x74\xf4\xdf\x57\xff\xa8\x65\xfd\xef\xa7\x7f\xd4" "\xd2\x7f\x7f\xfd\xa3\x96\xfe\x07\xe8\x1f\xb5\xf4\x3f\x50\xff\xa8\xa5" "\xff\x41\xfa\x47\x2d\xfd\x0f\xd6\x3f\x6a\xe9\xff\x4e\xfd\xa3\x96\xfe" "\xef\xd2\x3f\x6a\xe9\x7f\x88\xfe\x51\x4b\xff\x43\xdb\xfa\x4f\xe6\x4f" "\x35\xb4\xf4\x3f\xac\xad\xff\x64\x6a\xe9\xff\x6e\xfd\xa3\x96\xfe\xef" "\xd1\x3f\x6a\xe9\xff\x5e\xfd\xa3\x96\xfe\xef\xd3\x3f\x6a\xe9\x7f\xb8" "\xfe\x51\x4b\xff\xf7\xeb\x1f\xb5\xf4\x3f\x42\xff\xa8\xa5\xff\x91\xfa" "\x47\x2d\xfd\x8f\xd2\x3f\x6a\xe9\x7f\xb4\xfe\x51\x4b\xff\x0f\xe8\x1f" "\xb5\xf4\xff\xa0\xfe\x51\x4b\xff\x0f\xe9\x1f\xb5\xf4\xff\xb0\xfe\x51" "\x4b\xff\x63\xf4\x8f\x5a\xfa\x1f\xab\x7f\xd4\xd2\xff\x23\xfa\x47\x2d" "\xfd\x8f\xd3\x3f\x6a\xe9\xff\x51\xfd\xa3\x96\xfe\xc7\xeb\x1f\xb5\xf4" "\xff\x98\xfe\x51\x4b\xff\x8f\xeb\x1f\xb5\xf4\x3f\x41\xff\xa8\xa5\xff" "\x89\xfa\x47\x2d\xfd\x3f\xa1\x7f\xd4\xd2\xff\x24\xfd\xa3\x96\xfe\x9f" "\xd4\x3f\x6a\xe9\xff\x29\xfd\xa3\x96\xfe\x9f\xd6\x3f\x6a\xe9\xff\x19" "\xfd\xa3\x96\xfe\x27\xeb\x1f\xb5\xf4\x3f\x45\xff\xa8\xa5\xff\xa9\xfa" "\x47\x2d\xfd\x4f\xd3\x3f\x6a\xe9\x7f\xba\xfe\x51\x4b\xff\x33\xf4\x8f" "\x5a\xfa\x9f\xa9\x7f\xd4\xd2\xff\x2c\xfd\xa3\x96\xfe\x67\xeb\x1f\xb5" "\xf4\xff\xac\xfe\x51\x4b\xff\x73\xf4\x8f\x5a\xfa\x7f\x4e\xff\xa8\xa5" "\xff\xe7\xf5\x8f\x5a\xfa\x7f\x41\xff\xa8\xa5\xff\x17\xf5\x8f\x5a\xfa" "\x7f\x49\xff\xa8\xa5\xff\xb9\xfa\x47\x2d\xfd\xbf\xac\x7f\xd4\xd2\xff" "\x2b\xfa\x47\x2d\xfd\xcf\xd3\x3f\x6a\xe9\x7f\xbe\xfe\x51\x4b\xff\x0b" "\xf4\x8f\x5a\xfa\x7f\x55\xff\xa8\xa5\xff\xd7\xf4\x8f\x5a\xfa\x7f\x5d" "\xff\xa8\xa5\xff\x85\xfa\x47\x2d\xfd\x2f\xd2\x3f\x6a\xe9\x7f\xb1\xfe" "\x51\x4b\xff\x6f\xe8\x1f\xb5\xf4\xbf\x44\xff\xa8\xa5\xff\xa5\xfa\x47" "\x2d\xfd\x2f\xd3\x3f\x6a\xe9\x7f\xb9\xfe\x51\x4b\xff\x6f\xea\x1f\xb5" "\xf4\xff\x96\xfe\x51\x4b\xff\x6f\xeb\x1f\x35\xf4\x1f\x35\x18\x0c\xbb" "\x42\xff\xa8\xa1\xff\xd8\xa7\x79\xa5\xfe\x51\x4b\xff\xef\xe8\x1f\xb5" "\xf4\xbf\x4a\xff\xa8\xa5\xff\x77\xf5\x8f\x5a\xfa\x7f\x4f\xff\xa8\xa5" "\xff\xd5\xfa\x47\x2d\xfd\xaf\xd1\x3f\x6a\xe9\xff\x7d\xfd\xa3\x96\xfe" "\xd7\xea\x1f\xb5\xf4\xbf\x4e\xff\xa8\xa5\xff\x0f\xf4\x8f\x5a\xfa\x5f" "\xaf\x7f\xd4\xd2\xff\x06\xfd\xa3\x96\xfe\x37\xea\x1f\xb5\xf4\xbf\x49" "\xff\xa8\xa5\xff\xcd\xfa\x47\x2d\xfd\x6f\xd1\x3f\x6a\xe9\xff\x43\xfd" "\xa3\x96\xfe\xb7\xea\x1f\xb5\xf4\xff\xd1\xb8\x9f\x03\x64\x02\x2d\xfd" "\x7f\x6c\xfd\x47\x2d\xfd\x7f\xa2\x7f\xd4\xd2\xff\x36\xfd\xa3\x96\xfe" "\x3f\xd5\x3f\x6a\xe9\xff\x33\xfd\xa3\x96\xfe\x3f\xd7\x3f\x6a\xe9\x7f" "\xbb\xfe\x51\x4b\xff\x5f\xe8\x1f\xb5\xf4\xff\xa5\xfe\x51\x4b\xff\x3b" "\xf4\x8f\x5a\xfa\xff\x4a\xff\xa8\xa5\xff\xaf\xf5\x8f\x5a\xfa\xdf\xa9" "\xff\x04\x0e\x7b\xec\x63\x4b\xff\xdf\xe8\x1f\xb5\xf4\xff\xad\xfe\x51" "\x4b\xff\xdf\xe9\x1f\xb5\xf4\xff\xbd\xfe\x51\x4b\xff\xbb\xf4\x8f\x5a" "\xfa\xff\x41\xff\xa8\xa5\xff\x1f\xf5\x8f\x5a\xfa\xdf\xad\x7f\xd4\xd2" "\xff\x4f\xfa\x47\x2d\xfd\xef\xd1\x3f\x6a\xe9\xff\x67\xfd\xa3\x96\xfe" "\xf7\xea\x1f\xb5\xf4\xff\x8b\xfe\x51\x4b\xff\xfb\xf4\x8f\x5a\xfa\xff" "\x55\xff\xa8\xa5\xff\xfd\xfa\x47\x2d\xfd\xff\xa6\x7f\xd4\xd2\xff\x01" "\xfd\xa3\x96\xfe\x7f\xd7\x3f\x6a\xe9\xff\xa0\xfe\x51\x4b\xff\x7f\xe8" "\x1f\xb5\xf4\x7f\x48\xff\xa8\xa5\xff\xc3\xfa\x47\x2d\xfd\xff\xa9\x7f" "\xd4\xd2\xff\x11\xfd\xa3\x96\xfe\x8f\xea\x1f\x95\xf4\x7f\xec\x53\xfd" "\x9f\xae\xa5\xff\x30\xfd\xa3\x96\xfe\xc3\xf5\x8f\x5a\xfa\x8f\xd0\x3f" "\x6a\xe9\x3f\x52\xff\xa8\xa5\xff\x34\xfa\x47\x2d\xfd\x47\xe9\x1f\xb5" "\xf4\x9f\x56\xff\xa8\xa5\xff\x68\xfd\xa3\x96\xfe\xd3\xe9\x1f\xb5\xf4" "\x9f\x5e\xff\xa8\xa5\xff\x73\xf4\x8f\x5a\xfa\xcf\xa0\x7f\xd4\xd2\x7f" "\x46\xfd\xa3\x96\xfe\x33\xe9\x1f\xb5\xf4\x9f\x59\xff\xa8\xa5\xff\x2c" "\xfa\x47\x2d\xfd\x67\xd5\x3f\x6a\xe9\x3f\x9b\xfe\x51\x4b\xff\xe7\xea" "\x1f\xb5\xf4\x9f\x5d\xff\xa8\xa5\xff\xf3\xf4\x8f\x5a\xfa\x3f\x5f\xff" "\xa8\xa5\xff\x0b\xf4\x8f\x5a\xfa\xcf\xa1\x7f\xd4\xd2\x7f\x4e\xfd\xa3" "\x96\xfe\x73\xe9\x1f\xb5\xf4\x7f\xa1\xfe\x51\x4b\xff\x17\xe9\x1f\xb5" "\xf4\x9f\x5b\xff\xa8\xa5\xff\x3c\xfa\x47\x2d\xfd\x5f\xac\x7f\xd4\xd2" "\x7f\x8c\xfe\x51\x4b\xff\x79\xf5\x8f\x5a\xfa\xcf\xa7\x7f\xd4\xd2\x7f" "\x7e\xfd\xa3\x96\xfe\x0b\xe8\x1f\xb5\xf4\x5f\x50\xff\xa8\xa5\xff\x42" "\xfa\x47\x2d\xfd\x17\xd6\x3f\x6a\xe9\xbf\x88\xfe\x51\x4b\xff\x45\xf5" "\x8f\x5a\xfa\xbf\x44\xff\xa8\xa5\xff\x4b\xf5\x8f\x5a\xfa\x2f\xa6\x7f" "\xd4\xd2\x7f\x71\xfd\xa3\x96\xfe\x4b\xe8\x1f\xb5\xf4\x5f\x52\xff\xa8" "\xa5\xff\x52\xfa\x47\x2d\xfd\x97\xd6\x3f\x6a\xe9\xbf\x8c\xfe\x51\x4b" "\xff\x65\xf5\x8f\x5a\xfa\xbf\x4c\xff\xa8\xa5\xff\xcb\xf5\x8f\x5a\xfa" "\x2f\xa7\x7f\xd4\xd2\x7f\x79\xfd\xa3\x96\xfe\x2b\xe8\x1f\xb5\xf4\x5f" "\x51\xff\xa8\xa5\xff\x2b\xf4\x8f\x5a\xfa\xaf\xa4\x7f\xd4\xd2\xff\x95" "\xfa\x47\x2d\xfd\x5f\xa5\x7f\xd4\xd2\x7f\x65\xfd\xa3\x96\xfe\xab\xe8" "\x1f\xb5\xf4\x5f\x75\x22\xfd\x67\x5b\xf2\xbf\x35\xb0\x67\xa7\x96\xfe" "\xab\x59\xff\x51\x4b\xff\xd5\xf5\x8f\x5a\xfa\xbf\x5a\xff\xa8\xa5\xff" "\x1a\xfa\x47\x2d\xfd\xd7\xd4\x3f\x6a\xe9\xbf\x96\xfe\x51\x4b\xff\xb5" "\xf5\x8f\x5a\xfa\xaf\xa3\x7f\xd4\xd2\x7f\x5d\xfd\xa3\x96\xfe\xaf\xd1" "\x3f\x6a\xe9\xff\x5a\xfd\xa3\x96\xfe\xeb\xe9\x1f\xb5\xf4\x7f\x9d\xfe" "\x51\x4b\xff\xd7\xeb\x1f\xb5\xf4\x7f\x83\xfe\x51\x4b\xff\x37\xea\x1f" "\xb5\xf4\x5f\x5f\xff\xa8\xa5\xff\x06\xfa\x47\x2d\xfd\x37\xd4\x3f\x6a" "\xe9\xbf\x91\xfe\x51\x4b\xff\x8d\xf5\x8f\x5a\xfa\xbf\x49\xff\xa8\xa5" "\xff\x26\xfa\x47\x2d\xfd\x37\xd5\x3f\x6a\xe9\xbf\x99\xfe\x51\x4b\xff" "\x37\xeb\x1f\xb5\xf4\xdf\x5c\xff\xa8\xa5\xff\x16\xfa\x47\x2d\xfd\xdf" "\xa2\x7f\xd4\xd2\x7f\x4b\xfd\xa3\x96\xfe\x5b\xe9\x1f\xb5\xf4\xdf\x5a" "\xff\xa8\xa5\xff\x36\xfa\x47\x2d\xfd\xdf\xaa\x7f\xd4\xd2\x7f\x5b\xfd" "\xa3\x96\xfe\xdb\xe9\x1f\xb5\xf4\xdf\x5e\xff\xa8\xa5\xff\x0e\xfa\x47" "\x2d\xfd\x77\xd4\x3f\x6a\xe9\xbf\x93\xfe\x51\x4b\xff\x9d\xf5\x8f\x5a" "\xfa\xef\xa2\x7f\xd4\xd2\xff\x6d\xfa\x47\x2d\xfd\x77\xd5\x3f\x6a\xe9" "\xbf\x9b\xfe\x51\x4b\xff\xdd\xf5\x8f\x5a\xfa\xef\xa1\x7f\xd4\xd2\x7f" "\x4f\xfd\xa3\x96\xfe\x6f\xd7\x3f\x6a\xe9\xbf\x97\xfe\x51\x4b\xff\xbd" "\xf5\x8f\x5a\xfa\xef\xa3\x7f\xd4\xd2\xff\x1d\xfa\x47\x2d\xfd\xf7\xd5" "\x3f\x6a\xe9\xbf\x9f\xfe\x51\x4b\xff\xfd\xf5\x8f\x5a\xfa\x1f\xa0\x7f" "\xd4\xd2\xff\x40\xfd\xa3\x96\xfe\x07\xe9\x1f\xb5\xf4\x3f\x58\xff\xa8" "\xa5\xff\x3b\xf5\x8f\x5a\xfa\xbf\x4b\xff\xa8\xa5\xff\x21\xfa\x47\x2d" "\xfd\x0f\xd5\x3f\x6a\xe9\x7f\x98\xfe\x51\x4b\xff\x77\xeb\x1f\xb5\xf4" "\x7f\x8f\xfe\x51\x4b\xff\xf7\xea\x1f\xb5\xf4\x7f\x9f\xfe\x51\x4b\xff" "\xc3\xf5\x8f\x5a\xfa\xbf\x5f\xff\xa8\xa5\xff\x11\xfa\x47\x2d\xfd\x8f" "\xd4\x3f\x6a\xe9\x7f\x94\xfe\x51\x4b\xff\xa3\xf5\x8f\x5a\xfa\x7f\x40" "\xff\xa8\xa5\xff\x07\xf5\x8f\x5a\xfa\x7f\x48\xff\xa8\xa5\xff\x87\xf5" "\x8f\x5a\xfa\x1f\xa3\x7f\xd4\xd2\xff\x58\xfd\xa3\x96\xfe\x1f\xd1\x3f" "\x6a\xe9\x7f\x9c\xfe\x51\x4b\xff\x8f\xea\x1f\xb5\xf4\x3f\x5e\xff\xa8" "\xa5\xff\xc7\xf4\x8f\x5a\xfa\x7f\xbc\xac\xff\xa1\x93\xb9\x5d\x4b\xff" "\x13\xca\xfa\x4f\xae\x96\xfe\x27\xea\x1f\xb5\xf4\xff\x84\xfe\x51\x4b" "\xff\x93\xf4\x8f\x5a\xfa\x7f\x52\xff\xa8\xa5\xff\xa7\xf4\x8f\x5a\xfa" "\x7f\x5a\xff\xa8\xa5\xff\x67\xf4\x8f\x5a\xfa\x9f\xac\x7f\xd4\xd2\xff" "\x14\xfd\xa3\x96\xfe\xa7\xea\x1f\xb5\xf4\x3f\x4d\xff\xa8\xa5\xff\xe9" "\xfa\x47\x2d\xfd\xcf\xd0\x3f\x6a\xe9\x7f\xa6\xfe\x51\x4b\xff\xb3\xf4" "\x8f\x5a\xfa\x9f\xad\x7f\xd4\xd2\xff\xb3\xfa\x47\x2d\xfd\xcf\xd1\x3f" "\x6a\xe9\xff\x39\xfd\xa3\x96\xfe\x9f\xd7\x3f\x6a\xe9\xff\x05\xfd\xa3" "\x96\xfe\x5f\xd4\x3f\x6a\xe9\xff\x25\xfd\xa3\x96\xfe\xe7\xea\x1f\xb5" "\xf4\xff\xb2\xfe\x51\x4b\xff\xaf\xe8\x1f\xb5\xf4\x3f\x4f\xff\xa8\xa5" "\xff\xf9\xfa\x47\x2d\xfd\x2f\xd0\x3f\x6a\xe9\xff\x55\xfd\xa3\x96\xfe" "\x5f\xd3\x3f\x6a\xe9\xff\x75\xfd\xa3\x96\xfe\x17\xea\x1f\xb5\xf4\xbf" "\x48\xff\xa8\xa5\xff\xc5\xfa\x47\x1d\xfd\x87\x0f\xbe\xa1\x7f\xd4\xd1" "\x7f\x30\xfc\x12\xfd\xa3\x96\xfe\x97\xea\x1f\xb5\xf4\xbf\x4c\xff\xa8" "\xa5\xff\xe5\xfa\x3f\xc5\x3c\xe3\x2f\x5b\xfa\x7f\x53\xff\xa8\xa5\xff" "\xb7\xf4\x8f\x5a\xfa\x7f\x5b\xff\xa8\xa5\xff\x15\xfa\x47\x2d\xfd\xaf" "\xd4\x3f\x6a\xe9\xff\x1d\xfd\xa3\x96\xfe\x57\xe9\x1f\xb5\xf4\xff\xae" "\xfe\x51\x4b\xff\xef\xe9\x1f\xb5\xf4\xbf\x5a\xff\xa8\xa5\xff\x35\xfa" "\x47\x2d\xfd\xbf\xaf\x7f\xd4\xd2\xff\x5a\xfd\xa3\x96\xfe\xd7\xe9\x1f" "\xb5\xf4\xff\x81\xfe\x51\x4b\xff\xeb\xf5\x8f\x5a\xfa\xdf\xa0\x7f\xd4" "\xd2\xff\x46\xfd\xa3\x96\xfe\x37\xe9\x1f\xb5\xf4\xbf\x59\xff\xa8\xa5" "\xff\x2d\xfa\x47\x2d\xfd\x7f\xa8\x7f\xd4\xd2\xff\x56\xfd\xa3\x96\xfe" "\x3f\xd2\x3f\x6a\xe9\xff\x63\xfd\xa3\x96\xfe\x3f\xd1\x3f\x6a\xe9\x7f" "\x9b\xfe\x51\x4b\xff\x9f\xea\x1f\xb5\xf4\xff\x99\xfe\x51\x4b\xff\x9f" "\xeb\x1f\xb5\xf4\xbf\x5d\xff\xa8\xa5\xff\x2f\xf4\x8f\x5a\xfa\xff\x52" "\xff\xa8\xa5\xff\x1d\xfa\x47\x2d\xfd\x7f\xa5\x7f\xd4\xd2\xff\xd7\xfa" "\x47\x2d\xfd\xef\xd4\x3f\x6a\xe9\xff\x1b\xfd\xa3\x96\xfe\xbf\xd5\x3f" "\x6a\xe9\xff\x3b\xfd\xa3\x96\xfe\xbf\xd7\x3f\x6a\xe9\x7f\x97\xfe\x51" "\x4b\xff\x3f\xe8\x1f\xb5\xf4\xff\xa3\xfe\x51\x4b\xff\xbb\xf5\x8f\x5a" "\xfa\xff\x49\xff\xa8\xa5\xff\x3d\xfa\x47\x2d\xfd\xff\xac\x7f\xd4\xd2" "\xff\x5e\xfd\xa3\xa9\xb7\xff\xa8\xa7\xf4\xff\x8b\xfe\xd1\xd4\xdb\xff" "\xa9\xeb\xff\x3e\xfd\xa3\x96\xfe\x7f\xd5\x3f\x6a\xe9\x7f\xbf\xfe\x51" "\x4b\xff\xbf\xe9\x1f\xb5\xf4\x7f\xa0\xa6\xff\xe8\x67\xb4\x75\x4b\xff" "\xbf\xd7\xf4\x7f\x66\x5a\xfa\x3f\xa8\x7f\xd4\xd2\xff\x1f\xfa\x47\x2d" "\xfd\x1f\xd2\x3f\x6a\xe9\xff\xb0\xfe\x51\x4b\xff\x7f\xea\x1f\xb5\xf4" "\x7f\x44\xff\xa8\xa5\xff\xa3\xfa\x47\x25\xfd\x47\x0c\xf4\x8f\x5a\xfa" "\x0f\xd3\x3f\x6a\xe9\x3f\x5c\xff\xa8\xa5\xff\x08\xfd\xa3\x96\xfe\x23" "\xf5\x8f\x5a\xfa\x4f\xa3\x7f\xd4\xd2\x7f\x94\xfe\x51\x4b\xff\x69\xf5" "\x8f\x5a\xfa\x8f\xd6\x3f\x6a\xe9\x3f\x9d\xfe\x51\x4b\xff\xe9\xf5\x8f" "\x5a\xfa\x3f\x47\xff\xa8\xa5\xff\x0c\xfa\x47\x2d\xfd\x67\xd4\x3f\x6a" "\xe9\x3f\x93\xfe\x51\x4b\xff\x99\xf5\x8f\xa6\xda\xfe\xa3\x9f\xda\x7f" "\x16\xfd\xa3\xa9\xb6\xff\x04\xeb\x7f\x56\xfd\xa3\x96\xfe\xb3\xe9\x1f" "\xb5\xf4\x7f\xae\xfe\x51\x4b\xff\xd9\xf5\x8f\x5a\xfa\x3f\x4f\xff\xa8" "\xa5\xff\xf3\xf5\x8f\x5a\xfa\xbf\x40\xff\xa8\xa5\xff\x1c\xfa\x47\x2d" "\xfd\xe7\xd4\x3f\x6a\xe9\x3f\x97\xfe\x51\x4b\xff\x17\xea\x1f\xb5\xf4" "\x7f\x91\xfe\x51\x4b\xff\xb9\xf5\x8f\x5a\xfa\xcf\xa3\x7f\xd4\xd2\xff" "\xc5\xfa\x47\x2d\xfd\xc7\xe8\x1f\xb5\xf4\x9f\x57\xff\xa8\xa5\xff\x7c" "\xfa\x47\x2d\xfd\xe7\xd7\x3f\x6a\xe9\xbf\x80\xfe\x51\x4b\xff\x05\xf5" "\x8f\x5a\xfa\x2f\xa4\x7f\xd4\xd2\x7f\x61\xfd\xa3\x96\xfe\x8b\xe8\x1f" "\xb5\xf4\x5f\x54\xff\xa8\xa5\xff\x4b\xf4\x8f\x5a\xfa\xbf\x54\xff\xa8" "\xa5\xff\x62\xfa\x47\x2d\xfd\x17\xd7\x3f\x6a\xe9\xbf\x84\xfe\x51\x4b" "\xff\x25\xf5\x8f\x5a\xfa\x2f\xa5\x7f\xd4\xd2\x7f\x69\xfd\xa3\x96\xfe" "\xcb\xe8\x1f\xb5\xf4\x5f\x56\xff\xa8\xa5\xff\xcb\xf4\x8f\x5a\xfa\xbf" "\x5c\xff\xa8\xa5\xff\x72\xfa\x47\x2d\xfd\x97\xd7\x3f\x6a\xe9\xbf\x42" "\x6f\xff\x69\x27\x75\x67\x4b\xff\x15\x7b\xfb\x4f\x52\x4b\xff\x57\xe8" "\x1f\xb5\xf4\x5f\x49\xff\xa8\xa5\xff\x2b\xf5\x8f\x5a\xfa\xbf\x4a\xff" "\xa8\xa5\xff\xca\xfa\x47\x2d\xfd\x57\xd1\x3f\x6a\xe9\xbf\xaa\xfe\x51" "\x4b\xff\xd5\xf4\x8f\x5a\xfa\xaf\xae\x7f\xd4\xd2\xff\xd5\xfa\x47\x2d" "\xfd\xd7\xd0\x3f\x6a\xe9\xbf\xa6\xfe\x51\x4b\xff\xb5\xf4\x8f\x5a\xfa" "\xaf\xad\x7f\xd4\xd2\x7f\x1d\xfd\xa3\x96\xfe\xeb\xea\x1f\xb5\xf4\x7f" "\x8d\xfe\x51\x4b\xff\xd7\xea\x1f\xb5\xf4\x5f\x4f\xff\xa8\xa5\xff\xeb" "\xf4\x8f\x5a\xfa\xbf\x5e\xff\xa8\xa5\xff\x1b\xf4\x8f\x5a\xfa\xbf\x51" "\xff\xa8\xa5\xff\xfa\xfa\x47\x2d\xfd\x37\xd0\x3f\x6a\xe9\xbf\xa1\xfe" "\x51\x4b\xff\x8d\xf4\x8f\x5a\xfa\x6f\xac\x7f\xd4\xd2\xff\x4d\xfa\x47" "\x2d\xfd\x37\xd1\x3f\x6a\xe9\xbf\xa9\xfe\xd1\xb8\xfe\xa3\x07\x53\x7b" "\xff\xcd\xf4\x8f\x5a\xd6\xff\x9b\xf5\x8f\x5a\xfa\x6f\xae\x7f\xd4\xd2" "\x7f\x0b\xfd\xa3\x96\xfe\x6f\xd1\x3f\x6a\xe9\xbf\xa5\xfe\x51\x4b\xff" "\xad\xf4\x8f\x5a\xfa\x6f\xad\x7f\xd4\xd2\x7f\x1b\xfd\xa3\x96\xfe\x6f" "\xd5\x3f\x6a\xe9\xbf\xad\xfe\x51\x4b\xff\xed\xf4\x8f\x5a\xfa\x6f\xaf" "\x7f\xd4\xd2\x7f\x07\xfd\xa3\x96\xfe\x3b\xea\x1f\xb5\xf4\xdf\x49\xff" "\xa8\xa5\xff\xce\xfa\x47\x2d\xfd\x77\xd1\x3f\x6a\xe9\xff\x36\xfd\xa3" "\x96\xfe\xbb\xea\x1f\xb5\xf4\xdf\x4d\xff\xa8\xa5\xff\xee\xfa\x47\x2d" "\xfd\xf7\xd0\x3f\x6a\xe9\xbf\xa7\xfe\x51\x4b\xff\xb7\xeb\x1f\xb5\xf4" "\xdf\x4b\xff\xa8\xa5\xff\xde\xfa\x47\x2d\xfd\xf7\xd1\x3f\x6a\xe9\xff" "\x0e\xfd\xa3\x96\xfe\xfb\xea\x1f\xb5\xf4\xdf\x6f\x82\xfe\xa3\xff\xdb" "\xe3\x7a\x96\x6a\xe9\xbf\xbf\xf5\x1f\xb5\xf4\x3f\x40\xff\xa8\xa5\xff" "\x81\xfa\x47\x2d\xfd\x0f\xd2\x3f\x6a\xe9\x7f\xb0\xfe\x51\x4b\xff\x77" "\xea\x1f\xb5\xf4\x7f\x97\xfe\x51\x4b\xff\x43\xf4\x8f\x5a\xfa\x1f\xaa" "\x7f\xd4\xd2\xff\x30\xfd\xa3\x96\xfe\xef\xd6\x3f\x6a\xe9\xff\x1e\xfd" "\xa3\x96\xfe\xef\xd5\x3f\x6a\xe9\xff\x3e\xfd\xa3\x96\xfe\x87\xeb\x3f" "\xe4\xd1\x47\x9f\x74\xa5\xa5\xff\xfb\xf5\x8f\x5a\xfa\x1f\xa1\x7f\xd4" "\xd2\xff\x48\xfd\xa3\x96\xfe\x47\xe9\x1f\xb5\xf4\x3f\x5a\xff\xa8\xa5" "\xff\x07\xf4\x8f\x5a\xfa\x7f\x50\xff\xa8\xa5\xff\x87\xf4\x8f\x5a\xfa" "\x7f\x58\xff\xa8\xa5\xff\x31\xfa\x47\x2d\xfd\x8f\xd5\x3f\x6a\xe9\xff" "\x11\xfd\xa3\x96\xfe\xc7\xe9\x1f\xb5\xf4\xff\xa8\xfe\x51\x4b\xff\xe3" "\xf5\x8f\x5a\xfa\x7f\x4c\xff\xa8\xa5\xff\xc7\xf5\x8f\x5a\xfa\x9f\xa0" "\x7f\xd4\xd2\xff\x44\xfd\xa3\x96\xfe\x9f\xd0\x3f\x6a\xe9\x7f\x92\xfe" "\x51\x4b\xff\x4f\xea\x1f\xb5\xf4\xff\x94\xfe\x51\x4b\xff\x4f\xeb\x1f" "\xb5\xf4\xff\x8c\xfe\x51\x4b\xff\x93\xf5\x8f\x5a\xfa\x9f\xa2\x7f\xd4" "\xd2\xff\x54\xfd\xa3\x96\xfe\xa7\xe9\x1f\xb5\xf4\x3f\x5d\xff\xa8\xa5" "\xff\x19\xfa\x47\x2d\xfd\xcf\xd4\x3f\x6a\xe9\x7f\x96\xfe\x51\x4b\xff" "\xb3\xf5\x8f\x5a\xfa\x7f\x56\xff\xa8\xa5\xff\x39\xfa\x47\x2d\xfd\x3f" "\xa7\x7f\xd4\xd2\xff\xf3\xfa\x47\x2d\xfd\xbf\xa0\x7f\xd4\xd2\xff\x8b" "\xfa\x47\x2d\xfd\xbf\xa4\x7f\xd4\xd2\xff\x5c\xfd\xa3\x96\xfe\x5f\xd6" "\x3f\x6a\xe9\xff\x15\xfd\xa3\x96\xfe\xe7\xe9\x1f\xb5\xf4\x3f\x5f\xff" "\xa8\xa5\xff\x05\xfa\x47\x2d\xfd\xbf\xaa\x7f\xd4\xd2\xff\x6b\xfa\x47" "\x2d\xfd\xbf\xae\x7f\xd4\xd2\xff\x42\xfd\xa3\x96\xfe\x17\xe9\x1f\xb5" "\xf4\xbf\x58\xff\x68\x6a\xee\xbf\xea\x13\xb7\x8e\xf8\x86\xfe\xd1\xd4" "\xdc\xff\xc9\xeb\xff\x12\xfd\xa3\x96\xfe\x97\xea\x1f\xb5\xf4\xbf\x4c" "\xff\xa8\xa5\xff\xe5\xfa\x47\x2d\xfd\xbf\xa9\x7f\xd4\xd2\xff\x5b\xfa" "\x47\x2d\xfd\xbf\xad\x7f\xd4\xd2\xff\x0a\xfd\xa3\x96\xfe\x57\xea\x1f" "\xb5\xf4\xff\x8e\xfe\x51\x4b\xff\xab\xf4\x8f\x5a\xfa\x7f\x57\xff\xa8" "\xa5\xff\xf7\xf4\x8f\x5a\xfa\x5f\xad\x7f\xd4\xd2\xff\x1a\xfd\xa3\x96" "\xfe\xdf\xd7\x3f\x6a\xe9\x7f\xad\xfe\x51\x4b\xff\xeb\xf4\x8f\x5a\xfa" "\xff\x40\xff\xa8\xa5\xff\xf5\xfa\x47\x2d\xfd\x6f\xd0\x3f\x6a\xe9\x7f" "\xa3\xfe\x51\x4b\xff\x9b\xf4\x8f\x5a\xfa\xdf\xac\x7f\xd4\xd2\xff\x16" "\xfd\xa3\x96\xfe\x3f\xd4\x3f\x6a\xe9\x7f\xab\xfe\x51\x4b\xff\x1f\xe9" "\x1f\xb5\xf4\xff\xb1\xfe\x51\x4b\xff\x9f\xe8\x1f\xb5\xf4\xbf\x4d\xff" "\xa8\xa5\xff\x4f\xf5\x8f\x5a\xfa\xff\x4c\xff\xa8\xa5\xff\xcf\xf5\x8f" "\x5a\xfa\xdf\xae\x7f\xd4\xd2\xff\x17\xfa\x47\x2d\xfd\x7f\xa9\x7f\xd4" "\xd2\xff\x0e\xfd\xa3\x96\xfe\xbf\xd2\x3f\x6a\xe9\xff\x6b\xfd\xa3\x96" "\xfe\x77\xea\x1f\xb5\xf4\xff\x8d\xfe\x51\x4b\xff\xdf\xea\x1f\xb5\xf4" "\xff\x9d\xfe\x51\x4b\xff\xdf\xeb\x1f\xb5\xf4\xbf\x4b\xff\xa8\xa5\xff" "\x1f\xf4\x8f\x5a\xfa\xff\x51\xff\xa8\xa5\xff\xdd\xfa\x47\x2d\xfd\xff" "\xa4\x7f\xd4\xd2\xff\x1e\xfd\xa3\x96\xfe\x7f\xd6\x3f\x6a\xe9\x7f\xaf" "\xfe\x51\x4b\xff\xbf\xe8\x1f\xb5\xf4\xbf\x4f\xff\xa8\xa5\xff\x5f\xf5" "\x8f\x5a\xfa\xdf\xaf\x7f\xd4\xd2\xff\x6f\xfa\x47\x2d\xfd\x1f\xd0\x3f" "\x6a\xe9\xff\x77\xfd\xa3\x96\xfe\x0f\xea\x1f\xb5\xf4\xff\x87\xfe\x51" "\x4b\xff\x87\xf4\x8f\x5a\xfa\x3f\xac\x7f\xd4\xd2\xff\x9f\xfa\x47\x2d" "\xfd\x1f\xd1\x3f\x6a\xe9\xff\xa8\xfe\x51\x49\xff\x91\x03\xfd\xa3\x96" "\xfe\xc3\xf4\x8f\x5a\xfa\x0f\xff\x97\xfd\x47\xfc\x67\xc7\xf5\x2c\xd5" "\xd2\x7f\x84\xf5\x1f\xb5\xf4\x1f\xa9\x7f\xd4\xd2\x7f\x1a\xfd\xa3\x96" "\xfe\xa3\xf4\x8f\x5a\xfa\x4f\xab\x7f\xd4\xd2\x7f\xb4\xfe\x51\x4b\xff" "\xe9\xf4\x8f\x5a\xfa\x4f\xaf\x7f\xd4\xd2\xff\x39\xfa\x47\x2d\xfd\x67" "\xd0\x3f\x6a\xe9\x3f\xa3\xfe\x51\x4b\xff\x99\xf4\x8f\x5a\xfa\xcf\xac" "\x7f\xd4\xd2\x7f\x16\xfd\xa3\x96\xfe\xb3\xea\x1f\xb5\xf4\x9f\x4d\xff" "\xa8\xa5\xff\x73\xf5\x8f\x5a\xfa\xcf\xae\x7f\xd4\xd2\xff\x79\xfa\x47" "\x2d\xfd\x9f\xaf\x7f\xd4\xd2\xff\x05\xfa\x47\x2d\xfd\xe7\xd0\x3f\x6a" "\xe9\x3f\xa7\xfe\x51\x4b\xff\xb9\xf4\x8f\x5a\xfa\xbf\x50\xff\xa8\xa5" "\xff\x8b\xf4\x8f\x5a\xfa\xcf\xad\x7f\xd4\xd2\x7f\x1e\xfd\xa3\x96\xfe" "\x2f\xd6\x3f\x6a\xe9\x3f\x46\xff\xa8\xa5\xff\xbc\xfa\x47\x2d\xfd\xe7" "\xd3\x3f\x6a\xe9\x3f\xbf\xfe\x51\x4b\xff\x05\xf4\x8f\x5a\xfa\x2f\xa8" "\x7f\xd4\xd2\x7f\x21\xfd\xa3\x96\xfe\x0b\xeb\x1f\xb5\xf4\x5f\x44\xff" "\xa8\xa5\xff\xa2\xfa\x47\x2d\xfd\x5f\xa2\x7f\xd4\xd2\xff\xa5\xfa\x47" "\x2d\xfd\x17\xd3\x3f\x6a\xe9\xbf\xb8\xfe\x51\x4b\xff\x25\xf4\x8f\x5a" "\xfa\x2f\xa9\x7f\xd4\xd2\x7f\x29\xfd\xa3\x96\xfe\x4b\xeb\x1f\xb5\xf4" "\x5f\x46\xff\xa8\xa5\xff\xb2\xfa\x47\x53\x71\xff\xe9\x9e\x74\xeb\xc8" "\x97\xe9\x1f\x4d\xc5\xfd\x9f\xb2\xfe\x5f\xae\x7f\xd4\xd2\x7f\x39\xfd" "\xa3\x96\xfe\xcb\xeb\x1f\xb5\xf4\x5f\x41\xff\xa8\xa5\xff\x8a\xfa\x47" "\x2d\xfd\x5f\x51\xd3\x7f\xf4\x33\xda\xba\xa5\xff\x4a\x35\xfd\x9f\x99" "\x96\xfe\xaf\xd4\x3f\x6a\xe9\xff\x2a\xfd\xa3\x96\xfe\x2b\xeb\x1f\xb5" "\xf4\x5f\x45\xff\xa8\xa5\xff\xaa\xfa\x47\x2d\xfd\x57\xd3\x3f\x6a\xe9" "\xbf\xba\xfe\x51\x4b\xff\x57\xeb\x1f\xb5\xf4\x5f\x43\xff\xa8\xa5\xff" "\x9a\xfa\x47\x2d\xfd\xd7\xd2\x3f\x6a\xe9\xbf\xb6\xfe\x51\x4b\xff\x75" "\xf4\x8f\x5a\xfa\xaf\xab\x7f\xd4\xd2\xff\x35\xfa\x47\x2d\xfd\x5f\xab" "\x7f\xd4\xd2\x7f\x3d\xfd\xa3\x96\xfe\xaf\xd3\x3f\x6a\xe9\xff\x7a\xfd" "\xa3\x96\xfe\x6f\xd0\x3f\x6a\xe9\xff\x46\xfd\xa3\x96\xfe\xeb\xeb\x1f" "\xb5\xf4\xdf\x40\xff\xa8\xa5\xff\x86\xfa\x47\x2d\xfd\x37\xd2\x3f\x6a" "\xe9\xbf\xb1\xfe\x51\x4b\xff\x37\xe9\x1f\xb5\xf4\xdf\x44\xff\xa8\xa5" "\xff\xa6\xfa\x47\x2d\xfd\x37\xd3\x3f\x6a\xe9\xff\x66\xfd\xa3\x96\xfe" "\x9b\xeb\x1f\xb5\xf4\xdf\x42\xff\xa8\xa5\xff\x5b\xf4\x8f\x5a\xfa\x6f" "\xa9\x7f\xd4\xd2\x7f\x2b\xfd\xa3\x96\xfe\x5b\xeb\x1f\xb5\xf4\xdf\x46" "\xff\xa8\xa5\xff\x5b\xf5\x8f\x5a\xfa\x6f\xab\x7f\xd4\xd2\x7f\x3b\xfd" "\xa3\x96\xfe\xdb\xeb\x1f\xb5\xf4\xdf\x41\xff\xa8\xa5\xff\x8e\xfa\x47" "\x2d\xfd\x77\xd2\x3f\x6a\xe9\xbf\xb3\xfe\x51\x4b\xff\x5d\xf4\x8f\x5a" "\xfa\xbf\x4d\xff\xa8\xa5\xff\xae\xfa\x47\x2d\xfd\x77\xd3\x3f\x6a\xe9" "\xbf\xbb\xfe\x51\x4b\xff\x3d\xf4\x8f\x5a\xfa\xef\xa9\x7f\xd4\xd2\xff" "\xed\xfa\x47\x2d\xfd\xf7\xd2\x3f\x6a\xe9\xbf\xb7\xfe\x51\x4b\xff\x7d" "\xf4\x8f\x5a\xfa\xbf\x43\xff\xa8\xa5\xff\xbe\xfa\x47\x2d\xfd\xf7\xd3" "\x3f\x6a\xe9\xbf\xbf\xfe\x51\x4b\xff\x03\xf4\x8f\x5a\xfa\x1f\xa8\x7f" "\xd4\xd2\xff\x20\xfd\xa3\x96\xfe\x07\xeb\x1f\xb5\xf4\x7f\xa7\xfe\x51" "\x4b\xff\x77\xe9\x1f\xb5\xf4\x3f\x44\xff\xa8\xa5\xff\xa1\xfa\x47\x2d" "\xfd\x0f\xd3\x3f\x6a\xe9\xff\x6e\xfd\xa3\x96\xfe\xef\xd1\x3f\x6a\xe9" "\xff\x5e\xfd\xa3\x96\xfe\xef\xd3\x3f\x6a\xe9\x7f\xb8\xfe\x51\x4b\xff" "\xf7\xeb\x1f\xb5\xf4\x3f\x42\xff\xa8\xa5\xff\x91\xfa\x47\x2d\xfd\x8f" "\xd2\x3f\x6a\xe9\x7f\xb4\xfe\x51\x4b\xff\x0f\xe8\x1f\xb5\xf4\xff\xa0" "\xfe\x51\x4b\xff\x0f\xe9\x1f\xb5\xf4\xff\xb0\xfe\x51\x4b\xff\x63\xf4" "\x8f\x5a\xfa\x1f\xab\x7f\xd4\xd2\xff\x23\xfa\x47\x2d\xfd\x8f\xd3\x3f" "\x6a\xe9\xff\x51\xfd\xa3\x96\xfe\xc7\xeb\x1f\xb5\xf4\xff\x98\xfe\x51" "\x4b\xff\x8f\xeb\x1f\xb5\xf4\x3f\x41\xff\xa8\xa5\xff\x89\xfa\x47\x2d" "\xfd\x3f\xa1\x7f\xd4\xd2\xff\x24\xfd\xa3\x96\xfe\x9f\xd4\x3f\x6a\xe9" "\xff\x29\xfd\xa3\x96\xfe\x9f\xd6\x3f\x6a\xe9\xff\x19\xfd\xa3\x96\xfe" "\x27\xeb\x1f\xb5\xf4\x3f\x45\xff\xa8\xa5\xff\xa9\xfa\x47\x2d\xfd\x4f" "\xd3\x3f\x6a\xe9\x7f\xba\xfe\x51\x4b\xff\x33\xf4\x8f\x5a\xfa\x9f\xa9" "\x7f\xd4\xd2\xff\x2c\xfd\xa3\x96\xfe\x67\xeb\x1f\xb5\xf4\xff\xac\xfe" "\xd1\xd4\xdc\x7f\xf4\x13\xb7\x8e\x3c\x47\xff\x68\x6a\xee\xff\xe4\xf5" "\xff\x39\xfd\xa3\x96\xfe\x9f\xd7\x3f\x6a\xe9\xff\x05\xfd\xa3\x27\xfa" "\x1f\x32\x98\x9a\xfb\x7f\x51\xff\xa8\x65\xfd\x7f\x49\xff\xa8\xa5\xff" "\xb9\xfa\x47\x2d\xfd\xbf\xac\x7f\xd4\xd2\xff\x2b\xfa\x47\x2d\xfd\xcf" "\xd3\x3f\x6a\xe9\x7f\xbe\xfe\x51\x4b\xff\x0b\xf4\x8f\x5a\xfa\x7f\x55" "\xff\xa8\xa5\xff\xd7\xf4\x8f\x5a\xfa\x7f\x5d\xff\xa8\xa5\xff\x85\xfa" "\x47\x2d\xfd\x2f\xd2\x3f\x6a\xe9\x7f\xb1\xfe\x51\x4b\xff\x6f\xe8\x1f" "\xb5\xf4\xbf\x44\xff\xa8\xa5\xff\xa5\xfa\x47\x2d\xfd\x2f\xd3\x3f\x6a" "\xe9\x7f\xb9\xfe\x51\x4b\xff\x6f\xea\x1f\xb5\xf4\xff\x96\xfe\x51\x4b" "\xff\x6f\xeb\x1f\xb5\xf4\xbf\x42\xff\xa8\xa5\xff\x95\xfa\x47\x2d\xfd" "\xbf\xa3\x7f\xd4\xd2\xff\xaa\x27\xfa\x0f\x7b\x78\x8a\x0c\xec\xd9\xa9" "\xa5\xff\x77\xad\xff\xa8\xa5\xff\xf7\xf4\x8f\x5a\xfa\x5f\xad\x7f\xd4" "\xd2\xff\x1a\xfd\xa3\x96\xfe\xdf\xd7\x3f\x6a\xe9\x7f\xad\xfe\x51\x4b" "\xff\xeb\xf4\x8f\x5a\xfa\xff\x40\xff\xa8\xa5\xff\xf5\xfa\x47\x2d\xfd" "\x6f\xd0\x3f\x6a\xe9\x7f\xa3\xfe\x51\x4b\xff\x9b\xea\xfa\xdf\xf2\xe8" "\xe4\x6c\xd5\xd2\xff\xe6\xba\xfe\x93\xa7\xa5\xff\x2d\xfa\x47\x2d\xfd" "\x7f\xa8\x7f\xd4\xd2\xff\x56\xfd\xa3\x96\xfe\x3f\xd2\x3f\x6a\xe9\xff" "\x63\xfd\xa3\x96\xfe\x3f\xd1\x3f\x6a\xe9\x7f\x9b\xfe\x51\x4b\xff\x9f" "\xea\x1f\xb5\xf4\xff\x99\xfe\x51\x4b\xff\x9f\xeb\x1f\xb5\xf4\xbf\x5d" "\xff\xa8\xa5\xff\x48\xfd\xa3\x96\xfe\xbf\xd4\x3f\x6a\xe9\x7f\x87\xfe" "\x51\x4b\xff\x5f\xe9\x1f\xb5\xf4\xff\xb5\xfe\x51\x4b\xff\x3b\xf5\x8f" "\x5a\xfa\xff\x46\xff\xa8\xa5\xff\x6f\xf5\x8f\x5a\xfa\xff\x4e\xff\xa8" "\xa5\xff\xef\xf5\x8f\x5a\xfa\xdf\xa5\x7f\xd4\xd2\xff\x0f\xfa\x47\x2d" "\xfd\xff\xa8\x7f\xd4\xd2\xff\x6e\xfd\xa3\x96\xfe\x7f\xd2\x3f\x6a\xe9" "\x7f\x8f\xfe\x51\x4b\xff\x3f\xeb\x1f\xb5\xf4\xbf\x57\xff\xa8\xa5\xff" "\x5f\xf4\x8f\x5a\xfa\xdf\xa7\x7f\xd4\xd2\xff\xaf\xfa\x47\x2d\xfd\xef" "\xd7\x3f\x6a\xe9\xff\x37\xfd\xa3\x96\xfe\x0f\xe8\x1f\xb5\xf4\xff\xbb" "\xfe\x51\x4b\xff\x07\xf5\x8f\x5a\xfa\xff\x43\xff\xa8\xa5\xff\x43\xfa" "\x47\x2d\xfd\x1f\xd6\x3f\x6a\xe9\xff\x4f\xfd\xa3\x96\xfe\x8f\xe8\x1f" "\xb5\xf4\x7f\x54\xff\xa8\xa4\xff\x34\x03\xfd\xa3\x96\xfe\xc3\xf4\x8f" "\x5a\xfa\x0f\xd7\x3f\x6a\xe9\x3f\x42\xff\xa8\xa5\xbf\xf3\xff\x64\x2d" "\xfd\xa7\xd1\x3f\x6a\xe9\x3f\x4a\xff\xa8\xa5\xff\xb4\xfa\x47\x2d\xfd" "\x47\xeb\x1f\xb5\xf4\x9f\x4e\xff\xa8\xa5\xff\xf4\xfa\x47\x2d\xfd\x9f" "\xa3\x7f\xd4\xd2\x7f\x06\xfd\xa3\xc7\xfb\x6f\x3e\x6c\x30\x98\x8a\xfb" "\xcf\xa8\x7f\xd4\xb2\xfe\x67\xd2\x3f\x6a\xe9\x3f\xb3\xfe\x51\x4b\xff" "\x59\xf4\x8f\x5a\xfa\xcf\xaa\x7f\xd4\xd2\x7f\x36\xfd\xa3\x96\xfe\xcf" "\xd5\x3f\x6a\xe9\x3f\xbb\xfe\x51\x4b\xff\xe7\xe9\x1f\xb5\xf4\x7f\xbe" "\xfe\x51\x4b\xff\x17\xe8\x1f\xb5\xf4\x9f\x43\xff\xa8\xa5\xff\x9c\xfa" "\x47\x2d\xfd\xe7\xd2\x3f\x6a\xe9\xff\x42\xfd\xa3\x96\xfe\x2f\xd2\x3f" "\x6a\xe9\x3f\xb7\xfe\x51\x4b\xff\x79\xf4\x8f\x5a\xfa\xbf\x58\xff\xa8" "\xa5\xff\x18\xfd\xa3\x96\xfe\xf3\xea\x1f\xb5\xf4\x9f\x4f\xff\xa8\xa5" "\xff\xfc\xfa\x47\x2d\xfd\x17\xd0\x3f\x6a\xe9\xbf\xa0\xfe\x51\x4b\xff" "\x85\xf4\x8f\x5a\xfa\x2f\xac\x7f\xd4\xd2\x7f\x11\xfd\xa3\x96\xfe\x8b" "\xea\x1f\xb5\xf4\x7f\x89\xfe\x51\x4b\xff\x97\xea\x1f\xb5\xf4\x5f\x4c" "\xff\xa8\xa5\xff\xe2\xfa\x47\x2d\xfd\x97\xd0\x3f\x6a\xe9\xbf\xa4\xfe" "\x51\x4b\xff\xa5\xf4\x8f\x5a\xfa\x2f\xad\x7f\xd4\xd2\x7f\x19\xfd\xa3" "\x96\xfe\xcb\xea\x1f\xb5\xf4\x7f\x99\xfe\x51\x4b\xff\x97\xeb\x1f\xb5" "\xf4\x5f\x4e\xff\xa8\xa5\xff\xf2\xfa\x47\x2d\xfd\x57\xd0\x3f\x6a\xe9" "\xbf\xa2\xfe\x51\x4b\xff\x57\xe8\x1f\xb5\xf4\x5f\x49\xff\xa8\xa5\xff" "\x2b\xf5\x8f\x5a\xfa\xbf\x4a\xff\xa8\xa5\xff\xca\xfa\x47\x2d\xfd\x57" "\xd1\x3f\x6a\xe9\xbf\xaa\xfe\x51\x4b\xff\xd5\xf4\x8f\x5a\xfa\xaf\xae" "\x7f\xd4\xd2\xff\xd5\xfa\x47\x2d\xfd\xd7\xd0\x3f\x6a\xe9\xbf\xa6\xfe" "\x51\x4b\xff\xb5\xf4\x8f\x5a\xfa\xaf\xad\x7f\xd4\xd2\x7f\x1d\xfd\xa3" "\x61\xc3\x07\x15\xfd\xd7\xd5\x3f\x6a\x59\xff\xaf\xd1\x3f\x6a\xe9\xff" "\x5a\xfd\xa3\x96\xfe\xeb\xe9\x1f\xb5\xf4\x7f\x9d\xfe\x51\x4b\xff\xd7" "\xeb\x1f\xb5\xf4\x7f\x83\xfe\x51\x4b\xff\x37\xea\x1f\xb5\xf4\x5f\x5f" "\xff\x68\x6c\xff\x9b\x07\x83\xc1\xd4\xde\x7f\x03\xfd\xa3\x96\xf5\xbf" "\xa1\xfe\x51\x4b\xff\x8d\xf4\x8f\x5a\xfa\x6f\xac\x7f\xd4\xd2\xff\x4d" "\xfa\x47\x2d\xfd\x37\xd1\x3f\x6a\xe9\xbf\xa9\xfe\x51\x4b\xff\xcd\xf4" "\x8f\x5a\xfa\xbf\x59\xff\xa8\xa5\xff\xe6\xfa\x47\x2d\xfd\xb7\xd0\x3f" "\x6a\xe9\xff\x16\xfd\xa3\x96\xfe\x5b\xea\x1f\xb5\xf4\xdf\x4a\xff\xa8" "\xa5\xff\xd6\xfa\x47\x2d\xfd\xb7\xd1\x3f\x6a\xe9\xff\x56\xfd\xa3\x96" "\xfe\xdb\xea\x1f\xb5\xf4\xdf\x4e\xff\xa8\xa5\xff\xf6\xc5\xfd\x47\x4d" "\xe2\xbe\x96\xfe\x3b\x14\xf7\x9f\x94\x96\xfe\x3b\xea\x1f\xb5\xf4\xdf" "\x49\xff\xa8\xa5\xff\xce\xfa\x47\x2d\xfd\x77\xd1\x3f\x6a\xe9\xff\x36" "\xfd\xa3\x96\xfe\xbb\xea\x1f\xb5\xf4\xdf\x4d\xff\xa8\xa5\xff\xee\xfa" "\x47\x2d\xfd\xf7\xd0\x3f\x6a\xe9\xbf\xa7\xfe\x51\x4b\xff\xb7\xeb\x1f" "\xb5\xf4\xdf\x4b\xff\xa8\xa5\xff\xde\xfa\x47\x2d\xfd\xf7\xd1\x3f\x6a" "\xe9\xff\x0e\xfd\xa3\x96\xfe\xfb\xea\x1f\xb5\xf4\xdf\x4f\xff\xa8\xa5" "\xff\xfe\xfa\x47\x2d\xfd\x0f\xd0\x3f\x6a\xe9\x7f\xa0\xfe\x51\x4b\xff" "\x83\xf4\x8f\x5a\xfa\x1f\xac\x7f\xd4\xd2\xff\x9d\xfa\x47\x2d\xfd\xdf" "\xa5\x7f\xd4\xd2\xff\x10\xfd\xa3\x96\xfe\x87\xea\x1f\xb5\xf4\x3f\x4c" "\xff\xa8\xa5\xff\xbb\xf5\x8f\x5a\xfa\xbf\x47\xff\xa8\xa5\xff\x7b\xf5" "\x8f\x5a\xfa\xbf\x4f\xff\xa8\xa5\xff\xe1\xfa\x47\x2d\xfd\xdf\xaf\x7f" "\xd4\xd2\xff\x08\xfd\xa3\x96\xfe\x47\xea\x1f\xb5\xf4\x3f\x4a\xff\xa8" "\xa5\xff\xd1\xfa\x47\x2d\xfd\x3f\xa0\x7f\xd4\xd2\xff\x83\xfa\x47\x2d" "\xfd\x3f\xa4\x7f\xd4\xd2\xff\xc3\xfa\x47\x2d\xfd\x8f\xd1\x3f\x6a\xe9" "\x7f\xac\xfe\x51\x4b\xff\x8f\xe8\x1f\xb5\xf4\x3f\x4e\xff\xa8\xa5\xff" "\x47\xf5\x8f\x5a\xfa\x1f\xaf\x7f\xd4\xd2\xff\x63\xfa\x47\x2d\xfd\x3f" "\xae\x7f\xd4\xd2\xff\x04\xfd\xa3\x96\xfe\x27\xea\x1f\xb5\xf4\xff\x84" "\xfe\x51\x4b\xff\x93\xf4\x8f\x5a\xfa\x7f\x52\xff\xa8\xa5\xff\xa7\xf4" "\x8f\x5a\xfa\x7f\x5a\xff\xa8\xa5\xff\x67\xf4\x8f\x5a\xfa\x9f\xac\x7f" "\xd4\xd2\xff\x14\xfd\xa3\x96\xfe\xa7\xea\x1f\xb5\xf4\x3f\x4d\xff\xa8" "\xa5\xff\xe9\xfa\x47\x2d\xfd\xcf\xd0\x3f\x6a\xe9\x7f\xa6\xfe\x51\x4b" "\xff\xb3\xf4\x8f\x5a\xfa\x9f\xad\x7f\xd4\xd2\xff\xb3\xfa\x47\x2d\xfd" "\xcf\xd1\x3f\x6a\xe9\xff\xb9\xaa\xfe\xeb\x1c\x39\xb9\x5b\xb6\xf4\xff" "\x7c\x55\xff\xc9\xd7\xd2\xff\x0b\xfa\x47\x2d\xfd\xbf\xa8\x7f\xd4\xd2" "\xff\x4b\xfa\x47\x2d\xfd\xcf\xd5\x3f\x6a\xe9\xff\x65\xfd\xa3\x96\xfe" "\x5f\xd1\x3f\x6a\xe9\x7f\x9e\xfe\x51\x4b\xff\xf3\xf5\x8f\x5a\xfa\x5f" "\xa0\x7f\xd4\xd2\xff\xab\xfa\x47\x2d\xfd\xbf\xa6\x7f\xd4\xd2\xff\xeb" "\xfa\x47\x2d\xfd\x2f\xd4\x3f\x6a\xe9\x7f\x91\xfe\x51\x4b\xff\x8b\xf5" "\x8f\x5a\xfa\x7f\x43\xff\xa8\xa5\xff\x25\xfa\x47\x2d\xfd\x2f\xd5\x3f" "\x6a\xe9\x7f\x99\xfe\x51\x4b\xff\xcb\xf5\x8f\x5a\xfa\x7f\x53\xff\xa8" "\xa5\xff\xb7\xf4\x8f\x5a\xfa\x7f\x5b\xff\xa8\xa5\xff\x15\xfa\x47\x2d" "\xfd\xaf\xd4\x3f\x6a\xe9\xff\x1d\xfd\xa3\x96\xfe\x57\xe9\x1f\xb5\xf4" "\xff\xae\xfe\x51\x4b\xff\xef\xe9\x1f\xb5\xf4\xbf\x5a\xff\xa8\xa5\xff" "\x35\xfa\x47\x2d\xfd\xbf\xaf\x7f\xd4\xd2\xff\x5a\xfd\xa3\x96\xfe\xd7" "\xe9\x1f\xb5\xf4\xff\x81\xfe\x51\x4b\xff\xeb\xf5\x8f\x5a\xfa\xdf\xa0" "\x7f\xd4\xd2\xff\x46\xfd\xa3\x96\xfe\x37\xe9\x1f\xb5\xf4\xbf\x59\xff" "\xa8\xa5\xff\x2d\xfa\x47\x2d\xfd\x7f\xa8\x7f\xd4\xd2\xff\x56\xfd\xa3" "\x96\xfe\x3f\xd2\x3f\x6a\xe9\xff\x63\xfd\xa3\x96\xfe\x3f\xd1\x3f\x6a" "\xe9\x7f\x9b\xfe\x51\x4b\xff\x9f\xea\x1f\xb5\xf4\xff\x99\xfe\x51\x4b" "\xff\x9f\xeb\x1f\xb5\xf4\xbf\x5d\xff\xa8\xa5\xff\x2f\xf4\x8f\x5a\xfa" "\xff\x52\xff\xa8\xa5\xff\x1d\xfa\x47\x2d\xfd\x7f\xa5\x7f\xd4\xd2\xff" "\xd7\xfa\x47\x2d\xfd\xef\xd4\x3f\x6a\xe9\xff\x1b\xfd\xa3\x96\xfe\xbf" "\xd5\x3f\x6a\xe9\xff\x3b\xfd\xa3\x96\xfe\xbf\xd7\x3f\x6a\xe9\x7f\x97" "\xfe\x51\x4b\xff\x3f\xe8\x1f\xb5\xf4\xff\xa3\xfe\x51\x4b\xff\xbb\xf5" "\x8f\x5a\xfa\xff\x49\xff\xa8\xa5\xff\x3d\xfa\x47\x2d\xfd\xff\xac\x7f" "\xd4\xd2\xff\x5e\xfd\xa3\x96\xfe\x7f\xd1\x3f\x6a\xe9\x7f\x9f\xfe\x51" "\x4b\xff\xbf\xea\x1f\xb5\xf4\xbf\x5f\xff\xa8\xa5\xff\xdf\xf4\x8f\x5a" "\xfa\x3f\xa0\x7f\xd4\xd2\xff\xef\xfa\x47\x2d\xfd\x1f\xd4\x3f\x6a\xe9" "\xff\x0f\xfd\xa3\x96\xfe\x0f\xe9\x1f\xb5\xf4\x7f\x58\xff\xa8\xa5\xff" "\x3f\xf5\x8f\x5a\xfa\x3f\xa2\x7f\xd4\xd2\xff\x51\xfd\xa3\x92\xfe\xa3" "\x06\xfa\x47\x2d\xfd\x87\xe9\x1f\xb5\xf4\x1f\xae\x7f\xd4\xd2\x7f\x84" "\xfe\x51\x4b\xff\x91\xfa\x47\x2d\xfd\xa7\xd1\x3f\x6a\xe9\x3f\x4a\xff" "\xa8\xa5\xff\xb4\xfa\x47\x2d\xfd\x47\xeb\x1f\xb5\xf4\x9f\x4e\xff\xa8" "\xa5\xff\xf4\xfa\x47\x2d\xfd\x9f\xa3\x7f\xd4\xd2\x7f\x06\xfd\xa3\x96" "\xfe\x33\xea\x1f\xb5\xf4\x9f\x49\xff\xa8\xa5\xff\xcc\xfa\x47\x2d\xfd" "\x67\xd1\x3f\x6a\xe9\x3f\xab\xfe\x51\x4b\xff\xd9\xf4\x8f\x5a\xfa\x3f" "\x57\xff\xa8\xa5\xff\xec\xfa\x47\x2d\xfd\x9f\xa7\x7f\xd4\xd2\xff\xf9" "\xfa\x47\x2d\xfd\x5f\xa0\x7f\xd4\xd2\x7f\x0e\xfd\xa3\x96\xfe\x73\xea" "\x1f\xb5\xf4\x9f\x4b\xff\xa8\xa5\xff\x0b\xf5\x8f\x5a\xfa\xbf\x48\xff" "\xa8\xa5\xff\xdc\xfa\x47\x2d\xfd\xe7\xd1\x3f\x6a\xe9\xff\x62\xfd\xa3" "\x96\xfe\x63\xf4\x8f\x5a\xfa\xcf\xab\x7f\xd4\xd2\x7f\x3e\xfd\xa3\x96" "\xfe\xf3\xeb\x1f\xb5\xf4\x5f\x40\xff\xa8\xa5\xff\x82\xfa\x47\x2d\xfd" "\x17\xd2\x3f\x6a\xe9\xbf\xb0\xfe\x51\x4b\xff\x45\xf4\x8f\x5a\xfa\x2f" "\xaa\x7f\xd4\xd2\xff\x25\xfa\x47\x2d\xfd\x5f\xaa\x7f\xd4\xd2\x7f\x31" "\xfd\xa3\x96\xfe\x8b\xeb\x1f\xb5\xf4\x5f\x42\xff\xa8\xa5\xff\x92\xfa" "\x47\x2d\xfd\x97\xd2\x3f\x6a\xe9\xbf\xb4\xfe\x51\x4b\xff\x65\xfe\x55" "\xff\x43\xff\xc3\xe3\x7a\x96\x6a\xe9\xbf\xac\xf5\x1f\xb5\xf4\x7f\x99" "\xfe\x51\x4b\xff\x97\xeb\x1f\xb5\xf4\x5f\x4e\xff\xa8\xa5\xff\xf2\xfa" "\x47\x2d\xfd\x57\xd0\x3f\x6a\xe9\xbf\xa2\xfe\x51\x4b\xff\x57\xe8\x1f" "\xb5\xf4\x5f\x49\xff\xa8\xa5\xff\x2b\xf5\x8f\x5a\xfa\xbf\x4a\xff\xa8" "\xa5\xff\xca\xfa\x47\x2d\xfd\x57\xd1\x3f\x6a\xe9\xbf\xaa\xfe\x51\x4b" "\xff\xd5\xf4\x8f\x5a\xfa\xaf\xae\x7f\xd4\xd2\xff\xd5\xfa\x47\x2d\xfd" "\xd7\xd0\x3f\x6a\xe9\xbf\xa6\xfe\x51\x4b\xff\xb5\xf4\x8f\x5a\xfa\xaf" "\xad\x7f\xd4\xd2\x7f\x1d\xfd\xa3\x96\xfe\xeb\xea\x1f\xb5\xf4\x7f\x8d" "\xfe\x51\x4b\xff\xd7\xea\x1f\xb5\xf4\x5f\x4f\xff\xa8\xa5\xff\xeb\xf4" "\x8f\x5a\xfa\xbf\x5e\xff\xa8\xa5\xff\x1b\xf4\x8f\x5a\xfa\xbf\x51\xff" "\xa8\xa5\xff\xfa\xfa\x47\x2d\xfd\x37\xd0\x3f\x6a\xe9\xbf\xa1\xfe\x51" "\x4b\xff\x8d\xf4\x8f\x5a\xfa\x6f\xac\x7f\xd4\xd2\xff\x4d\xfa\x47\x2d" "\xfd\x37\xd1\x3f\x6a\xe9\xbf\xa9\xfe\x51\x4b\xff\xcd\xf4\x8f\x5a\xfa" "\xbf\x59\xff\xa8\xa5\xff\xe6\xb1\xff\x88\xff\xde\xb8\x9e\xa5\x5a\xfa" "\x6f\x61\xfd\x47\x2d\xfd\xdf\xa2\x7f\xd4\xd2\x7f\x4b\xfd\xa3\x96\xfe" "\x5b\xe9\x1f\xb5\xf4\xdf\x5a\xff\xa8\xa5\xff\x36\xfa\x47\x2d\xfd\xdf" "\xaa\x7f\xd4\xd2\x7f\x5b\xfd\xa3\x96\xfe\xdb\xe9\x1f\xb5\xf4\xdf\x5e" "\xff\xa8\xa5\xff\x0e\xfa\x47\x2d\xfd\x77\xd4\x3f\x6a\xe9\xbf\x93\xfe" "\x51\x4b\xff\x9d\xf5\x8f\x5a\xfa\xef\xa2\x7f\xd4\xd2\xff\x6d\xfa\x47" "\x2d\xfd\x77\xd5\x3f\x6a\xe9\xbf\x9b\xfe\x51\x4b\xff\xdd\xf5\x8f\x5a" "\xfa\xef\xa1\x7f\xd4\xd2\x7f\x4f\xfd\xa3\x96\xfe\x6f\xd7\x3f\x6a\xe9" "\xbf\x97\xfe\x51\x4b\xff\xbd\xf5\x8f\x5a\xfa\xef\xa3\x7f\xd4\xd2\xff" "\x1d\xfa\x47\x2d\xfd\xf7\xd5\x3f\x6a\xe9\xbf\x9f\xfe\x51\x4b\xff\xfd" "\xf5\x8f\x5a\xfa\x1f\xa0\x7f\xd4\xd2\xff\x40\xfd\xa3\x96\xfe\x07\xe9" "\x1f\xb5\xf4\x3f\x58\xff\xa8\xa5\xff\x3b\xf5\x8f\x5a\xfa\xbf\x4b\xff" "\xa8\xa5\xff\x21\xfa\x47\x2d\xfd\x0f\xd5\x3f\x6a\xe9\x7f\x98\xfe\x51" "\x4b\xff\x77\xeb\x1f\xb5\xf4\x7f\x8f\xfe\x51\x4b\xff\xf7\xea\x1f\xb5" "\xf4\x7f\x9f\xfe\x51\x4b\xff\xc3\xf5\x8f\x5a\xfa\xbf\x5f\xff\xa8\xa5" "\xff\x11\xfa\x47\x2d\xfd\x8f\xd4\x3f\x6a\xe9\x7f\x94\xfe\x51\x4b\xff" "\xa3\xf5\x8f\x5a\xfa\x7f\x40\xff\xa8\xa5\xff\x07\xf5\x8f\x5a\xfa\x7f" "\x48\xff\xa8\xa5\xff\x87\xf5\x8f\x5a\xfa\x1f\xa3\x7f\xd4\xd2\xff\x58" "\xfd\xa3\x96\xfe\x1f\xd1\x3f\x6a\xe9\x7f\x9c\xfe\x51\x4b\xff\x8f\xea" "\x1f\xb5\xf4\x3f\x5e\xff\xa8\xa5\xff\xc7\xf4\x8f\x5a\xfa\x7f\x5c\xff" "\xa8\xa5\xff\x09\xfa\x47\x2d\xfd\x4f\xd4\x3f\x6a\xe9\xff\x09\xfd\xa3" "\x96\xfe\x27\xe9\x1f\xb5\xf4\xff\xa4\xfe\x51\x4b\xff\x4f\xe9\x1f\xb5" "\xf4\xff\xb4\xfe\x51\x4b\xff\xcf\xe8\x1f\xb5\xf4\x3f\x59\xff\xa8\xa5" "\xff\x29\xfa\x47\x2d\xfd\x4f\xd5\x3f\x6a\xe9\x7f\x9a\xfe\x51\x4b\xff" "\xd3\xf5\x8f\x5a\xfa\x9f\xa1\x7f\xd4\xd2\xff\x4c\xfd\xa3\x96\xfe\x67" "\xe9\x1f\xb5\xf4\x3f\x5b\xff\xa8\xa5\xff\x67\xf5\x8f\x5a\xfa\x9f\xa3" "\x7f\xd4\xd2\xff\x73\xfa\x47\x2d\xfd\x3f\xaf\x7f\xd4\xd2\xff\x0b\xfa" "\x47\x2d\xfd\xbf\xa8\x7f\xd4\xd2\xff\x4b\xfa\x47\x2d\xfd\xcf\xd5\x3f" "\x6a\xe9\xff\x65\xfd\xa3\x96\xfe\x5f\xd1\x3f\x6a\xe9\x7f\x9e\xfe\x51" "\x4b\xff\xf3\xf5\x8f\x5a\xfa\x5f\xa0\x7f\xd4\xd2\xff\xab\xfa\x47\x2d" "\xfd\xbf\xa6\x7f\xd4\xd2\xff\xeb\xfa\x47\x2d\xfd\x2f\xd4\x3f\x6a\xe9" "\x7f\x91\xfe\x51\x4b\xff\x8b\xf5\x8f\x5a\xfa\x7f\x43\xff\xa8\xa5\xff" "\x25\xfa\x47\x2d\xfd\x2f\xd5\x3f\x6a\xe9\x7f\x99\xfe\x51\x4b\xff\xcb" "\xf5\x8f\x5a\xfa\x7f\x53\xff\xa8\xa5\xff\xb7\xf4\x8f\x5a\xfa\x7f\x5b" "\xff\xa8\xa5\xff\x15\xfa\x47\x2d\xfd\xaf\xd4\x3f\x6a\xe9\xff\x1d\xfd" "\xa3\x96\xfe\x57\xe9\x1f\xb5\xf4\xff\xae\xfe\x51\x4b\xff\xef\xe9\x1f" "\xb5\xf4\xbf\x5a\xff\xa8\xa5\xff\x35\xfa\x47\x2d\xfd\xbf\xaf\x7f\xd4" "\xd2\xff\x5a\xfd\xa3\x96\xfe\xd7\xe9\x1f\xb5\xf4\xff\x81\xfe\x51\x4b" "\xff\xeb\xf5\x8f\x5a\xfa\xdf\xa0\x7f\xd4\xd2\xff\x46\xfd\xa3\x96\xfe" "\x37\xe9\x1f\xb5\xf4\xbf\x59\xff\xa8\xa5\xff\x2d\xfa\x47\x2d\xfd\x7f" "\xa8\x7f\xd4\xd2\xff\x56\xfd\xa3\x96\xfe\x3f\xd2\x3f\x6a\xe9\xff\x63" "\xfd\xa3\x96\xfe\x3f\xd1\x3f\x6a\xe9\x7f\x9b\xfe\x51\x4b\xff\x9f\xea" "\x1f\xb5\xf4\xff\x99\xfe\x51\x4b\xff\x9f\xeb\x1f\xb5\xf4\xbf\x5d\xff" "\xa8\xa5\xff\x2f\xf4\x8f\x5a\xfa\xff\x52\xff\xa8\xa5\xff\x1d\xfa\x47" "\x2d\xfd\x7f\xa5\x7f\xd4\xd2\xff\xd7\xfa\x47\x2d\xfd\xef\xd4\x3f\x6a" "\xe9\xff\x1b\xfd\xa3\x96\xfe\xbf\xd5\x3f\x6a\xe9\xff\x3b\xfd\xa3\x96" "\xfe\xbf\xd7\x3f\x6a\xe9\x7f\x97\xfe\x51\x4b\xff\x3f\xe8\x1f\xb5\xf4" "\xff\xa3\xfe\x51\x4b\xff\xbb\xf5\x8f\x5a\xfa\xff\x49\xff\xa8\xa5\xff" "\x3d\xfa\x47\x2d\xfd\xff\xac\x7f\xd4\xd2\xff\x5e\xfd\xa3\x96\xfe\x7f" "\xd1\x3f\x6a\xe9\x7f\x9f\xfe\x51\x4b\xff\xbf\xea\x1f\xb5\xf4\xbf\x5f" "\xff\xa8\xa5\xff\xdf\xf4\x8f\x5a\xfa\x3f\xa0\x7f\xd4\xd2\xff\xef\xfa" "\x47\x2d\xfd\x1f\xd4\x3f\x6a\xe9\xff\x0f\xfd\xa3\x96\xfe\x0f\xe9\x1f" "\xb5\xf4\x7f\x58\xff\xa8\xa5\xff\x3f\xf5\x8f\x5a\xfa\x3f\xa2\x7f\xd4" "\xd2\xff\x51\xfd\xa3\x92\xfe\xd3\x0e\xf4\x8f\x5a\xfa\x0f\xd3\x3f\x6a" "\xe9\x3f\x5c\xff\xa8\xa5\xff\x08\xfd\xa3\x96\xfe\x23\xf5\x8f\x5a\xfa" "\x4f\xa3\x7f\xd4\xd2\x7f\x94\xfe\x51\x4b\xff\x69\xf5\x8f\x5a\xfa\x8f" "\xd6\x3f\x6a\xe9\x3f\x9d\xfe\x51\x4b\xff\xe9\xf5\x8f\x5a\xfa\x3f\x47" "\xff\xa8\xa5\xff\x0c\xfa\x47\x2d\xfd\x67\xd4\x3f\x6a\xe9\x3f\x93\xfe" "\x51\x4b\xff\x99\xf5\x8f\x5a\xfa\xcf\xa2\x7f\xd4\xd2\x7f\x56\xfd\xa3" "\x96\xfe\xb3\xe9\x1f\xb5\xf4\x7f\xae\xfe\x51\x4b\xff\xd9\xf5\x8f\x5a" "\xfa\x3f\x4f\xff\xa8\xa5\xff\xf3\xf5\x8f\x5a\xfa\xbf\x40\xff\xa8\xa5" "\xff\x1c\xfa\x47\x2d\xfd\xe7\xd4\x3f\x6a\xe9\x3f\x97\xfe\x51\x4b\xff" "\x17\xea\x1f\xb5\xf4\x7f\x91\xfe\x51\x4b\xff\xb9\xf5\x8f\x5a\xfa\xcf" "\xa3\x7f\xd4\xd2\xff\xc5\xfa\x47\x2d\xfd\xc7\xe8\x1f\xb5\xf4\x9f\x57" "\xff\xa8\xa5\xff\x7c\xfa\x47\x2d\xfd\xe7\xd7\x3f\x6a\xe9\xbf\x80\xfe" "\x51\x4b\xff\x05\xf5\x8f\x5a\xfa\x2f\xa4\x7f\xd4\xd2\x7f\x61\xfd\xa3" "\x96\xfe\x8b\xe8\x1f\xb5\xf4\x5f\x54\xff\xa8\xa5\xff\x4b\xf4\x8f\x5a" "\xfa\xbf\x54\xff\xa8\xa5\xff\x62\xfa\x47\x2d\xfd\x17\xd7\x3f\x6a\xe9" "\xbf\x84\xfe\x51\x4b\xff\x25\xf5\x8f\x5a\xfa\x2f\xa5\x7f\xd4\xd2\x7f" "\x69\xfd\xa3\x96\xfe\xcb\xe8\x1f\xb5\xf4\x5f\x56\xff\xa8\xa5\xff\xcb" "\xf4\x8f\x5a\xfa\xbf\x5c\xff\xa8\xa5\xff\x72\xfa\x47\x2d\xfd\x97\x9f" "\x8c\xfe\xf7\xce\xf4\x9f\x1c\xd8\xb3\x53\x4b\xff\x15\xac\xff\xa8\xa5" "\xff\x8a\xfa\x47\x2d\xfd\x5f\xa1\x7f\xd4\xd2\x7f\x25\xfd\xa3\x96\xfe" "\xaf\xd4\x3f\x6a\xe9\xff\x2a\xfd\xa3\x96\xfe\x2b\xeb\x1f\xb5\xf4\x5f" "\x45\xff\xa8\xa5\xff\xaa\xfa\x47\x2d\xfd\x57\xd3\x3f\x6a\xe9\xbf\xba" "\xfe\x51\x4b\xff\x57\xeb\x1f\xb5\xf4\x5f\x43\xff\xa8\xa5\xff\x9a\xfa" "\x47\x2d\xfd\xd7\xd2\x3f\x6a\xe9\xbf\xb6\xfe\x51\x4b\xff\x75\xf4\x8f" "\x5a\xfa\xaf\xab\x7f\xd4\xd2\xff\x35\xfa\x47\x2d\xfd\x5f\xab\x7f\xd4" "\xd2\x7f\x3d\xfd\xa3\x96\xfe\xaf\xd3\x3f\x6a\xe9\xff\x7a\xfd\xa3\x96" "\xfe\x6f\xd0\x3f\x6a\xe9\xff\x46\xfd\xa3\x96\xfe\xeb\xeb\x1f\xb5\xf4" "\xdf\x40\xff\xa8\xa5\xff\x86\xfa\x47\x2d\xfd\x37\xd2\x3f\x6a\xe9\xbf" "\xb1\xfe\xd1\x13\xfd\x07\x83\xa9\xb9\xff\x9b\xf4\x8f\x5a\xd6\xff\x26" "\xfa\x47\x2d\xfd\x37\xd5\x3f\x6a\xe9\xbf\x99\xfe\x51\x4b\xff\x37\xeb" "\x1f\xb5\xf4\xdf\x5c\xff\xa8\xa5\xff\x16\xfa\x47\x2d\xfd\xdf\xa2\x7f" "\xd4\xd2\x7f\x4b\xfd\xa3\x96\xfe\x5b\xe9\x1f\xb5\xf4\xdf\x5a\xff\xa8" "\xa5\xff\x36\xfa\x47\x2d\xfd\xdf\xaa\x7f\xd4\xd2\x7f\x5b\xfd\xa3\x96" "\xfe\xdb\xe9\x1f\xb5\xf4\xdf\x5e\xff\xa8\xa5\xff\x0e\xfa\x47\x2d\xfd" "\x77\xd4\x3f\x6a\xe9\xbf\x93\xfe\x51\x4b\xff\x9d\xf5\x8f\x5a\xfa\xef" "\xa2\x7f\xd4\xd2\xff\x6d\xfa\x47\x2d\xfd\x77\xd5\x3f\x6a\xe9\xbf\x9b" "\xfe\x51\x4b\xff\xdd\xf5\x8f\x5a\xfa\xef\xa1\x7f\xd4\xd2\x7f\x4f\xfd" "\xa3\x96\xfe\x6f\xd7\x3f\x6a\xe9\xbf\x97\xfe\x51\x4b\xff\xbd\xf5\x8f" "\x5a\xfa\xef\xa3\x7f\xd4\xd2\xff\x1d\xfa\x47\x2d\xfd\xf7\xd5\x3f\x6a" "\xe9\xbf\x9f\xfe\x51\x4b\xff\xfd\xf5\x8f\x5a\xfa\x1f\xa0\x7f\xd4\xd2" "\xff\x40\xfd\xa3\x96\xfe\x07\xe9\x1f\xb5\xf4\x3f\x58\xff\xa8\xa5\xff" "\x3b\xf5\x8f\x5a\xfa\xbf\x4b\xff\xa8\xa5\xff\x21\xfa\x47\x2d\xfd\x0f" "\xd5\x3f\x6a\xe9\x7f\x98\xfe\x51\x4b\xff\x77\xeb\x1f\xb5\xf4\x7f\x8f" "\xfe\x51\x4b\xff\xf7\xea\x1f\xb5\xf4\x7f\x9f\xfe\x51\x4b\xff\xc3\xf5" "\x8f\x1a\xfa\x8f\x1c\x7f\xa9\xff\xd3\x35\xf4\x1f\xbb\xfe\x8f\xd0\x3f" "\x6a\xe9\x7f\xa4\xfe\x51\x4b\xff\xa3\xf4\x8f\x5a\xfa\x1f\xad\x7f\xd4" "\xd2\xff\x03\xfa\x47\x2d\xfd\x3f\xa8\x7f\xd4\xd2\xff\x43\xfa\x47\x2d" "\xfd\x3f\xac\x7f\xd4\xd2\xff\x18\xfd\xa3\x96\xfe\xc7\xea\x1f\xb5\xf4" "\xff\x88\xfe\x51\x4b\xff\xe3\xf4\x8f\x5a\xfa\x7f\x54\xff\xa8\xa5\xff" "\xf1\xfa\x47\x2d\xfd\x3f\xa6\x7f\xd4\xd2\xff\xe3\xfa\x47\x2d\xfd\x4f" "\xd0\x3f\x6a\xe9\x7f\xa2\xfe\x51\x4b\xff\x4f\xe8\x1f\xb5\xf4\x3f\x49" "\xff\xa8\xa5\xff\x27\xf5\x8f\x5a\xfa\x7f\x4a\xff\xa8\xa5\xff\xa7\xf5" "\x8f\x5a\xfa\x7f\x46\xff\xa8\xa5\xff\xc9\xfa\x47\x2d\xfd\x4f\xd1\x3f" "\x6a\xe9\x7f\xaa\xfe\x51\x4b\xff\xd3\xf4\x8f\x5a\xfa\x9f\xae\x7f\xd4" "\xd2\xff\x0c\xfd\xa3\x96\xfe\x67\xea\x1f\xb5\xf4\x3f\x4b\xff\xa8\xa5" "\xff\xd9\xfa\x47\x2d\xfd\x3f\xab\x7f\xd4\xd2\xff\x9c\xf6\xfe\x0f\xe6" "\x9b\x5b\xfa\x7f\xae\xbd\xff\x44\xb4\xf4\xff\xbc\xfe\x51\x4b\xff\x2f" "\xe8\x1f\xb5\xf4\xff\xa2\xfe\x51\x4b\xff\x2f\xe9\x1f\xb5\xf4\x3f\x57" "\xff\xa8\xa5\xff\x97\xf5\x8f\x5a\xfa\x7f\x45\xff\xa8\xa5\xff\x79\xfa" "\x47\x2d\xfd\xcf\xd7\x3f\x6a\xe9\x7f\x81\xfe\x51\x4b\xff\xaf\xea\x1f" "\xb5\xf4\xff\x9a\xfe\x51\x4b\xff\xaf\xeb\x1f\xb5\xf4\xbf\x50\xff\xa8" "\xa5\xff\x45\xfa\x47\x2d\xfd\x2f\xd6\x3f\x6a\xe9\xff\x0d\xfd\xa3\x96" "\xfe\x97\xe8\x1f\xb5\xf4\xbf\x54\xff\xa8\xa5\xff\x65\xfa\x47\x2d\xfd" "\x2f\xd7\x3f\x9a\xba\xfb\xcf\x39\x74\xeb\xb4\xdf\xd4\x3f\x9a\xba\xfb" "\x3f\x6e\xda\x6f\xe9\x1f\xb5\xf4\xff\x76\x51\xff\x47\x67\x9e\xfc\x6d" "\x5b\xfa\x5f\x51\xd4\xff\x99\x68\xe9\x7f\xa5\xfe\x51\x4b\xff\xef\xe8" "\x1f\xb5\xf4\xbf\xaa\xb4\xff\xcc\xa3\x27\x7d\x7f\x4b\xff\xef\x96\xf6" "\xff\x57\x5a\xfa\x7f\x4f\xff\xa8\xa5\xff\xd5\xfa\x47\x2d\xfd\xaf\xd1" "\x3f\x6a\xe9\xff\x7d\xfd\xa3\x96\xfe\xd7\xea\x1f\xb5\xf4\xbf\x4e\xff" "\xa8\xa5\xff\x0f\xf4\x8f\x5a\xfa\x5f\xaf\x7f\xd4\xd2\xff\x06\xfd\xa3" "\x96\xfe\x37\xea\x1f\xb5\xf4\xbf\x49\xff\xa8\xa5\xff\xcd\xfa\x47\x2d" "\xfd\x6f\xd1\x3f\x6a\xe9\xff\x43\xfd\xa3\x96\xfe\xb7\xea\x1f\xb5\xf4" "\xff\x91\xfe\x51\x4b\xff\x1f\xeb\x1f\xb5\xf4\xff\x89\xfe\x51\x4b\xff" "\xdb\xf4\x8f\x5a\xfa\xff\x54\xff\xa8\xa5\xff\xcf\xf4\x8f\x5a\xfa\xff" "\x5c\xff\xa8\xa5\xff\xed\xfa\x47\x2d\xfd\x7f\xa1\x7f\xd4\xd2\xff\x97" "\xfa\x47\x2d\xfd\xef\xd0\x3f\x6a\xe9\xff\x2b\xfd\xa3\x96\xfe\xbf\xd6" "\x3f\x6a\xe9\x7f\xa7\xfe\x51\x4b\xff\xdf\xe8\x1f\xb5\xf4\xff\xad\xfe" "\x51\x4b\xff\xdf\xe9\x1f\xb5\xf4\xff\xbd\xfe\x51\x4b\xff\xbb\xf4\x8f" "\x5a\xfa\xff\x41\xff\xa8\xa5\xff\x1f\xf5\x8f\x5a\xfa\xdf\xad\x7f\xd4" "\xd2\xff\x4f\xfa\x47\x2d\xfd\xef\xd1\x3f\x6a\xe9\xff\x67\xfd\xa3\x96" "\xfe\xf7\xea\x1f\xb5\xf4\xff\x8b\xfe\x51\x4b\xff\xfb\xf4\x8f\x5a\xfa" "\xff\x55\xff\xa8\xa5\xff\xfd\xfa\x47\x2d\xfd\xff\xa6\x7f\xd4\xd2\xff" "\x01\xfd\xa3\x96\xfe\x7f\xd7\x3f\x6a\xe9\xff\xa0\xfe\x51\x4b\xff\x7f" "\xe8\x1f\xb5\xf4\x7f\x48\xff\xa8\xa5\xff\xc3\xfa\x47\x2d\xfd\xff\xa9" "\x7f\xd4\xd2\xff\x11\xfd\xa3\x96\xfe\x8f\xea\x1f\x95\xf4\x7f\xec\x5f" "\x41\xd4\xff\xe9\x5a\xfa\x0f\xd3\x3f\x6a\xe9\x3f\x5c\xff\xa8\xa5\xff" "\x08\xfd\xa3\x96\xfe\x23\xf5\x8f\x5a\xfa\x4f\xa3\x7f\xd4\xd2\x7f\x94" "\xfe\x51\x4b\xff\x69\xf5\x8f\x5a\xfa\x8f\xd6\x3f\x6a\xe9\x3f\x9d\xfe" "\x51\x4b\xff\xe9\xf5\x8f\x5a\xfa\x3f\x47\xff\xa8\xa5\xff\x0c\xfa\x47" "\x2d\xfd\x67\xd4\x3f\x6a\xe9\x3f\x93\xfe\x51\x4b\xff\x99\xf5\x8f\x5a" "\xfa\xcf\xa2\x7f\xd4\xd2\x7f\x56\xfd\xa3\x96\xfe\xb3\xe9\x1f\xb5\xf4" "\x7f\xae\xfe\x51\x4b\xff\xd9\xf5\x8f\x5a\xfa\x3f\x4f\xff\xa8\xa5\xff" "\xf3\xf5\x8f\x5a\xfa\xbf\x40\xff\xa8\xa5\xff\x1c\xfa\x47\x2d\xfd\xe7" "\xd4\x3f\x6a\xe9\x3f\x97\xfe\x51\x4b\xff\x17\xea\x1f\xb5\xf4\x7f\x91" "\xfe\x51\x4b\xff\xb9\xf5\x8f\x5a\xfa\xcf\xa3\x7f\xd4\xd2\xff\xc5\xfa" "\x47\x2d\xfd\xc7\xe8\x1f\xb5\xf4\x9f\x57\xff\xa8\xa5\xff\x7c\xfa\x47" "\x2d\xfd\xe7\xd7\x3f\x6a\xe9\xbf\x80\xfe\x51\x4b\xff\x05\xf5\x8f\x5a" "\xfa\x2f\xa4\x7f\xd4\xd2\x7f\x61\xfd\xa3\x96\xfe\x8b\xe8\x1f\xb5\xf4" "\x5f\x54\xff\xa8\xa5\xff\x4b\xf4\x8f\x5a\xfa\xbf\x54\xff\xa8\xa5\xff" "\x62\xfa\x47\x2d\xfd\x17\xd7\x3f\x6a\xe9\xbf\x84\xfe\x51\x4b\xff\x25" "\xf5\x8f\x5a\xfa\x2f\xa5\x7f\xd4\xd2\x7f\x69\xfd\xa3\x96\xfe\xcb\xe8" "\x1f\xb5\xf4\x5f\x56\xff\xa8\xa5\xff\xcb\x62\xff\xff\xf9\x67\xfb\xff" "\xad\xa5\xff\xcb\xad\xff\xa8\xa5\xff\x72\xfa\x47\x2d\xfd\x97\xd7\x3f" "\x6a\xe9\xbf\x82\xfe\x51\x4b\xff\x15\xf5\x8f\x5a\xfa\xbf\x42\xff\xa8" "\xa5\xff\x4a\xfa\x47\x2d\xfd\x5f\xa9\x7f\xd4\xd2\xff\x55\xfa\x47\x2d" "\xfd\x57\xd6\x3f\x6a\xe9\xbf\x8a\xfe\x51\x4b\xff\x55\xf5\x8f\x5a\xfa" "\xaf\xa6\x7f\xd4\xd2\x7f\x75\xfd\xa3\x96\xfe\xaf\xd6\x3f\x6a\xe9\xbf" "\x86\xfe\x51\x4b\xff\x35\xf5\x8f\x5a\xfa\xaf\xa5\x7f\xd4\xd2\x7f\x6d" "\xfd\xa3\x96\xfe\xeb\xe8\x1f\xb5\xf4\x5f\x57\xff\xa8\xa5\xff\x6b\xf4" "\x8f\x5a\xfa\xbf\x56\xff\xa8\xa5\xff\x7a\xfa\x47\x2d\xfd\x5f\xa7\x7f" "\xd4\xd2\xff\xf5\xfa\x47\x2d\xfd\xdf\xa0\x7f\xd4\xd2\xff\x8d\xfa\x47" "\x2d\xfd\xd7\xd7\x3f\x6a\xe9\xbf\x81\xfe\x51\x4b\xff\x0d\xf5\x8f\x5a" "\xfa\x6f\xa4\x7f\xd4\xd2\x7f\x63\xfd\xa3\x96\xfe\x6f\xd2\x3f\x6a\xe9" "\xbf\x89\xfe\x51\x4b\xff\x4d\xf5\x8f\x5a\xfa\x6f\xa6\x7f\xd4\xd2\xff" "\xcd\xfa\x47\x2d\xfd\x37\xd7\x3f\x6a\xe9\xbf\x85\xfe\x51\x4b\xff\xb7" "\xe8\x1f\xb5\xf4\xdf\x52\xff\xa8\xa5\xff\x56\xfa\x47\x2d\xfd\xb7\xd6" "\x3f\x6a\xe9\xbf\x8d\xfe\x51\x4b\xff\xb7\xea\x1f\xb5\xf4\xdf\x56\xff" "\xa8\xa5\xff\x76\xfa\x47\x2d\xfd\xb7\xd7\x3f\x6a\xe9\xbf\x83\xfe\x51" "\x4b\xff\x1d\xf5\x8f\x5a\xfa\xef\xa4\x7f\xd4\xd2\x7f\x67\xfd\xa3\x96" "\xfe\xbb\xe8\x1f\xb5\xf4\x7f\x9b\xfe\x51\x4b\xff\x5d\xf5\x8f\x5a\xfa" "\xef\xa6\x7f\xd4\xd2\x7f\x77\xfd\xa3\x96\xfe\x7b\xe8\x1f\xb5\xf4\xdf" "\x53\xff\xa8\xa5\xff\xdb\xf5\x8f\x5a\xfa\xef\xa5\x7f\xd4\xd2\x7f\x6f" "\xfd\xa3\x96\xfe\xfb\xe8\x1f\xb5\xf4\x7f\x87\xfe\x51\x4b\xff\x7d\xf5" "\x8f\x5a\xfa\xef\xa7\x7f\xd4\xd2\x7f\x7f\xfd\xa3\x96\xfe\x07\xe8\x1f" "\xb5\xf4\x3f\x50\xff\xa8\xa5\xff\x41\xfa\x47\x2d\xfd\x0f\xd6\x3f\x6a" "\xe9\xff\x4e\xfd\xa3\x96\xfe\xef\xd2\x3f\x6a\xe9\x7f\x88\xfe\x51\x4b" "\xff\x43\xf5\x8f\x5a\xfa\x1f\xa6\x7f\xd4\xd2\xff\xdd\xfa\x47\x2d\xfd" "\xdf\xa3\x7f\xd4\xd2\xff\xbd\xfa\x47\x2d\xfd\xdf\xa7\x7f\xd4\xd2\xff" "\x70\xfd\xa3\x96\xfe\xef\xd7\x3f\x6a\xe9\x7f\x84\xfe\x51\x4b\xff\x23" "\xf5\x8f\x5a\xfa\x1f\xa5\x7f\xd4\xd2\xff\x68\xfd\xa3\x96\xfe\x1f\xd0" "\x3f\x6a\xe9\xff\x41\xfd\xa3\x96\xfe\x1f\xd2\x3f\x6a\xe9\xff\x61\xfd" "\xa3\x96\xfe\xc7\xe8\x1f\xb5\xf4\x3f\x56\xff\xa8\xa5\xff\x47\xf4\x8f" "\x5a\xfa\x1f\xa7\x7f\xd4\xd2\xff\xa3\xfa\x47\x2d\xfd\x8f\xd7\x3f\x1a" "\xea\x3f\xc3\x60\xea\xee\xff\x31\xfd\xa3\x96\xf5\xff\x71\xfd\xa3\x96" "\xfe\x27\xe8\x1f\xb5\xf4\x3f\x51\xff\xa8\xa5\xff\x27\xf4\x8f\x5a\xfa" "\x9f\xa4\x7f\xd4\xd2\xff\x93\xfa\x47\x2d\xfd\x3f\xa5\x7f\xd4\xd2\xff" "\xd3\xfa\x47\x2d\xfd\x3f\xa3\x7f\xd4\xd2\xff\x64\xfd\xa3\x96\xfe\xa7" "\xe8\x1f\xb5\xf4\x3f\x55\xff\xa8\xa5\xff\x69\xfa\x47\x2d\xfd\x4f\xd7" "\x3f\x6a\xe9\x7f\x86\xfe\x51\x4b\xff\x33\xf5\x8f\x5a\xfa\x9f\xa5\x7f" "\xd4\xd2\xff\x6c\xfd\xa3\x96\xfe\x9f\xd5\x3f\x6a\xe9\x7f\x8e\xfe\x51" "\x4b\xff\xcf\xe9\x1f\xb5\xf4\xff\xbc\xfe\x51\x4b\xff\x2f\xe8\x1f\xb5" "\xf4\xff\xa2\xfe\x51\x4b\xff\x2f\xe9\x1f\xb5\xf4\x3f\x57\xff\xa8\xa5" "\xff\x97\xf5\x8f\x5a\xfa\x7f\x45\xff\xa8\xa5\xff\x79\xfa\x47\x2d\xfd" "\xcf\xd7\x3f\x6a\xe9\x7f\x81\xfe\x51\x4b\xff\xaf\xea\x1f\xb5\xf4\xff" "\x9a\xfe\x51\x4b\xff\xaf\xeb\x1f\xb5\xf4\xbf\x50\xff\xa8\xa5\xff\x45" "\xfa\x47\x2d\xfd\x2f\xd6\x3f\x6a\xe9\xff\x0d\xfd\xa3\x96\xfe\x97\xe8" "\x1f\xb5\xf4\xbf\x54\xff\xa8\xa5\xff\x65\xfa\x47\x2d\xfd\x2f\xd7\x3f" "\x6a\xe9\xff\x4d\xfd\xa3\x96\xfe\xdf\xd2\x3f\x6a\xe9\xff\x6d\xfd\xa3" "\x96\xfe\x57\xe8\x1f\xb5\xf4\xbf\x52\xff\xa8\xa5\xff\x77\xf4\x8f\x5a" "\xfa\x5f\xa5\x7f\xd4\xd2\xff\xbb\xfa\x47\x2d\xfd\xbf\xa7\x7f\xd4\xd2" "\xff\x6a\xfd\xa3\x96\xfe\xd7\xe8\x1f\xb5\xf4\xff\xbe\xfe\x51\x4b\xff" "\x6b\xf5\x8f\x5a\xfa\x5f\xa7\x7f\xd4\xd2\xff\x07\xfa\x47\x2d\xfd\xaf" "\xd7\x3f\x6a\xe9\x7f\x83\xfe\x51\x4b\xff\x1b\xf5\x8f\x5a\xfa\xdf\xa4" "\x7f\xd4\xd2\xff\x66\xfd\xa3\x96\xfe\xb7\xe8\x1f\xb5\xf4\xff\xa1\xfe" "\x51\x4b\xff\x5b\xf5\x8f\x5a\xfa\xff\x48\xff\xa8\xa5\xff\x8f\xf5\x8f" "\x5a\xfa\xff\x44\xff\xa8\xa5\xff\x6d\xfa\x47\x2d\xfd\x7f\xaa\x7f\xd4" "\xd2\xff\x67\xfa\x47\x2d\xfd\x7f\xae\x7f\xd4\xd2\xff\x76\xfd\xa3\x96" "\xfe\xbf\xd0\x3f\x6a\xe9\xff\x4b\xfd\xa3\x96\xfe\x77\xe8\x1f\xb5\xf4" "\xff\x95\xfe\x51\x4b\xff\x5f\xeb\x1f\xb5\xf4\xbf\x53\xff\xa8\xa5\xff" "\x6f\xf4\x8f\x5a\xfa\xff\x56\xff\xa8\xa5\xff\xef\xf4\x8f\x5a\xfa\xff" "\x5e\xff\xa8\xa5\xff\x5d\xfa\x47\x2d\xfd\xff\xa0\x7f\xd4\xd2\xff\x8f" "\xfa\x47\x2d\xfd\xef\xd6\x3f\x6a\xe9\xff\x27\xfd\xa3\x96\xfe\xf7\xe8" "\x1f\xb5\xf4\xff\xb3\xfe\x51\x4b\xff\x7b\xf5\x8f\x5a\xfa\xff\x45\xff" "\xa8\xa5\xff\x7d\xfa\x47\x2d\xfd\xff\xaa\x7f\xd4\xd2\xff\x7e\xfd\xa3" "\x96\xfe\x7f\xd3\x3f\x6a\xe9\xff\x80\xfe\x51\x4b\xff\xbf\xeb\x1f\xb5" "\xf4\x7f\x50\xff\xa8\xa5\xff\x3f\xf4\x8f\x5a\xfa\x3f\xa4\x7f\xd4\xd2" "\xff\x61\xfd\xa3\x96\xfe\xff\xd4\x3f\x6a\xe9\xff\x88\xfe\x51\x4b\xff" "\x47\xf5\x8f\x4a\xfa\x4f\x37\xd0\x3f\x6a\xe9\x3f\x4c\xff\xa8\xa5\xff" "\x70\xfd\xa3\x96\xfe\x23\xf4\x8f\x5a\xfa\x8f\xd4\x3f\x6a\xe9\x3f\x8d" "\xfe\x51\x4b\xff\x51\xfa\x47\x2d\xfd\xa7\xd5\x3f\x6a\xe9\x3f\x5a\xff" "\xa8\xa5\xff\x74\xfa\x47\x2d\xfd\xa7\xd7\x3f\x6a\xe9\xff\x1c\xfd\xa3" "\x96\xfe\x33\xe8\x1f\xb5\xf4\x9f\x51\xff\xa8\xa5\xff\x4c\xfa\x47\x2d" "\xfd\x67\xd6\x3f\x6a\xe9\x3f\x8b\xfe\x51\x4b\xff\x59\xf5\x8f\x5a\xfa" "\xcf\xa6\x7f\xd4\xd2\xff\xb9\xfa\x47\x2d\xfd\x67\xd7\x3f\x6a\xe9\xff" "\xbc\xd8\x7f\xf4\x7f\x6f\x5c\xcf\x52\x2d\xfd\x9f\x6f\xfd\x47\x2d\xfd" "\x5f\xa0\x7f\xd4\xd2\x7f\x0e\xfd\xa3\x96\xfe\x73\xea\x1f\xb5\xf4\x9f" "\x4b\xff\xa8\xa5\xff\x0b\xf5\x8f\x5a\xfa\xbf\x48\xff\xa8\xa5\xff\xdc" "\xfa\x47\x2d\xfd\xe7\xd1\x3f\x6a\xe9\xff\x62\xfd\xa3\x96\xfe\x63\xf4" "\x8f\x5a\xfa\xcf\xab\x7f\xd4\xd2\x7f\x3e\xfd\xa3\x96\xfe\xf3\xeb\x1f" "\xb5\xf4\x5f\x40\xff\xa8\xa5\xff\x82\xfa\x47\x2d\xfd\x17\xd2\x3f\x6a" "\xe9\xbf\xb0\xfe\x51\x4b\xff\x45\xf4\x8f\x5a\xfa\x2f\xaa\x7f\xd4\xd2" "\xff\x25\xfa\x47\x2d\xfd\x5f\xaa\x7f\xd4\xd2\x7f\x31\xfd\xa3\x96\xfe" "\x8b\xeb\x1f\xb5\xf4\x5f\x42\xff\xa8\xa5\xff\x92\xfa\x47\x53\x5d\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\x7f\xec\xc0\x81" "\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x61\x07\x0e\x04\x00\x00\x00\x00\x80" "\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\x0a\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" "\x12\x00\x00\x00\x00\x41\xff\x5f\xb7\x23\x50\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xb8\x29\x00\x00\xff\xff\x42\x11\x05\x0d", 47495)); NONFAILING(syz_mount_image(/*fs=*/0x200000000800, /*dir=*/0x200000000000, /*flags=MS_LAZYTIME*/ 0x2000000, /*opts=*/0x200000000340, /*chdir=*/1, /*size=*/0xb987, /*img=*/0x20000000c380)); break; case 9: NONFAILING(syz_genetlink_get_family_id(/*name=*/0, /*fd=*/-1)); break; case 10: syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0ul, /*mode=*/0ul); break; } } 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); setup_cgroups(); const char* reason; (void)reason; if ((reason = setup_usb())) printf("the reproducer may not work as expected: USB injection setup " "failed: %s\n", reason); if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); install_segv_handler(); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }