// https://syzkaller.appspot.com/bug?id=97c2992a8999df8468de0e437a2d5893886a9918 // 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 static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { 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 int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len) { 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; unsigned n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != hdr->nlmsg_len) exit(1); n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (n < sizeof(struct nlmsghdr)) exit(1); if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr)) exit(1); if (hdr->nlmsg_type != NLMSG_ERROR) exit(1); return ((struct nlmsgerr*)(hdr + 1))->error; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name) { 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); 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) { return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } 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) { 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(nlmsg, sock); if (err < 0) { return -1; } return 0; } static int nl80211_join_ibss(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, struct join_ibss_props* props) { 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(nlmsg, sock); if (err < 0) { return -1; } return 0; } static int get_ifla_operstate(struct nlmsg* nlmsg, int ifindex) { 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); 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) { int ifindex = if_nametoindex(interface); while (true) { usleep(1000); int ret = get_ifla_operstate(nlmsg, ifindex); 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) { int ifindex = if_nametoindex(interface); if (ifindex == 0) { return -1; } int ret = nl80211_set_interface(nlmsg, sock, nl80211_family_id, ifindex, NL80211_IFTYPE_ADHOC); 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); 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 -1; } return 0; } static void initialize_wifi_devices(void) { uint8_t mac_addr[6] = WIFI_MAC_BASE; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock < 0) { return; } int hwsim_family_id = netlink_query_family_id(&nlmsg, sock, "MAC80211_HWSIM"); int nl80211_family_id = netlink_query_family_id(&nlmsg, sock, "nl80211"); 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) < 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); if (ret < 0) exit(1); } close(sock); } #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 { uint8_t type; uint8_t opcode; uint16_t id; }; #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 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 = 241; if (dup2(vhci_fd, kVhciFd) < 0) exit(1); close(vhci_fd); vhci_fd = kVhciFd; struct vhci_vendor_pkt vendor_pkt; if (read(vhci_fd, &vendor_pkt, sizeof(vendor_pkt)) != sizeof(vendor_pkt)) exit(1); if (vendor_pkt.type != HCI_VENDOR_PKT) exit(1); pthread_t th; if (pthread_create(&th, NULL, event_thread, NULL)) exit(1); int ret = ioctl(hci_sock, HCIDEVUP, vendor_pkt.id); if (ret) { if (errno == ERFKILL) { rfkill_unblock_all(); ret = ioctl(hci_sock, HCIDEVUP, vendor_pkt.id); } if (ret && errno != EALREADY) exit(1); } struct hci_dev_req dr = {0}; dr.dev_id = vendor_pkt.id; dr.dev_opt = SCAN_PAGE; if (ioctl(hci_sock, HCISETSCAN, &dr)) exit(1); struct hci_ev_conn_request request; memset(&request, 0, sizeof(request)); memset(&request.bdaddr, 0xaa, 6); *(uint8_t*)&request.bdaddr.b[5] = 0x10; request.link_type = ACL_LINK; hci_send_event_packet(vhci_fd, HCI_EV_CONN_REQUEST, &request, sizeof(request)); struct hci_ev_conn_complete complete; memset(&complete, 0, sizeof(complete)); complete.status = 0; complete.handle = HCI_HANDLE_1; memset(&complete.bdaddr, 0xaa, 6); *(uint8_t*)&complete.bdaddr.b[5] = 0x10; complete.link_type = ACL_LINK; complete.encr_mode = 0; hci_send_event_packet(vhci_fd, HCI_EV_CONN_COMPLETE, &complete, sizeof(complete)); struct hci_ev_remote_features features; memset(&features, 0, sizeof(features)); features.status = 0; features.handle = HCI_HANDLE_1; hci_send_event_packet(vhci_fd, HCI_EV_REMOTE_FEATURES, &features, sizeof(features)); struct { struct hci_ev_le_meta le_meta; struct hci_ev_le_conn_complete le_conn; } le_conn; memset(&le_conn, 0, sizeof(le_conn)); le_conn.le_meta.subevent = HCI_EV_LE_CONN_COMPLETE; memset(&le_conn.le_conn.bdaddr, 0xaa, 6); *(uint8_t*)&le_conn.le_conn.bdaddr.b[5] = 0x11; le_conn.le_conn.role = 1; le_conn.le_conn.handle = HCI_HANDLE_2; hci_send_event_packet(vhci_fd, HCI_EV_LE_META, &le_conn, sizeof(le_conn)); pthread_join(th, NULL); close(hci_sock); } static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); 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 = 0; 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); setup_common(); initialize_vhci(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } initialize_wifi_devices(); loop(); exit(1); } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void setup_usb() { if (chmod("/dev/raw-gadget", 0666)) exit(1); } static void setup_sysctl() { static struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_enable", "1"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) printf("write to %s failed: %s\n", files[i].name, strerror(errno)); } } #define FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } 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 loop(void) { int i, call, thread; for (call = 0; call < 10; 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, 45); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } uint64_t r[3] = {0xffffffffffffffff, 0x0, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: NONFAILING(memcpy((void*)0x20002040, "./file0\000", 8)); syscall(__NR_mkdirat, 0xffffff9c, 0x20002040ul, 0ul); break; case 1: NONFAILING(memcpy((void*)0x20000100, "/dev/fuse\000", 10)); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000100ul, 0x42ul, 0ul); if (res != -1) r[0] = res; break; case 2: NONFAILING(memcpy((void*)0x200020c0, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20002100, "fuse\000", 5)); NONFAILING(memcpy((void*)0x20002140, "fd", 2)); NONFAILING(*(uint8_t*)0x20002142 = 0x3d); NONFAILING(sprintf((char*)0x20002143, "0x%016llx", (long long)r[0])); NONFAILING(*(uint8_t*)0x20002155 = 0x2c); NONFAILING(memcpy((void*)0x20002156, "rootmode", 8)); NONFAILING(*(uint8_t*)0x2000215e = 0x3d); NONFAILING(sprintf((char*)0x2000215f, "%023llo", (long long)0x4000)); NONFAILING(*(uint8_t*)0x20002176 = 0x2c); NONFAILING(memcpy((void*)0x20002177, "user_id", 7)); NONFAILING(*(uint8_t*)0x2000217e = 0x3d); NONFAILING(sprintf((char*)0x2000217f, "%020llu", (long long)0)); NONFAILING(*(uint8_t*)0x20002193 = 0x2c); NONFAILING(memcpy((void*)0x20002194, "group_id", 8)); NONFAILING(*(uint8_t*)0x2000219c = 0x3d); NONFAILING(sprintf((char*)0x2000219d, "%020llu", (long long)0)); NONFAILING(*(uint8_t*)0x200021b1 = 0x2c); NONFAILING(*(uint8_t*)0x200021b2 = 0); syscall(__NR_mount, 0ul, 0x200020c0ul, 0x20002100ul, 0ul, 0x20002140ul); break; case 3: res = syscall(__NR_read, r[0], 0x200077c0ul, 0x2020ul); if (res != -1) NONFAILING(r[1] = *(uint64_t*)0x200077c8); break; case 4: NONFAILING(*(uint32_t*)0x20004200 = 0x50); NONFAILING(*(uint32_t*)0x20004204 = 0); NONFAILING(*(uint64_t*)0x20004208 = r[1]); NONFAILING(*(uint32_t*)0x20004210 = 7); NONFAILING(*(uint32_t*)0x20004214 = 0x1f); NONFAILING(*(uint32_t*)0x20004218 = 1); NONFAILING(*(uint32_t*)0x2000421c = 0x2045402); NONFAILING(*(uint16_t*)0x20004220 = 0); NONFAILING(*(uint16_t*)0x20004222 = 0xfffc); NONFAILING(*(uint32_t*)0x20004224 = 0); NONFAILING(*(uint32_t*)0x20004228 = 0); NONFAILING(*(uint16_t*)0x2000422c = 0); NONFAILING(*(uint16_t*)0x2000422e = 0); NONFAILING(*(uint32_t*)0x20004230 = 0); NONFAILING(*(uint32_t*)0x20004234 = 0); NONFAILING(*(uint32_t*)0x20004238 = 0); NONFAILING(*(uint32_t*)0x2000423c = 0); NONFAILING(*(uint32_t*)0x20004240 = 0); NONFAILING(*(uint32_t*)0x20004244 = 0); NONFAILING(*(uint32_t*)0x20004248 = 0); NONFAILING(*(uint32_t*)0x2000424c = 0); syscall(__NR_write, r[0], 0x20004200ul, 0x50ul); break; case 5: NONFAILING(memcpy((void*)0x20004280, "./file0\000", 8)); res = syscall(__NR_openat, 0xffffff9c, 0x20004280ul, 0ul, 0ul); if (res != -1) r[2] = res; break; case 6: NONFAILING(memcpy( (void*)0x200021c0, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x15\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x5a\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc9\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\xff\xff\xff\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x39\x02\x5d\xf2\x29\x7a\xb4\x7f\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x28\x60\x71\x48\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf9\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 8192)); NONFAILING(*(uint64_t*)0x200062c0 = 0); NONFAILING(*(uint64_t*)0x200062c8 = 0); NONFAILING(*(uint64_t*)0x200062d0 = 0); NONFAILING(*(uint64_t*)0x200062d8 = 0); NONFAILING(*(uint64_t*)0x200062e0 = 0); NONFAILING(*(uint64_t*)0x200062e8 = 0); NONFAILING(*(uint64_t*)0x200062f0 = 0); NONFAILING(*(uint64_t*)0x200062f8 = 0); NONFAILING(*(uint64_t*)0x20006300 = 0); NONFAILING(*(uint64_t*)0x20006308 = 0x20000080); NONFAILING(*(uint32_t*)0x20000080 = 0x20); NONFAILING(*(uint32_t*)0x20000084 = 0); NONFAILING(*(uint64_t*)0x20000088 = 0); NONFAILING(*(uint64_t*)0x20000090 = 0); NONFAILING(*(uint32_t*)0x20000098 = 0); NONFAILING(*(uint32_t*)0x2000009c = 0); NONFAILING(*(uint64_t*)0x20006310 = 0); NONFAILING(*(uint64_t*)0x20006318 = 0); NONFAILING(*(uint64_t*)0x20006320 = 0); NONFAILING(*(uint64_t*)0x20006328 = 0); NONFAILING(*(uint64_t*)0x20006330 = 0); NONFAILING(*(uint64_t*)0x20006338 = 0); NONFAILING(syz_fuse_handle_req(r[0], 0x200021c0, 0x2000, 0x200062c0)); break; case 7: NONFAILING(memcpy((void*)0x20000740, "./file0\000", 8)); syscall(__NR_lstat, 0x20000740ul, 0ul); break; case 8: syscall(__NR_fcntl, r[2], 0x402ul, 0x80000016ul); break; case 9: NONFAILING(memcpy( (void*)0x200042c0, "\x9f\xe0\x23\x92\xad\xb7\xd8\x0b\x7d\x09\x20\x69\x49\x93\x7e\x96\xce" "\x84\x3c\x3c\x2b\xae\xc8\x7c\x62\xb1\xc5\x13\x48\x9d\x4a\x4e\x22\x60" "\x15\x3c\xab\x3e\xe9\x2f\x0d\x61\x64\xd4\x6c\x1b\x5d\x7a\x01\xf9\x33" "\x3c\x39\x7c\x0a\x46\xc8\xfc\x0e\x9f\x00\xf9\x60\xca\xef\x62\x0a\xf8" "\xf3\x80\x4f\x4a\x8e\x44\x2d\xc3\x7a\xf1\x9e\x13\xb3\x87\xf2\x9e\xf1" "\x5a\xbc\xcb\xea\xef\x1b\x55\xe4\x8c\xb9\xc6\x8b\xa1\x88\xa7\x54\xa7" "\x4b\x74\x3f\x50\x36\x12\x54\xf0\x31\x83\xb9\xea\xd1\xde\x66\x0a\xa0" "\x0b\x40\x87\xa0\x79\xbf\xac\x00\x76\x5b\x7f\x6c\xff\xf9\x16\x4b\x5f" "\x7f\x5c\x80\xb3\xe1\x02\x1b\x01\x87\xf8\x2c\xd0\xdf\xd9\x74\x61\xca" "\x09\x16\x81\x6b\x86\x01\x8d\x7b\xbe\xea\xa3\x59\xbe\x3d\x47\x61\x08" "\xc8\x95\x19\x76\xc5\xeb\x92\xe1\xac\x2d\x5d\x61\xcd\x01\x93\x92\x83" "\x68\x29\x86\x64\x95\x9f\x95\x0c\xe5\x8c\x95\x24\x13\x20\x19\x94\x48" "\x27\x67\x5c\x3e\x88\x01\x35\x31\xad\x04\x88\x95\x79\xe0\x16\x0e\xb6" "\x64\x86\x46\x94\xb8\x71\xc3\x72\xd1\xda\x32\xd7\x82\xa4\x2f\xb8\x21" "\xf0\xa1\x54\xc7\x77\x86\xd0\x45\x13\x6e\x97\x7a\xa5\xed\x7e\x9f\x49" "\x93\x65\x04\x7c\xc2\x65\x58\x6c\x28\x30\x04\xae\x36\x8f\x03\xc8\x06" "\x34\x6c\xc8\x93\x3a\xf2\xbe\x68\x2f\x47\x69\xe8\xc5\x7d\x5a\x4b\xe4" "\x7d\xfd\x5c\xe1\x37\x2a\x99\xd8\x9a\xa9\xd3\x2b\x82\xc0\xe5\x28\x62" "\x03\x05\x9e\xfd\x6a\x5d\xd7\x8d\x03\xcb\xc0\x23\xe7\x2a\xd1\x27\x4e" "\x59\x14\x35\xb9\x7a\xae\x71\x1e\x18\x7f\xc7\x54\xef\x66\xba\x4a\x40" "\x66\xbd\xda\xbc\x0d\x55\x3e\x52\x32\x92\x8e\x35\x12\xc9\x0c\xc6\xb7" "\xb9\x24\x37\x8c\x91\x17\x07\xbc\x2e\x04\xbe\xac\x0f\x87\x27\x4c\xaa" "\x2e\x6a\x2d\x24\xfd\xe0\x29\xb2\x28\x72\x18\xda\x80\xef\xbe\xb3\x49" "\x6c\x4e\x80\x2c\x2b\x97\xc1\x71\x13\x63\x00\x6b\xae\x65\x16\x6a\xfc" "\xd0\x60\x7a\xd5\x38\x5f\xeb\xf4\xd9\x07\xb1\x49\x43\x8e\xe6\x30\xeb" "\x64\x5c\x60\x9c\x50\x8a\xce\xa6\x5b\xd8\x0f\x75\xb7\x72\x48\x11\xd9" "\xf9\xb0\xc4\xe5\x7c\x10\x67\x7e\xf2\x7d\x16\x7c\x73\x6c\xc1\x05\x10" "\x10\xfa\x81\x4d\x9d\x56\xb8\x90\x02\xb4\x32\xc2\x1e\xf8\x45\x39\x7e" "\xf7\x69\x1f\xe8\x1f\x3f\x8d\xc3\x8f\x43\xb3\xf7\x26\x49\x50\xe1\x55" "\x97\x9e\x19\x91\x85\xee\x85\x10\x57\x5b\x77\x9f\x01\x8a\x99\x81\x29" "\x1d\x6a\xd9\x6a\x69\x31\x8e\xda\x2d\x62\x80\xd6\x8c\xe4\x36\x93\xe6" "\x02\xca\xe2\x71\xd2\x12\x4d\x2a\x65\x12\x81\x8e\x39\x1c\x17\x3e\xd5" "\xf4\xb0\x73\xec\x38\xe5\xba\x3e\x7e\x98\xde\xbc\x5a\x5f\x93\xc2\x7d" "\xcd\xec\x38\x17\x6c\xd2\x54\xcb\xb7\x26\x6b\xdd\xe8\xaa\x26\x4f\xad" "\xcc\xcb\x2e\x6f\xc9\xbe\x25\xbf\x1e\x16\x16\x1b\x93\xf6\x49\x93\x3c" "\x0c\x07\x58\x3a\x8c\x4d\x6d\xb6\x7c\xce\xdc\x99\xf4\xd0\x89\x4d\xf8" "\xf8\x3e\xc8\x57\xc5\x2e\xbf\x88\xe6\xb1\x28\x5d\xba\x4f\x05\x38\x74" "\x80\x36\x87\xe9\x51\xa5\x60\xa5\x06\x7d\x27\x1e\xc1\x4b\x32\x66\x36" "\xda\x3c\xcc\x92\xf9\x6a\xfb\x87\x2c\x2a\x6b\x4b\x16\xb9\x6c\xc9\xf9" "\x11\x69\x5c\x1f\x2d\x25\xf7\x8b\x60\x75\x6d\xf8\x5f\x2f\xb4\x61\xf8" "\x41\xfe\x24\xf5\xc7\xd6\x72\x9e\x7c\xcb\xa5\xa2\xa4\xff\x59\xd0\x1f" "\x06\xb9\x40\xec\x55\x16\x15\x6f\x2f\x02\x2d\xb7\xc1\x2c\xb2\x99\x47" "\xeb\x4d\xa1\xf6\x68\x35\xfb\x39\x5c\x58\x87\xb7\x87\xb4\xf3\x62\x7f" "\xd0\xbd\xfb\xf8\xa9\x1c\xc2\xb8\x8a\x18\x00\x92\x42\x7b\x79\xf9\x1b" "\x81\x12\x6a\xa6\xe1\x4b\x10\x6c\x9d\x03\xa4\x7e\x00\x3d\xca\xbb\x67" "\x57\x24\x19\xd8\x7c\x29\x47\x43\x4e\x9e\xbd\x80\x67\x97\xa3\x10\x46" "\x15\xaf\x4b\x86\x97\xc6\x92\x5c\xdc\xc1\xf4\x03\x3f\xb6\x6b\x9b\x28" "\x86\x97\xd6\xc7\xfe\x67\x36\x60\x4b\x7e\xa7\xca\xb6\xa0\x78\x55\xc6" "\xd7\x29\xe2\x20\xf0\xc0\x7b\x34\x1e\x95\xa6\x94\x21\xe0\xa5\x27\x7b" "\xee\x90\x5f\x09\xf1\x9f\xaa\xd6\x70\xe7\xdf\x8d\xcd\x8a\xfe\xed\xc7" "\x34\x9d\x10\x42\xde\x60\x38\xcb\xad\x9d\xb5\x60\xaf\xf8\xfa\xc6\x56" "\xa1\x64\x74\x81\x6a\x91\xfc\xa4\x46\x7f\x97\xe3\xce\x60\x98\x1c\x87" "\xeb\xb7\xa7\xf7\x9e\x2f\x16\x84\x06\x40\xfc\x0d\xda\xb7\xac\xe6\x70" "\x9f\x19\x0e\x22\x92\x24\xd0\xe3\x65\xec\xa5\x89\x21\xc6\xea\x2f\xd0" "\x93\xb1\xc9\xcf\x5d\xba\x8e\xe3\xb2\xfd\x52\xba\xa5\x2a\xee\x25\x44" "\xa8\x82\x87\x75\x9e\xf5\x79\xe7\xf1\x1b\xc0\xae\x5e\x1c\x0a\x71\x6e" "\x4e\x80\x50\x56\x87\x56\x0b\x85\x68\x89\x91\x5d\x5c\xc9\x36\xe5\x62" "\x37\x0e\x76\x6e\xf1\x13\xc2\x25\xf7\x57\x4e\xd8\xe5\x2b\x59\xd6\x97" "\x27\x15\xff\xca\x69\x81\x0f\x7c\x28\x1a\x0c\xd0\x23\xd6\x35\x20\x8d" "\x17\x92\x2e\x0e\x5b\xa9\x88\x71\x1d\xa0\x82\xfc\x62\xa3\xf6\x4e\x31" "\x7b\x6c\x07\x43\xae\x93\x95\x53\xfa\x84\x34\x90\xe2\x5c\x9d\x67\x0c" "\xf2\x25\xcb\x74\xb1\x8b\x9f\xff\xb6\x97\xaf\x96\x79\x18\x5b\x89\x8d" "\x57\x7d\x2d\x3e\x03\xae\x43\x06\xc8\x9d\xc6\x05\x14\x3a\x37\xb8\x38" "\x7e\x3e\x27\xd8\x7b\x30\x2a\x55\x59\x90\xb8\x25\xc1\x1f\xc0\x61\x75" "\x05\x64\xed\x71\x64\xa4\xb7\xa2\x7d\x6f\x76\xfc\x2c\xbf\xfa\x37\xad" "\x69\x73\xa1\xb6\x65\x68\x3e\xab\x60\x0a\x69\x09\xaa\x38\x64\x69\x56" "\xf8\xc2\x78\x3e\xa4\x5e\x37\xc5\xb0\xe3\x30\x9c\x62\x7a\xdb\x6b\x98" "\x68\xee\x8f\xd9\x93\xeb\x20\x35\xc0\x5e\xbe\x6d\xd8\x7f\xd4\x85\x54" "\x6d\xa5\xf5\x25\x90\x7c\xec\x71\xe3\x99\x03\x79\xda\xc6\xef\xc3\x53" "\x42\xf3\xe5\xc5\x49\xfe\x01\xb9\x8d\x8c\x3b\x52\x56\xec\xf5\x5a\xf8" "\x8e\xb9\x71\xe7\xe5\x74\xd6\x21\xd9\xfc\x91\x8e\xc6\xad\x82\x28\xb2" "\x91\x16\x39\x04\x44\x7b\x8e\x6e\xb7\x7a\x68\xb8\xa6\x9c\xe4\x61\x36" "\x9c\x0d\x09\x36\x07\xb0\xb3\xc6\xd5\x6d\xc1\x06\xde\x92\x51\x1f\x36" "\x07\x98\xb4\x7d\xeb\x18\x31\x84\x71\x29\xbd\x84\xb3\x21\xf7\xec\xd0" "\x01\x23\x9d\x2c\xf4\xd5\xcd\x26\x35\x94\xe4\x06\xe2\x8d\x32\x54\x4e" "\xb2\x0e\x1d\x8f\x84\xc9\xa1\xe7\xa1\xd2\x02\x7b\x3e\x60\xc7\xeb\x15" "\x07\xed\x0b\x84\x0f\x54\x36\x3a\x52\x53\x54\x54\x97\x9b\x9d\x89\xbc" "\x22\x08\x95\xfa\x77\xde\x42\x60\x2b\x68\x31\xf7\x82\xc7\xb9\x52\xf2" "\xc2\x53\xb7\x89\x97\x8b\x65\xcb\xbb\xbc\x00\x46\xd6\xd1\x35\x2f\x61" "\x55\x41\xf7\xb2\xf1\x7b\xc3\x6c\xd0\xd2\x89\xd4\xa6\xd4\x89\x66\x42" "\xc1\x15\xd0\x8b\x75\x09\x23\xb8\xdf\x48\x2b\xde\x53\x51\xd9\xd2\xb3" "\xd7\xb1\xb7\xef\x55\x22\xe9\xa6\x43\x04\x1a\xb0\x1f\x5a\x84\xea\x00" "\x1d\x8b\x1e\x54\xff\x98\x62\x76\x7b\x1b\x7e\x59\x22\xf9\x50\xa2\x6a" "\x00\x9e\x4f\xda\x58\x3a\xb5\xd6\xd6\x39\xb4\x84\x44\x01\x61\xf5\x76" "\x14\xe8\xda\x14\xbb\x37\x11\x0d\x52\x89\xc1\x7f\x67\x6b\x25\xf9\xb4" "\xf2\xec\xc9\x55\xad\x28\x8b\xcf\x43\x8c\x7a\x03\x86\xf4\xfd\x37\x39" "\x59\xc7\x84\x1e\x85\x9b\xd4\x85\x1a\xd3\xc2\xe7\x2f\x2b\x21\x03\x93" "\x44\x8e\xba\x7f\x83\xdb\x5e\x5d\xcf\x50\x96\xf0\xa3\x5d\x43\xdc\x00" "\x66\xb3\x92\x0f\x77\x04\xbd\x8d\x7d\x81\x54\x31\xa5\xf8\xa0\x73\xb2" "\x5b\xd8\x7b\x1a\x69\x90\xa2\x53\x4b\x5b\x59\x8d\x17\x64\xea\xc7\x49" "\x8a\x8f\x06\x4f\x2a\x46\x8f\x72\x50\x23\xba\x28\xaf\x64\x14\xa8\xf3" "\x43\x2c\xf6\x0e\xaa\x44\x77\xff\x03\xab\x43\x70\xca\xbe\xb0\x1d\x73" "\x6c\x13\x73\x73\x0d\xa1\xb1\x92\x03\x89\x39\xb7\x8c\xa6\x12\x0b\x7b" "\xd0\xe5\x2d\x8c\x51\xc5\xb7\x28\x8c\x85\x3f\xc8\x1f\x97\xc7\x83\xbc" "\x73\xd1\xcf\xdf\xa4\xa3\x5c\x89\xa1\xf0\xdd\x8d\x5d\x68\x00\x43\x8b" "\x0b\xde\xb3\x14\x52\x73\x78\x25\x0f\xc7\x21\xbb\x4f\x13\xdc\xcd\x14" "\xd5\x57\x68\xcb\x0f\xaa\x9a\x05\x14\x7c\xaf\x37\xd0\x78\x1c\x4e\x83" "\x3e\x76\xb1\x6e\x86\x05\xb9\x63\xbf\x9f\x8d\xa7\x08\x9c\x88\xc2\xee" "\xaf\x60\x92\xe7\xf2\xc6\x9d\x76\xb1\xb3\xd3\xb7\xd8\x61\x21\x29\x1d" "\x9b\x2a\xf4\xa9\x6a\x10\x60\x77\xf5\x96\x9a\x29\x8a\xa9\xee\xd3\x5a" "\x1b\xcc\x8a\x58\x83\x31\x33\x3d\xcd\x4c\xc0\x6f\xe9\xdb\x0c\xdc\x5f" "\x1d\x31\x98\x2a\x5f\x16\x32\x36\x07\xa8\xf5\xd1\xfb\x49\x6c\x3c\xdb" "\x97\x91\x8d\x34\x02\xb5\x37\x36\xff\xf5\x3f\x5b\x50\x1e\xba\xfa\x97" "\x7f\x64\xc3\x7a\xdd\x41\x49\x36\xdc\xa4\xd5\xeb\x5d\x49\x52\x69\x6c" "\x7d\x52\x24\x76\xa9\x7b\x7d\x98\x54\x6d\x45\xa7\x73\x99\xdd\x66\xbd" "\xb1\x5c\x91\x09\xa6\xa5\xe3\xf9\x40\x41\xb6\x52\x1c\xd0\xd6\xd2\xac" "\xbe\x60\xb1\xe0\x4b\xbc\xd5\x56\x20\xd3\x4c\x6d\xba\xc5\x9d\x18\xec" "\x6e\xd2\x9b\xad\x89\x13\xfd\x1e\x9c\xe8\x0c\x7a\x0c\xd7\xc7\xe6\x25" "\x23\x1f\xd9\x49\xe1\xcf\xa8\x8f\x24\x54\xa8\x70\xbe\x24\x5a\x8f\xf7" "\x94\x01\x6a\x9e\xb6\x0f\x4a\x6a\x49\x83\x71\x0f\xc9\x42\x34\xf3\x78" "\x91\x40\xf7\x05\x74\x88\xaa\x3e\x16\xd4\x45\x2b\x40\x6c\x85\x8f\xc7" "\x54\xac\xc5\x54\xe7\x54\xef\xb6\x85\xd6\xb2\x37\xc3\x3d\x1e\x60\xdd" "\x69\x0c\x91\xbb\x1f\x64\xff\x31\xa1\xb1\x06\x6c\x59\xd8\x0e\x17\xc5" "\x62\x81\xd6\xdd\xd7\xb8\xfc\x3c\x2a\x78\xf1\x7f\x6a\x5b\x54\x11\x59" "\x79\x14\x2b\x4e\xa4\xf2\x0c\x73\x48\xe6\xe2\x35\x0c\x1a\x58\xd3\x1a" "\x99\x5e\x96\xc5\x7b\xf4\xe4\x07\x4c\x7f\xfd\xdd\xea\xa0\x7a\x79\x49" "\x63\x3e\x84\x69\xa1\xae\x0f\x87\x8f\xa6\x1f\x73\x46\x9a\x93\xfc\x31" "\x82\x07\xd8\xdb\x2e\x7a\xc6\x51\x90\x8b\x92\xf6\xee\x87\x68\xc1\x3b" "\x74\xfa\x08\x08\x4f\x81\x0f\x5a\x30\x50\x97\xaa\x5b\xef\x6e\x94\x52" "\xd2\x35\x3a\x99\xb3\x91\xc6\x8e\x38\x3e\x99\x4b\xff\x46\x24\x67\x24" "\xa3\x8f\x60\x76\x00\x6b\xfa\xe5\x03\x7a\x67\xfa\x9a\x60\x63\x32\x13" "\xe6\x3d\x2b\xd5\x95\x20\xa8\x69\xed\x3d\x79\xef\xac\xe4\x55\xf5\x58" "\x48\x92\xe5\xcb\xb4\x0e\xa4\x05\x81\x41\xd7\xe0\xb1\x48\x7f\x1d\x9c" "\xc8\xcd\x2f\x6a\xfd\x1f\x03\xa1\x7b\xe0\xc4\x0d\xe0\xc0\x6a\xd7\x5d" "\x29\xe1\xac\x57\xca\x36\x00\x4d\x88\xc4\xc8\x5b\xcb\x96\xa0\x74\xf9" "\x88\x36\x55\xb6\xfa\x10\x9d\x62\xcf\x34\x4b\xbb\x9a\x59\x49\x84\x1e" "\xbf\x21\xb3\x48\x28\x2f\xb1\x59\xa3\x2b\x7c\x38\x6f\x6d\x62\x94\x3a" "\x0c\xcc\xac\xc9\xff\x2a\xc5\xb9\x75\x36\xf4\x25\xa3\xd6\xb0\x92\x6e" "\x7f\x1a\x9e\x94\x44\x58\x1b\x8b\xd7\xb3\xbd\x81\x3c\x3f\x05\x9a\x68" "\x8b\x1a\xa9\x62\x62\x16\x80\x1b\xd4\xf1\xfc\xad\xf3\x3b\x2b\x33\xb6" "\xfd\xd6\x9e\xcd\x3e\x81\x80\x69\xdb\x48\x29\x6d\x40\xea\xcd\x6d\x26" "\x8e\x11\x83\xa6\x8c\x9d\xb0\x33\x1a\x29\x4d\x11\xb3\x41\x08\x45\x89" "\xf4\xfd\x43\x99\xe6\x51\xe6\xe0\x00\xab\xf5\xa2\xb2\xbd\x4c\x01\x83" "\x37\x3b\x6a\x97\x7a\xbc\x22\xce\xee\x18\x4d\x80\xa5\x4e\x1a\x50\xb3" "\x01\x11\x71\xb9\xbb\x23\x38\xe7\xbb\x51\x79\xb5\x45\x86\xe3\x17\xff" "\x63\x33\xad\x30\x2f\x4e\xbb\x50\x37\x27\x12\xf3\x66\xcb\xd1\x7c\xea" "\x56\xd7\xcd\x2d\xc3\xc1\xda\xe3\xc1\x10\x56\xc6\x17\xcb\xf9\x8d\x92" "\x29\x18\x73\x33\x7d\x8b\xf1\xa4\xb3\x5a\x79\x55\x87\x3d\x71\x89\xf7" "\x0e\x80\xc8\xe4\xc1\xf4\x69\xf4\x23\x3b\x3c\x6f\x5f\x16\x0c\xfa\xfb" "\xde\x11\x04\x0c\x0e\xd2\x0a\x61\xea\xce\x4a\x31\x8a\x33\xe5\xe0\x80" "\xd9\xa7\x7a\x00\xc5\x10\xde\x74\xe7\x65\x2b\x85\x0d\x28\x28\xaa\x1b" "\x9e\x6b\x30\x95\xf7\xb0\x62\xb9\x33\xa6\x07\xf8\x79\xfa\x0a\x29\xd0" "\xda\x94\x77\xd3\x1c\x75\x9c\x6c\x1e\x41\x44\x68\xa7\x42\x08\x0f\x1d" "\x4d\x0a\xea\x48\xb2\x0c\xa4\xd2\x90\x3c\x1d\x1a\x49\xc2\xb0\xf9\x74" "\x3d\x27\xaa\xc3\xe8\xed\xc9\xd9\xb0\x32\x42\xb4\x16\x3e\xa9\xa4\x50" "\x77\xd6\x85\xf3\xe6\xd4\x26\x49\x5e\x08\xe5\x74\x3f\x33\x33\x30\xa8" "\x3f\xa7\x14\xb5\xa1\x84\xad\xc0\xd5\x61\xd7\xf1\xc2\xed\xb0\x21\x54" "\x7b\x7d\xc8\x09\x7c\x3e\xd4\x73\x71\x39\x8a\x2a\x7b\xbf\xd2\xc4\x64" "\xed\xf3\x2f\xe4\x4b\xec\xbd\x40\xb8\x0e\xc2\xba\x05\x33\x94\x29\xd8" "\x3b\x33\x78\x94\x10\x6c\x3c\x8c\x2a\x42\x2a\xa7\xfa\xba\x7a\x68\xf4" "\xa5\x0e\x85\xb9\x9f\x9e\x59\x45\x01\x14\x25\x94\x4e\xa3\x1c\xa8\x93" "\xf4\x48\x3a\xf9\xaf\x2d\x2b\xa6\xf0\xb1\xa1\x5b\x57\xa4\x50\x3b\x1d" "\x99\x66\x5f\x5c\xd4\xe2\x35\x21\x7e\x54\x0d\x88\x48\x1e\xa3\xd4\xbc" "\x0c\xf0\x6a\x04\xbe\x10\x81\xe0\x2c\x1b\x1b\xb5\xc9\x81\x45\x7a\xd9" "\x78\x1d\xda\xf9\x35\x58\x9e\xc5\xe3\x92\xcf\x8e\x42\x94\x50\xa5\xae" "\x8d\xa4\x9f\x3c\x4a\xa8\x1d\x0a\xa7\x0f\x35\x6f\xd5\x19\x94\x5c\xe1" "\xec\xd3\x8d\x7e\x7b\x2c\x0a\x78\xd5\x4a\x98\x3e\x6b\x4a\x53\xfe\x40" "\x3c\x47\xd5\x1d\xd3\x70\x9f\x0e\x9e\x88\x9b\x5f\x40\x0c\xe0\xd6\xdd" "\xde\x7e\x99\xf9\x14\xf3\x56\x4e\xb5\x9e\x5e\xe1\x30\x74\x72\x73\x0d" "\x3d\x50\xab\x66\x28\x77\x19\x85\x92\xfb\x14\x7b\x44\x2b\x6f\x07\xc4" "\xab\x3e\x75\x32\x88\xb1\x49\x95\x70\x51\xa6\x3c\x3d\x4c\x93\x5f\x9e" "\x61\x14\x38\x54\x27\x32\x90\xc0\xa3\xa7\x8d\x03\x33\x60\xe6\x7b\x59" "\xd7\xf1\x00\xb8\xe0\x1d\xbc\x1d\x2d\x38\xf5\x11\xfe\x8e\x99\x7a\x21" "\x7f\x40\x37\x3d\x3f\x71\x64\x78\x49\x21\xcc\xf8\xa9\x95\x5d\x67\x08" "\xbd\x09\x7e\x07\x97\x08\x6e\xfa\x7f\xbe\xa9\x2b\x45\x1f\xdd\xf7\x8b" "\xef\xbb\x4f\x4c\x86\x0c\x1a\x2f\xc8\x56\x76\xe1\xa4\xd1\x58\x47\xa7" "\x76\x25\x77\x60\x02\xc8\x0c\x9a\x30\xce\x82\x4b\x23\x60\x26\xc2\x35" "\x30\xa4\x7c\x54\x23\xfd\x3e\xde\xe7\xf9\xf7\x2a\x4f\x55\xe7\xe9\x21" "\x6f\x7f\x46\x60\x07\xc9\x85\xe7\xde\xca\x55\x90\xbf\x84\x88\x3b\x4f" "\x79\x2f\xbe\x59\x1d\x0c\x91\x27\x2f\x46\x6b\xce\xb7\xda\xf3\xfe\x36" "\xfc\xb1\x04\x96\x4b\xaf\x0d\xe3\x4b\xc7\xa9\xcf\xf2\x75\x41\x81\xd5" "\xfd\x48\xf5\xd7\x63\x5c\x9c\x84\xd6\x79\x8b\x20\xc5\xac\xe6\xc1\x1f" "\xa2\xc7\xb7\x4e\x8e\xd2\xf3\x21\x44\xce\xd7\x2a\x67\x84\xbe\x86\x7c" "\xcb\x2e\xeb\x88\x78\x4d\xc6\x27\x4b\x10\x12\x92\x6d\xc0\xd4\xc5\x97" "\xd2\x48\x73\xbd\x34\x51\x63\xb5\x64\xc1\x99\x5a\xbf\x42\x78\x7e\x81" "\xdf\x48\xb2\x96\x34\x73\xa8\xa4\xb9\x77\xdc\x95\x54\xeb\xa5\x70\xcc" "\xd4\x89\xb3\x5c\x98\xb3\x36\x56\xbd\x98\xfb\xc2\xda\xa8\x7d\x28\x57" "\x4e\xc3\xce\x6c\xfa\x2f\x2a\x09\xbb\xae\xd1\x5d\xdd\xc8\xd8\xba\x98" "\xcf\x74\x5d\x1f\xf9\x25\x86\x64\x60\x35\x47\x12\x5f\x08\x78\xe1\x2c" "\x2d\x24\x13\xc8\x7a\x5c\x8b\xad\x3a\xfa\x1b\x41\x36\xd1\x40\x20\x50" "\xf5\x86\xe3\x2f\x39\xda\xbd\x84\x38\x29\x62\xfa\xa3\x1b\xa4\xd0\xdd" "\x60\x16\x05\xad\x55\x6b\x81\x59\x62\xfc\x86\x1f\x20\x4c\xe6\x0d\xe8" "\x2b\x24\xe5\x4d\xc1\xd9\xba\xce\x87\xe1\xf0\xd7\xc7\xa1\x28\x2f\x3f" "\x73\x05\x17\xed\x8e\xad\x27\xb9\x9d\xba\xbd\x5b\x18\x43\x85\xcc\x34" "\x0e\x2c\xc0\xff\x6f\xca\x83\x8a\x1b\x72\xf3\x2e\xcb\xf3\xfc\x1d\x4b" "\xbb\xb5\xbb\xe9\x9c\x48\xb4\x8c\xe1\xa9\xaf\x60\x74\xc5\x5f\xac\x9d" "\xd5\x56\xf6\x06\xab\x70\x43\x5c\x86\x68\x6f\x3d\xc3\x3a\xaf\x3b\x31" "\x02\x28\xee\xe6\x88\x04\xb8\xf4\x28\x26\xb4\xa9\xb9\x2c\x0c\x43\x96" "\x02\xd7\xe8\x35\xa2\x9c\x5a\x3b\x40\xe8\xa3\x94\x37\x58\xee\xc2\x45" "\x8c\x4d\x0e\x17\xa4\x93\x02\x8f\xa8\x91\x8a\xeb\x0b\x8b\x9b\xce\xfa" "\xf0\x70\x0e\x56\x4f\x04\xe0\xa5\x4a\xb5\x67\x48\xe7\x64\xe1\xb4\xc9" "\x2a\xfd\x52\x59\xa5\x6a\xe2\x7d\xbe\x4d\xd3\xbd\x81\x27\x78\x23\xeb" "\xf9\xdf\x02\x88\xa6\x30\xf1\xa2\xa0\x11\x97\x3b\xfe\x21\x7e\x9a\xfb" "\xc8\xee\xd2\x6c\xf4\x95\x8f\x6a\x15\x9b\x84\xaf\x3c\x5c\x61\xd1\xcf" "\x8c\x25\xc3\x13\xbe\x58\x06\xb7\xd8\xd2\xa8\x55\x4f\xb0\xb3\xde\x0a" "\xa3\x47\xaa\xa6\xc3\x8e\xd7\xcf\xd9\xaa\x01\xe0\xec\x75\x46\x73\xa8" "\x01\x3e\x1c\x53\x80\xe0\x16\xfa\xd1\xcb\x88\x00\x5b\xb8\x54\xf9\xf7" "\x10\xf0\xd6\xa9\x55\xe2\x6e\xb5\xba\x49\x78\xe0\xf7\x12\x4c\x9e\xee" "\x06\xe8\x42\x13\x85\xb7\xeb\xb8\x5c\x20\x5b\x12\x56\x07\xd8\x66\x6f" "\xb0\xd8\x7d\x61\x0e\x5b\xa6\xd1\x4f\xfb\x22\xc6\x19\x21\xc2\x8c\x64" "\x3d\x7c\x26\x3f\xbd\x18\xf6\xc9\xa9\xf8\x69\x7f\x1e\x87\x42\x49\xa3" "\x58\xd5\xe4\x84\x3f\x12\x29\x58\x5d\x39\xf1\x56\xd7\x9a\x3d\xc0\xae" "\x66\xe1\xf0\x27\xd5\x2d\xbc\x67\xbc\xac\x2b\xa4\x6d\x68\xb6\x04\x5e" "\x2e\x41\x07\xd6\xdf\x80\x2f\x08\x49\x10\x0f\xd6\x19\x39\x72\x6c\x4b" "\x5f\x87\xbf\xc7\x00\xf8\x2c\x1a\xc0\xc9\x23\xf2\x0d\x66\x17\x48\xe0" "\x52\x1e\x74\x3d\x5e\x10\x62\xb9\x6a\x9b\x8f\xc1\xe8\xbc\x8f\x32\x19" "\xa9\xfd\x53\x59\x1d\xf8\xd4\xd2\x1a\x8b\x36\x3d\x45\x2f\x59\xb9\x18" "\x26\xc6\x81\x29\xd2\x31\x8a\xa8\x2a\xa5\x0f\xf3\x5f\x48\xde\xc6\xb2" "\xbd\xec\x00\x46\x57\x7e\x5b\x59\x26\x5f\x98\x13\x07\x2d\x0d\x06\x13" "\x48\x8e\x15\x1e\x7c\x06\x28\xfc\x2a\xea\x60\x1c\x81\x85\xcf\x1f\x06" "\x20\xef\xda\x28\xd4\x58\xb2\xc5\xfa\x51\x51\x2a\x35\x98\x62\x49\x13" "\x7d\x4c\xec\x63\x1d\x9f\x23\x2b\xbb\x7e\x1a\xce\xb5\x75\x28\xa2\x0b" "\x5b\x38\x95\xd9\xec\x7c\xa2\xf1\xa3\x4e\xf4\xdf\x4f\x1f\x86\xc0\xf3" "\x27\x3a\xfa\x92\x57\x26\x40\x4c\x7d\x92\x04\x10\xaf\x6b\x70\x6c\x97" "\x14\x8d\x4d\xa2\x49\xcd\xc9\x4a\xc0\xd5\x02\x88\x3f\x7b\x1a\xa0\xe0" "\xcb\x3b\x86\xb8\x5b\x2a\x9c\xdc\xa2\x90\x1b\x72\xbc\x9f\x04\xf1\xc5" "\x3e\xfa\x01\x5f\x69\x20\x12\x99\xe5\x4d\xc8\x47\xe0\x34\x8c\xf0\x9e" "\x0f\xd9\x2f\x47\x80\xc6\x32\x4a\xa4\x44\x47\xda\x82\xfb\x80\x8a\x82" "\x88\x20\xb0\x77\x08\xc6\x04\x83\x08\xe5\xdc\x6a\x18\x73\x80\xa3\x92" "\x0b\x56\xfb\xa4\x90\x9d\xdb\x47\x4b\xce\xdc\x44\xe4\x45\xf9\x72\xdb" "\x15\xe3\x11\xdb\x3a\xf4\x27\xf8\x0e\xbd\xe7\x6f\xae\xc2\x22\x00\xe4" "\x28\x06\xab\x55\xe7\x0d\x71\xd7\x7e\xca\x48\x2d\x96\x3e\xb3\x96\xdd" "\x89\xec\x5a\xda\xc2\x8d\x35\x97\x0c\xc9\xc7\x68\x40\x6d\x1e\x40\x42" "\x1d\xde\xba\xaa\x4f\x87\xdb\x44\xd4\x36\xe8\xa5\xf5\x37\x31\x14\x69" "\x4e\x18\x28\x41\x2f\xfa\x12\x92\xb1\x15\x21\xdd\xa0\x54\x3c\x25\xab" "\xa7\x4b\x1d\xbe\xaf\x07\xf2\x33\x88\xc6\xb9\x5a\x0c\xf1\x93\x26\x6e" "\x0a\x00\x94\x25\xdd\x3c\xa0\x99\x2a\xdb\x06\x1b\x54\x32\xea\xbc\xee" "\x7d\x60\xc9\xaa\xb1\xf1\x5c\xa5\x53\x33\xa2\x06\xc8\x94\x78\xb0\x49" "\x3c\x4d\xda\x35\xea\x83\xb7\xa1\x13\x21\xe9\xf0\xa8\x3e\xf1\xf3\xb5" "\x89\xb6\xa4\x10\x2e\xdc\xd5\x7c\xa9\xdf\x64\xd3\x9c\xd5\x2f\x83\x2a" "\xef\x1a\x45\x25\x75\xf1\x22\x19\xfa\x73\xb4\x0d\x2c\x87\x25\xc1\x63" "\x6f\xa3\x0b\x5f\x62\x5d\x0b\x88\x52\xe8\x03\xc4\x74\xfb\xbc\x58\x71" "\xa5\x55\xf5\xd3\x2b\xf1\x21\x6d\x51\x3a\x46\xc0\x57\xd1\x0b\x35\x45" "\x80\x7d\x8f\xe9\x91\xf8\xa6\x29\x5c\xf1\xe2\x36\xe0\x6b\x3d\x93\x10" "\x39\x74\xd9\x0d\x98\x64\xd8\x5b\x8b\xe1\x4b\x4b\x1a\xf1\xf1\xe1\xb2" "\xee\xb2\x27\x4b\x9f\xb3\x64\xf5\x69\x0d\x5b\x40\x81\x61\x6c\x39\x30" "\xf4\x0c\xad\xba\xd4\xa4\x74\x45\x7f\x50\x06\x8a\xc7\x84\xa7\xa6\x40" "\xf6\x51\x5e\x08\x8f\xd8\x64\x48\x71\xbc\x8a\xf7\x93\x78\x2e\xdb\x6b" "\x0b\x46\x54\x16\x87\xed\x32\xa3\x00\xc3\xcd\x25\x96\x82\x74\xf4\x1f" "\xc2\x4c\xe7\x04\xba\x5f\x5d\xf4\x7d\x47\xa3\x33\x05\x7c\xf6\xf8\x14" "\x62\x7b\x33\xe9\x0b\x52\xed\x20\xf8\xc8\x5d\x02\x2f\xbe\xc8\x79\x84" "\xbb\x09\x04\x88\x5a\x3f\xc8\xda\xf0\x18\xf8\xd2\x03\x0a\x45\xed\x44" "\x67\xde\xd2\xae\xb0\x14\x79\xe5\xc9\x84\x95\x1e\x41\x1b\xb4\x13\x8e" "\x1f\x08\x08\xf4\x4f\xc0\xe5\xbc\xed\x31\xfa\x55\xc4\xb4\x95\xbe\x07" "\xc7\x97\xa6\x00\x94\x83\x97\xbf\xce\x20\x28\xfc\x38\x36\x54\x10\x70" "\xbc\xb2\xb3\xcf\xfb\x8e\xf9\x56\x02\x78\xfe\x6a\xf3\x8b\xaf\x57\x58" "\x82\xa1\xe0\x3f\x76\xc6\x1c\x57\xb1\x5d\xbd\xc7\x8a\x78\x73\x89\xdf" "\x03\x92\xcf\xc6\xde\x7d\x2c\xc0\xfe\x7a\x8b\x0f\x20\xac\x90\x95\x44" "\xee\x48\x47\x98\x21\x1f\xd1\x71\x8d\xd8\xfa\x3a\xe7\x92\xcc\x9d\x8d" "\x6c\xc0\xca\x0c\x7c\x95\x08\x56\x95\xcc\x5d\x7a\x4b\x6e\xb8\xe0\xdc" "\xde\x03\xbf\x9a\xe2\x9a\xed\x18\xd6\xa6\x81\x2b\x17\x56\x77\xa9\x3d" "\xdd\x8a\x8e\xca\xdb\xbb\x25\x20\x94\x6d\xff\x20\x7f\x7b\x62\xcb\xa2" "\x50\x06\xa5\x93\x08\x9c\xec\x55\x79\x0b\x41\xa5\x99\xa1\xb3\xee\x27" "\x07\x29\x9c\x03\x4c\xd7\xb2\xe7\x43\xf1\x46\x0d\x7f\xb4\x28\xa6\xe3" "\x31\x0f\xc9\x5d\xfb\x63\x57\x4b\x17\x80\x66\x60\x31\xec\x7e\x19\x85" "\xbd\x9e\x93\x32\xd3\x97\xa3\x41\x39\x77\xb9\x7f\x49\xe8\x8d\xd2\x33" "\x09\x89\x73\x41\xa7\xf2\xc2\x9b\xe3\x1a\xc9\x41\x2a\x36\x69\x1e\x61" "\x91\x2d\xe1\x83\x52\xa2\x6c\x5e\x18\xa4\xae\xd6\x5c\xf0\x64\x1f\xb0" "\xd1\x9d\x76\xdf\x78\x78\x7d\xba\x53\xe7\xc4\xd7\x3b\x20\xd6\x5f\x63" "\x16\xfa\x4c\xdc\x2b\x38\x66\xda\xf4\x1f\x46\x64\xa4\xdc\xdd\xd7\xed" "\x02\xda\x2a\x58\x15\xb6\x60\x37\x13\x0b\x46\xd3\xa3\x84\x53\x12\xc0" "\x78\xae\xe6\x3b\x95\xb4\xe9\x05\x48\x95\x9f\x6c\x75\xf4\x20\xd4\x35" "\x94\x23\x3b\x0b\x1b\x7d\xe1\x71\x8a\x9c\x19\xac\x45\xeb\x42\x1e\x3a" "\xd0\x60\x38\x22\xfa\x80\x83\xf4\x55\x76\x2b\xd5\x4c\x6e\x86\xc6\x80" "\xc8\xa5\xe9\x5a\xba\x0b\x0f\x79\xaf\x7e\xcc\xb0\xc4\x9e\x36\xdd\xcb" "\x69\x41\x3d\x73\xec\xe1\x68\xa5\x2b\xc4\x4f\x88\x69\x65\xb3\xde\x55" "\xce\x00\x1d\xb9\x0e\x96\xa7\x19\x9f\xfc\x67\xe5\x9a\xbb\x61\xd7\x0c" "\x9b\xe8\x13\xe1\xb2\xdf\x80\x99\x1c\x50\xc6\x71\xc6\xd5\x71\x36\xf6" "\x94\x72\x74\xf7\xcd\x4f\x5d\x44\x26\x84\x41\x87\x25\x17\x30\x9d\x7f" "\x1f\xad\x52\xf8\xf5\x2f\x0d\x93\x52\x81\x85\x57\x47\xf3\x8e\x35\x3f" "\x48\x09\x6b\x54\x3e\x46\xaf\x72\x3c\x08\x62\x19\x4e\xe3\x14\xc9\xb9" "\x38\x22\x93\xfd\x40\x2e\xd7\x24\xa3\xa6\xb0\xe9\x73\x55\x95\x48\xa6" "\xd7\x7d\xce\xf2\x92\xad\x7d\x8a\x1f\x8a\xc1\x0a\x38\x7c\x94\x72\xad" "\x3a\xf6\x75\x52\x3f\xdd\x99\x00\xd6\x47\x7f\x1a\xe1\xa2\x45\x7b\xa6" "\x9d\x03\x40\x76\xa2\x46\x9d\x13\x3c\xc8\xdb\xe4\x99\x87\x07\xda\x19" "\xc2\x73\xef\xca\x23\xce\x6b\x6b\x57\xeb\x17\x5b\xc6\x1f\x10\xc6\xe2" "\x40\xef\xfb\x22\x21\x73\xb9\x90\xf6\xdc\x84\xca\x8f\xad\x88\xdb\x6c" "\xff\x40\x88\xd6\x53\x8e\x87\xed\x10\x8d\x83\xe3\xd4\x54\xc7\xcf\x85" "\x4a\x0e\x08\x04\x8f\xb0\x9b\x23\x8d\x3f\xb0\xa8\xcc\x4d\xf3\x36\x6e" "\xfb\xb6\x1c\x25\x54\xf4\xd6\x47\xa9\xea\x35\x33\x9c\xe4\x14\x87\x5a" "\x03\x5f\x65\xb8\x7a\xe2\x07\x48\xb0\x03\x8f\x3d\x6c\x77\x51\x06\xd9" "\x5a\x62\x98\x3f\xec\xeb\x4b\x5c\x30\xdb\x1c\xa8\x0b\x0b\x46\xf2\x55" "\x1c\xea\x58\xcf\x17\xcb\x5e\x32\x91\x13\x85\x46\xe8\x2d\x8a\x28\xb5" "\x89\xc7\xa8\x11\x5b\x3e\xef\xa0\x45\xac\xe6\x0a\x5f\x0e\x1c\x09\x57" "\x15\x66\xe3\x01\xd0\xc8\x8a\x45\xd6\xf3\x21\xcf\xf3\xe6\xe2\x3d\x1a" "\x15\x28\x04\xe7\xc5\x53\xa9\x58\x01\x0b\x62\x61\x35\x4a\xb3\x28\x18" "\xda\x35\x21\x41\xfa\xbf\x72\xc7\xc9\xb3\xb2\x9f\xf6\xd9\x72\xde\xa5" "\x74\x5d\x43\x28\x6b\x3f\x4e\x57\xa0\x06\x71\x53\x3a\x7a\xfb\x29\x51" "\x43\xc3\xd2\x47\xfe\xd4\x53\x16\x2b\xd3\x79\xe8\x11\x61\x18\x98\xbf" "\x84\xec\xdd\xb8\x44\x86\xea\x19\xb4\xff\xee\x63\x4b\xf0\x6b\xa2\x77" "\x0a\xf5\x4f\x58\xf7\x09\xa7\xcf\x00\xba\xe2\x61\xa1\x37\x1b\x3a\xad" "\xb0\x66\xb5\x28\x41\xdc\x4d\xb5\x53\xe5\xbd\x4b\x64\x4f\x92\x52\x6e" "\xd4\x02\x8a\xde\x3d\xeb\xb4\xe3\xc6\x5f\xfa\xe6\x5c\xbc\x8e\x0c\x2e" "\x0f\x6c\x9f\xa1\x7a\x01\x64\xe3\xde\x75\xac\x33\xb4\x71\xca\xa6\x47" "\xfe\xc7\xc8\x5c\xeb\x53\x87\xd7\x43\x63\x9e\x13\xbe\xc6\x9a\xcf\x61" "\xa6\x61\x91\x10\x44\x9a\x59\x7a\x24\x86\xc1\x22\x35\x77\x0e\x6d\x9d" "\x11\x64\x96\x78\xc3\xc1\xb5\xab\xcc\x03\x15\x4f\xb5\x1a\x5d\x8c\x9c" "\x8e\x43\x68\xe0\xd5\x8b\x57\xc1\x50\x51\xb0\x51\x3d\x2e\x46\x52\x0e" "\xd2\xfe\x5c\xe3\x6b\x30\x77\xa3\x1d\xd4\x32\xc0\x17\x48\x65\xac\x22" "\x36\x0d\xbb\xfd\x87\x86\x13\x3c\x0e\xcc\x72\x67\xd3\x05\xf7\x76\xc3" "\x63\x25\xe0\x92\x80\x9c\x78\x4f\xe3\x0d\xd0\xed\x38\x34\x23\x55\x2a" "\xfb\x7d\xcd\x2f\xab\x15\xdb\x13\xbe\xb5\xe9\xb8\x30\x35\x67\x6c\x36" "\xaf\x82\x4e\xc1\x3d\x61\xa4\x0d\x82\x2b\x8a\xbe\x3a\xde\xec\x53\x91" "\x85\xf4\xf7\x5f\x79\x31\xb0\x14\x2c\x11\x3c\x67\xe7\xac\xee\xf3\xf6" "\xa0\xa1\x08\xf9\xcb\x40\x5b\x78\x2e\x5c\x71\xf9\x08\xbf\xb3\x11\x8d" "\xef\x92\x80\x30\x3a\xc9\xdd\x31\x0d\x43\x35\x2d\xab\x55\x5b\xbf\xe0" "\xbe\xba\x68\x8b\x60\x59\x22\xf6\xb2\x14\x84\x9b\x99\xc4\xca\x18\x7a" "\xdc\x88\x8a\x58\xce\xf2\xc6\xc1\x0a\xe9\x2d\x63\x22\xe2\x1d\x85\xe4" "\x1c\x51\x8c\xaa\x69\xff\xf5\xed\x60\x5b\xd2\xa8\x20\x52\x31\xe1\x4c" "\x0b\xa9\x6c\x76\xe8\xfa\x1b\x45\x85\x23\xf1\x53\xd1\xb8\xb2\x41\x49" "\x8e\x9b\xdb\x05\x25\xc7\x37\x21\x5f\x4b\x3e\xb8\xd6\x32\xb6\x64\xf3" "\x30\x12\xcc\xe8\xfb\x5c\xf5\x1f\x99\x35\x4d\xa3\x63\x24\x73\x31\x8e" "\x10\xca\xf5\x8c\x55\x48\x8b\x45\x59\x55\xdf\x82\x4e\xf6\xa2\x34\xdf" "\x2a\x15\x31\x79\x6e\x59\x6e\x2b\x15\x17\x20\x36\x9b\x4b\x37\x4a\xe1" "\xbe\x6e\x21\xe9\x22\x1c\xd8\x43\xf0\x11\x0a\xa0\xbb\xcd\x64\x8b\x00" "\x16\x0c\x54\x64\xe8\xbc\xba\xb0\x20\x23\x53\xcd\x6a\x32\x6a\xb0\xf1" "\xa6\x6a\x6e\x90\x95\x0f\xda\xe4\xc6\x35\x13\xa9\x47\x9b\xcd\x63\x42" "\x15\x47\xd9\xfe\x0a\xc7\xbd\xe7\x1e\x05\xa8\x3f\xd4\x1b\x8e\x36\x84" "\x01\x0e\xb4\xe0\xd4\xc3\xa7\x8d\x3b\x0c\x53\x40\x48\x02\x86\xfe\xaf" "\xcf\x74\x95\x3d\x0b\x5f\x3c\x0f\x22\x48\x1b\x94\x7d\x4d\x8f\xf0\xc3" "\xbe\x2a\xe6\xde\xec\xed\x0f\x4e\x5f\x11\x9a\x8b\x0e\x30\xc3\x9b\xd6" "\xe1\x98\xeb\x82\x3c\x9c\x2b\x12\x7c\xc0\x6b\x4e\x07\xe1\x77\x9d\xba" "\xa0\x30\x81\x31\x3f\x13\xf9\x18\xcf\x25\xf2\x29\x10\xf7\x07\xf3\x83" "\xba\x2a\xdf\x2b\x5f\x40\x45\x01\x3b\x05\x12\x7f\xa6\xe6\xb5\x65\x83" "\xb9\x6f\x68\xb8\x7e\xe2\xe8\x06\x4e\x79\xf4\x92\x2c\x0d\x30\xea\x26" "\xd2\xf6\xc2\x21\x76\xd7\x5d\x67\x36\xf1\xc5\x68\x5d\xc6\x07\x0a\x38" "\x52\x35\x6b\xdb\xbf\x07\x28\xd9\x58\x7b\x85\xec\x69\x3c\xe8\xde\xa6" "\xd0\x7e\xc7\x20\xce\xb9\xa7\x5a\x6e\x2c\x87\xbb\x77\x65\xaf\x51\x6f" "\x7a\xc5\xae\xbc\xec\x4f\x2e\xe7\x02\xe8\x61\x0d\x91\xbb\x95\x43\xaf" "\xe1\x8f\xf8\x0f\xee\x1a\x8d\x23\x9d\xe0\xbe\x68\x34\x63\x14\x93\x35" "\x34\x45\x45\x65\x4c\xc1\x2f\x96\x0a\x8a\xe0\x6c\x47\x1d\x5e\x75\xd0" "\x9a\x6f\x86\x79\xeb\xa9\xdf\xef\x28\x2f\x91\xf1\xdf\xcf\xc9\xe2\x73" "\xb2\x5c\x16\x3a\x93\xab\x5f\x8f\xfe\x23\xc1\xb0\x37\x8b\x04\xad\x39" "\xcd\x6d\x08\x2a\x4f\xbb\x19\xfa\x16\x64\x57\xb6\x11\xd2\x77\x71\xa2" "\xb4\x79\xb1\xd2\xb4\x07\x83\xbe\xd5\xa1\xb8\x75\x76\x55\xbd\x84\x85" "\x35\xe3\xb1\xa4\x0a\x7e\xc6\x0f\x14\x1a\xbf\xdf\xf7\xa3\x2d\x22\x71" "\x60\x36\x79\xca\xeb\xbd\xdb\x47\x83\x83\x66\xc4\x87\x8b\xfd\xf2\x46" "\xeb\xbd\xab\xa9\x37\x26\x54\x5c\x48\xe4\x2d\xa1\xfd\x89\x30\x38\xdb" "\x1c\x44\x3e\x04\x5c\xca\xd1\x33\xf6\xbc\x78\x84\xae\x04\xef\x66\x6c" "\xb5\x6a\x3f\x0c\x3c\x9b\xa8\x2c\xad\x2a\xf9\x09\x1f\x47\xee\xae\x31" "\xc3\x14\xe7\x97\x14\xef\xdc\xf0\xc5\x02\x8a\x82\x81\xbf\x8d\x61\x25" "\xf0\xb0\x28\xd0\x64\xab\x04\x09\xbd\x92\xb1\xa5\x26\x18\x2e\x93\x6b" "\x91\x74\x2c\x1d\xef\x43\xa2\xc1\x9d\x23\x93\xff\xc8\xf1\xc6\x40\xad" "\x98\x96\x3f\xd1\x0a\xfc\x1c\xca\x3c\x8c\xb1\x6c\xd7\xc9\xf2\x5a\xba" "\x6e\x6f\xb2\x0f\x18\xbf\xf7\x4f\x3a\x33\xc9\xae\x19\x3b\x27\x0c\x2c" "\xa9\xfd\xd5\x7e\x32\xdf\x6e\x5e\xdc\x4f\x21\x07\xf7\xd0\x3e\x1a\xb9" "\xfc\x6c\x67\xa5\xb0\x8b\x79\x05\xc9\xc0\xef\xd4\x9c\x59\xe9\x47\x71" "\x2d\x90\x8f\x20\xae\x39\x4d\x42\x14\x9b\x60\x20\x01\xaa\xc5\x56\x38" "\xbc\x3e\xa1\x6f\x90\x73\x2e\xae\x85\xa1\x57\xa1\xda\x4c\xbc\x7d\x1b" "\x92\x3b\x99\x1e\x42\x6f\xf1\xb5\x46\x4d\xaf\x38\x74\x7f\xf4\x60\x94" "\xbe\x8c\xbd\xa2\xe4\xbf\xa7\x3f\x8c\x3a\x2c\xb9\x8c\x82\xaa\x22\x6c" "\x42\xf0\x94\xd1\xc8\x5e\x4c\x31\x41\x7f\xcb\xb1\x85\x62\x11\xbd\xb8" "\x81\x3a\x1b\x40\xff\xff\x66\x23\xe3\x50\xe6\xa8\xda\xcf\x65\xfb\xfd" "\x0e\xa8\xa4\xc9\xaf\xdf\x65\x29\x77\xd6\x1b\xb1\xa3\x0b\x3e\x10\x0d" "\x9e\xc3\xd1\x79\x10\xb0\x0a\x1a\x36\x7d\xba\x27\x54\x23\x9a\x2c\x71" "\xcb\xf1\x7a\x62\x55\x57\x2f\x25\x7a\x3d\x1a\xbd\xc7\x4a\x2e\xcd\x9b" "\x1f\xd2\x62\x46\xa8\xaf\x7b\xea\x20\x89\x9d\x61\x63\x19\xaa\x0f\x9e" "\xc2\x1c\xc2\xa4\x91\xcf\xf9\x0c\xea\x34\x2f\x6b\x45\x57\x99\x60\xd2" "\x7e\x8a\x8c\xfb\x43\xe2\x6d\xb2\xb9\xa4\x16\x17\xb9\xf3\xd1\xf2\xa0" "\xed\xdd\x97\x7a\xd7\x1c\x7b\xc3\xb1\xf1\xf1\x35\x25\x46\x31\xaa\xd8" "\x9d\x56\x76\x00\x88\x0c\x51\x24\x5c\x6b\x1e\xef\x81\x0f\xfd\x48\x82" "\x03\x06\x64\x0b\x6f\xf7\x48\xcc\x25\xe4\x59\x59\x59\x2c\x3b\x19\xd9" "\xc0\x24\x45\xbf\x20\x35\x77\xe2\x42\xb1\x9f\x95\xa4\x1a\x21\x0a\x16" "\x2a\xd5\xea\xfe\x4d\x35\xf4\xc5\xa8\xc4\xed\xd0\x9a\xc6\x58\x81\x42" "\x87\xeb\x25\xa3\x57\xf2\x81\xc0\x69\x1b\xe4\x07\x82\x6a\x45\xcb\x6c" "\x36\x1f\x5f\x36\xfe\x00\xd8\x25\x18\x5a\xe1\xe4\x6d\xba\xc5\x59\xad" "\x55\xee\x23\xc7\x2d\xc5\x2b\xee\x5c\xeb\xb0\xfd\x54\xfc\x09\x24\x0e" "\x16\x22\xdf\xbc\x00\x59\x4f\x2b\x00\x0b\x62\x3f\x64\xe1\x78\x4c\x51" "\x64\xe0\xca\x1a\x63\xc1\xaf\x9e\xae\xe7\xfe\x1f\x76\x47\xd7\x90\x4a" "\xb9\x28\xa3\xba\x2e\x06\x95\x77\xfc\xee\x48\xbd\x65\x1c\xbd\x11\xc5" "\x14\x22\x82\xa7\x1a\xc9\x25\x80\x6f\xf4\x01\x40\x5d\x37\xd4\x3f\x36" "\xf0\x92\x00\x8f\x7d\x15\x36\x26\xc9\xa7\x60\x8c\x1d\xfe\xc4\xf9\xb8" "\x58\xfa\x1a\xe6\xc9\x0f\x74\x03\x76\x1d\x7c\xe4\x4c\x20\xc5\x53\x47" "\xc4\x17\x78\x0b\x88\xbe\x71\xf7\x96\x1a\x6d\x0b\x87\x8a\x95\x9d\xbd" "\x9c\x50\xbe\x83\xb8\xbb\x67\x1c\xb7\xa8\x0a\x83\xcc\x24\x33\xdd\x2e" "\x3b\x95\x0a\x45\xa5\xd1\x25\x9a\x0b\xa0\xa0\x23\xf8\x39\x2e\xc8\xbf" "\xc8\x79\x47\x3c\x02\x13\x8f\xd2\xe3\xea\xcc\x44\xdf\x31\x37\xce\xad" "\x2e\x08\x10\x22\x9e\x21\x9d\x6e\xe4\x54\x77\xc4\xeb\xce\x58\x59\x09" "\x1d\x62\xe6\xe3\xe3\xb4\x35\x3f\xd4\x09\xf2\x4c\x2d\x3a\x59\xf3\x14" "\x12\x47\x9f\x27\x8a\xfe\xa1\xcc\x8e\x9b\x1e\xa7\x3f\x0a\x78\x67\x9a" "\x01\x7f\x3b\x60\xd7\x21\xa0\x9a\xfb\x90\x28\x11\xb0\x7f\x3f\xc4\xfd" "\x4c\xa5\x7e\x3b\x85\x1f\x08\xcf\xf5\x57\x75\x9a\xe1\xd9\x21\x6a\x09" "\x38\xcf\xf4\xec\x88\x1c\x99\xc7\x48\x46\x33\x21\x2a\xe4\x8b\x2a\xd2" "\x47\x63\x65\xf4\x57\x61\x7a\x50\xd5\xc6\x61\x9a\xfb\xa2\x83\xe8\xdc" "\xc5\x92\x8e\x4f\xbb\xbb\x62\x8a\xea\x6b\x65\x19\xb2\xb2\xe0\xf5\xd2" "\xba\xaa\xdd\xe9\x07\xdd\x3f\x0a\xf7\xf0\x4f\xdd\x7c\xf2\xd9\x5f\xf5" "\x84\xbc\x62\x0f\xe1\x47\x82\xb2\x03\x1a\x16\x6e\x83\x4d\xcc\xa6\x07" "\x94\x3c\xc4\x42\x0e\x48\xc6\xbb\x88\xdb\x65\x19\x0d\x58\x19\x04\xf9" "\xb8\xbe\x1e\xfe\x36\xb0\xb8\x4e\xd2\xdc\x18\x79\xf3\xf5\xc5\x8f\x03" "\x26\x2a\x40\xef\xe2\xa3\x70\x14\x03\xd5\x2b\x7b\xaa\x4b\x5c\x0f\xae" "\x6d\xa7\x6a\xf4\x00\x72\xe3\xbb\x40\x52\xd4\x7c\x4e\xbd\x9f\x95\x33" "\x86\x6a\xbb\x84\x83\xbf\x8e\xed\xe5\x39\x6d\x3c\x42\xcb\x9c\x75\x71" "\x6f\x43\x64\x67\xc5\x9f\x74\xf2\xec\x8d\xfa\x6a\x06\xfb\xf4\xdc\x5f" "\x7c\x27\x14\xfa\x56\xce\x8c\xe3\xc5\x7e\xb4\x4a\x42\x76\x5b\x54\x9c" "\xec\x8a\x15\x9f\x87\xfa\xcc\xee\x33\xa5\xfb\x92\x3a\x0b\xd2\xd4\xcb" "\x30\x8d\x0a\x51\x19\x7c\x34\xc6\x13\xc0\x46\xf7\x45\x96\x80\x79\xf0" "\xa6\x53\xa4\x97\xcb\xf6\x11\x21\xaa\xf8\xd9\xaa\x14\xb7\xe4\x4b\x34" "\xf5\x94\x71\xa3\x20\xde\x79\x62\xfc\x30\x71\x4e\x5a\x06\x1f\xe1\x8b" "\x3e\xb0\xb2\x36\x9d\x27\xb2\x3d\xe1\x69\x50\x49\x4c\xff\xcf\x89\x77" "\x08\x3c\x29\x0d\xb8\x44\x31\x14\x17\x2e\x47\xa3\x21\xe7\xc8\x27\x40" "\xcf\x46\x52\xf7\x6a\xa0\xc2\xe5\xf4\x30\x37\xd1\x50\xd1\x11\x16\xf3" "\xd3\x93\xd0\xf6\x44\xe9\xc2\xad\xc5\xbd\x4a\xfd\x32\x6a\x16\xa1\x8d" "\xba\xb0\xab\xbf\xfa\x91\x44\xd6\xae\x0d\x3e\x25\x85\xa5\x2d\x88\xa7" "\x61\xe4\x67\xc5\x4d\x70\x87\x2a\x9d\x01\x27\xb6\x7d\xed\x22\x33\x68" "\xbb\x67\x5c\xcc\xe6\x34\xd0\x2e\x95\xaa\x6c\x63\x33\x1b\x99\x7f\xbd" "\x0a\xbc\xa1\x3d\xde\x2b\x61\xd6\x31\xc0\xe6\xf0\x90\xcd\xce\x04\x2a" "\x77\x93\x28\xda\xe8\x02\xb3\x41\xf3\x15\x91\x0b\x6d\xe1\xbe\x2e\x13" "\x48\xbc\x91\x85\x2b\xe3\x4c\xac\xeb\xaa\x33\x26\x94\x3d\xe6\x82\x3f" "\x80\xe3\x47\xda\x84\x41\x83\xc1\x13\xb1\xe1\x41\x2f\x1d\x74\xff\x64" "\x1e\xed\x1f\xab\x15\xc4\xd9\x14\x6e\x5b\x1b\x71\xe7\x92\x34\xde\x0d" "\x58\x53\xa7\xcc\x47\x92\x7d\x98\x13\x66\x83\x29\xcd\xd0\x15\x18\x79" "\x9c\x56\x28\x15\xf2\xb9\x9f\x2d\x00\x41\x88\x06\xbf\xbe\xdd\xbd\x7c" "\x03\x36\x25\x88\x82\x98\x3a\xf1\x52\xe2\xc7\x86\xd9\x1d\xc7\x06\xe9" "\x55\x93\x03\x55\xf7\x97\xa3\x65\x30\x55\x89\x7b\x6c\xbd\xed\x02\xc5" "\x3f\x73\xef\x86\x3f\x90\x74\xe0\x78\x3b\x5c\x64\x5b\x93\x9f\xf6\x14" "\x76\xaa\x09\xb7\xa8\xd6\xec\x70\x1f\x90\x96\xe1\xa5\xa1\x22\x28\xfe" "\x61\x6f\xe1\x4d\x88\x93\xb1\x73\x65\x34\xf4\x35\x1d\xf5\x50\x4d\x9c" "\x13\xdc\x63\xc6\x4d\xb9\x84\xa4\x87\xe6\x27\x54\x35\x02\x5f\x02\x29" "\xaa\x54\x77\xf3\x06\x2d\xb3\x6e\xbb\x3a\x37\x10\x6d\xe9\x0a\x21\xe0" "\x08\xdc\x34\x3d\x8b\xae\x0a\x83\xcd\x20\xe9\x04\x7b\x10\x7b\x72\xef" "\x24\x1d\xf1\x47\x38\x4b\x4e\x82\xe0\x76\xa0\x3f\x1e\xdd\xf8\x82\x87" "\x9b\x4a\xc7\x98\x2e\x2d\x08\xdd\xc8\x0b\x20\xdc\x75\x4c\x30\xdd\xe5" "\x72\xfa\x45\x2b\xf4\xff\x71\x36\x8f\xbf\xbb\x99\xa0\xa9\xa5\x00\x3d" "\x5b\x0e\x78\x19\x60\x90\xfc\x59\x05\x05\xae\x2c\xde\x53\x5b\xe4\xb8" "\xef\x38\x32\x19\xb6\x9d\xbb\x76\xb7\xd8\x40\xe5\x68\x59\x5e\x63\xe1" "\x08\x8e\x02\x22\x80\x40\x3f\x83\x5f\xcb\x6b\xca\xde\x8e\xfd\x29\xdf" "\x80\x3b\x0f\xe7\x1f\x1c\x0f\xcc\x56\xb2\xfc\xb6\xaf\x38\x8c\x99\x9b" "\x39\x2a\x43\x0e\x4f\x5f\xf5\xe2\xf8\x9c\xb7\xfa\x75\x03\x22\x44\x82" "\x1b\x77\x29\x12\x16\x7c\x03\x41\xed\x46\xbe\x26\x03\x01\x32\xc1\x5d" "\xb7\xe1\x77\xc9\xd3\xab\xe2\xe5\xdb\x8c\xaa\x26\x67\xf7\xd3\x8c\x8a" "\xbf\x0b\x62\x23\x2c\x3a\x22\xaf\xec\x4b\x10\x27\x95\xe9\x9d\xf0\x0f" "\x91\xaa\x70\x1c\x78\xef\xcd\x32\x06\x9f\x09\x86\x88\xf8\x46\xba\xf4" "\xf5\x72\x91\x8b\x46\x61\x3d\xc6\x2a\x49\x7f\x29\x2a\xb2\x66\xf3\x6d" "\x7a\x8c\x3e\x5f\xf6\xbe\x08\xde\xab\xa6\xc8\xb3\x92\xe5\xb4\x95\xa0" "\x51\x5c\x91\x59\x5d\x56\x77\xff\x6d\x8a\xc4\xaf\x19\xaa\x12\x18\xd9" "\x25\x39\xf0\x4b\x6b\xd2\x52\x2c\x6a\x95\x47\x29\xd3\xc2\x62\x73\xdd" "\x8f\xe7\x03\xe6\x78\x6f\x1d\x9e\x54\xf2\x8d\x94\x12\xb1\xae\xef\xc6" "\x71\x5e\xf7\x8c\x55\x78\x2a\x3a\x48\xdf\xac\xad\x97\x25\xf7\xef\xd7" "\x77\xb6\xd1\xf4\x39\x33\x25\xf6\xdc\xbc\x47\x62\xfb\x84\x11\x6a\x4e" "\xae\xe3\x39\x15\x1a\x88\x47\x7a\x46\x27\x39\x17\xe7\x46\xb0\x28\xca" "\xed\xc0\x67\xc8\xc4\x23\x01\xee\x92\x50\x58\xfe\xef\x25\xfb\x9b\x42" "\x0c\x69\x64\x33\xe2\x67\x31\xcf\x51\x2e\xcf\x95\x42\x72\xb6\xd7\x12" "\xe1\x33\x7d\x02\xfc\xb0\x28\x7c\xae\x15\xe1\x0f\xff\x6c\xc9\x11\xc5" "\x7f\x85\xd6\x2f\xb8\x82\x86\x8a\x1f\xdf\x1e\xf6\x7a\x59\x4a\xfd\xc9" "\xc4\x9f\x39\x3c\xc3\xf8\xbe\x32\x5e\x61\x46\x23\x44\xf1\x20\xdd\xd7" "\x21\x91\xf6\xe5\x24\xef\x1d\xc9\x78\x10\x6a\xb7\x7e\xbb\x9e\x9f\xd4" "\x1d\x3d\xa4\x76\x89\xb0\x64\xef\x7f\x01\x63\x8a\xc4\xeb\x12\xb3\xe2" "\xc9\x31\xd7\x71\x5e\x01\xf5\x8d\xf0\xe4\x5c\x85\x89\xbe\x1e\xce\x3c" "\x8c\x30\x63\xe3\x6d\x0d\xe7\x17\xe3\xf1\x50\x69\x7e\xbe\xb5\xbc\xeb" "\x05\x1d\xf1\x6f\xb5\x80\x3a\x74\x9c\x98\xa9\x8d\xf2\x06\xd5\x3a\xd5" "\x30\xc5\x3c\x0a\x95\xba\xbb\xd2\x92\x0c\x81\xd8\x25\xc3\xb3\xca\xc1" "\xb0\x12\xaa\x0f\xdb\x01\xb4\xf7\xce\x8c\xbe\x46\x8b\x43\xa3\xb0\xfb" "\x70\x40\x5a\x68\x1a\x6d\xa4\x3b\x94\xa4\x40\x29\xa7\xee\x14\x74\x3c" "\x80\xf5\x03\x7f\x73\x7d\xcc\x60\x3d\xa7\xe2\xd6\x57\xeb\x9d\xeb\xf5" "\x05\x2b\x25\x8d\x2e\x71\x44\x92\xe0\xe7\xde\x28\x6b\xd7\xb9\x4e\xf5" "\xfc\xb8\x66\x06\x36\x03\x8c\xc3\x8a\xc1\x9a\x29\x3b\x05\x37\xf8\x60" "\x16\x3c\x42\x48\x3e\x64\x62\x1f\xcc\x8b\xd3\xdf\x9a\x39\xec\x93\xca" "\x6f\x15\x47\x2d\x3e\x03\x43\xa7\x1b\x81\x0b\xb5\x07\x3d\xb7\xe2\xcc" "\x12\x53\x6a\x0c\xc2\xb8\x4a\xc9\x26\x53\x15\x1e\x6b\x0d\xe5\xe3\x71" "\x56\x7c\xde\xdb\x35\x67\xaf\x64\xdd\x7a\xc4\xd7\xe6\xb3\x8b\x64\xb4" "\x66\x7f\x16\xf0\x15\x04\xdd\x27\x8c\xbd\xc5\x28\x2b\xd2\xf3\x42\x5d" "\x17\x60\x15\x55\xb0\x8f\xb9\xfc\x58\x76\x39\x49\x37\xb9\xcb\x85\xbf" "\xf1\x2c\x09\xfb\x29\x85\x67\x13\x28\x0b\x9b\xff\xc4\xee\x2f\x20\x02" "\x42\xbf\x13\xd0\x0d\x15\xfb\x6a\x90\x13\x28\xdf\xa1\x01\xe7\x30\xe4" "\xb9\x90\x71\x51\x2a\x2b\x34\xea\x18\x15\xb3\xad\x21\x60\x35\x7e\x90" "\x97\xe7\x03\xcd\xfb\x5f\xa7\xa2\x6b\x6f\x25\x33\x4d\xfe\x69\xf8\x67" "\x0f\x53\x75\x29\x55\xa5\xe1\x50\xbc\x30\xfd\x90\x6a\xd0\x34\xd0\x42" "\xb0\x7e\x44\xb1\xaf\xe5\x87\x3d\xf0\x14\x46\xb3\x3b\xfd\xd4\x2e\xf7" "\x5c\xae\x07\x85\xb2\x9a\x96\xcf\xed\xfa\x98\xad\xa3\x34\x2d\x74\x6b" "\xfb\x88\xd4\xae\x25\x3b\x30\x5f\x46\xf1\x3d\x82\x27\xb4\x7d\xf7\x48" "\x4c\x7c\x2a\x93\x17\xf2\x20\x5d\x3c\xf2\x00\xb7\x4d\xa4\xc8\x05\xba" "\xc8\x4e\xe5\xd1\x9c\x7d\x2d\x60\x85\xed\x34\x77\xb8\x22\x09\x1e\x70" "\xd0\x33\xda\x97\x3a\xcc\xf9\x75\xd1\x7a\x7a\x99\x50\xf8\x30\x79\xe9" "\x43\x9a\x4f\x90\x0c\xeb\xb0\xdb\xcd\x13\x70\xe3\x2d\xbe\x0e\xac\x1c" "\xff\x37\x49\x46\xc8\x09\x1b\x45\x4e\x38\xbe\x63\xcc\x4e\x47\xfa\xfd" "\xf9\x9e\xf6\x25\x03\x6f\x7e\x97\xaa\x8d\xa2\x8e\xc5\xa6\x1a\x53\x28" "\xd7\x68\x6e\xa9\x41\x6d\x03\xcc\x4c\x87\x59\x07\x35\x95\x37\x27\x25" "\xc4\x49\x2f\x66\x84\x80\x25\xfc\x6e\x0e\x4d\x4c\x2b\x6b\x36\xcd\x82" "\x6f\x19\xa9\xb8\x10\x0a\x95\x66\x80\xf2\x1d\x61\x7f\x49\xc5\x5f\xd8" "\x85\xc8\x49\x33\xaf\x2c\x0c\x75\xc3\xdb\x11\xf1\xa3\x41\x3a\x24\xf4" "\xdc\x78\xc3\xd0\xb2\x71\x4e\x78\xdc\x38\xf2\x8a\xcf\xb2\x56\x1a\xa3" "\x80\xb4\xb1\x7c\xdd\x66\x16\x25\x5d\x09\x0f\xf9\x50\x8a\xa3", 8192)); NONFAILING(*(uint64_t*)0x20000a80 = 0); NONFAILING(*(uint64_t*)0x20000a88 = 0); NONFAILING(*(uint64_t*)0x20000a90 = 0); NONFAILING(*(uint64_t*)0x20000a98 = 0); NONFAILING(*(uint64_t*)0x20000aa0 = 0); NONFAILING(*(uint64_t*)0x20000aa8 = 0); NONFAILING(*(uint64_t*)0x20000ab0 = 0); NONFAILING(*(uint64_t*)0x20000ab8 = 0); NONFAILING(*(uint64_t*)0x20000ac0 = 0); NONFAILING(*(uint64_t*)0x20000ac8 = 0); NONFAILING(*(uint64_t*)0x20000ad0 = 0x20000500); NONFAILING(*(uint32_t*)0x20000500 = 0x78); NONFAILING(*(uint32_t*)0x20000504 = 0); NONFAILING(*(uint64_t*)0x20000508 = 0); NONFAILING(*(uint64_t*)0x20000510 = 0); NONFAILING(*(uint32_t*)0x20000518 = 0); NONFAILING(*(uint32_t*)0x2000051c = 0); NONFAILING(*(uint64_t*)0x20000520 = 0); NONFAILING(*(uint64_t*)0x20000528 = 0); NONFAILING(*(uint64_t*)0x20000530 = 0); NONFAILING(*(uint64_t*)0x20000538 = 0); NONFAILING(*(uint64_t*)0x20000540 = 0); NONFAILING(*(uint64_t*)0x20000548 = 0); NONFAILING(*(uint32_t*)0x20000550 = 0); NONFAILING(*(uint32_t*)0x20000554 = 0); NONFAILING(*(uint32_t*)0x20000558 = 0); NONFAILING(*(uint32_t*)0x2000055c = 0); NONFAILING(*(uint32_t*)0x20000560 = 0); NONFAILING(*(uint32_t*)0x20000564 = 0); NONFAILING(*(uint32_t*)0x20000568 = 0); NONFAILING(*(uint32_t*)0x2000056c = 0); NONFAILING(*(uint32_t*)0x20000570 = 0); NONFAILING(*(uint32_t*)0x20000574 = 0); NONFAILING(*(uint64_t*)0x20000ad8 = 0); NONFAILING(*(uint64_t*)0x20000ae0 = 0); NONFAILING(*(uint64_t*)0x20000ae8 = 0); NONFAILING(*(uint64_t*)0x20000af0 = 0); NONFAILING(*(uint64_t*)0x20000af8 = 0); NONFAILING(syz_fuse_handle_req(r[0], 0x200042c0, 0x2000, 0x20000a80)); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); setup_sysctl(); setup_usb(); install_segv_handler(); use_temporary_dir(); do_sandbox_none(); return 0; }