// https://syzkaller.appspot.com/bug?id=3887482187ee08305b88747978f564c0ab606fd3 // 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 #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 unsigned int queue_count = 2; 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_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; #define WIFI_INITIAL_DEVICE_COUNT 2 #define WIFI_MAC_BASE {0x08, 0x02, 0x11, 0x00, 0x00, 0x00} #define WIFI_IBSS_BSSID {0x50, 0x50, 0x50, 0x50, 0x50, 0x50} #define WIFI_IBSS_SSID {0x10, 0x10, 0x10, 0x10, 0x10, 0x10} #define WIFI_DEFAULT_FREQUENCY 2412 #define WIFI_DEFAULT_SIGNAL 0 #define WIFI_DEFAULT_RX_RATE 1 #define HWSIM_CMD_REGISTER 1 #define HWSIM_CMD_FRAME 2 #define HWSIM_CMD_NEW_RADIO 4 #define HWSIM_ATTR_SUPPORT_P2P_DEVICE 14 #define HWSIM_ATTR_PERM_ADDR 22 #define IF_OPER_UP 6 struct join_ibss_props { int wiphy_freq; bool wiphy_freq_fixed; uint8_t* mac; uint8_t* ssid; int ssid_len; }; static int set_interface_state(const char* interface_name, int on) { struct ifreq ifr; int sock = socket(AF_INET, SOCK_DGRAM, 0); if (sock < 0) { return -1; } memset(&ifr, 0, sizeof(ifr)); strcpy(ifr.ifr_name, interface_name); int ret = ioctl(sock, SIOCGIFFLAGS, &ifr); if (ret < 0) { close(sock); return -1; } if (on) ifr.ifr_flags |= IFF_UP; else ifr.ifr_flags &= ~IFF_UP; ret = ioctl(sock, SIOCSIFFLAGS, &ifr); close(sock); if (ret < 0) { return -1; } return 0; } static int nl80211_set_interface(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, uint32_t iftype, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_SET_INTERFACE; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_IFTYPE, &iftype, sizeof(iftype)); int err = netlink_send_ext(nlmsg, sock, 0, NULL, dofail); if (err < 0) { } return err; } static int nl80211_join_ibss(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, struct join_ibss_props* props, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_JOIN_IBSS; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_SSID, props->ssid, props->ssid_len); netlink_attr(nlmsg, NL80211_ATTR_WIPHY_FREQ, &(props->wiphy_freq), sizeof(props->wiphy_freq)); if (props->mac) netlink_attr(nlmsg, NL80211_ATTR_MAC, props->mac, ETH_ALEN); if (props->wiphy_freq_fixed) netlink_attr(nlmsg, NL80211_ATTR_FREQ_FIXED, NULL, 0); int err = netlink_send_ext(nlmsg, sock, 0, NULL, dofail); if (err < 0) { } return err; } static int get_ifla_operstate(struct nlmsg* nlmsg, int ifindex, bool dofail) { struct ifinfomsg info; memset(&info, 0, sizeof(info)); info.ifi_family = AF_UNSPEC; info.ifi_index = ifindex; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) { return -1; } netlink_init(nlmsg, RTM_GETLINK, 0, &info, sizeof(info)); int n; int err = netlink_send_ext(nlmsg, sock, RTM_NEWLINK, &n, dofail); close(sock); if (err) { return -1; } struct rtattr* attr = IFLA_RTA(NLMSG_DATA(nlmsg->buf)); for (; RTA_OK(attr, n); attr = RTA_NEXT(attr, n)) { if (attr->rta_type == IFLA_OPERSTATE) return *((int32_t*)RTA_DATA(attr)); } return -1; } static int await_ifla_operstate(struct nlmsg* nlmsg, char* interface, int operstate, bool dofail) { int ifindex = if_nametoindex(interface); while (true) { usleep(1000); int ret = get_ifla_operstate(nlmsg, ifindex, dofail); if (ret < 0) return ret; if (ret == operstate) return 0; } return 0; } static int nl80211_setup_ibss_interface(struct nlmsg* nlmsg, int sock, int nl80211_family_id, char* interface, struct join_ibss_props* ibss_props, bool dofail) { int ifindex = if_nametoindex(interface); if (ifindex == 0) { return -1; } int ret = nl80211_set_interface(nlmsg, sock, nl80211_family_id, ifindex, NL80211_IFTYPE_ADHOC, dofail); if (ret < 0) { return -1; } ret = set_interface_state(interface, 1); if (ret < 0) { return -1; } ret = nl80211_join_ibss(nlmsg, sock, nl80211_family_id, ifindex, ibss_props, dofail); if (ret < 0) { return -1; } return 0; } static int hwsim80211_create_device(struct nlmsg* nlmsg, int sock, int hwsim_family, uint8_t mac_addr[ETH_ALEN]) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = HWSIM_CMD_NEW_RADIO; netlink_init(nlmsg, hwsim_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, HWSIM_ATTR_SUPPORT_P2P_DEVICE, NULL, 0); netlink_attr(nlmsg, HWSIM_ATTR_PERM_ADDR, mac_addr, ETH_ALEN); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static void initialize_wifi_devices(void) { int rfkill = open("/dev/rfkill", O_RDWR); if (rfkill == -1) exit(1); struct rfkill_event event = {0}; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; if (write(rfkill, &event, sizeof(event)) != (ssize_t)(sizeof(event))) exit(1); close(rfkill); uint8_t mac_addr[6] = WIFI_MAC_BASE; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock < 0) exit(1); int hwsim_family_id = netlink_query_family_id(&nlmsg, sock, "MAC80211_HWSIM", true); int nl80211_family_id = netlink_query_family_id(&nlmsg, sock, "nl80211", true); if (hwsim_family_id < 0 || nl80211_family_id < 0) exit(1); uint8_t ssid[] = WIFI_IBSS_SSID; uint8_t bssid[] = WIFI_IBSS_BSSID; struct join_ibss_props ibss_props = {.wiphy_freq = WIFI_DEFAULT_FREQUENCY, .wiphy_freq_fixed = true, .mac = bssid, .ssid = ssid, .ssid_len = sizeof(ssid)}; for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { mac_addr[5] = device_id; int ret = hwsim80211_create_device(&nlmsg, sock, hwsim_family_id, mac_addr); if (ret < 0) exit(1); char interface[6] = "wlan0"; interface[4] += device_id; if (nl80211_setup_ibss_interface(&nlmsg, sock, nl80211_family_id, interface, &ibss_props, true) < 0) exit(1); } for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { char interface[6] = "wlan0"; interface[4] += device_id; int ret = await_ifla_operstate(&nlmsg, interface, IF_OPER_UP, true); if (ret < 0) exit(1); } close(sock); } static int runcmdline(char* cmdline) { int ret = system(cmdline); if (ret) { } return ret; } #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); } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define 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(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_wifi_devices(); 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"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static const char* setup_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0) && errno != EBUSY) { return NULL; } if (!write_file("/proc/sys/fs/binfmt_misc/register", ":syz0:M:0:\x01::./file0:") || !write_file("/proc/sys/fs/binfmt_misc/register", ":syz1:M:1:\x02::./file0:POC")) return "write(/proc/sys/fs/binfmt_misc/register) failed"; return NULL; } 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; } #define SWAP_FILE "./swap-file" #define SWAP_FILE_SIZE (128 * 1000 * 1000) static const char* setup_swap() { swapoff(SWAP_FILE); unlink(SWAP_FILE); int fd = open(SWAP_FILE, O_CREAT | O_WRONLY | O_CLOEXEC, 0600); if (fd == -1) return "swap file open failed"; fallocate(fd, FALLOC_FL_ZERO_RANGE, 0, SWAP_FILE_SIZE); close(fd); char cmdline[64]; sprintf(cmdline, "mkswap %s", SWAP_FILE); if (runcmdline(cmdline)) return "mkswap failed"; if (swapon(SWAP_FILE, SWAP_FLAG_PREFER) == 1) return "swapon failed"; return NULL; } 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 < 1; 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); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); 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); } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x1c802 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {71 75 6f 74 61 2c 64 69 73 63 61 72 64 2c 64 // 69 73 63 61 72 64 2c 69 6f 63 68 61 72 73 65 74 3d 6b 6f 69 38 // 2d 72 75 2c 64 69 73 63 61 72 64 2c 00 f4 19 3e b3 ba 2a 0d 5f // d0 cd 73 74 28 8f f8 9e c5 13 a5 3e 00 73 45 de cb 72 09 00 f8 // 31 2d a2 46 3e b0 ed f5 2f ad 1a 00 eb d4 1c 14 b3 ce 75 d0 cf // fe fd 37 96 24 b1 6f 72 60 c8 35 71 3b 26 33 52 e0 3b 5c b8 fa // 0c 04 2b d1 22 5e d4 de d2 b6 2e 12 fe a4 d7 e6 1b 73 8e 40 78 // 1e 58 d5 ff f1 12 36 4a c1 40 f4 19 e5 da fe cd 28 3b 3f ab 6b // 14 2d db c8 93 b3 5a 81 fe 92 65 59 1e f3 5f a2 92 8e 09 5f ee // 4c 10 b2 2e 42 12 37 8d e5 9b ca 03 07 cc 64 4b 96 20 b6 3f 00 // 00 00 7b bb d4 22 d8 78 56 b7 13 48 b8 f4 53 98 b9 66 0b 6b 3e // 8e e8 a8 c3 2f 32 34 cb 46 e2 cd 82 7e c2 5c 1c a4 d0 46 bc 00 // 4f 8d f7 b1 ee 69 0a 5e 50 51 07 00 d8 0c 7f a6 5f a7 24 d0 e1 // b4 36 9f 1b 64 fe 24 9a 03 12 01 00 00 00 4a c9 83 de 92 5f 52 // d7 35 b0 3f ea 94 1b 1e 94 8a d8 d1 9c fd a5 b7 99 32 5f d6 9d // 14 fc f6 cd de 77 00 a6 31 50 eb 36 99 e5 31 4e 08 27 75 0e 24 // 41 50 ec 19 f3 f3 f1 d8 be 54 2c 08 4b 5e 40 bf aa 8a d2 06 d2 // a3 3b 0d db d7 f8 e0 7d c7 d1 71 74 a4 54 9f fa f5 97 69 49 cb // 6d 65 8c 42 ec 7c d9 fe 8a d8 28 52 ce fb 04 64 6e db 3a 41 eb // 51 4e b6 a7 72 b3 ee 9f 21 e2 58 22 b5 4e c3 3e 59 2d 5c 04 09 // 46 72 11 01 d5 3a ff 21 f9 03 51 c9 5a a0 f7 3f 18 53 d6 af cb // f9 44 8b 22 0e 98 84 66 06 6f a5 c0 9e 61 98 fc 45 20 d1 99 b9 // 3b de de e8 7c 40 43 81 5a a0 56 68 a0 6f 8d a9 66 80 cc c1 a1 // 39 ad e9 0f 5c 79 af 46 20 8f 97 62 f5 4e 7c 29 08 8d 9d e6 9b // d2 d5 1c 6b 9c 42 20 9d dc 38 80 05 13 03 b8 55 85 34 07 d9 59 // a5 77 7d ce 25 20 1c 5e a1 fa a0 84 c3 6e 3e 34 99 15 eb ec 53 // 43 5e b2 91 0c 59 39 4e e8 4b a3 ba f9 c4 40 ae 58 33 c2 3f 46 // b0 ea ac 54 3c e0 c8 0b a0 60 32 13 e5 3e a5 97 55 07 0b 18 bc // 10 b9 22 4a a0 82 d9 67 20 61 15 b4 92 d8 25 75 1f cc 00 00 00 // 00 00 00 00 e6 3d 51 c5 bf fa 4f 71 2c 2d 7f af b9 cf 50 6c 06 // e1 dd ad 4f c1 90 38 40 77 86 fe db 9a fd fb 11 a5 f1 82 67 6d // d8 4c 91 9f 71 d5 ee e2 f3 b7 40 b6 8e e7 f6 51 8e b9 d8 ba a2 // 6f 1c 38 71 f8 63 b1 34 ee 94 2e b3 af 92 d1 9e 70 d8 26 88 39 // cd 7b 46 37 f0 62 72 99 f9 9b 18 73 ca 16 5e 41 0f 8b d4 21 e1 // a4 85 9f d9 bd 6b b3 4d 25 c0 7e 1a 52 b9 66 8a 53 0b 10 b8 58 // 5d 79 71 24 a6 97 5a 71 ae db e5 57 a1 7b 06 bb fe 54 7a a5 53 // c3 d0 8b 89 21 a4 b0 d9 38 c0 36 87 bd 48 a9 a3 87 b4 c0 66 c0 // 56 f4 57 fb a5 73 87 75 b9 00 a1 e8 2a 89 aa e1 49 4b 05 c4 bb // 0f c8 ed 1a 93 68 8b f8 50 a4 f7 b0 94 2e da 1f 16 ec f0 43 ef // a6 b8 c1 f9 e0 fb a3 1f 4a 58 ed 00 31 18 0f b1 b8 a0 0e 4a 86 // 82 6b 03 00 00 00 2d d1 27 2a 3d 16 09 be bb 74 9d ae f2 02 e0 // 41 2a 73 d5 45 b8 6c a7 a6 bf 56 9e d3 5d 00 00 ca 23 b0 de 74 // 2f 60 08 fd f2 09 28 37 0d 88 f8 c0 4b c3 b9 7b 9a 9e 00 62 e8 // fc 5f d2 33 7d 85 a6 6b d2 07 30 f3 15 3d b2 45 9f b3 4c 13 4c // 06 c1 93 64 e9 64 5e 83 04 0d d1 6e e0 8f 18 f0 ba 69 ac 9c a3 // e2 5e 15 44 2b 07 00 00 00 d3 0d 38 a6 46 13 b5 35 fa 80 8a 9b // 3b ae 00 bc 37 12 71 d4 5d b2 00 a5 cb f4 33 e2 f6 dd 03 b7 c7 // fc c0 40 78 1e 51 51 c9 ba db 78 7e 7e 1e 2f 39 d6 09 98 91 9a // a8 db d1 56 f3 1a 5b 7f a5 f9 e5 ec 01 e8 c7 99 ed c3 22 70 3c // 7f c4 a8 1a b9 bc 02 dd 96 71 4e e9 d7 e7 5d 28 d0 40 ff 35 66 // 40 4f d6 db 54 7a 4b 55 31 97 c1 f3 16 d2 0e a5 4f 94 59 cd 81 // 35 1a 51 0d 10 1e 90 ea be 6d c6 c6 ac 3f fa 18 9c 07 3a 5f b3 // fc 38 2d f6 20 bf 5a f9 e6 38 81 9c 77 a0 51 e6 87 58 66 a8 49 // f6 f5 78 c0 68 c0 e4 c7 cf bc 15 03 39 97 ef a8 53 c9 62 97 b3 // 20 1d d3 0e a4 0d c9 4d 01 0a 0c 33 da 9f 63 a1 0b 8f 81 3d c7 // 89 b8 0b e3 bb 3f 00 ee 58 b3 0d 5c 03 a6 dd bf 41 8a c1 b3 d4 // a1 38 39 e4 b2 73 c4 f9 14 be d1 3f 88 06 29 54 95 d4 16 09 47 // 87 98 39 6a ee c0 6e 8d 34 2e fd 8a c6 b4 22 f6 c2 3a 01 1b 14 // 00 00 00 00 00 00 00 bc 2a 02 09 4e 19 a1 ee 8b b3 c3 c0 c0 88 // ae 8e fa f6 8c 85 00 1f af 7c f5 42 6f b7 c5 c3 67 ed 93 eb 25 // c4 8a 29 35 49 d1 5b 91 b5 9f 1b 57 4b 3f 61 71 f8 e5 6a 40 2e // c5 6b df 51 d9 03 12 b3 ca 53 98 f4 05 00 00 00 75 04 be 21 45 // 6e c9 53 bf 06 f1 2f ff 20 c3 1e 7c 8b 55 fe e5 c4 9a a9 39 83 // 0b 09 99 5f f1 49 25 81 18 f9 aa e2 92 06 f9 73 12 88 b5 6b 10 // de 51 52 56 65 fd b4 e2 89 b1 c1 77 de 97 af 30 85 f8 20 45 fb // d0 12 f1 dd e9 4f fe cd 90 b7 b6 3d 81 97 d9 c2 4a 6f e5 91 5a // c7 d7 24 08 47 f6 d0 bf 90 99 ee 11 7c 83 e3 63 f2 ad 36 a4 a9 // f4 fa a5 73 4a fe 97 70 c3 8c 56 5c ae 87 a4 08 d0 ac bb 2d b7 // db 91 74 ac ab 60 a3 44 81 4e e6 43 fa 82 ba 41 70 6d 23 60 26 // 9e d2 76 e1 3d d8 3a bb c2 58 f0 7b 0d 58 ab 0b 65 20 0b 18 b7 // f9 f8 71 bc b4 3f ec 5a 2e 37 89 ec d0 c1 06 9d 2d a8 0b 93 c8 // 6d ff 89 33 e7 0c 21 08 34 60 03 dd f6 b6 03 79 ee e6 3b 66 e7 // 34 1c dd 8f 87 ed 9f 11 89 4c 9a e0 40 97 63 21 d8 74 05 b4 92 // f4 19 eb fa 77 eb 36 7c a6 e3 60 b8 f8 45 11 02 f5 48 93 d7 d1 // 69 5c 24 bc c1 84 b1 e7 d1 99 40 a2 b6 93 1a de 86 38 dd 2b 85 // a8 6d c5 11 db b9 7f 50 52 0f 91 fb f7 20 1f c9 62 1d 0a ee 97 // 35 d0 7c a0 24 07 6e 85 81 db 33 2b 1c 5f 13 5f e6 b2 e9 d2 c1 // 8c 9d 5d 5a 52 4d 3d 5b 26 57 e4 b2 8f 1a 09 69 6b d5 b0 76 a1 // 47 1c 8b 2a b2 ca 3b a5 78 43 af 1d 03 59 0f 4e 89 85 e1 c4 63 // c7 81 bb 03 ad 7e c8 16 ea 70 bb e0 64 11 aa e0 01 e0 ca 72 ee // 7e 82 8a d1 4b b7 a0 92 d8 83 ad 00 05 54 bf 7f 00 00 00 00 00 // 00 75 cc 01 f8 a2 e1 80 21 92 f0 9e 77 bc 48 8b 3b d3 f0 8a 9c // e8 8b a2 e2 bc c2 3c f5 d7 37 2b 33 9c e1 f5 00 3d b0 ad 70 fa // 6e 93 aa 90 8a 2c ed 81 f5 51 4e 23 e2 f9 4f f0 3c 1c 02 f5 a9 // 19 5f 47 35 56 3e fd 0a 1f c7 da fc fb 3d ae 04 3f e0 c1 72 ec // 3a 12 74 7d 7a bf 43 82 bf 74 53 c1 3d f9 94 64 10 17 a0 f4 61 // ad d9 56 ef 8f 83 4b 76 2a f3 04 08 af 6a 61 f3 17 fd 3c 7b 08 // 16 23 6a 76 86 01 b7 c6 60 6b a5 2f f1 26 eb 13 d3 3c 91 5c 5d // a9 9d 11 8d b4 88 da 3f 3d 77 83 a6 08 28 2a 93 fc be 09 10 f0 // 38 9c 3e f9 1d e7 c8 4e 23 da a6 55 4c 42 b2 b3 e9 f7 0a 9f 79 // 0f 29 01 1a 0b 51 02 00 3b fe ba 6e 52 87 7e d8 a1 88 95 8e 39 // 37 5d d2 03 d4 34 be f4 dc 82 cc 8a 21 fc 40 c6 e6 e6 a2 47 5f // 70 bf 15 03 be b9 55 50 36 e6 3b dc 93 7f 8a 4d 61 b2 1d 06 a9 // d3 23 9d 1d f6 f2 e9 ef 16 de e5 90 b1 5a c0 28 c6 d8 73 bb 29 // 65 37 4b 73 3d 8e 11 ba 76 3a b1 57 ed 91 dd 87 1b 09 8c 05 43 // dc bb a4 cf 67 db 8c 83 c8 43 69 dc 67 73 5f a4 fa a0 fd cf 34 // b1 c6 a8 62 cc ae 9f e4 fa 28 74 65 04 64 3b 57 f0 26 23 a2 ef // 34 ea 90 f2 e7 f7 dd 77 1f 8f 75 21 7c 79 9d 97 8a 35 33 fc fa // b6 c6 f5 39 1b 62 6d 61 b4 00 f0 81 72 fc 67 5e 2a 06 2d 06 c3 // 1b 85 45 28 04 f7 b1 25 c2 91 f6 0a 02 a5 d6 22 71 e9 6f e7 0d // 64 ba e3 6e 28 b4 2e 19 72 59 16 9e be e8 f6 43 55 54 4f ba d8 // b8 3c 1c 8f ad 02 cd 1a 2e 56 a6 f6 e8 2e c7 71 9a 48 a1 be a8 // 03 54 6b 8a f7 a8 9f af 7c ef 94 d8 ad a4 5f c0 a9 8a 79 ba 90 // c9 52 62 f0 11 07 25 c6 bf 7c 81 23 75 34 dc d6 a8 a1 13 bd 8a // c4 8b 7d b5 52 6a b7 62 ce c1 03 67 47 42 47 6c d6 b9 2b 8c 7a // bc fb 1f 8e 08 f0 a0 5c 1b 20 91 87 04 9f 32 06 bd 54 5e 8c 20 // f8 db 6d 8a 7c dd 0c 9e cb b9 01 1b 61 1a 01 3c d5 81 52 1d fc // b0 28 d5 9d 5c 69 d2 86 fb 93 e4 c4 98 b3 aa ff 7e 0c dc f1 f4 // 1f ec 65 eb db e4 c2 bf 45 31 40 25 1c dd 94 c3 2b 87 c4 63 4d // 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 81 6e 6c 33 // f9 2d ca 3e 03 c4 00 00 00 5e 53 8c 77 b2 b1 4f 63 d2 53 70 53 // 63 84 6b c4 e9 cd 32 84 ff 32 93 30 81 2d 22 11 ae 34 10 6e 03 // 06 37 6a 2b 1c fe 60 a0 9b ec ae 2b 05 ec 9a dc ac 47 61 2a f8 // 5f 59 8a 88 0f a9 78 91 a7 a2 90 b6 e7 30 80 05 42 ae a7 61 ae // b4 63 f5 ff 5b df 50 99 ae 8a d4 af e9 9d b9 e9 c4 e7 03 cb 90 // 0e 9a e2 72 74 2f e2 ff 81 d1 a4 f1 56 68 39 2c da fd 2e 17 57 // 70 6f 47 f9 f8 4e 53 2f 25 e2 73 7c b6 f6 e8 93 78 f8 d7 9a b8 // 50 7b 10 9c 7f 1f 36 53 a5 bc 9d 54 cc c6 33 de 62 63 52 6e ac // 10 51 92 74} (length 0x9ac) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x5f9a (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5f9a) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000400, "jfs\000", 4)); NONFAILING(memcpy((void*)0x2000000000c0, "./bus\000", 6)); NONFAILING(memcpy( (void*)0x200000002740, "\x71\x75\x6f\x74\x61\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x64\x69\x73" "\x63\x61\x72\x64\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6b\x6f" "\x69\x38\x2d\x72\x75\x2c\x64\x69\x73\x63\x61\x72\x64\x2c\x00\xf4\x19" "\x3e\xb3\xba\x2a\x0d\x5f\xd0\xcd\x73\x74\x28\x8f\xf8\x9e\xc5\x13\xa5" "\x3e\x00\x73\x45\xde\xcb\x72\x09\x00\xf8\x31\x2d\xa2\x46\x3e\xb0\xed" "\xf5\x2f\xad\x1a\x00\xeb\xd4\x1c\x14\xb3\xce\x75\xd0\xcf\xfe\xfd\x37" "\x96\x24\xb1\x6f\x72\x60\xc8\x35\x71\x3b\x26\x33\x52\xe0\x3b\x5c\xb8" "\xfa\x0c\x04\x2b\xd1\x22\x5e\xd4\xde\xd2\xb6\x2e\x12\xfe\xa4\xd7\xe6" "\x1b\x73\x8e\x40\x78\x1e\x58\xd5\xff\xf1\x12\x36\x4a\xc1\x40\xf4\x19" "\xe5\xda\xfe\xcd\x28\x3b\x3f\xab\x6b\x14\x2d\xdb\xc8\x93\xb3\x5a\x81" "\xfe\x92\x65\x59\x1e\xf3\x5f\xa2\x92\x8e\x09\x5f\xee\x4c\x10\xb2\x2e" "\x42\x12\x37\x8d\xe5\x9b\xca\x03\x07\xcc\x64\x4b\x96\x20\xb6\x3f\x00" "\x00\x00\x7b\xbb\xd4\x22\xd8\x78\x56\xb7\x13\x48\xb8\xf4\x53\x98\xb9" "\x66\x0b\x6b\x3e\x8e\xe8\xa8\xc3\x2f\x32\x34\xcb\x46\xe2\xcd\x82\x7e" "\xc2\x5c\x1c\xa4\xd0\x46\xbc\x00\x4f\x8d\xf7\xb1\xee\x69\x0a\x5e\x50" "\x51\x07\x00\xd8\x0c\x7f\xa6\x5f\xa7\x24\xd0\xe1\xb4\x36\x9f\x1b\x64" "\xfe\x24\x9a\x03\x12\x01\x00\x00\x00\x4a\xc9\x83\xde\x92\x5f\x52\xd7" "\x35\xb0\x3f\xea\x94\x1b\x1e\x94\x8a\xd8\xd1\x9c\xfd\xa5\xb7\x99\x32" "\x5f\xd6\x9d\x14\xfc\xf6\xcd\xde\x77\x00\xa6\x31\x50\xeb\x36\x99\xe5" "\x31\x4e\x08\x27\x75\x0e\x24\x41\x50\xec\x19\xf3\xf3\xf1\xd8\xbe\x54" "\x2c\x08\x4b\x5e\x40\xbf\xaa\x8a\xd2\x06\xd2\xa3\x3b\x0d\xdb\xd7\xf8" "\xe0\x7d\xc7\xd1\x71\x74\xa4\x54\x9f\xfa\xf5\x97\x69\x49\xcb\x6d\x65" "\x8c\x42\xec\x7c\xd9\xfe\x8a\xd8\x28\x52\xce\xfb\x04\x64\x6e\xdb\x3a" "\x41\xeb\x51\x4e\xb6\xa7\x72\xb3\xee\x9f\x21\xe2\x58\x22\xb5\x4e\xc3" "\x3e\x59\x2d\x5c\x04\x09\x46\x72\x11\x01\xd5\x3a\xff\x21\xf9\x03\x51" "\xc9\x5a\xa0\xf7\x3f\x18\x53\xd6\xaf\xcb\xf9\x44\x8b\x22\x0e\x98\x84" "\x66\x06\x6f\xa5\xc0\x9e\x61\x98\xfc\x45\x20\xd1\x99\xb9\x3b\xde\xde" "\xe8\x7c\x40\x43\x81\x5a\xa0\x56\x68\xa0\x6f\x8d\xa9\x66\x80\xcc\xc1" "\xa1\x39\xad\xe9\x0f\x5c\x79\xaf\x46\x20\x8f\x97\x62\xf5\x4e\x7c\x29" "\x08\x8d\x9d\xe6\x9b\xd2\xd5\x1c\x6b\x9c\x42\x20\x9d\xdc\x38\x80\x05" "\x13\x03\xb8\x55\x85\x34\x07\xd9\x59\xa5\x77\x7d\xce\x25\x20\x1c\x5e" "\xa1\xfa\xa0\x84\xc3\x6e\x3e\x34\x99\x15\xeb\xec\x53\x43\x5e\xb2\x91" "\x0c\x59\x39\x4e\xe8\x4b\xa3\xba\xf9\xc4\x40\xae\x58\x33\xc2\x3f\x46" "\xb0\xea\xac\x54\x3c\xe0\xc8\x0b\xa0\x60\x32\x13\xe5\x3e\xa5\x97\x55" "\x07\x0b\x18\xbc\x10\xb9\x22\x4a\xa0\x82\xd9\x67\x20\x61\x15\xb4\x92" "\xd8\x25\x75\x1f\xcc\x00\x00\x00\x00\x00\x00\x00\xe6\x3d\x51\xc5\xbf" "\xfa\x4f\x71\x2c\x2d\x7f\xaf\xb9\xcf\x50\x6c\x06\xe1\xdd\xad\x4f\xc1" "\x90\x38\x40\x77\x86\xfe\xdb\x9a\xfd\xfb\x11\xa5\xf1\x82\x67\x6d\xd8" "\x4c\x91\x9f\x71\xd5\xee\xe2\xf3\xb7\x40\xb6\x8e\xe7\xf6\x51\x8e\xb9" "\xd8\xba\xa2\x6f\x1c\x38\x71\xf8\x63\xb1\x34\xee\x94\x2e\xb3\xaf\x92" "\xd1\x9e\x70\xd8\x26\x88\x39\xcd\x7b\x46\x37\xf0\x62\x72\x99\xf9\x9b" "\x18\x73\xca\x16\x5e\x41\x0f\x8b\xd4\x21\xe1\xa4\x85\x9f\xd9\xbd\x6b" "\xb3\x4d\x25\xc0\x7e\x1a\x52\xb9\x66\x8a\x53\x0b\x10\xb8\x58\x5d\x79" "\x71\x24\xa6\x97\x5a\x71\xae\xdb\xe5\x57\xa1\x7b\x06\xbb\xfe\x54\x7a" "\xa5\x53\xc3\xd0\x8b\x89\x21\xa4\xb0\xd9\x38\xc0\x36\x87\xbd\x48\xa9" "\xa3\x87\xb4\xc0\x66\xc0\x56\xf4\x57\xfb\xa5\x73\x87\x75\xb9\x00\xa1" "\xe8\x2a\x89\xaa\xe1\x49\x4b\x05\xc4\xbb\x0f\xc8\xed\x1a\x93\x68\x8b" "\xf8\x50\xa4\xf7\xb0\x94\x2e\xda\x1f\x16\xec\xf0\x43\xef\xa6\xb8\xc1" "\xf9\xe0\xfb\xa3\x1f\x4a\x58\xed\x00\x31\x18\x0f\xb1\xb8\xa0\x0e\x4a" "\x86\x82\x6b\x03\x00\x00\x00\x2d\xd1\x27\x2a\x3d\x16\x09\xbe\xbb\x74" "\x9d\xae\xf2\x02\xe0\x41\x2a\x73\xd5\x45\xb8\x6c\xa7\xa6\xbf\x56\x9e" "\xd3\x5d\x00\x00\xca\x23\xb0\xde\x74\x2f\x60\x08\xfd\xf2\x09\x28\x37" "\x0d\x88\xf8\xc0\x4b\xc3\xb9\x7b\x9a\x9e\x00\x62\xe8\xfc\x5f\xd2\x33" "\x7d\x85\xa6\x6b\xd2\x07\x30\xf3\x15\x3d\xb2\x45\x9f\xb3\x4c\x13\x4c" "\x06\xc1\x93\x64\xe9\x64\x5e\x83\x04\x0d\xd1\x6e\xe0\x8f\x18\xf0\xba" "\x69\xac\x9c\xa3\xe2\x5e\x15\x44\x2b\x07\x00\x00\x00\xd3\x0d\x38\xa6" "\x46\x13\xb5\x35\xfa\x80\x8a\x9b\x3b\xae\x00\xbc\x37\x12\x71\xd4\x5d" "\xb2\x00\xa5\xcb\xf4\x33\xe2\xf6\xdd\x03\xb7\xc7\xfc\xc0\x40\x78\x1e" "\x51\x51\xc9\xba\xdb\x78\x7e\x7e\x1e\x2f\x39\xd6\x09\x98\x91\x9a\xa8" "\xdb\xd1\x56\xf3\x1a\x5b\x7f\xa5\xf9\xe5\xec\x01\xe8\xc7\x99\xed\xc3" "\x22\x70\x3c\x7f\xc4\xa8\x1a\xb9\xbc\x02\xdd\x96\x71\x4e\xe9\xd7\xe7" "\x5d\x28\xd0\x40\xff\x35\x66\x40\x4f\xd6\xdb\x54\x7a\x4b\x55\x31\x97" "\xc1\xf3\x16\xd2\x0e\xa5\x4f\x94\x59\xcd\x81\x35\x1a\x51\x0d\x10\x1e" "\x90\xea\xbe\x6d\xc6\xc6\xac\x3f\xfa\x18\x9c\x07\x3a\x5f\xb3\xfc\x38" "\x2d\xf6\x20\xbf\x5a\xf9\xe6\x38\x81\x9c\x77\xa0\x51\xe6\x87\x58\x66" "\xa8\x49\xf6\xf5\x78\xc0\x68\xc0\xe4\xc7\xcf\xbc\x15\x03\x39\x97\xef" "\xa8\x53\xc9\x62\x97\xb3\x20\x1d\xd3\x0e\xa4\x0d\xc9\x4d\x01\x0a\x0c" "\x33\xda\x9f\x63\xa1\x0b\x8f\x81\x3d\xc7\x89\xb8\x0b\xe3\xbb\x3f\x00" "\xee\x58\xb3\x0d\x5c\x03\xa6\xdd\xbf\x41\x8a\xc1\xb3\xd4\xa1\x38\x39" "\xe4\xb2\x73\xc4\xf9\x14\xbe\xd1\x3f\x88\x06\x29\x54\x95\xd4\x16\x09" "\x47\x87\x98\x39\x6a\xee\xc0\x6e\x8d\x34\x2e\xfd\x8a\xc6\xb4\x22\xf6" "\xc2\x3a\x01\x1b\x14\x00\x00\x00\x00\x00\x00\x00\xbc\x2a\x02\x09\x4e" "\x19\xa1\xee\x8b\xb3\xc3\xc0\xc0\x88\xae\x8e\xfa\xf6\x8c\x85\x00\x1f" "\xaf\x7c\xf5\x42\x6f\xb7\xc5\xc3\x67\xed\x93\xeb\x25\xc4\x8a\x29\x35" "\x49\xd1\x5b\x91\xb5\x9f\x1b\x57\x4b\x3f\x61\x71\xf8\xe5\x6a\x40\x2e" "\xc5\x6b\xdf\x51\xd9\x03\x12\xb3\xca\x53\x98\xf4\x05\x00\x00\x00\x75" "\x04\xbe\x21\x45\x6e\xc9\x53\xbf\x06\xf1\x2f\xff\x20\xc3\x1e\x7c\x8b" "\x55\xfe\xe5\xc4\x9a\xa9\x39\x83\x0b\x09\x99\x5f\xf1\x49\x25\x81\x18" "\xf9\xaa\xe2\x92\x06\xf9\x73\x12\x88\xb5\x6b\x10\xde\x51\x52\x56\x65" "\xfd\xb4\xe2\x89\xb1\xc1\x77\xde\x97\xaf\x30\x85\xf8\x20\x45\xfb\xd0" "\x12\xf1\xdd\xe9\x4f\xfe\xcd\x90\xb7\xb6\x3d\x81\x97\xd9\xc2\x4a\x6f" "\xe5\x91\x5a\xc7\xd7\x24\x08\x47\xf6\xd0\xbf\x90\x99\xee\x11\x7c\x83" "\xe3\x63\xf2\xad\x36\xa4\xa9\xf4\xfa\xa5\x73\x4a\xfe\x97\x70\xc3\x8c" "\x56\x5c\xae\x87\xa4\x08\xd0\xac\xbb\x2d\xb7\xdb\x91\x74\xac\xab\x60" "\xa3\x44\x81\x4e\xe6\x43\xfa\x82\xba\x41\x70\x6d\x23\x60\x26\x9e\xd2" "\x76\xe1\x3d\xd8\x3a\xbb\xc2\x58\xf0\x7b\x0d\x58\xab\x0b\x65\x20\x0b" "\x18\xb7\xf9\xf8\x71\xbc\xb4\x3f\xec\x5a\x2e\x37\x89\xec\xd0\xc1\x06" "\x9d\x2d\xa8\x0b\x93\xc8\x6d\xff\x89\x33\xe7\x0c\x21\x08\x34\x60\x03" "\xdd\xf6\xb6\x03\x79\xee\xe6\x3b\x66\xe7\x34\x1c\xdd\x8f\x87\xed\x9f" "\x11\x89\x4c\x9a\xe0\x40\x97\x63\x21\xd8\x74\x05\xb4\x92\xf4\x19\xeb" "\xfa\x77\xeb\x36\x7c\xa6\xe3\x60\xb8\xf8\x45\x11\x02\xf5\x48\x93\xd7" "\xd1\x69\x5c\x24\xbc\xc1\x84\xb1\xe7\xd1\x99\x40\xa2\xb6\x93\x1a\xde" "\x86\x38\xdd\x2b\x85\xa8\x6d\xc5\x11\xdb\xb9\x7f\x50\x52\x0f\x91\xfb" "\xf7\x20\x1f\xc9\x62\x1d\x0a\xee\x97\x35\xd0\x7c\xa0\x24\x07\x6e\x85" "\x81\xdb\x33\x2b\x1c\x5f\x13\x5f\xe6\xb2\xe9\xd2\xc1\x8c\x9d\x5d\x5a" "\x52\x4d\x3d\x5b\x26\x57\xe4\xb2\x8f\x1a\x09\x69\x6b\xd5\xb0\x76\xa1" "\x47\x1c\x8b\x2a\xb2\xca\x3b\xa5\x78\x43\xaf\x1d\x03\x59\x0f\x4e\x89" "\x85\xe1\xc4\x63\xc7\x81\xbb\x03\xad\x7e\xc8\x16\xea\x70\xbb\xe0\x64" "\x11\xaa\xe0\x01\xe0\xca\x72\xee\x7e\x82\x8a\xd1\x4b\xb7\xa0\x92\xd8" "\x83\xad\x00\x05\x54\xbf\x7f\x00\x00\x00\x00\x00\x00\x75\xcc\x01\xf8" "\xa2\xe1\x80\x21\x92\xf0\x9e\x77\xbc\x48\x8b\x3b\xd3\xf0\x8a\x9c\xe8" "\x8b\xa2\xe2\xbc\xc2\x3c\xf5\xd7\x37\x2b\x33\x9c\xe1\xf5\x00\x3d\xb0" "\xad\x70\xfa\x6e\x93\xaa\x90\x8a\x2c\xed\x81\xf5\x51\x4e\x23\xe2\xf9" "\x4f\xf0\x3c\x1c\x02\xf5\xa9\x19\x5f\x47\x35\x56\x3e\xfd\x0a\x1f\xc7" "\xda\xfc\xfb\x3d\xae\x04\x3f\xe0\xc1\x72\xec\x3a\x12\x74\x7d\x7a\xbf" "\x43\x82\xbf\x74\x53\xc1\x3d\xf9\x94\x64\x10\x17\xa0\xf4\x61\xad\xd9" "\x56\xef\x8f\x83\x4b\x76\x2a\xf3\x04\x08\xaf\x6a\x61\xf3\x17\xfd\x3c" "\x7b\x08\x16\x23\x6a\x76\x86\x01\xb7\xc6\x60\x6b\xa5\x2f\xf1\x26\xeb" "\x13\xd3\x3c\x91\x5c\x5d\xa9\x9d\x11\x8d\xb4\x88\xda\x3f\x3d\x77\x83" "\xa6\x08\x28\x2a\x93\xfc\xbe\x09\x10\xf0\x38\x9c\x3e\xf9\x1d\xe7\xc8" "\x4e\x23\xda\xa6\x55\x4c\x42\xb2\xb3\xe9\xf7\x0a\x9f\x79\x0f\x29\x01" "\x1a\x0b\x51\x02\x00\x3b\xfe\xba\x6e\x52\x87\x7e\xd8\xa1\x88\x95\x8e" "\x39\x37\x5d\xd2\x03\xd4\x34\xbe\xf4\xdc\x82\xcc\x8a\x21\xfc\x40\xc6" "\xe6\xe6\xa2\x47\x5f\x70\xbf\x15\x03\xbe\xb9\x55\x50\x36\xe6\x3b\xdc" "\x93\x7f\x8a\x4d\x61\xb2\x1d\x06\xa9\xd3\x23\x9d\x1d\xf6\xf2\xe9\xef" "\x16\xde\xe5\x90\xb1\x5a\xc0\x28\xc6\xd8\x73\xbb\x29\x65\x37\x4b\x73" "\x3d\x8e\x11\xba\x76\x3a\xb1\x57\xed\x91\xdd\x87\x1b\x09\x8c\x05\x43" "\xdc\xbb\xa4\xcf\x67\xdb\x8c\x83\xc8\x43\x69\xdc\x67\x73\x5f\xa4\xfa" "\xa0\xfd\xcf\x34\xb1\xc6\xa8\x62\xcc\xae\x9f\xe4\xfa\x28\x74\x65\x04" "\x64\x3b\x57\xf0\x26\x23\xa2\xef\x34\xea\x90\xf2\xe7\xf7\xdd\x77\x1f" "\x8f\x75\x21\x7c\x79\x9d\x97\x8a\x35\x33\xfc\xfa\xb6\xc6\xf5\x39\x1b" "\x62\x6d\x61\xb4\x00\xf0\x81\x72\xfc\x67\x5e\x2a\x06\x2d\x06\xc3\x1b" "\x85\x45\x28\x04\xf7\xb1\x25\xc2\x91\xf6\x0a\x02\xa5\xd6\x22\x71\xe9" "\x6f\xe7\x0d\x64\xba\xe3\x6e\x28\xb4\x2e\x19\x72\x59\x16\x9e\xbe\xe8" "\xf6\x43\x55\x54\x4f\xba\xd8\xb8\x3c\x1c\x8f\xad\x02\xcd\x1a\x2e\x56" "\xa6\xf6\xe8\x2e\xc7\x71\x9a\x48\xa1\xbe\xa8\x03\x54\x6b\x8a\xf7\xa8" "\x9f\xaf\x7c\xef\x94\xd8\xad\xa4\x5f\xc0\xa9\x8a\x79\xba\x90\xc9\x52" "\x62\xf0\x11\x07\x25\xc6\xbf\x7c\x81\x23\x75\x34\xdc\xd6\xa8\xa1\x13" "\xbd\x8a\xc4\x8b\x7d\xb5\x52\x6a\xb7\x62\xce\xc1\x03\x67\x47\x42\x47" "\x6c\xd6\xb9\x2b\x8c\x7a\xbc\xfb\x1f\x8e\x08\xf0\xa0\x5c\x1b\x20\x91" "\x87\x04\x9f\x32\x06\xbd\x54\x5e\x8c\x20\xf8\xdb\x6d\x8a\x7c\xdd\x0c" "\x9e\xcb\xb9\x01\x1b\x61\x1a\x01\x3c\xd5\x81\x52\x1d\xfc\xb0\x28\xd5" "\x9d\x5c\x69\xd2\x86\xfb\x93\xe4\xc4\x98\xb3\xaa\xff\x7e\x0c\xdc\xf1" "\xf4\x1f\xec\x65\xeb\xdb\xe4\xc2\xbf\x45\x31\x40\x25\x1c\xdd\x94\xc3" "\x2b\x87\xc4\x63\x4d\x65\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x81\x6e\x6c\x33\xf9\x2d\xca\x3e\x03\xc4\x00\x00" "\x00\x5e\x53\x8c\x77\xb2\xb1\x4f\x63\xd2\x53\x70\x53\x63\x84\x6b\xc4" "\xe9\xcd\x32\x84\xff\x32\x93\x30\x81\x2d\x22\x11\xae\x34\x10\x6e\x03" "\x06\x37\x6a\x2b\x1c\xfe\x60\xa0\x9b\xec\xae\x2b\x05\xec\x9a\xdc\xac" "\x47\x61\x2a\xf8\x5f\x59\x8a\x88\x0f\xa9\x78\x91\xa7\xa2\x90\xb6\xe7" "\x30\x80\x05\x42\xae\xa7\x61\xae\xb4\x63\xf5\xff\x5b\xdf\x50\x99\xae" "\x8a\xd4\xaf\xe9\x9d\xb9\xe9\xc4\xe7\x03\xcb\x90\x0e\x9a\xe2\x72\x74" "\x2f\xe2\xff\x81\xd1\xa4\xf1\x56\x68\x39\x2c\xda\xfd\x2e\x17\x57\x70" "\x6f\x47\xf9\xf8\x4e\x53\x2f\x25\xe2\x73\x7c\xb6\xf6\xe8\x93\x78\xf8" "\xd7\x9a\xb8\x50\x7b\x10\x9c\x7f\x1f\x36\x53\xa5\xbc\x9d\x54\xcc\xc6" "\x33\xde\x62\x63\x52\x6e\xac\x10\x51\x92\x74", 2476)); NONFAILING(memcpy( (void*)0x200000003100, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\x2f\xd3\x73\x09\x71" "\xac\x08\x45\xc6\x62\xe1\x38\x10\x12\x42\x7c\xb7\x21\xdc\xe2\xb0\x60" "\x01\x48\x20\x21\xaf\xb1\x35\x99\x44\x06\x07\x90\x6d\x10\x89\x2c\x3c" "\x91\x17\x88\x05\x97\x47\x80\x4d\x36\x2c\xf2\x1a\x2c\xc2\x2b\x20\x1e" "\x00\x4b\x63\x56\x91\x20\x14\xaa\x99\x73\xec\x9a\x9a\x1e\xf7\x18\x7b" "\xba\xba\xe7\xfc\x7e\xd2\xb8\xea\xeb\xd3\x35\x7d\xca\xff\xa9\xa9\xee" "\xa9\xcb\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x20\xbe\xf3\xed\x1f\x9e\xee\x45\xc4\xe5\x5f\xa6\x07\x0e\x47\x7c\x2a" "\x06\x11\xfd\x88\xe5\xba\x3e\x16\xf5\xcc\xc5\xfc\xfc\x61\x44\x1c\x89" "\xcd\xe6\x78\x2e\x22\x06\x8b\x11\xf5\xf2\x9b\xff\x3c\x13\x71\x2e\x22" "\x3e\x3a\x14\xb1\x71\xef\xd6\x6a\xfd\xf0\x99\x3d\xf6\xe3\xfc\xa9\x9b" "\xd7\x3f\xf9\xee\xb7\xfe\xfe\x9b\x3f\xdc\x39\xf2\xe3\x37\x7f\xf4\x41" "\xbb\xfd\x07\x9f\x3e\xfb\xe1\x6f\x6f\x47\x1c\xfe\xfe\x6b\x1f\x7e\x72" "\xfb\xc9\xac\x3b\x00\x00\x00\x94\xa2\xaa\xaa\xaa\x97\x3e\xe6\x1f\x4d" "\x9f\xef\xfb\x5d\x77\x0a\x00\x98\x8a\xbc\xff\xaf\x92\xfc\xb8\x5a\xad" "\x56\xab\x9f\x68\xfd\xfb\xfe\x6c\xf5\x47\x5d\x68\xdd\x54\x8d\x77\xbb" "\x59\x44\xc4\x7a\x73\x99\xfa\x3d\x83\xc3\xf1\x00\x30\x67\xd6\xe3\xe3" "\xae\xbb\x40\x87\xe4\x5f\xb4\x61\x44\x3c\xd5\x75\x27\x80\x99\xd6\xeb" "\xba\x03\xec\x8b\x8d\x7b\xb7\x56\x7b\x29\xdf\x5e\x73\x7f\x70\x6c\xab" "\x3d\xff\x9d\x72\x5b\xfe\xeb\xbd\xfb\xd7\x77\xec\x36\x9d\xa4\x7d\x8e" "\xc9\xb4\x7e\xbe\xee\xc4\x20\x9e\xdd\xa5\x3f\xcb\x53\xea\xc3\x2c\xc9" "\xf9\xf7\xdb\xf9\x5f\xde\x6a\x1f\xa5\xe7\xed\x77\xfe\xd3\xb2\x5b\xfe" "\xa3\xad\x4b\x9f\x8a\x93\xf3\x1f\xb4\xf3\x6f\xd9\x96\xff\x1f\x23\x62" "\x6e\xf3\xef\x8f\xcd\xbf\x54\x39\xff\xe1\xa3\xe4\xbf\x3e\x98\xe3\xed" "\x5f\xfe\x00\x00\x00\x00\x00\x1c\x7c\xf9\xef\xff\x87\x3b\x3e\xfe\xbb" "\xf8\xf8\xab\xb2\x27\x0f\x3b\xfe\x7b\x6c\x4a\x7d\x00\x00\x00\x00\x00" "\x00\x00\x80\x27\xed\x71\xc7\xff\xbb\xcf\xf8\x7f\x00\x00\x00\x30\xb3" "\xea\xcf\xea\xb5\x3f\x1d\x7a\xf0\xd8\x6e\xf7\x62\xab\x1f\xbf\xd4\x8b" "\x78\xba\xf5\x7c\xa0\x30\xe9\x62\x99\x95\xae\xfb\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x25\x19\x6e\x9d\xc3\x7b\xa9\x17\xb1\x10\x11" "\x4f\xaf\xac\x54\x55\x55\x7f\x35\xb5\xeb\x47\xf5\xb8\xcb\xcf\xbb\xd2" "\xd7\x1f\x4a\xd6\xf5\x2f\x79\x00\x00\xd8\xf2\xd1\xa1\xd6\xb5\xfc\xbd" "\x88\xa5\x88\xb8\x94\xee\xf5\xb7\xb0\xb2\xb2\x52\x55\x4b\xcb\x2b\xd5" "\x4a\xb5\xbc\x98\xdf\xcf\x8e\x16\x97\xaa\xe5\xc6\xe7\xda\x3c\xad\x1f" "\x5b\x1c\xed\xe1\x0d\xf1\x70\x54\xd5\xdf\x6c\xa9\xb1\x5c\xd3\xa4\xcf" "\xcb\x93\xda\xdb\xdf\xaf\x7e\xad\x51\x35\xd8\x43\xc7\xa6\xa3\xc3\xc0" "\x01\x20\x22\xb6\xf6\x46\x1b\xf6\x48\x07\x4c\x55\x3d\x13\x5d\xbf\xcb" "\x61\x3e\xd8\xfe\x0f\x1e\xdb\x3f\x7b\xd1\xf5\xcf\x29\x00\x00\x00\xb0" "\xff\xaa\xaa\xaa\x7a\xe9\x76\xde\x47\xd3\x31\xff\x7e\xd7\x9d\x02\x00" "\xa6\x61\x29\xef\xff\xdb\xc7\x05\xd4\x6a\xb5\x5a\xad\x56\x1f\xbc\xba" "\xa9\x1a\xef\x76\xb3\x88\x88\xf5\xe6\x32\xf5\x7b\x06\xc3\xf1\x03\xc0" "\x9c\x59\x8f\x8f\xbb\xee\x02\x1d\x92\x7f\xd1\x86\x11\x71\xa4\xeb\x4e" "\x00\x33\xad\xd7\x75\x07\xd8\x17\x1b\xf7\x6e\xad\xf6\x52\xbe\xbd\xe6" "\xfe\x20\x8d\xef\x9e\xcf\x05\xd9\x96\xff\x7a\x6f\x73\xb9\xbc\xfc\xb8" "\xe9\x24\xed\x73\x4c\xa6\xf5\xf3\x75\x27\x06\xf1\xec\x2e\xfd\x79\x6e" "\x4a\x7d\x98\x25\x39\xff\x7e\x3b\xff\xcb\x5b\xed\xa3\xf4\xbc\xfd\xce" "\x7f\x5a\x76\xcb\xbf\x5e\xcf\xc3\x1d\xf4\xa7\x6b\x39\xff\x41\x3b\xff" "\x96\x83\x93\x7f\x7f\x6c\xfe\xa5\xca\xf9\x0f\x1f\x29\xff\x81\xfc\x01" "\x00\x00\x00\x00\x60\x86\xe5\xbf\xff\x1f\x76\xfc\x37\xaf\x32\x00\x00" "\x00\x00\x00\x00\x00\xcc\x9d\x8d\x7b\xb7\x56\xf3\x75\xaf\xf9\xf8\xff" "\x67\xc7\x3c\xaf\xd7\x9c\x73\xfd\xe7\x81\x91\xf3\xef\xed\x39\x7f\xd7" "\xff\x1e\x24\x39\xff\x7e\x3b\xff\xd6\x09\x39\x83\xc6\xfc\xdd\x37\x1e" "\xe4\xff\xaf\x7b\xb7\x56\x3f\xb8\xf9\xcf\xcf\xe4\xe9\xd8\xfc\xff\xba" "\xb1\xe3\xa6\xa3\x9d\xe5\xbf\x30\x18\xd5\xaf\xbd\xd0\xeb\x0f\x86\xe9" "\x9c\x9f\x6a\xe1\xad\xb8\x1a\xd7\x62\x2d\x4e\xed\x78\xfe\x70\x5b\xfb" "\xe9\x1d\xed\x0b\xdb\xda\xcf\x4c\x68\x3f\xbb\xa3\x7d\x54\xb7\x2f\xe7" "\xf6\x13\xb1\x1a\x3f\x8b\x6b\xf1\xe6\xfd\xf6\xc5\x09\x27\x46\x2d\x4d" "\x68\xaf\x26\xb4\xe7\xfc\x07\xb6\xff\x22\xe5\xfc\x87\x8d\xaf\x3a\xff" "\x95\xd4\xde\x6b\x4d\x6b\x77\xdf\xef\xef\xd8\xee\x9b\xd3\x71\xaf\x73" "\xf1\x2f\xff\x79\x71\xe7\xd6\x35\x7d\x77\x62\x70\x7f\xdd\x9a\xea\xf5" "\x3b\xde\x41\x7f\x36\xff\x4f\x9e\x1a\xc5\x2f\x6e\xac\x5d\x3f\xf1\xab" "\x2b\x37\x6f\x5e\x3f\x1d\x69\xb2\xed\xd1\x33\x91\x26\x4f\x58\xce\x7f" "\x21\x7d\xe5\xfc\x5f\x7a\x61\xab\x3d\xff\xde\x6f\x6e\xaf\x77\xdf\x1f" "\x3d\x72\xfe\xb3\xe2\x4e\x0c\x77\xcd\xff\x85\xc6\x7c\xbd\xbe\x2f\x4f" "\xb9\x6f\x5d\xc8\xf9\x8f\xd2\x57\xce\x3f\xef\x81\xc6\x6f\xff\xf3\x9c" "\xff\xee\xdb\xff\x2b\x1d\xf4\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x1e\xa6\xaa\xaa\xcd\x4b\x44\x2f\x46\xc4\x85\x74\xfd\x4f" "\x57\xd7\x66\x02\x00\x53\xf5\xbb\xef\xa5\x99\xaa\xda\x7e\xab\x0e\xb5" "\x5a\xad\x56\xab\xd5\x07\xaf\x6e\xaa\xc6\x7b\xbd\x59\xc4\xd2\xf6\x65" "\x2e\x44\xc4\xaf\xc7\x7d\x33\x00\x60\x96\xfd\x37\x22\xfe\xd1\x75\x27" "\xe8\x8c\xfc\x0b\x96\xef\xf7\x57\x4f\x3f\xd7\x75\x67\x80\xa9\xba\xf1" "\xee\x7b\x3f\xb9\x72\xed\xda\xda\xf5\x1b\x5d\xf7\x04\x00\x00\x00\x00" "\x00\x00\x00\xf8\x7f\xe5\xf1\x3f\x8f\x35\xc6\x7f\xde\x3c\x0f\xa8\x35" "\x6e\xf4\xb6\xf1\x5f\xdf\x88\x63\x73\x3b\xfe\x67\x7f\x34\xd8\x1c\xeb" "\x3c\xad\xd0\xf3\xf1\xf0\xf1\xbf\x8f\xc7\xc3\xc7\xff\x1e\x4e\x78\xbd" "\x85\x09\xed\xa3\x09\xed\x8b\x13\xda\x97\x26\xb4\x8f\xbd\xd0\xa3\x21" "\xe7\xff\x7c\xca\x38\xe7\x7f\x34\xad\x58\x49\xe3\xbf\xbe\xd4\x41\x7f" "\xba\x96\xf3\x3f\x9e\xc6\x7a\xce\xf9\x7f\xa1\xf5\xbc\x66\xfe\xd5\x9f" "\xe7\x39\xff\xfe\xb6\xfc\x4f\xde\x7c\xe7\xe7\x27\x6f\xbc\xfb\xde\xab" "\x57\xdf\xb9\xf2\xf6\xda\xdb\x6b\x3f\x3d\x7d\xea\xc2\xb9\xb3\xe7\xcf" "\x9d\x3d\x7f\xfe\xe4\x5b\x57\xaf\xad\x9d\xda\xfa\xb7\xc3\x1e\xef\xaf" "\x9c\x7f\x1e\xfb\xda\x79\xa0\x65\xc9\xf9\xe7\xcc\xe5\x5f\x96\x9c\xff" "\xe7\x53\x2d\xff\xb2\xe4\xfc\x5f\x4c\xb5\xfc\xcb\x92\xf3\xcf\xef\xf7" "\xe4\x5f\x96\x9c\x7f\xfe\xec\x23\xff\xb2\xe4\xfc\x5f\x4e\xb5\xfc\xcb" "\x92\xf3\xff\x62\xaa\xe5\x5f\x96\x9c\xff\x2b\xa9\x96\x7f\x59\x72\xfe" "\x5f\x4a\xb5\xfc\xcb\x92\xf3\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\x44\xaa" "\xe5\x5f\x96\x9c\xff\xc9\x54\xcb\xbf\x2c\x39\xff\x7c\x84\x4b\xfe\x65" "\xc9\xf9\xe7\x33\x1b\xe4\x5f\x96\x9c\xff\x99\x54\xcb\xbf\x2c\x39\xff" "\xb3\xa9\x96\x7f\x59\x72\xfe\xe7\x52\x2d\xff\xb2\xe4\xfc\xcf\xa7\x5a" "\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc\xcb\x92\xf3\xff\x72\xaa\xe5\x5f\x96" "\x9c\xff\x57\x52\x2d\xff\xb2\xe4\xfc\x5f\x4b\xb5\xfc\xcb\x92\xf3\xff" "\x6a\xaa\xe5\x5f\x96\x9c\xff\xd7\x52\x2d\xff\xb2\xe4\xfc\xbf\x9e\x6a" "\xf9\x97\x25\xe7\xff\x8d\x54\xcb\xbf\x2c\x39\xff\x6f\xa6\x5a\xfe\x65" "\xc9\xf9\xbf\x9e\x6a\xf9\x97\xe5\xc1\xfd\xff\xcd\x4c\x79\xe6\xdf\x7f" "\x8b\x98\x81\x6e\x98\x31\x33\x6e\xa6\xeb\xdf\x4c\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x40\xdb\x34\x4e\x27\xee\x7a\x1d\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x80\xff\xb1\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85\x1d\x38\x10" "\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xdd\x5d\x8c\x5c\xe5\x7d\x3f\xf0" "\x67\xdf\xec\xb5\x21\xc1\xff\x40\x08\x21\x4e\x58\x1b\x43\x9c\xb0\x78" "\xd7\xaf\xe0\x10\x27\xce\xeb\x9f\x92\x36\xa5\x24\xa4\x4d\x4b\x6a\x1c" "\x7b\x6d\x9c\xf8\xad\xde\x75\x02\x08\x95\xa5\xd0\x96\x28\x48\x45\x6a" "\x2f\xe8\x45\xd3\x24\x4a\xa3\x48\x6d\x05\x8a\x22\x35\x95\x68\x84\xd4" "\x48\xed\x5d\xb9\x4a\xc4\x45\xa3\x56\xe2\xc2\x52\xa1\x72\x50\x52\x29" "\x15\xb0\xd5\x99\x79\x9e\x67\x67\x66\x77\x67\xd6\x2f\x6b\xcf\x39\xe7" "\xf3\x41\xf6\x8f\x9d\x39\x33\xf3\xcc\x99\x33\xb3\xfb\x5d\xeb\x3b\x03" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x40\xab\x0d\x1f\x9b\xfa\xd3\x81\x10" "\x42\xf1\xa7\xf1\xd7\xba\x10\xae\x2c\xfe\x7f\x4d\xd8\x5b\x7c\x39\xbb" "\xeb\x72\xaf\x10\x00\x00\x00\xb8\x50\x6f\x34\xfe\xfe\xbb\xab\xf2\x09" "\x7b\x97\x71\xa1\x96\x6d\xfe\xe5\x3d\xff\xf6\x83\xb9\xb9\xb9\xb9\xf0" "\xc5\xd7\xce\xbc\xf9\xe7\x73\x73\xf9\x8c\xb1\x10\x86\x56\x87\xd0\x38" "\x2f\xf9\xd7\x5f\xfd\x72\xae\x75\x9b\xe8\xf1\x30\x3a\x30\xd8\xf2\xf5" "\x60\x8f\x9b\x1f\xea\x71\xfe\x70\x8f\xf3\x47\x7a\x9c\xbf\xaa\xc7\xf9" "\xab\x7b\x9c\x3f\xda\xe3\xfc\x05\x3b\x60\x81\x35\xcd\xdf\xc7\x34\xae" "\x6c\x53\xe3\x7f\xd7\x35\x77\x69\xb8\x26\x8c\x34\xce\xdb\xb4\xc8\xa5" "\x1e\x1f\x58\x3d\x38\x98\x7e\x97\xd3\x30\xd0\xb8\xcc\xdc\xc8\xa1\x70" "\x24\x1c\x0d\x53\x61\x72\xc1\x65\x06\x1a\xff\x85\xf0\xfc\x86\xe2\xb6" "\xee\x0c\xe9\xb6\x06\x5b\x6e\x6b\x7d\x08\xe1\xec\xcf\x1f\x39\x90\xd6" "\x30\x10\xf7\xf1\xa6\xd0\x76\x63\x0d\xad\x8f\xdd\xab\x1f\x09\x63\xaf" "\xfd\xfc\x91\x03\xdf\x9d\x79\xe5\x9d\x8b\xcd\x9e\xbb\x61\xc1\x4a\x43" "\xd8\xbc\xb1\x58\xe7\x13\x21\xcc\xff\xba\x2a\x0c\x84\xd5\x79\x9f\xa4" "\x75\x0e\xb6\xac\x73\xfd\x22\xeb\x1c\x6a\x5b\xe7\x40\xe3\x72\xc5\xff" "\x77\xae\xf3\xec\x32\xd7\x99\xee\xf7\x68\x5c\xe7\x8b\x5d\xd6\xb9\x3e" "\x9e\xf6\xe0\x8d\x21\x84\xd9\xb0\xe4\x36\x9d\x1e\x0f\x83\x61\x6d\xc7" "\xad\xe6\xfd\x3d\xda\x3c\x22\x8a\xeb\x28\x1e\xca\xb7\x85\xe1\x73\x3a" "\x4e\x36\x2c\xe3\x38\x29\x2e\xf3\xf2\x8d\xed\xc7\x49\xe7\x31\x99\xf6" "\xff\x86\xb8\x4f\x86\x97\x58\x43\xeb\xc3\xf1\xea\x63\xab\x16\xec\xf7" "\xf3\x3d\x4e\x8a\x7b\xdd\x0f\xc7\x6a\x71\xdd\x77\x17\x37\x3a\x3a\xda" "\xfa\xab\xd5\xb6\x63\xb5\xd8\xe6\x91\x9b\x96\x3e\x06\x16\x7d\xec\x16" "\x39\x06\xf2\xb1\xdc\x72\x0c\x6c\xec\x75\x0c\x0c\xae\x1a\x6a\x1c\x03" "\x83\xf3\x6b\xde\xd8\x76\x0c\x6c\x5d\x70\x99\xc1\x30\xd0\xb8\xad\x33" "\x37\x75\x3f\x06\x26\x66\x8e\x9d\x9c\x98\x7e\xe8\xe1\x5b\x8f\x1c\xdb" "\x7f\x78\xea\xf0\xd4\xf1\xad\x93\xbb\x76\x6c\xdf\xb9\x63\xfb\xce\x9d" "\x13\x87\x8e\x1c\x9d\x9a\x6c\xfe\x7d\x6e\xbb\xb4\x44\xd6\x86\xc1\x7c" "\x0c\x6e\x8c\xaf\x35\xe9\x18\x7c\x6f\xc7\xb6\xad\x87\xe4\xdc\xb7\x2e" "\xde\xf3\x60\xb4\x4f\x9e\x07\xc5\x7d\xff\xec\xcd\xc5\x82\xae\x1c\x0c" "\x4b\x1c\xe3\xc5\x36\x4f\x6c\xbe\xf0\xe7\x41\xfe\xbe\xdf\xf2\x3c\x18" "\x6e\x79\x1e\x2c\xfa\x9a\x3a\xb7\xf0\x79\x30\xbc\x8c\xe7\x41\xb1\xcd" "\xd9\xcd\xcb\xfb\x9e\x39\xdc\xf2\x67\xb1\x35\xac\xd4\x6b\xe1\xba\x96" "\x63\xe0\x72\x7e\x3f\x2c\x6e\xf3\xbe\xf7\x2d\xfd\x5a\xb8\x3e\xae\xeb" "\xc9\xf7\x9f\xeb\xf7\xc3\xa1\x05\xc7\x40\xba\x5b\x03\xf1\xb9\x57\x9c" "\x92\x7f\xde\x1b\xbd\x3d\xee\x97\x85\xc7\xc5\xf5\xc5\x19\x57\xac\x0a" "\xa7\xa7\xa7\x4e\x6d\x79\x70\xff\xcc\xcc\xa9\xad\x21\x8e\x4b\xe2\xea" "\x96\xc7\xaa\xf3\x78\x59\xdb\x72\x9f\xc2\x82\xe3\x65\xf0\x9c\x8f\x97" "\xbd\x7f\xfb\xfa\xcd\xd7\x2f\x72\xfa\xba\xb8\xaf\x46\x6f\xe9\xfe\x58" "\x15\xdb\xec\x18\xef\xfe\x58\x35\x5e\xdd\xdb\xf7\xe7\xaa\xd0\xdc\x9f" "\x6d\xa7\x6e\x0b\x71\x5c\x64\x97\x7a\x7f\x2e\xf6\xdd\xac\xd8\x9f\x39" "\x4b\x74\xd9\x9f\xc5\x36\x4f\xdc\x7a\xe1\x3f\x0b\xe6\x5c\xd2\xf2\xfa" "\x37\xd2\xeb\xf5\x6f\x68\x64\xb8\xf9\xfa\x37\x94\xf7\xc6\x48\xdb\xeb" "\xdf\xc2\x87\x66\xa8\xb1\xb2\x10\xce\xde\xba\xbc\xd7\xbf\x91\xf8\xe7" "\x52\xbf\xfe\x5d\xd3\x27\xaf\x7f\xc5\xbe\xba\x6f\x4b\xf7\x63\xa0\xd8" "\xe6\xc9\x89\x73\x3d\x06\x86\xbb\xbe\xfe\xdd\x18\xe7\x40\x5c\xcf\xfb" "\x62\x62\x18\x6d\xc9\xfd\x6f\x36\xce\x9f\x6d\x1e\xa6\x2d\x8f\x65\xcf" "\xe3\x66\x78\x78\x24\x1e\x37\xc3\xe9\x16\xdb\x8f\x9b\xed\x0b\x2e\x53" "\x5c\x5b\x71\xdb\x9b\x27\xcf\xef\xb8\xd9\x7c\x63\xfb\x63\xd5\xf6\x73" "\x4b\x05\x8f\x9b\x62\x5f\xfd\xc5\x64\xf7\xe3\xa6\xd8\xe6\x85\xad\x17" "\xf8\xda\xd1\xfa\x0b\x91\x96\xd7\x8e\x55\xbd\x8e\x81\x91\xa1\x55\xc5" "\x7a\x47\xf2\x41\xd0\x7c\xbd\x9b\x5b\x93\x8e\x81\x2d\xe1\x40\x38\x11" "\x8e\x86\x83\x2d\x37\x35\x10\xd6\x84\x10\xc6\xb7\x2d\xef\x18\x58\x15" "\xff\x5c\xea\xd7\x8e\xeb\xfa\xe4\x18\x28\xf6\xd5\x33\xdb\xba\x1f\x03" "\xc5\x36\x3f\xde\x7e\x71\x7f\x76\xda\x1c\x4f\xc9\xdb\xb4\xfc\xec\xd4" "\xf9\xfb\x85\xa5\x32\xff\xf5\xc3\xf3\xd7\xd7\xb9\xdb\x2e\x76\xe6\x2f" "\xd6\xf9\xf1\x9f\x7c\x3a\x9f\xb6\x58\x86\x28\xb6\x79\x65\xc7\xb9\xe6" "\x8c\xee\xfb\xe9\x96\x78\xca\x15\x8b\xec\xa7\xce\xe7\xcf\x52\xc7\xf4" "\xc1\x70\x69\xf6\xd3\x75\x71\x9d\x47\x77\x76\xff\xdd\x54\xb1\xcd\x35" "\xbb\x96\x79\x3c\xed\x0d\x21\xbc\xf4\xfa\x4b\x8d\xdf\x77\xc5\xdf\xef" "\x7e\xff\xf4\x4f\x7e\xd0\xf6\x7b\xdf\xc5\x7e\xa7\xfc\xd2\xd6\x97\xee" "\x9a\xb8\xe7\xa7\xe7\xb2\x7e\x00\x00\xce\xdf\x9b\x8d\xbf\x67\x57\x35" "\x7f\xd6\x6c\xf9\x17\xeb\xe5\xfc\xfb\x3f\x00\x00\x00\x50\x0a\x29\xf7" "\x0f\xc6\x99\xc9\xff\x00\x00\x00\x50\x19\x29\xf7\x0f\xc5\x99\xc9\xff" "\x00\x00\x00\x50\x19\x29\xf7\x0f\xc7\x99\xd5\x24\xff\x3f\x70\xfb\xee" "\x67\xdf\x78\x34\xe4\xf2\xfb\x5c\x94\xce\x4f\xbb\xe1\xee\x0f\x35\xb7" "\x4b\x1d\xef\xd9\xf8\xf5\xd8\xdc\xbc\xe2\xf4\x8f\x7e\x67\xe4\xd9\xaf" "\x3d\xba\xbc\xdb\x1e\x0c\x21\xbc\x7e\xd7\xbb\x16\xdd\xfe\x81\x0f\xa5" "\x75\x35\x9d\x4c\xeb\xfc\x40\xfb\xe9\x0b\x5c\x77\xc3\xb2\x6e\xff\xfe" "\x7b\xe7\xb7\x6b\x7d\xff\x84\xb3\xbb\x9b\xd7\x9f\xee\xcf\x72\x0f\x83" "\xd4\x55\x7e\x7e\x62\x5b\xe3\x7a\xc7\x1e\xda\xda\x98\x2f\xdc\x15\x1a" "\xf3\x9e\xd9\x27\x1f\x6f\x5e\x7f\xf3\xeb\xb4\xfd\x99\xed\xcd\xed\xff" "\x2a\xbe\x69\xc9\xde\x43\x03\x6d\x97\xdf\x1c\xd7\xb3\x29\xce\xb1\xf8" "\x9e\x32\x77\xef\x9d\xdf\x0f\xc5\x4c\x97\x7b\x76\xfd\x7b\xfe\xf9\xea" "\xcf\xcd\xdf\x5e\xba\xdc\xc0\xc6\xb7\x36\xee\xe6\x33\x7f\xd8\xbc\xde" "\xf4\x1e\x51\x4f\x5f\xdd\xdc\x3e\xdd\xef\xa5\xd6\xff\x4f\x5f\xff\xde" "\xb3\xc5\xf6\x0f\xde\xb4\xf8\xfa\x1f\x1d\x5c\x7c\xfd\x67\xe2\xf5\xbe" "\x1c\xe7\xaf\xf6\x34\xb7\x6f\xdd\xe7\x5f\x6b\x59\xff\x1f\xc7\xf5\xa7" "\xdb\x4b\x97\xdb\xf2\xed\x1f\x2d\xba\xfe\xe7\xde\xd1\xdc\xfe\xb9\x78" "\x5c\x7c\x33\xce\xce\xf5\x7f\xe4\xcf\xde\xfd\xc6\x62\x8f\x57\xba\x9d" "\xbd\x77\x34\x2f\x97\x6e\x7f\xf2\x7f\x76\x34\x2e\x97\xae\x2f\x5d\x7f" "\xe7\xfa\x47\x1f\xdd\xda\xb6\x3f\x3a\xaf\xff\x85\xd7\x9a\xd7\xb3\xe7" "\x2b\xbf\x18\x6a\xdd\x3e\x9d\x9e\x6e\x27\xb9\xff\x8e\xf6\xe3\x7b\x20" "\x3e\xbe\x6d\x3d\xf2\x10\xc2\xf7\xfe\x24\xb4\xed\xe7\xf0\xc1\xe6\xe5" "\xfe\xb1\x63\xfd\xe9\xfa\x4e\xde\xb1\xf8\xfa\x6f\xe9\x58\xe7\xc9\x81" "\x1b\x1a\x97\x9f\xbf\x3f\xeb\xda\xee\xd7\x37\xfe\x66\xdb\xa2\xf7\x37" "\xad\x67\xef\xdf\xaf\x6b\xbb\x3f\x4f\x7f\x22\xee\xbf\xd7\x26\x7e\x5c" "\x5c\xef\x99\x7b\xe2\xf1\x18\xcf\xff\xdf\x17\x9b\xd7\xd7\xf9\x5e\xa6" "\xcf\x7d\xa2\xfd\xf5\x26\x6d\xff\xcd\x75\xcd\xe7\x6d\xba\xbe\x89\x8e" "\xf5\x3f\xdd\xb1\xfe\xd9\x1b\x8a\x7d\xd7\x7b\xfd\x77\xbe\xd6\x5c\xff" "\x73\x1f\x5e\xdd\xb6\xfe\xbd\x9f\x8c\xc7\xd3\x9d\xcd\xd9\x6b\xfd\x87" "\xff\xfa\xaa\xb6\xcb\x7f\xeb\xbb\xcd\xc7\xe3\xd4\x57\xc7\x8f\x9f\x98" "\x3e\x7d\xe4\x60\xcb\x5e\x6d\x7d\x1e\xaf\x1e\x5d\xb3\xf6\x8a\x2b\xdf" "\xf2\xd6\xab\xe2\x6b\x69\xe7\xd7\xfb\x4e\xcc\x3c\x30\x75\x6a\x6c\x72" "\x6c\x32\x84\xb1\x12\xbe\x65\xe0\x4a\xaf\xff\xdb\x71\xfe\x77\x73\xcc" "\x5e\xfc\x5b\x68\xfa\xe9\x2f\x9a\xc7\xdd\x53\x9f\x6a\x7e\xdf\x7a\xef" "\x2f\x9b\x5f\x3f\x1d\x4f\xbf\x3f\x3e\x9e\xe9\xfb\xe3\x37\xfe\x72\xa4" "\xed\x78\xed\x7c\xdc\x67\x3f\xdc\x9c\x17\xba\xfe\xf7\xc7\x75\x2c\xd7" "\x3b\xbe\xfe\x9f\x37\x2c\x6b\xc3\x33\x5f\x78\xfe\xf4\x3f\xfc\xd1\x2b" "\x9d\x3f\x17\xa4\xfb\x73\xf2\xed\xa3\x8d\xfb\xf7\xcc\x86\x6b\x1b\xe7" "\x0d\xbc\xd0\x3c\xbf\xf3\xf5\xaa\x97\xff\x78\x7b\xfb\xf3\xfa\x67\xc3" "\x93\x8d\xf9\xc3\xb8\x5f\xe7\xe2\x3b\x33\x6f\xbc\xb6\x79\x7b\x9d\xd7" "\x9f\xde\x9b\xe4\xa9\xcf\x34\x9f\xbf\xe9\x27\xb9\x74\xf9\xd0\xf1\x7e" "\x22\xeb\x86\xda\xef\xc7\x85\xae\xff\x67\xf1\xe7\x98\x1f\x5d\xd7\xfe" "\xfa\x97\x8e\x8f\x1f\x3e\xda\xf1\x6e\xce\xeb\xc2\x40\xb1\x84\xd9\xf8" "\xfa\x10\x66\x9b\xe7\xa7\xad\xd2\xfe\x7e\xea\xec\xb5\x8b\xde\x5e\x7a" "\x1f\x9e\x30\xfb\xce\x73\x59\xe6\x92\xa6\x1f\x9a\x9e\x38\x7a\xe4\xf8" "\xe9\x07\x27\x66\xa6\xa6\x67\x26\xa6\x1f\x7a\x78\xdf\xb1\x13\xa7\x8f" "\xcf\xec\x6b\xbc\x77\xe9\xbe\x2f\xf5\xba\xfc\xfc\xf3\x7b\x6d\xe3\xf9" "\x7d\x70\x6a\xd7\x8e\xd0\x78\xb6\x9f\x68\x8e\x15\x76\xb9\xd7\x7f\xf2" "\xde\x03\x07\x6f\x9b\xbc\xf9\xe0\xd4\xa1\xfd\xa7\x0f\xcd\xdc\x7b\x72" "\xea\xd4\xe1\x03\xd3\xd3\x07\xa6\x0e\x4e\xdf\xbc\xff\xd0\xa1\xa9\xaf" "\xf6\xba\xfc\x91\x83\x7b\xb6\x6e\xdb\xbd\xfd\xb6\x6d\xe3\x87\x8f\x1c" "\xdc\x73\xfb\xee\xdd\xdb\x77\x8f\x1f\x39\x7e\xa2\x58\x46\x73\x51\x3d" "\xec\x9a\xfc\xf2\xf8\xf1\x53\xfb\x1a\x17\x99\xde\xb3\x63\xf7\xd6\x9d" "\x3b\x77\x4c\x8e\x1f\x3b\x71\x70\x6a\xcf\x6d\x93\x93\xe3\xa7\x7b\x5d" "\xbe\xf1\xbd\x69\xbc\xb8\xf4\x57\xc6\x4f\x4d\x1d\xdd\x3f\x73\xe4\xd8" "\xd4\xf8\xf4\x91\x87\xa7\xf6\x6c\xdd\xbd\x6b\xd7\xb6\x9e\xef\xfe\x78" "\xec\xe4\xa1\xe9\xb1\x89\x53\xa7\x8f\x4f\x9c\x9e\x9e\x3a\x35\xd1\xbc" "\x2f\x63\x33\x8d\x93\x8b\xef\x7d\xbd\x2e\x4f\x3d\x4c\x9f\x88\xaf\x77" "\x1d\x06\xe2\x4f\xe7\x9f\xbf\x65\x57\x7e\x7f\xdc\xc2\x77\x1e\x5b\xf2" "\xaa\x9a\x9b\xb4\xff\x78\x1a\x5e\x8d\xef\x05\x95\xbe\xbf\xf5\xfa\x3a" "\xe5\xfe\x91\x38\xb3\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x94\xfb\xe3\x1b" "\xff\xcf\x9f\x21\xff\x03\x00\x00\x40\x65\xa4\xdc\xbf\x3a\xce\x4c\xfe" "\x07\x00\x00\x80\xca\x48\xb9\xbf\x99\xfc\x47\xd7\xe4\x33\x6a\x92\xff" "\x2f\x56\xff\xff\x31\xfd\xff\x06\xfd\x7f\xfd\xff\xa0\xff\x9f\xf5\x51" "\xff\x3f\xbd\xb6\xeb\xff\x5f\x62\x73\x71\x7f\xe8\xff\xeb\xff\x2f\x45" "\xff\x5f\xff\xbf\xcc\xeb\xd7\xff\xd7\xff\xa7\xb7\x7e\xeb\xff\xc7\xdc" "\x1f\x7f\x38\xf4\xef\xff\x00\x00\x00\x50\x45\x29\xf7\xaf\x8d\x33\x5b" "\x2a\xff\xff\xfb\xdb\x26\x37\x5d\x8a\x85\x01\x00\x00\x00\x17\x4d\xca" "\xfd\x57\xc4\x99\xf9\xf7\x7f\x00\x00\x00\xa8\x8c\x94\xfb\xaf\x8c\x33" "\xab\x49\xfe\xf7\xf9\xff\xfa\xff\xfa\xff\xdd\xfa\xff\x69\x5b\xfd\xff" "\x50\xee\xfe\x7f\xd7\xf5\x97\xa8\xff\xbf\xe9\xbf\x4a\xd6\xff\x0f\x3e" "\xff\x5f\xff\xbf\x07\xfd\x7f\xfd\xff\x32\xaf\xbf\x0f\xfb\xff\x6b\xf4" "\xff\xe9\x37\xfd\xd6\xff\x4f\xb9\xff\x2d\x71\x66\x35\xc9\xff\x00\x00" "\x00\x50\x07\x29\xf7\xbf\x35\xce\x4c\xfe\x07\x00\x00\x80\xca\x48\xb9" "\xff\xaa\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\x75\x71\x66\x35" "\xc9\xff\xfa\xff\xfa\xff\xfa\xff\x3e\xff\x5f\xff\xbf\x34\xfd\xff\xd2" "\x7d\xfe\x7f\xd0\xff\xd7\xff\xef\x41\xff\x5f\xff\xbf\xcc\xeb\xef\xc3" "\xfe\xbf\xcf\xff\xa7\xef\xf4\x5b\xff\x3f\xe5\xfe\xff\x17\x67\x56\x93" "\xfc\x0f\x00\x00\x00\x75\x90\x72\xff\xdb\xe2\xcc\xe4\x7f\x00\x00\x00" "\xa8\x8c\x94\xfb\xaf\x8e\x33\x93\xff\x01\x00\x00\xa0\x32\x52\xee\xbf" "\x26\xce\xac\x26\xf9\xbf\x9e\xfd\xff\x97\x43\x08\xfa\xff\x41\xff\x5f" "\xff\xbf\x63\x9d\xfa\xff\xfa\xff\x2b\x41\xff\x5f\xff\xbf\x1b\xfd\x7f" "\xfd\xff\x32\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff\x9f\x72\xff\xdb" "\xe3\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x52\xee\xbf\x36\xce\x4c\xfe" "\x07\x00\x00\x80\xca\x48\xb9\xff\x1d\x71\x66\xf2\x3f\x00\x00\x00\x54" "\x46\xca\xfd\xd7\xc5\x99\xd5\x24\xff\xd7\xb3\xff\xef\xf3\xff\xf5\xff" "\x9b\xf4\xff\xdb\xd7\xa9\xff\xaf\xff\xbf\x12\xf4\xff\xf5\xff\xbb\xd1" "\xff\xd7\xff\x2f\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x29\xf7" "\xbf\x33\xce\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\xe5\xfe\xeb\xe3\xcc" "\xe4\x7f\x00\x00\x00\xa8\x8c\x94\xfb\xdf\x15\x67\x26\xff\x03\x00\x00" "\x40\x65\xa4\xdc\xbf\x3e\xce\xac\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x7f\x25\x95\xab\xff\x3f\xb8\xe4\x39\xfa\xff\x4d" "\xfa\xff\xed\x2e\x5e\xff\x7f\x76\x7e\x01\xfa\xff\xa5\x59\xbf\xfe\xbf" "\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe5\xfe\x77\xc7\x99\xd5\x24\xff\x03\x00" "\x00\x40\x1d\xa4\xdc\xff\x9e\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5" "\xfe\x1b\xe2\xcc\xe4\x7f\x00\x00\x00\xa8\x8c\x94\xfb\xc7\xe2\xcc\x6a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x52\xb9" "\xfa\xff\x4b\xd3\xff\x6f\xd2\xff\x6f\xe7\xf3\xff\xf5\xff\xf5\xff\xf5" "\xff\xe9\xae\xdf\xfa\xff\x29\xf7\x6f\x88\x33\xab\x49\xfe\x07\x00\x00" "\x80\x3a\x48\xb9\x7f\x63\x9c\x99\xfc\x0f\x00\x00\x00\x95\x91\x72\xff" "\x8d\x71\x66\xf2\x3f\x00\x00\x00\x54\x46\xca\xfd\x9b\xe2\xcc\x6a\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x92\xfe\xbf" "\xfe\x7f\x37\xfa\xff\xfa\xff\x65\x5e\xbf\xfe\xbf\xfe\x3f\xbd\xf5\x5b" "\xff\x3f\xe5\xfe\x9b\xe2\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x52\xee" "\xbf\x39\xce\x4c\xfe\x07\x00\x00\x80\xca\x48\xb9\xff\xbd\x71\x66\xf2" "\x3f\x00\x00\x00\x54\x46\xca\xfd\x9b\xe3\xcc\x6a\x92\xff\xf5\xff\xf5" "\xff\xf5\xff\x4b\xdc\xff\x1f\xd2\xff\x0f\xfa\xff\x7d\x4f\xff\x5f\xff" "\xbf\x1b\xfd\x7f\xfd\xff\x32\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff" "\x9f\x72\xff\xfb\xe2\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x52\xee\x7f" "\x7f\x9c\x99\xfc\x0f\x00\x00\x00\x95\x91\x72\xff\x2d\x71\x66\xf2\x3f" "\x00\x00\x00\x54\x46\xca\xfd\xe3\x71\x66\x35\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\x25\xee\xff\xfb\xfc\xff\xb6\xf5\xeb\xff\xf7\x27\xfd\x7f\xfd" "\xff\x6e\xf4\xff\xf5\xff\xcb\xbc\x7e\xfd\x7f\xfd\x7f\x7a\xeb\xb7\xfe" "\x7f\xca\xfd\xb7\xc6\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\xa4\xdc\xbf" "\x25\xce\x4c\xfe\x07\x00\x00\x80\xca\x48\xb9\x7f\x22\xce\x4c\xfe\x07" "\x00\x00\x80\xca\x48\xb9\x7f\x32\xce\xac\x26\xf9\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x25\xe9\xff\xeb\xff\x77\xa3\xff\xaf" "\xff\x5f\xe6\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff\x53\xee\xdf\x1a" "\x67\x56\x93\xfc\x0f\x00\x00\x00\x75\x90\x72\xff\xb6\x38\x33\xf9\x1f" "\x00\x00\x00\x2a\x23\xe5\xfe\xed\x71\x66\xf2\x3f\x00\x00\x00\x54\x46" "\xca\xfd\x3b\xe2\xcc\x6a\x92\xff\x4b\xd2\xff\xdf\x92\x0b\x50\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xa5\xa2\xff\xaf\xff\xdf\x8d\xfe\xbf" "\xfe\x7f\x99\xd7\xaf\xff\xaf\xff\x4f\xbb\xc1\x45\x4e\xeb\xb7\xfe\x7f" "\xca\xfd\x3b\xe3\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x52\xee\xdf\x15" "\x67\x26\xff\x03\x00\x00\x40\x65\xa4\xdc\x7f\x5b\x9c\x99\xfc\x0f\x00" "\x00\x00\x95\x91\x72\xff\xed\x71\x66\x35\xc9\xff\x25\xe9\xff\xfb\xfc" "\x7f\xfd\x7f\xfd\xff\x16\xfa\xff\xfa\xff\x65\xa2\xff\xaf\xff\xdf\x8d" "\xfe\xbf\xfe\x7f\x99\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x4f\xb9" "\x7f\x77\x9c\x59\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xca\xfd\x1f\x88\x33" "\x93\xff\x01\x00\x00\xa0\x32\x52\xee\xbf\x23\xce\x4c\xfe\x07\x00\x00" "\x80\x52\x59\xec\x73\x08\x93\x94\xfb\x3f\x18\x67\x56\x93\xfc\xaf\xff" "\x5f\xf5\xfe\xff\xdc\x6a\xfd\x7f\xfd\x7f\xfd\xff\xee\xeb\xd7\xff\x5f" "\x59\xfa\xff\xfa\xff\xdd\x54\xa1\xff\xff\x96\xa0\xff\xaf\xff\xaf\xff" "\xaf\xff\xcf\x52\xfa\xad\xff\x9f\x72\xff\x9e\x38\xb3\x9a\xe4\x7f\x00" "\x00\x00\xa8\x83\x94\xfb\x3f\x14\x67\x26\xff\x03\x00\x00\x40\x65\xa4" "\xdc\xff\xe1\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\xbd\x71\x66" "\x35\xc9\xff\xfa\xff\x55\xef\xff\xfb\xfc\x7f\xfd\x7f\xfd\xff\x5e\xeb" "\xd7\xff\x5f\x59\xfa\xff\xfa\xff\xdd\x54\xa1\xff\x5f\xc7\xcf\xff\x8f" "\x3f\xb6\xe8\xff\xf7\x51\xff\xbf\x38\x86\xf4\xff\xe9\x47\xfd\xd6\xff" "\x4f\xb9\xff\x23\x71\x66\x35\xc9\xff\x00\x00\x00\x50\x07\x29\xf7\x7f" "\x34\xce\x4c\xfe\x07\x00\x00\x80\xca\x48\xb9\xff\x63\x71\x66\xf2\x3f" "\x00\x00\x00\x54\x46\xca\xfd\x1f\x8f\x33\xab\x49\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x49\xfa\xff\x2b\xd6\xff\x6f\xbc" "\x14\xea\xff\x37\xe9\xff\x9f\x9f\xcb\xdd\x9f\x2f\xfb\xfa\xfb\xa9\xff" "\xef\xf3\xff\xe9\x57\xfd\xd6\xff\x4f\xb9\xff\x13\x71\x66\x35\xc9\xff" "\x00\x00\x00\x50\x07\x29\xf7\x7f\x32\xce\x4c\xfe\x07\x00\x00\x80\xca" "\x48\xb9\xff\xff\xc7\x99\xc9\xff\x00\x00\x00\x50\x19\x29\xf7\xdf\x19" "\x67\x56\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf" "\x92\xf4\xff\x7d\xfe\x7f\x37\xfa\xff\xfa\xff\x65\x5e\xbf\xfe\xbf\xfe" "\x3f\xbd\xf5\x5b\xff\x3f\xe5\xfe\x5f\x8b\x33\xab\x49\xfe\x07\x00\x00" "\x80\x3a\x48\xb9\xff\xae\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe" "\x4f\xc5\x99\xc9\xff\x00\x00\x00\x50\x32\xab\x96\x3c\x27\xe5\xfe\x5f" "\x8f\x33\xab\x49\xfe\x2f\x5f\xff\x7f\xac\x94\xfd\xff\xc1\x7c\xfd\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x17\x93\xfe\xbf\xfe\x7f\xd0\xff" "\x3f\x6f\x97\xbb\x3f\x5f\xf6\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff" "\x53\xee\xff\x8d\x38\xb3\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x94\xfb\x3f" "\x1d\x67\x26\xff\x03\x00\x00\x40\x65\xa4\xdc\xff\x9b\x71\x66\xf2\x3f" "\x00\x00\x00\x54\x46\xca\xfd\x77\xc7\x99\xd5\x24\xff\x5f\xec\xfe\x7f" "\xe7\xe5\xbb\xf1\xf9\xff\xfa\xff\x41\xff\x5f\xff\x5f\xff\x5f\xff\xff" "\x02\xe9\xff\xeb\xff\x07\xfd\xff\xf3\x76\xb9\xfb\xf3\x65\x5f\xbf\xfe" "\xbf\xfe\x3f\xbd\xf5\x5b\xff\x3f\xe5\xfe\xdf\x8a\x33\xab\x49\xfe\x07" "\x00\x00\x80\x3a\x48\xb9\xff\x9e\x38\x33\xf9\x1f\x00\x00\x00\xfa\xd4" "\x03\xe7\x7c\x89\x94\xfb\x3f\x13\x67\x26\xff\x03\x00\x00\x40\x65\xa4" "\xdc\xff\xd9\x38\xb3\x9a\xe4\xff\xf2\x7d\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x7f\x99\xe8\xff\xeb\xff\x77\xa3\xff\xaf\xff\x5f\xe6" "\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff\x53\xee\xbf\x37\xce\xac\x26" "\xf9\x1f\x00\x00\x00\xea\x20\xe5\xfe\xcf\xc5\x99\xc9\xff\x00\x00\x00" "\x50\x19\x29\xf7\xff\x76\x9c\x99\xfc\x0f\x00\x00\x00\x95\x91\x72\xff" "\xef\xc4\x99\xd5\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xaf\x24\xfd\xff\x85\xfd\xff\xe2\x35\x4c\xff\xbf\x49\xff\x5f\xff" "\xbf\xcc\xeb\xd7\xff\xd7\xff\xa7\xb7\x7e\xeb\xff\xa7\xdc\xff\xf9\x38" "\xb3\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x94\xfb\x7f\x37\xce\x4c\xfe\x07" "\x00\x00\x80\xca\x48\xb9\xff\xf7\xe2\xcc\xe4\x7f\x00\x00\x00\xa8\x8c" "\x94\xfb\xef\x8b\x33\xab\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef" "\xd2\xff\x6f\x6b\x60\xe9\xff\xeb\xff\x9f\x0f\xfd\x7f\x9f\xff\xdf\x8d" "\xfe\xbf\xfe\x7f\x99\xd7\xaf\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x4f\xb9" "\xff\x0b\x71\x66\x35\xc9\xff\x00\x00\x00\x50\x07\x29\xf7\xff\x7e\x9c" "\x99\xfc\x0f\x00\x00\x00\x95\x91\x72\xff\xbe\x38\x33\xf9\x1f\x00\x00" "\x00\x2a\x23\xe5\xfe\xfb\xe3\xcc\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\x7d\xfe\xbf\xfe\xff\x4a\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff" "\xbf\xcc\xeb\xd7\xff\xd7\xff\xa7\xb7\x7e\xeb\xff\xa7\xdc\xbf\x3f\xce" "\x6c\x6f\xfb\xcd\x00\x00\x00\x00\xe5\x95\x72\xff\x17\xe3\xcc\x6a\xf2" "\xef\xff\x00\x00\x00\x50\x07\x29\xf7\x1f\x88\x33\x93\xff\x01\x00\x00" "\xa0\x32\x52\xee\x3f\x18\x67\x56\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xbf\x92\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\x2f" "\xf3\xfa\xf5\xff\xf5\xff\xe9\xad\x9f\xfa\xff\xab\x42\xc8\xb9\x7f\x2a" "\xce\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\xe5\xfe\x43\x71\x66\xf2\x3f" "\x00\x00\x00\x54\x46\xca\xfd\x87\xe3\xcc\xe4\x7f\x00\x00\x00\xa8\x8c" "\x94\xfb\x1f\x88\x33\xab\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xaf\x6d\xff" "\xff\xc5\xef\x77\xac\x53\xff\x5f\xff\x7f\x25\xe8\xff\x97\xa5\xff\xdf" "\xd1\x53\xd7\xff\x5f\x16\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba\xeb\xa7" "\xfe\x7f\x31\x53\xee\x3f\x12\x67\x56\x93\xfc\x0f\x00\x00\x00\x75\x90" "\x72\xff\x97\xe2\xcc\xe4\x7f\x00\x00\x00\xa8\x8c\x94\xfb\xbf\x1c\x67" "\x26\xff\x03\x00\x00\x40\x65\xa4\xdc\x7f\x34\xce\xac\x26\xf9\x5f\xff" "\x5f\xff\x5f\xff\xbf\xb6\xfd\xff\xe5\x7d\xfe\xff\x9a\xf9\xdb\xd5\xff" "\xd7\xff\x3f\x1f\xfa\xff\x65\xe9\xff\x77\xd0\xff\x5f\x16\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xba\xeb\xb7\xfe\x7f\xca\xfd\xc7\xe2\xcc\x6a\x92" "\xff\x01\x00\x00\xa0\x0e\x52\xee\x3f\x1e\x67\x26\xff\x03\x00\x00\x40" "\x65\xa4\xdc\x7f\x22\xce\x4c\xfe\x07\x00\x00\x80\xca\x48\xb9\xff\x64" "\x9c\x59\x4d\xf2\xbf\xfe\xff\xb9\xf5\xff\x07\x96\xe8\x06\xea\xff\x2f" "\xbe\x7e\xfd\xff\x0a\xf4\xff\x5b\xe8\xff\xeb\xff\x9f\x0f\xfd\x7f\xfd" "\xff\x6e\xf4\xff\xf5\xff\xcb\xbc\x7e\xfd\x7f\xfd\x7f\x7a\xeb\xb7\xfe" "\x7f\xca\xfd\x7f\x10\x67\x56\x93\xfc\x0f\x00\x00\x00\x75\x90\x72\xff" "\xa9\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\xe9\x38\x33\xf9\x1f" "\x00\x00\x00\x2a\x23\xe5\xfe\x99\x38\xb3\x9a\xe4\x7f\xfd\x7f\x9f\xff" "\xaf\xff\xaf\xff\xaf\xff\x7f\xe9\xfb\xff\xe9\x18\xd6\xff\xbf\x70\xfa" "\xff\xfa\xff\x41\xff\xff\xbc\xfd\x1f\x7b\xf7\xb9\xab\xd7\x55\xed\x71" "\xf8\x8d\x53\x8e\xa3\x23\xee\x21\xb7\x80\xb8\x00\x2e\x81\x6b\x40\xe2" "\x16\xe8\x2d\xa1\x87\x0e\xa1\xf7\x16\x7a\x0b\x1d\x42\xef\xbd\xf7\xde" "\x7b\x20\xf4\x50\x24\x50\xbc\xc7\x18\x49\x1c\xef\xb5\xb6\xed\xfd\x7a" "\xcf\x35\xc7\xf3\x7c\xc8\x38\xc7\x89\xf0\x8c\x6c\x3e\xfc\x65\x7e\x5a" "\x27\xdd\xcf\x6f\xfd\xfd\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\xdf" "\x3f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x0f\x88\x5b\xec\x7f" "\x00\x00\x00\x98\x46\xee\xfe\x07\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23" "\x77\xff\x83\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xbe\xff\xbf\x4f\xfa\x7f\xfd\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff" "\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff\xc1\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\x7f\x48\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f" "\x34\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x1f\x16\xb7\x34\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\xff\xb8\xfa\xff\xcb\xef\xf6\x9f\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\x65\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff" "\xb3\x6e\xb4\xfe\x3f\x77\xff\xc3\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\x88\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x64\xdc" "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x5f\x1b\xb7\xe4\xfe\xbf\xec\xb6" "\xbb\x86\x6f\x93\xd1\xff\xeb\xff\xf5\xff\x1b\xfc\xfe\xff\x15\xfa\x7f" "\xfd\xff\x76\xe8\xff\xf5\xff\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf" "\xff\x67\xdd\x68\xfd\x7f\xee\xfe\xeb\xe2\x16\x7f\xfe\x0f\x00\x00\x00" "\xd3\xc8\xdd\xff\xa8\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x74" "\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x26\x6e\x69\xb2\xff\xf5" "\xff\xfa\x7f\xfd\xff\x06\xfb\x7f\xdf\xff\xd7\xff\x6f\x88\xfe\x5f\xff" "\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7" "\xee\x7f\x6c\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x17\xb7" "\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x8f\x8f\x5b\xec\x7f\x00\x00\x00" "\x98\x46\xee\xfe\x27\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfb\xa4\xff\xd7\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e" "\xfd\xbf\xfe\x9f\x75\x7b\xef\xff\xef\x73\xfd\x99\x7b\xd4\xfe\x3f\x77" "\xff\xf5\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x62\xdc\x62" "\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x29\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\x9f\x1c\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x1d\xfd\xff\x7f" "\x2f\xd3\xff\xeb\xff\xf5\xff\x77\xfc\xb8\xfe\xff\x78\xe8\xff\xf5\xff" "\x4b\xf4\xff\xfa\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd\xde\xfb\xff\x95" "\xde\xff\xec\xff\x3f\x77\xff\x53\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\xd4\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x5a\xdc" "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x3d\x6e\x69\xb2\xff\xf5\xff" "\xfa\x7f\xdf\xff\xd7\xff\xeb\xff\xf5\xff\xfb\xa4\xff\x1f\xb6\xff\x3f" "\xfb\xbf\x7a\x77\xa5\xff\x3f\x12\xfd\xbf\xfe\xff\xb0\xfe\xff\xde\x47" "\x78\xbf\xfe\x9f\x0e\x46\xeb\xff\x73\xf7\x3f\x23\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\xcf\x8c\x5b\xec\x7f\x00\x00\x00\x98\x46\xee" "\xfe\x1b\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x59\x71\x4b\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x77\xed\xff\x4f\xb5\xec\xff\x6f" "\xff\x31\xfd\xff\x7e\xe8\xff\x87\xed\xff\x97\xe9\xff\x8f\x44\xff\xaf" "\xff\xf7\xfd\x7f\xfd\x3f\xcb\x46\xeb\xff\x73\xf7\x3f\x3b\x6e\x39\xf2" "\xfe\xbf\xd7\xe9\xa3\xfe\x93\x00\x00\x00\xc0\xc9\xc8\xdd\xff\x9c\xb8" "\xa5\xc9\x9f\xff\x03\x00\x00\x40\x07\xb9\xfb\x9f\x1b\xb7\xd8\xff\x00" "\x00\x00\x30\x8d\xdc\xfd\xcf\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xbf\xa8\xef\xff\x5f\x3e\x47\xff\xef\xfb\xff\xfb\xa3\xff\xd7" "\xff\x2f\xd1\xff\xeb\xff\xb7\xfc\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5\xff" "\xb9\xfb\x9f\x1f\xb7\x34\xd9\xff\x00\x00\x00\x30\xbd\x53\xbb\xda\xfd" "\x2f\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x17\xc6\x2d\xf6\x3f" "\x00\x00\x00\x4c\x23\x77\xff\x8b\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x2f\xaa\xff\x9f\xe4\xfb\xff\xfa\xff\xfd\xd1\xff\xeb\xff" "\x97\x1c\xb5\xff\xdf\xe9\xff\xeb\xdf\x45\xff\x3f\xce\xfb\xf5\xff\xfa" "\x7f\xd6\x8d\xd6\xff\xe7\xee\x7f\x71\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\x5f\x12\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x8d" "\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x97\xc5\x2d\x4d\xf6\xbf\xfe" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfb\xa4\xff\xd7\xff\x2f\xf1" "\xfd\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff\xb3\x6e\xb4\xfe\x3f\x77\xff" "\xcb\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x8a\xb8\xe5\x4e" "\xfb\xff\x8a\x4b\xfe\x2a\x00\x00\x00\xe0\x38\xe5\xee\x7f\x65\xdc\xe2" "\xcf\xff\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x15\xb7\x9c\xbd\xff\x4f\x5d" "\xca\x57\x5d\x3a\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef\x93" "\xfe\x5f\xff\xbf\x44\xff\x7f\xee\xfe\xff\xf4\x21\x3f\x9f\xfe\x7f\xac" "\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\x7f\x63\xdc\xe2\xcf\xff" "\x01\x00\x00\x60\x1a\xb9\xfb\x5f\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8d" "\xdc\xfd\xaf\x89\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xd7\xc6\x2d" "\x4d\xf6\xff\x61\xfd\xff\xad\xff\x7f\xf0\xf7\xf5\xff\x47\xa3\xff\x3f" "\xf7\xfb\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\xa2\xff\xf7" "\xfd\xff\x2d\xbf\x5f\xff\xaf\xff\x67\xdd\x68\xfd\x7f\xee\xfe\xd7\xc5" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xf5\x71\x8b\xfd\x0f\x00" "\x00\x00\xd3\xc8\xdd\xff\x86\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee" "\x7f\x63\xdc\xd2\x64\xff\x1f\xff\xf7\xff\xaf\xd1\xff\xeb\xff\xf5\xff" "\x71\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4c\xff\xaf\xff\xdf\xf2" "\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\x7f\x53\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\xdf\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8d" "\xdc\xfd\x6f\x89\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xb7\xc6\x2d" "\x4d\xf6\xff\xf1\xf7\xff\xbe\xff\xaf\xff\x3f\xcf\xfe\xff\x94\xfe\x3f" "\xe9\xff\xe3\xd7\x55\xff\xaf\xff\x3f\x0f\xfa\x7f\xfd\xff\x4e\xff\x7f" "\xc1\x4e\xba\x9f\xdf\xfa\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee" "\xbf\xe9\xcc\xd4\xeb\xb7\xff\x01\x00\x00\xa0\x83\x9b\xce\xfc\xf5\xf4" "\xee\x6d\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xf6\xb8\xc5\xfe" "\x07\x00\x00\x80\x69\xe4\xee\x7f\x47\xdc\xd2\x64\xff\xeb\xff\xf5\xff" "\x27\xde\xff\xfb\xfe\x7f\xd1\xff\xc7\xaf\xab\xfe\x5f\xff\x7f\x1e\xf4" "\xff\xfa\xff\x9d\xfe\xff\x82\x9d\x74\x3f\xbf\xf5\xf7\xeb\xff\xf5\xff" "\xac\x1b\xad\xff\xcf\xdd\xff\xce\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\xbf\x2b\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb1\xfb\x0f\xfe\xc7" "\xef\xf6\x3f\x00\x00\x00\x4c\xe9\xdd\x67\xfe\x7a\x7a\xf7\x9e\xb8\xa5" "\xc9\xfe\x6f\xdc\xff\x5f\x73\xb1\xfd\xff\xd5\x77\xfa\xbf\xf5\xff\xe7" "\x7e\xbf\xfe\xff\x58\xfa\xff\x9b\xce\xfe\xbd\xa7\xff\xd7\xff\x6f\x89" "\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xc7\xe9\xff\xe3\x07\xae" "\xd5\xff\x33\x9e\xd1\xfa\xff\xdc\xfd\xef\x8d\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\xfb\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff" "\xe6\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x7f\xdc\xd2\x64\xff" "\x37\xee\xff\x27\xf9\xfe\xff\x7d\x6f\x89\x17\xe8\xff\xe7\xed\xff\x7d" "\xff\x3f\xae\xfe\x5f\xff\x7f\x2e\xfa\x7f\xfd\xff\x4e\xff\x7f\xc1\x4e" "\xba\x9f\xdf\xfa\xfb\xc7\xe9\xff\x7d\xff\x9f\x71\x8d\xd6\xff\xe7\xee" "\xff\x40\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x18\xb7\xd8" "\xff\x00\x00\x00\x30\x8d\xdc\xfd\x1f\x8a\x5b\xec\x7f\x00\x00\x00\x98" "\x46\xee\xfe\x0f\xc7\x2d\x4d\xf6\xbf\xfe\x7f\xeb\xfd\xff\x05\x7e\xff" "\x3f\x7e\x21\xf5\xff\xfa\xff\x9d\xfe\x5f\xff\xbf\x67\xfa\x7f\xfd\xff" "\x12\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb" "\xff\x23\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x68\xdc\x62" "\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x2c\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\x3f\x1e\xb7\x34\xd9\xff\xfa\xff\xa6\xfd\x7f\xfc\xfc\xfb" "\xec\xff\x6f\xff\x49\xf4\xff\x4d\xfa\xff\xeb\xf4\xff\x3b\xfd\xff\xa1" "\xf4\xff\xfa\xff\x25\xfa\x7f\xfd\xff\x96\xdf\xaf\xff\xd7\xff\xb3\x6e" "\xb4\xfe\x3f\x77\xff\x27\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xc9\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x54\xdc\x62\xff" "\x03\x00\x00\xc0\x34\x72\xf7\x7f\x3a\x6e\xb8\xe7\x3d\x4e\xee\x49\xc7" "\xeb\xca\x43\x7e\x3c\x7a\x73\xfd\xbf\xfe\xdf\xf7\xff\x27\xec\xff\xaf" "\xda\xed\x76\xbe\xff\xaf\xff\x1f\x84\xfe\x5f\xff\xbf\x44\xff\xaf\xff" "\xdf\xf2\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee\xff\x4c\xdc\xe2" "\xcf\xff\x01\x00\x00\x60\x1a\xb9\xfb\x3f\x1b\xb7\xd8\xff\x00\x00\x00" "\x30\x8d\xdc\xfd\x9f\x8b\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xcf" "\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xdf\x6c\xff\x7f\xf5\x30\xdf" "\xff\xd7\xff\x9f\xa1\xff\x3f\x37\xfd\xbf\xfe\x7f\x89\xfe\x5f\xff\xbf" "\xe5\xf7\xeb\xff\xf5\xff\xac\x1b\xad\xff\xcf\xdd\xff\x85\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x31\x6e\xb1\xff\x01\x00\x00\x60" "\x1a\xb9\xfb\xbf\x14\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x5f\x8e" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xbf\xd9\xfe\xff\xf0\xef\xff\xeb" "\xff\xcf\xd0\xff\x8f\x41\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd" "\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\x7f\x25\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\x5f\x8d\x5b\xec\x7f\x00\x00\x00\x98\x46\xee" "\xfe\xaf\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\xd7\xe3\x96\x26" "\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x7d\xd2\xff\xeb" "\xff\x97\xe8\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f\xff\xcf\xba\xd1\xfa\xff" "\xdc\xfd\xdf\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x37\xe3" "\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x5b\x71\x8b\xfd\x0f\x00\x00" "\x00\xd3\xc8\xdd\xff\xed\xb8\xa5\xc9\xfe\x9f\xb9\xff\x5f\xfa\xc7\xf4" "\xff\x07\xf4\xff\xfa\xff\x9d\xfe\x5f\xff\xbf\x67\xfa\x7f\xfd\xff\x12" "\xfd\xbf\xfe\x7f\xcb\xef\xd7\xff\xeb\xff\x59\x37\x5a\xff\x9f\xbb\xff" "\x3b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x6e\xdc\x62\xff" "\x03\x00\x00\xc0\x34\x72\xf7\x7f\x2f\x6e\xb1\xff\x01\x00\x00\x60\x1a" "\xb9\xfb\xbf\x1f\xb7\x34\xd9\xff\x33\xf7\xff\x4b\xf4\xff\x07\xc1\x8d" "\xfe\x5f\xff\xbf\xd3\xff\xeb\xff\xf7\x4c\xff\xaf\xff\x5f\xa2\xff\xd7" "\xff\x6f\xf9\xfd\xfa\x7f\xfd\x3f\xeb\x4e\xa8\xff\xbf\x72\x77\x48\xff" "\x9f\xbb\xff\x07\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x61" "\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x28\x6e\xb1\xff\x01\x00" "\x00\x60\x1a\xb9\xfb\x7f\x1c\xb7\xcc\xb3\xff\xef\x77\xf3\xc2\xdf\xd4" "\xff\x1f\x7b\xff\x7f\xe6\x37\xd1\xf8\xfd\xff\x01\xfd\xbf\xfe\x7f\xa7" "\xff\xd7\xff\xef\x99\xfe\x5f\xff\xbf\x44\xff\xaf\xff\xdf\xf2\xfb\xf5" "\xff\xfa\x7f\xd6\x8d\xf6\xfd\xff\xdc\xfd\x3f\x89\x5b\xe6\xd9\xff\x00" "\x00\x00\xd0\x5e\xee\xfe\x9f\xc6\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77" "\xff\xcf\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\xe7\x71\x4b\x93" "\xfd\xaf\xff\xef\xfa\xfd\xff\x03\xfa\xff\x76\xfd\xff\xe5\x3b\xfd\xbf" "\xfe\xff\x12\xd3\xff\xeb\xff\x97\xe8\xff\xf5\xff\x5b\x7e\xbf\xfe\x5f" "\xff\xcf\xba\xd1\xfa\xff\xdc\xfd\xbf\x88\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x2f\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x57" "\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xeb\xb8\xa5\xc9\xfe\xd7" "\xff\xeb\xff\xf5\xff\xad\xfa\x7f\xdf\xff\xd7\xff\x5f\x72\xfa\x7f\xfd" "\xff\x12\xfd\xbf\xfe\x7f\xcb\xef\xcf\xfe\x3f\x7f\xdf\xe9\xff\xf5\xff" "\xdc\xdd\x68\xfd\x7f\xee\xfe\xdf\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\xb7\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\xff\xbb\xb8" "\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x7d\xdc\xd2\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4f\xfa\x7f\xfd\xff\x12\xfd" "\xbf\xfe\x7f\xcb\xef\xf7\xfd\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\xdf" "\x12\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x3f\xc4\x2d\xf6\x3f" "\x00\x00\x00\x4c\x23\x77\xff\x1f\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91" "\xbb\xff\xd6\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xa7\xec\xff\xff\x4f\xff" "\xaf\xff\xd7\xff\x8f\x42\xff\xaf\xff\x5f\xa2\xff\xd7\xff\x6f\xf9\xfd" "\xfa\x7f\xfd\x3f\xeb\x46\xeb\xff\x73\xf7\xff\x29\x6e\x69\xb2\xff\x01" "\x00\x00\xa0\x83\xdc\xfd\x7f\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee" "\xfe\xbf\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x5f\xe3\x96\x26" "\xfb\x5f\xff\xaf\xff\x3f\xff\xfe\xff\xca\xfa\xf7\x1e\xb6\xff\xf7\xfd" "\x7f\xfd\xbf\xfe\x7f\x18\xf3\xf6\xff\x57\xe9\xff\xf5\xff\x17\xdd\xff" "\xdf\x70\xe3\xc1\x0f\xeb\xff\xb7\xf9\x7e\xfd\xbf\xfe\x9f\x75\xa3\xf5" "\xff\xb9\xfb\xff\x16\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xbf" "\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x3f\xe2\x16\xfb\x1f\x00" "\x00\x00\xa6\x91\xbb\xff\xb6\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xa7\xfc" "\xfe\xff\x42\xff\x7f\x4a\xff\xaf\xff\x3f\xeb\xe7\xd3\xff\xef\xd7\xbc" "\xfd\xbf\xef\xff\xeb\xff\x7d\xff\x5f\xff\xaf\xff\xd7\xff\xb3\x66\xb4" "\xfe\x3f\x77\xff\x3f\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xaf\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x77\xdc\x62\xff\x03" "\x00\x00\xc0\x34\x72\xf7\xff\x27\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x6e" "\xfd\xff\x4e\xff\xaf\xff\x3f\xeb\xe7\xd3\xff\xef\x97\xfe\x5f\xff\xbf" "\x44\xff\xaf\xff\xdf\xf2\xfb\xf5\xff\xfa\x7f\xd6\x8d\xd6\xff\xe7\xee" "\xff\x5f\x00\x00\x00\xff\xff\xe8\xa2\x3f\x6f", 24474)); NONFAILING(syz_mount_image( /*fs=*/0x200000000400, /*dir=*/0x2000000000c0, /*flags=MS_POSIXACL|MS_REC|MS_SILENT|MS_NOSUID|MS_NODIRATIME*/ 0x1c802, /*opts=*/0x200000002740, /*chdir=*/1, /*size=*/0x5f9a, /*img=*/0x200000003100)); 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_binfmt_misc())) printf("the reproducer may not work as expected: binfmt_misc setup failed: " "%s\n", 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); if ((reason = setup_swap())) printf("the reproducer may not work as expected: swap setup failed: %s\n", reason); install_segv_handler(); use_temporary_dir(); do_sandbox_none(); return 0; }