// https://syzkaller.appspot.com/bug?id=73622b8c2254a8f28294475bb76c516e11b127dd // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset, unsigned int total_len) { struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset); if (offset == total_len || offset + hdr->nlmsg_len > total_len) return -1; return hdr->nlmsg_len; } static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_add_device(struct nlmsg* nlmsg, int sock, const char* type, const char* name) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_veth(struct nlmsg* nlmsg, int sock, const char* name, const char* peer) { netlink_add_device_impl(nlmsg, "veth", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_nest(nlmsg, VETH_INFO_PEER); nlmsg->pos += sizeof(struct ifinfomsg); netlink_attr(nlmsg, IFLA_IFNAME, peer, strlen(peer)); netlink_done(nlmsg); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_xfrm(struct nlmsg* nlmsg, int sock, const char* name) { netlink_add_device_impl(nlmsg, "xfrm", name, true); netlink_nest(nlmsg, IFLA_INFO_DATA); int if_id = 1; netlink_attr(nlmsg, 2, &if_id, sizeof(if_id)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_hsr(struct nlmsg* nlmsg, int sock, const char* name, const char* slave1, const char* slave2) { netlink_add_device_impl(nlmsg, "hsr", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); int ifindex1 = if_nametoindex(slave1); netlink_attr(nlmsg, IFLA_HSR_SLAVE1, &ifindex1, sizeof(ifindex1)); int ifindex2 = if_nametoindex(slave2); netlink_attr(nlmsg, IFLA_HSR_SLAVE2, &ifindex2, sizeof(ifindex2)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_linked(struct nlmsg* nlmsg, int sock, const char* type, const char* name, const char* link) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_vlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t id, uint16_t proto) { netlink_add_device_impl(nlmsg, "vlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_VLAN_ID, &id, sizeof(id)); netlink_attr(nlmsg, IFLA_VLAN_PROTOCOL, &proto, sizeof(proto)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_macvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link) { netlink_add_device_impl(nlmsg, "macvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); uint32_t mode = MACVLAN_MODE_BRIDGE; netlink_attr(nlmsg, IFLA_MACVLAN_MODE, &mode, sizeof(mode)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_geneve(struct nlmsg* nlmsg, int sock, const char* name, uint32_t vni, struct in_addr* addr4, struct in6_addr* addr6) { netlink_add_device_impl(nlmsg, "geneve", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_GENEVE_ID, &vni, sizeof(vni)); if (addr4) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE, addr4, sizeof(*addr4)); if (addr6) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE6, addr6, sizeof(*addr6)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } #define IFLA_IPVLAN_FLAGS 2 #define IPVLAN_MODE_L3S 2 #undef IPVLAN_F_VEPA #define IPVLAN_F_VEPA 2 static void netlink_add_ipvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t mode, uint16_t flags) { netlink_add_device_impl(nlmsg, "ipvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_IPVLAN_MODE, &mode, sizeof(mode)); netlink_attr(nlmsg, IFLA_IPVLAN_FLAGS, &flags, sizeof(flags)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev, const void* addr, int addrsize) { struct ifaddrmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120; hdr.ifa_scope = RT_SCOPE_UNIVERSE; hdr.ifa_index = if_nametoindex(dev); netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize); netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize); return netlink_send(nlmsg, sock); } static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in_addr in_addr; inet_pton(AF_INET, addr, &in_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr)); if (err < 0) { } } static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in6_addr in6_addr; inet_pton(AF_INET6, addr, &in6_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr)); if (err < 0) { } } static struct nlmsg nlmsg; #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 static struct nlmsg nlmsg2; static void initialize_devlink_ports(const char* bus_name, const char* dev_name, const char* netdev_prefix) { struct genlmsghdr genlhdr; int len, total_len, id, err, offset; uint16_t netdev_index; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (rtsock == -1) exit(1); id = netlink_query_family_id(&nlmsg, sock, DEVLINK_FAMILY_NAME, true); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_PORT_GET; netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); err = netlink_send_ext(&nlmsg, sock, id, &total_len, true); if (err < 0) { goto error; } offset = 0; netdev_index = 0; while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) { struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + offset + len; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) { char* port_name; char netdev_name[IFNAMSIZ]; port_name = (char*)(attr + 1); snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix, netdev_index); netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0, netdev_name); break; } } offset += len; netdev_index++; } error: close(rtsock); close(sock); } #define WIFI_INITIAL_DEVICE_COUNT 2 #define WIFI_MAC_BASE {0x08, 0x02, 0x11, 0x00, 0x00, 0x00} #define WIFI_IBSS_BSSID {0x50, 0x50, 0x50, 0x50, 0x50, 0x50} #define WIFI_IBSS_SSID {0x10, 0x10, 0x10, 0x10, 0x10, 0x10} #define WIFI_DEFAULT_FREQUENCY 2412 #define WIFI_DEFAULT_SIGNAL 0 #define WIFI_DEFAULT_RX_RATE 1 #define HWSIM_CMD_REGISTER 1 #define HWSIM_CMD_FRAME 2 #define HWSIM_CMD_NEW_RADIO 4 #define HWSIM_ATTR_SUPPORT_P2P_DEVICE 14 #define HWSIM_ATTR_PERM_ADDR 22 #define IF_OPER_UP 6 struct join_ibss_props { int wiphy_freq; bool wiphy_freq_fixed; uint8_t* mac; uint8_t* ssid; int ssid_len; }; static int set_interface_state(const char* interface_name, int on) { struct ifreq ifr; int sock = socket(AF_INET, SOCK_DGRAM, 0); if (sock < 0) { return -1; } memset(&ifr, 0, sizeof(ifr)); strcpy(ifr.ifr_name, interface_name); int ret = ioctl(sock, SIOCGIFFLAGS, &ifr); if (ret < 0) { close(sock); return -1; } if (on) ifr.ifr_flags |= IFF_UP; else ifr.ifr_flags &= ~IFF_UP; ret = ioctl(sock, SIOCSIFFLAGS, &ifr); close(sock); if (ret < 0) { return -1; } return 0; } static int nl80211_set_interface(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, uint32_t iftype, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_SET_INTERFACE; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_IFTYPE, &iftype, sizeof(iftype)); int err = netlink_send_ext(nlmsg, sock, 0, NULL, dofail); if (err < 0) { } return err; } static int nl80211_join_ibss(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, struct join_ibss_props* props, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_JOIN_IBSS; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_SSID, props->ssid, props->ssid_len); netlink_attr(nlmsg, NL80211_ATTR_WIPHY_FREQ, &(props->wiphy_freq), sizeof(props->wiphy_freq)); if (props->mac) netlink_attr(nlmsg, NL80211_ATTR_MAC, props->mac, ETH_ALEN); if (props->wiphy_freq_fixed) netlink_attr(nlmsg, NL80211_ATTR_FREQ_FIXED, NULL, 0); int err = netlink_send_ext(nlmsg, sock, 0, NULL, dofail); if (err < 0) { } return err; } static int get_ifla_operstate(struct nlmsg* nlmsg, int ifindex, bool dofail) { struct ifinfomsg info; memset(&info, 0, sizeof(info)); info.ifi_family = AF_UNSPEC; info.ifi_index = ifindex; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) { return -1; } netlink_init(nlmsg, RTM_GETLINK, 0, &info, sizeof(info)); int n; int err = netlink_send_ext(nlmsg, sock, RTM_NEWLINK, &n, dofail); close(sock); if (err) { return -1; } struct rtattr* attr = IFLA_RTA(NLMSG_DATA(nlmsg->buf)); for (; RTA_OK(attr, n); attr = RTA_NEXT(attr, n)) { if (attr->rta_type == IFLA_OPERSTATE) return *((int32_t*)RTA_DATA(attr)); } return -1; } static int await_ifla_operstate(struct nlmsg* nlmsg, char* interface, int operstate, bool dofail) { int ifindex = if_nametoindex(interface); while (true) { usleep(1000); int ret = get_ifla_operstate(nlmsg, ifindex, dofail); if (ret < 0) return ret; if (ret == operstate) return 0; } return 0; } static int nl80211_setup_ibss_interface(struct nlmsg* nlmsg, int sock, int nl80211_family_id, char* interface, struct join_ibss_props* ibss_props, bool dofail) { int ifindex = if_nametoindex(interface); if (ifindex == 0) { return -1; } int ret = nl80211_set_interface(nlmsg, sock, nl80211_family_id, ifindex, NL80211_IFTYPE_ADHOC, dofail); if (ret < 0) { return -1; } ret = set_interface_state(interface, 1); if (ret < 0) { return -1; } ret = nl80211_join_ibss(nlmsg, sock, nl80211_family_id, ifindex, ibss_props, dofail); if (ret < 0) { return -1; } return 0; } static int hwsim80211_create_device(struct nlmsg* nlmsg, int sock, int hwsim_family, uint8_t mac_addr[ETH_ALEN]) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = HWSIM_CMD_NEW_RADIO; netlink_init(nlmsg, hwsim_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, HWSIM_ATTR_SUPPORT_P2P_DEVICE, NULL, 0); netlink_attr(nlmsg, HWSIM_ATTR_PERM_ADDR, mac_addr, ETH_ALEN); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static void initialize_wifi_devices(void) { int rfkill = open("/dev/rfkill", O_RDWR); if (rfkill == -1) exit(1); struct rfkill_event event = {0}; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; if (write(rfkill, &event, sizeof(event)) != (ssize_t)(sizeof(event))) exit(1); close(rfkill); uint8_t mac_addr[6] = WIFI_MAC_BASE; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock < 0) exit(1); int hwsim_family_id = netlink_query_family_id(&nlmsg, sock, "MAC80211_HWSIM", true); int nl80211_family_id = netlink_query_family_id(&nlmsg, sock, "nl80211", true); if (hwsim_family_id < 0 || nl80211_family_id < 0) exit(1); uint8_t ssid[] = WIFI_IBSS_SSID; uint8_t bssid[] = WIFI_IBSS_BSSID; struct join_ibss_props ibss_props = {.wiphy_freq = WIFI_DEFAULT_FREQUENCY, .wiphy_freq_fixed = true, .mac = bssid, .ssid = ssid, .ssid_len = sizeof(ssid)}; for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { mac_addr[5] = device_id; int ret = hwsim80211_create_device(&nlmsg, sock, hwsim_family_id, mac_addr); if (ret < 0) exit(1); char interface[6] = "wlan0"; interface[4] += device_id; if (nl80211_setup_ibss_interface(&nlmsg, sock, nl80211_family_id, interface, &ibss_props, true) < 0) exit(1); } for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { char interface[6] = "wlan0"; interface[4] += device_id; int ret = await_ifla_operstate(&nlmsg, interface, IF_OPER_UP, true); if (ret < 0) exit(1); } close(sock); } static int runcmdline(char* cmdline) { int ret = system(cmdline); if (ret) { } return ret; } #define DEV_IPV4 "172.20.20.%d" #define DEV_IPV6 "fe80::%02x" #define DEV_MAC 0x00aaaaaaaaaa static void netdevsim_add(unsigned int addr, unsigned int port_count) { write_file("/sys/bus/netdevsim/del_device", "%u", addr); if (write_file("/sys/bus/netdevsim/new_device", "%u %u", addr, port_count)) { char buf[32]; snprintf(buf, sizeof(buf), "netdevsim%d", addr); initialize_devlink_ports("netdevsim", buf, "netdevsim"); } } #define WG_GENL_NAME "wireguard" enum wg_cmd { WG_CMD_GET_DEVICE, WG_CMD_SET_DEVICE, }; enum wgdevice_attribute { WGDEVICE_A_UNSPEC, WGDEVICE_A_IFINDEX, WGDEVICE_A_IFNAME, WGDEVICE_A_PRIVATE_KEY, WGDEVICE_A_PUBLIC_KEY, WGDEVICE_A_FLAGS, WGDEVICE_A_LISTEN_PORT, WGDEVICE_A_FWMARK, WGDEVICE_A_PEERS, }; enum wgpeer_attribute { WGPEER_A_UNSPEC, WGPEER_A_PUBLIC_KEY, WGPEER_A_PRESHARED_KEY, WGPEER_A_FLAGS, WGPEER_A_ENDPOINT, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, WGPEER_A_LAST_HANDSHAKE_TIME, WGPEER_A_RX_BYTES, WGPEER_A_TX_BYTES, WGPEER_A_ALLOWEDIPS, WGPEER_A_PROTOCOL_VERSION, }; enum wgallowedip_attribute { WGALLOWEDIP_A_UNSPEC, WGALLOWEDIP_A_FAMILY, WGALLOWEDIP_A_IPADDR, WGALLOWEDIP_A_CIDR_MASK, }; static void netlink_wireguard_setup(void) { const char ifname_a[] = "wg0"; const char ifname_b[] = "wg1"; const char ifname_c[] = "wg2"; const char private_a[] = "\xa0\x5c\xa8\x4f\x6c\x9c\x8e\x38\x53\xe2\xfd\x7a\x70\xae\x0f\xb2\x0f\xa1" "\x52\x60\x0c\xb0\x08\x45\x17\x4f\x08\x07\x6f\x8d\x78\x43"; const char private_b[] = "\xb0\x80\x73\xe8\xd4\x4e\x91\xe3\xda\x92\x2c\x22\x43\x82\x44\xbb\x88\x5c" "\x69\xe2\x69\xc8\xe9\xd8\x35\xb1\x14\x29\x3a\x4d\xdc\x6e"; const char private_c[] = "\xa0\xcb\x87\x9a\x47\xf5\xbc\x64\x4c\x0e\x69\x3f\xa6\xd0\x31\xc7\x4a\x15" "\x53\xb6\xe9\x01\xb9\xff\x2f\x51\x8c\x78\x04\x2f\xb5\x42"; const char public_a[] = "\x97\x5c\x9d\x81\xc9\x83\xc8\x20\x9e\xe7\x81\x25\x4b\x89\x9f\x8e\xd9\x25" "\xae\x9f\x09\x23\xc2\x3c\x62\xf5\x3c\x57\xcd\xbf\x69\x1c"; const char public_b[] = "\xd1\x73\x28\x99\xf6\x11\xcd\x89\x94\x03\x4d\x7f\x41\x3d\xc9\x57\x63\x0e" "\x54\x93\xc2\x85\xac\xa4\x00\x65\xcb\x63\x11\xbe\x69\x6b"; const char public_c[] = "\xf4\x4d\xa3\x67\xa8\x8e\xe6\x56\x4f\x02\x02\x11\x45\x67\x27\x08\x2f\x5c" "\xeb\xee\x8b\x1b\xf5\xeb\x73\x37\x34\x1b\x45\x9b\x39\x22"; const uint16_t listen_a = 20001; const uint16_t listen_b = 20002; const uint16_t listen_c = 20003; const uint16_t af_inet = AF_INET; const uint16_t af_inet6 = AF_INET6; const struct sockaddr_in endpoint_b_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_b), .sin_addr = {htonl(INADDR_LOOPBACK)}}; const struct sockaddr_in endpoint_c_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_c), .sin_addr = {htonl(INADDR_LOOPBACK)}}; struct sockaddr_in6 endpoint_a_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_a)}; endpoint_a_v6.sin6_addr = in6addr_loopback; struct sockaddr_in6 endpoint_c_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_c)}; endpoint_c_v6.sin6_addr = in6addr_loopback; const struct in_addr first_half_v4 = {0}; const struct in_addr second_half_v4 = {(uint32_t)htonl(128 << 24)}; const struct in6_addr first_half_v6 = {{{0}}}; const struct in6_addr second_half_v6 = {{{0x80}}}; const uint8_t half_cidr = 1; const uint16_t persistent_keepalives[] = {1, 3, 7, 9, 14, 19}; struct genlmsghdr genlhdr = {.cmd = WG_CMD_SET_DEVICE, .version = 1}; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) { return; } id = netlink_query_family_id(&nlmsg, sock, WG_GENL_NAME, true); if (id == -1) goto error; netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_a, strlen(ifname_a) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_a, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_a, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[0], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v6, sizeof(endpoint_c_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[1], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_b, strlen(ifname_b) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_b, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_b, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[2], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v4, sizeof(endpoint_c_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[3], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_c, strlen(ifname_c) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_c, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_c, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[4], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[5], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } error: close(sock); } static void initialize_netdevices(void) { char netdevsim[16]; sprintf(netdevsim, "netdevsim%d", (int)procid); struct { const char* type; const char* dev; } devtypes[] = { {"ip6gretap", "ip6gretap0"}, {"bridge", "bridge0"}, {"vcan", "vcan0"}, {"bond", "bond0"}, {"team", "team0"}, {"dummy", "dummy0"}, {"nlmon", "nlmon0"}, {"caif", "caif0"}, {"batadv", "batadv0"}, {"vxcan", "vxcan1"}, {"veth", 0}, {"wireguard", "wg0"}, {"wireguard", "wg1"}, {"wireguard", "wg2"}, }; const char* devmasters[] = {"bridge", "bond", "team", "batadv"}; struct { const char* name; int macsize; bool noipv6; } devices[] = { {"lo", ETH_ALEN}, {"sit0", 0}, {"bridge0", ETH_ALEN}, {"vcan0", 0, true}, {"tunl0", 0}, {"gre0", 0}, {"gretap0", ETH_ALEN}, {"ip_vti0", 0}, {"ip6_vti0", 0}, {"ip6tnl0", 0}, {"ip6gre0", 0}, {"ip6gretap0", ETH_ALEN}, {"erspan0", ETH_ALEN}, {"bond0", ETH_ALEN}, {"veth0", ETH_ALEN}, {"veth1", ETH_ALEN}, {"team0", ETH_ALEN}, {"veth0_to_bridge", ETH_ALEN}, {"veth1_to_bridge", ETH_ALEN}, {"veth0_to_bond", ETH_ALEN}, {"veth1_to_bond", ETH_ALEN}, {"veth0_to_team", ETH_ALEN}, {"veth1_to_team", ETH_ALEN}, {"veth0_to_hsr", ETH_ALEN}, {"veth1_to_hsr", ETH_ALEN}, {"hsr0", 0}, {"dummy0", ETH_ALEN}, {"nlmon0", 0}, {"vxcan0", 0, true}, {"vxcan1", 0, true}, {"caif0", ETH_ALEN}, {"batadv0", ETH_ALEN}, {netdevsim, ETH_ALEN}, {"xfrm0", ETH_ALEN}, {"veth0_virt_wifi", ETH_ALEN}, {"veth1_virt_wifi", ETH_ALEN}, {"virt_wifi0", ETH_ALEN}, {"veth0_vlan", ETH_ALEN}, {"veth1_vlan", ETH_ALEN}, {"vlan0", ETH_ALEN}, {"vlan1", ETH_ALEN}, {"macvlan0", ETH_ALEN}, {"macvlan1", ETH_ALEN}, {"ipvlan0", ETH_ALEN}, {"ipvlan1", ETH_ALEN}, {"veth0_macvtap", ETH_ALEN}, {"veth1_macvtap", ETH_ALEN}, {"macvtap0", ETH_ALEN}, {"macsec0", ETH_ALEN}, {"veth0_to_batadv", ETH_ALEN}, {"veth1_to_batadv", ETH_ALEN}, {"batadv_slave_0", ETH_ALEN}, {"batadv_slave_1", ETH_ALEN}, {"geneve0", ETH_ALEN}, {"geneve1", ETH_ALEN}, {"wg0", 0}, {"wg1", 0}, {"wg2", 0}, }; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) netlink_add_device(&nlmsg, sock, devtypes[i].type, devtypes[i].dev); for (i = 0; i < sizeof(devmasters) / (sizeof(devmasters[0])); i++) { char master[32], slave0[32], veth0[32], slave1[32], veth1[32]; sprintf(slave0, "%s_slave_0", devmasters[i]); sprintf(veth0, "veth0_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave0, veth0); sprintf(slave1, "%s_slave_1", devmasters[i]); sprintf(veth1, "veth1_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave1, veth1); sprintf(master, "%s0", devmasters[i]); netlink_device_change(&nlmsg, sock, slave0, false, master, 0, 0, NULL); netlink_device_change(&nlmsg, sock, slave1, false, master, 0, 0, NULL); } netlink_add_xfrm(&nlmsg, sock, "xfrm0"); netlink_device_change(&nlmsg, sock, "bridge_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "bridge_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "hsr_slave_0", "veth0_to_hsr"); netlink_add_veth(&nlmsg, sock, "hsr_slave_1", "veth1_to_hsr"); netlink_add_hsr(&nlmsg, sock, "hsr0", "hsr_slave_0", "hsr_slave_1"); netlink_device_change(&nlmsg, sock, "hsr_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "hsr_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "veth0_virt_wifi", "veth1_virt_wifi"); netlink_add_linked(&nlmsg, sock, "virt_wifi", "virt_wifi0", "veth1_virt_wifi"); netlink_add_veth(&nlmsg, sock, "veth0_vlan", "veth1_vlan"); netlink_add_vlan(&nlmsg, sock, "vlan0", "veth0_vlan", 0, htons(ETH_P_8021Q)); netlink_add_vlan(&nlmsg, sock, "vlan1", "veth0_vlan", 1, htons(ETH_P_8021AD)); netlink_add_macvlan(&nlmsg, sock, "macvlan0", "veth1_vlan"); netlink_add_macvlan(&nlmsg, sock, "macvlan1", "veth1_vlan"); netlink_add_ipvlan(&nlmsg, sock, "ipvlan0", "veth0_vlan", IPVLAN_MODE_L2, 0); netlink_add_ipvlan(&nlmsg, sock, "ipvlan1", "veth0_vlan", IPVLAN_MODE_L3S, IPVLAN_F_VEPA); netlink_add_veth(&nlmsg, sock, "veth0_macvtap", "veth1_macvtap"); netlink_add_linked(&nlmsg, sock, "macvtap", "macvtap0", "veth0_macvtap"); netlink_add_linked(&nlmsg, sock, "macsec", "macsec0", "veth1_macvtap"); char addr[32]; sprintf(addr, DEV_IPV4, 14 + 10); struct in_addr geneve_addr4; if (inet_pton(AF_INET, addr, &geneve_addr4) <= 0) exit(1); struct in6_addr geneve_addr6; if (inet_pton(AF_INET6, "fc00::01", &geneve_addr6) <= 0) exit(1); netlink_add_geneve(&nlmsg, sock, "geneve0", 0, &geneve_addr4, 0); netlink_add_geneve(&nlmsg, sock, "geneve1", 1, 0, &geneve_addr6); netdevsim_add((int)procid, 4); netlink_wireguard_setup(); for (i = 0; i < sizeof(devices) / (sizeof(devices[0])); i++) { char addr[32]; sprintf(addr, DEV_IPV4, i + 10); netlink_add_addr4(&nlmsg, sock, devices[i].name, addr); if (!devices[i].noipv6) { sprintf(addr, DEV_IPV6, i + 10); netlink_add_addr6(&nlmsg, sock, devices[i].name, addr); } uint64_t macaddr = DEV_MAC + ((i + 10ull) << 40); netlink_device_change(&nlmsg, sock, devices[i].name, true, 0, &macaddr, devices[i].macsize, NULL); } close(sock); } static void initialize_netdevices_init(void) { int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); struct { const char* type; int macsize; bool noipv6; bool noup; } devtypes[] = { {"nr", 7, true}, {"rose", 5, true, true}, }; unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) { char dev[32], addr[32]; sprintf(dev, "%s%d", devtypes[i].type, (int)procid); sprintf(addr, "172.30.%d.%d", i, (int)procid + 1); netlink_add_addr4(&nlmsg, sock, dev, addr); if (!devtypes[i].noipv6) { sprintf(addr, "fe88::%02x:%02x", i, (int)procid + 1); netlink_add_addr6(&nlmsg, sock, dev, addr); } int macsize = devtypes[i].macsize; uint64_t macaddr = 0xbbbbbb + ((unsigned long long)i << (8 * (macsize - 2))) + (procid << (8 * (macsize - 1))); netlink_device_change(&nlmsg, sock, dev, !devtypes[i].noup, 0, &macaddr, macsize, NULL); } close(sock); } #define MAX_FDS 30 static long syz_open_dev(volatile long a0, volatile long a1, volatile long a2) { if (a0 == 0xc || a0 == 0xb) { char buf[128]; sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1, (uint8_t)a2); return open(buf, O_RDWR, 0); } else { unsigned long nb = a1; char buf[1024]; char* hash; strncpy(buf, (char*)a0, sizeof(buf) - 1); buf[sizeof(buf) - 1] = 0; while ((hash = strchr(buf, '#'))) { *hash = '0' + (char)(nb % 10); nb /= 10; } return open(buf, a2 & ~O_CREAT, 0); } } #define BTPROTO_HCI 1 #define ACL_LINK 1 #define SCAN_PAGE 2 typedef struct { uint8_t b[6]; } __attribute__((packed)) bdaddr_t; #define HCI_COMMAND_PKT 1 #define HCI_EVENT_PKT 4 #define HCI_VENDOR_PKT 0xff struct hci_command_hdr { uint16_t opcode; uint8_t plen; } __attribute__((packed)); struct hci_event_hdr { uint8_t evt; uint8_t plen; } __attribute__((packed)); #define HCI_EV_CONN_COMPLETE 0x03 struct hci_ev_conn_complete { uint8_t status; uint16_t handle; bdaddr_t bdaddr; uint8_t link_type; uint8_t encr_mode; } __attribute__((packed)); #define HCI_EV_CONN_REQUEST 0x04 struct hci_ev_conn_request { bdaddr_t bdaddr; uint8_t dev_class[3]; uint8_t link_type; } __attribute__((packed)); #define HCI_EV_REMOTE_FEATURES 0x0b struct hci_ev_remote_features { uint8_t status; uint16_t handle; uint8_t features[8]; } __attribute__((packed)); #define HCI_EV_CMD_COMPLETE 0x0e struct hci_ev_cmd_complete { uint8_t ncmd; uint16_t opcode; } __attribute__((packed)); #define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a #define HCI_OP_READ_BUFFER_SIZE 0x1005 struct hci_rp_read_buffer_size { uint8_t status; uint16_t acl_mtu; uint8_t sco_mtu; uint16_t acl_max_pkt; uint16_t sco_max_pkt; } __attribute__((packed)); #define HCI_OP_READ_BD_ADDR 0x1009 struct hci_rp_read_bd_addr { uint8_t status; bdaddr_t bdaddr; } __attribute__((packed)); #define HCI_EV_LE_META 0x3e struct hci_ev_le_meta { uint8_t subevent; } __attribute__((packed)); #define HCI_EV_LE_CONN_COMPLETE 0x01 struct hci_ev_le_conn_complete { uint8_t status; uint16_t handle; uint8_t role; uint8_t bdaddr_type; bdaddr_t bdaddr; uint16_t interval; uint16_t latency; uint16_t supervision_timeout; uint8_t clk_accurancy; } __attribute__((packed)); struct hci_dev_req { uint16_t dev_id; uint32_t dev_opt; }; struct vhci_vendor_pkt_request { uint8_t type; uint8_t opcode; } __attribute__((packed)); struct vhci_pkt { uint8_t type; union { struct { uint8_t opcode; uint16_t id; } __attribute__((packed)) vendor_pkt; struct hci_command_hdr command_hdr; }; } __attribute__((packed)); #define HCIDEVUP _IOW('H', 201, int) #define HCISETSCAN _IOW('H', 221, int) static int vhci_fd = -1; static void rfkill_unblock_all() { int fd = open("/dev/rfkill", O_WRONLY); if (fd < 0) exit(1); struct rfkill_event event = {0}; event.idx = 0; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; event.soft = 0; event.hard = 0; if (write(fd, &event, sizeof(event)) < 0) exit(1); close(fd); } static void hci_send_event_packet(int fd, uint8_t evt, void* data, size_t data_len) { struct iovec iv[3]; struct hci_event_hdr hdr; hdr.evt = evt; hdr.plen = data_len; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = data; iv[2].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static void hci_send_event_cmd_complete(int fd, uint16_t opcode, void* data, size_t data_len) { struct iovec iv[4]; struct hci_event_hdr hdr; hdr.evt = HCI_EV_CMD_COMPLETE; hdr.plen = sizeof(struct hci_ev_cmd_complete) + data_len; struct hci_ev_cmd_complete evt_hdr; evt_hdr.ncmd = 1; evt_hdr.opcode = opcode; uint8_t type = HCI_EVENT_PKT; iv[0].iov_base = &type; iv[0].iov_len = sizeof(type); iv[1].iov_base = &hdr; iv[1].iov_len = sizeof(hdr); iv[2].iov_base = &evt_hdr; iv[2].iov_len = sizeof(evt_hdr); iv[3].iov_base = data; iv[3].iov_len = data_len; if (writev(fd, iv, sizeof(iv) / sizeof(struct iovec)) < 0) exit(1); } static bool process_command_pkt(int fd, char* buf, ssize_t buf_size) { struct hci_command_hdr* hdr = (struct hci_command_hdr*)buf; if (buf_size < (ssize_t)sizeof(struct hci_command_hdr) || hdr->plen != buf_size - sizeof(struct hci_command_hdr)) exit(1); switch (hdr->opcode) { case HCI_OP_WRITE_SCAN_ENABLE: { uint8_t status = 0; hci_send_event_cmd_complete(fd, hdr->opcode, &status, sizeof(status)); return true; } case HCI_OP_READ_BD_ADDR: { struct hci_rp_read_bd_addr rp = {0}; rp.status = 0; memset(&rp.bdaddr, 0xaa, 6); hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } case HCI_OP_READ_BUFFER_SIZE: { struct hci_rp_read_buffer_size rp = {0}; rp.status = 0; rp.acl_mtu = 1021; rp.sco_mtu = 96; rp.acl_max_pkt = 4; rp.sco_max_pkt = 6; hci_send_event_cmd_complete(fd, hdr->opcode, &rp, sizeof(rp)); return false; } } char dummy[0xf9] = {0}; hci_send_event_cmd_complete(fd, hdr->opcode, dummy, sizeof(dummy)); return false; } static void* event_thread(void* arg) { while (1) { char buf[1024] = {0}; ssize_t buf_size = read(vhci_fd, buf, sizeof(buf)); if (buf_size < 0) exit(1); if (buf_size > 0 && buf[0] == HCI_COMMAND_PKT) { if (process_command_pkt(vhci_fd, buf + 1, buf_size - 1)) break; } } return NULL; } #define HCI_HANDLE_1 200 #define HCI_HANDLE_2 201 #define HCI_PRIMARY 0 #define HCI_OP_RESET 0x0c03 static void initialize_vhci() { int hci_sock = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI); if (hci_sock < 0) exit(1); vhci_fd = open("/dev/vhci", O_RDWR); if (vhci_fd == -1) exit(1); const int kVhciFd = 202; if (dup2(vhci_fd, kVhciFd) < 0) exit(1); close(vhci_fd); vhci_fd = kVhciFd; struct vhci_vendor_pkt_request vendor_pkt_req = {HCI_VENDOR_PKT, HCI_PRIMARY}; if (write(vhci_fd, &vendor_pkt_req, sizeof(vendor_pkt_req)) != sizeof(vendor_pkt_req)) exit(1); struct vhci_pkt vhci_pkt; if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); if (vhci_pkt.type == HCI_COMMAND_PKT && vhci_pkt.command_hdr.opcode == HCI_OP_RESET) { char response[1] = {0}; hci_send_event_cmd_complete(vhci_fd, HCI_OP_RESET, response, sizeof(response)); if (read(vhci_fd, &vhci_pkt, sizeof(vhci_pkt)) != sizeof(vhci_pkt)) exit(1); } if (vhci_pkt.type != HCI_VENDOR_PKT) exit(1); int dev_id = vhci_pkt.vendor_pkt.id; pthread_t th; if (pthread_create(&th, NULL, event_thread, NULL)) exit(1); int ret = ioctl(hci_sock, HCIDEVUP, dev_id); if (ret) { if (errno == ERFKILL) { rfkill_unblock_all(); ret = ioctl(hci_sock, HCIDEVUP, dev_id); } if (ret && errno != EALREADY) exit(1); } struct hci_dev_req dr = {0}; dr.dev_id = dev_id; dr.dev_opt = SCAN_PAGE; if (ioctl(hci_sock, HCISETSCAN, &dr)) exit(1); struct hci_ev_conn_request request; memset(&request, 0, sizeof(request)); memset(&request.bdaddr, 0xaa, 6); *(uint8_t*)&request.bdaddr.b[5] = 0x10; request.link_type = ACL_LINK; hci_send_event_packet(vhci_fd, HCI_EV_CONN_REQUEST, &request, sizeof(request)); struct hci_ev_conn_complete complete; memset(&complete, 0, sizeof(complete)); complete.status = 0; complete.handle = HCI_HANDLE_1; memset(&complete.bdaddr, 0xaa, 6); *(uint8_t*)&complete.bdaddr.b[5] = 0x10; complete.link_type = ACL_LINK; complete.encr_mode = 0; hci_send_event_packet(vhci_fd, HCI_EV_CONN_COMPLETE, &complete, sizeof(complete)); struct hci_ev_remote_features features; memset(&features, 0, sizeof(features)); features.status = 0; features.handle = HCI_HANDLE_1; hci_send_event_packet(vhci_fd, HCI_EV_REMOTE_FEATURES, &features, sizeof(features)); struct { struct hci_ev_le_meta le_meta; struct hci_ev_le_conn_complete le_conn; } le_conn; memset(&le_conn, 0, sizeof(le_conn)); le_conn.le_meta.subevent = HCI_EV_LE_CONN_COMPLETE; memset(&le_conn.le_conn.bdaddr, 0xaa, 6); *(uint8_t*)&le_conn.le_conn.bdaddr.b[5] = 0x11; le_conn.le_conn.role = 1; le_conn.le_conn.handle = HCI_HANDLE_2; hci_send_event_packet(vhci_fd, HCI_EV_LE_META, &le_conn, sizeof(le_conn)); pthread_join(th, NULL); close(hci_sock); } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define XT_TABLE_SIZE 1536 #define XT_MAX_ENTRIES 10 struct xt_counters { uint64_t pcnt, bcnt; }; struct ipt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_entries; unsigned int size; }; struct ipt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_table_desc { const char* name; struct ipt_getinfo info; struct ipt_replace replace; }; static struct ipt_table_desc ipv4_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; static struct ipt_table_desc ipv6_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; #define IPT_BASE_CTL 64 #define IPT_SO_SET_REPLACE (IPT_BASE_CTL) #define IPT_SO_GET_INFO (IPT_BASE_CTL) #define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1) struct arpt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_entries; unsigned int size; }; struct arpt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_table_desc { const char* name; struct arpt_getinfo info; struct arpt_replace replace; }; static struct arpt_table_desc arpt_tables[] = { {.name = "filter"}, }; #define ARPT_BASE_CTL 96 #define ARPT_SO_SET_REPLACE (ARPT_BASE_CTL) #define ARPT_SO_GET_INFO (ARPT_BASE_CTL) #define ARPT_SO_GET_ENTRIES (ARPT_BASE_CTL + 1) static void checkpoint_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; if (table->info.valid_hooks == 0) continue; struct ipt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, level, IPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_arptables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_arptables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; if (table->info.valid_hooks == 0) continue; struct arpt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } else { } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, SOL_IP, ARPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } #define NF_BR_NUMHOOKS 6 #define EBT_TABLE_MAXNAMELEN 32 #define EBT_CHAIN_MAXNAMELEN 32 #define EBT_BASE_CTL 128 #define EBT_SO_SET_ENTRIES (EBT_BASE_CTL) #define EBT_SO_GET_INFO (EBT_BASE_CTL) #define EBT_SO_GET_ENTRIES (EBT_SO_GET_INFO + 1) #define EBT_SO_GET_INIT_INFO (EBT_SO_GET_ENTRIES + 1) #define EBT_SO_GET_INIT_ENTRIES (EBT_SO_GET_INIT_INFO + 1) struct ebt_replace { char name[EBT_TABLE_MAXNAMELEN]; unsigned int valid_hooks; unsigned int nentries; unsigned int entries_size; struct ebt_entries* hook_entry[NF_BR_NUMHOOKS]; unsigned int num_counters; struct ebt_counter* counters; char* entries; }; struct ebt_entries { unsigned int distinguisher; char name[EBT_CHAIN_MAXNAMELEN]; unsigned int counter_offset; int policy; unsigned int nentries; char data[0] __attribute__((aligned(__alignof__(struct ebt_replace)))); }; struct ebt_table_desc { const char* name; struct ebt_replace replace; char entrytable[XT_TABLE_SIZE]; }; static struct ebt_table_desc ebt_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "broute"}, }; static void checkpoint_ebtables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (size_t i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_INFO, &table->replace, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->replace.entries_size > sizeof(table->entrytable)) exit(1); table->replace.num_counters = 0; table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_ENTRIES, &table->replace, &optlen)) exit(1); } close(fd); } static void reset_ebtables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; if (table->replace.valid_hooks == 0) continue; struct ebt_replace replace; memset(&replace, 0, sizeof(replace)); strcpy(replace.name, table->name); socklen_t optlen = sizeof(replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INFO, &replace, &optlen)) exit(1); replace.num_counters = 0; table->replace.entries = 0; for (unsigned h = 0; h < NF_BR_NUMHOOKS; h++) table->replace.hook_entry[h] = 0; if (memcmp(&table->replace, &replace, sizeof(table->replace)) == 0) { char entrytable[XT_TABLE_SIZE]; memset(&entrytable, 0, sizeof(entrytable)); replace.entries = entrytable; optlen = sizeof(replace) + replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_ENTRIES, &replace, &optlen)) exit(1); if (memcmp(table->entrytable, entrytable, replace.entries_size) == 0) continue; } for (unsigned j = 0, h = 0; h < NF_BR_NUMHOOKS; h++) { if (table->replace.valid_hooks & (1 << h)) { table->replace.hook_entry[h] = (struct ebt_entries*)table->entrytable + j; j++; } } table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (setsockopt(fd, SOL_IP, EBT_SO_SET_ENTRIES, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_net_namespace(void) { checkpoint_ebtables(); checkpoint_arptables(); checkpoint_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); checkpoint_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void reset_net_namespace(void) { reset_ebtables(); reset_arptables(); reset_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); reset_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void mount_cgroups(const char* dir, const char** controllers, int count) { if (mkdir(dir, 0777)) { return; } char enabled[128] = {0}; int i = 0; for (; i < count; i++) { if (mount("none", dir, "cgroup", 0, controllers[i])) { continue; } umount(dir); strcat(enabled, ","); strcat(enabled, controllers[i]); } if (enabled[0] == 0) { if (rmdir(dir) && errno != EBUSY) exit(1); return; } if (mount("none", dir, "cgroup", 0, enabled + 1)) { if (rmdir(dir) && errno != EBUSY) exit(1); } if (chmod(dir, 0777)) { } } static void mount_cgroups2(const char** controllers, int count) { if (mkdir("/syzcgroup/unified", 0777)) { return; } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { if (rmdir("/syzcgroup/unified") && errno != EBUSY) exit(1); return; } if (chmod("/syzcgroup/unified", 0777)) { } int control = open("/syzcgroup/unified/cgroup.subtree_control", O_WRONLY); if (control == -1) return; int i; for (i = 0; i < count; i++) if (write(control, controllers[i], strlen(controllers[i])) < 0) { } close(control); } static void setup_cgroups() { const char* unified_controllers[] = {"+cpu", "+io", "+pids"}; const char* net_controllers[] = {"net", "net_prio", "devices", "blkio", "freezer"}; const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit", "memory"}; if (mkdir("/syzcgroup", 0777)) { return; } mount_cgroups2(unified_controllers, sizeof(unified_controllers) / sizeof(unified_controllers[0])); mount_cgroups("/syzcgroup/net", net_controllers, sizeof(net_controllers) / sizeof(net_controllers[0])); mount_cgroups("/syzcgroup/cpu", cpu_controllers, sizeof(cpu_controllers) / sizeof(cpu_controllers[0])); write_file("/syzcgroup/cpu/cgroup.clone_children", "1"); write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1"); } static void setup_cgroups_loop() { int pid = getpid(); char file[128]; char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); write_file(file, "32"); snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(file, sizeof(file), "%s/memory.soft_limit_in_bytes", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.limit_in_bytes", cgroupdir); write_file(file, "%d", 300 << 20); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); } static void setup_cgroups_test() { char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } } static void initialize_cgroups() { if (mkdir("./syz-tmp/newroot/syzcgroup", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/unified", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/cpu", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/net", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/syzcgroup/unified", "./syz-tmp/newroot/syzcgroup/unified", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/cpu", "./syz-tmp/newroot/syzcgroup/cpu", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/net", "./syz-tmp/newroot/syzcgroup/net", NULL, bind_mount_flags, NULL)) { } } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); initialize_cgroups(); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); initialize_vhci(); sandbox_common(); drop_caps(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_netdevices(); initialize_wifi_devices(); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_loop() { setup_cgroups_loop(); checkpoint_net_namespace(); } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } reset_net_namespace(); } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); setup_cgroups_test(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static const char* setup_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0) && errno != EBUSY) { return NULL; } if (!write_file("/proc/sys/fs/binfmt_misc/register", ":syz0:M:0:\x01::./file0:") || !write_file("/proc/sys/fs/binfmt_misc/register", ":syz1:M:1:\x02::./file0:POC")) return "write(/proc/sys/fs/binfmt_misc/register) failed"; return NULL; } static const char* setup_usb() { if (chmod("/dev/raw-gadget", 0666)) return "failed to chmod /dev/raw-gadget"; return NULL; } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); 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_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"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } #define SWAP_FILE "./swap-file" #define SWAP_FILE_SIZE (128 * 1000 * 1000) static const char* setup_swap() { swapoff(SWAP_FILE); unlink(SWAP_FILE); int fd = open(SWAP_FILE, O_CREAT | O_WRONLY | O_CLOEXEC, 0600); if (fd == -1) return "swap file open failed"; fallocate(fd, FALLOC_FL_ZERO_RANGE, 0, SWAP_FILE_SIZE); close(fd); char cmdline[64]; sprintf(cmdline, "mkswap %s", SWAP_FILE); if (runcmdline(cmdline)) return "mkswap failed"; if (swapon(SWAP_FILE, SWAP_FLAG_PREFER) == 1) return "swapon failed"; return NULL; } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 20; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 15 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { setup_loop(); int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[4] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // sendmsg$NL80211_CMD_REGISTER_FRAME arguments: [ // fd: sock_nl_generic (resource) // msg: ptr[in, msghdr_netlink[netlink_msg_t[nl80211_family_id, // msg_nl80211_payload[NL80211_CMD_REGISTER_FRAME, nl80211_wdev_payload], // nl80211_policy$register_mgmt]]] { // msghdr_netlink[netlink_msg_t[nl80211_family_id, // msg_nl80211_payload[NL80211_CMD_REGISTER_FRAME, // nl80211_wdev_payload], nl80211_policy$register_mgmt]] { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: nil // vlen: const = 0x1 (8 bytes) // ctrl: const = 0x0 (8 bytes) // ctrllen: const = 0x0 (8 bytes) // f: send_flags = 0xc000 (4 bytes) // pad = 0x0 (4 bytes) // } // } // f: send_flags = 0x24040000 (8 bytes) // ] NONFAILING(*(uint64_t*)0x200000000180 = 0); NONFAILING(*(uint32_t*)0x200000000188 = 0); NONFAILING(*(uint64_t*)0x200000000190 = 0); NONFAILING(*(uint64_t*)0x200000000198 = 1); NONFAILING(*(uint64_t*)0x2000000001a0 = 0); NONFAILING(*(uint64_t*)0x2000000001a8 = 0); NONFAILING(*(uint32_t*)0x2000000001b0 = 0xc000); syscall(__NR_sendmsg, /*fd=*/(intptr_t)-1, /*msg=*/0x200000000180ul, /*f=MSG_ZEROCOPY|MSG_FASTOPEN|MSG_BATCH*/ 0x24040000ul); break; case 1: // prctl$PR_SCHED_CORE arguments: [ // option: const = 0x3e (8 bytes) // cmd: intptr = 0x1 (8 bytes) // pid: pid (resource) // type: pid_type = 0x2 (8 bytes) // uaddr: nil // ] syscall(__NR_prctl, /*option=*/0x3eul, /*cmd=*/1ul, /*pid=*/0, /*type=PIDTYPE_PGID*/ 2ul, /*uaddr=*/0ul); break; case 2: // prlimit64 arguments: [ // pid: pid (resource) // res: rlimit_type = 0xe (8 bytes) // new: ptr[in, rlimit] { // rlimit { // soft: intptr = 0x4 (8 bytes) // hard: intptr = 0x1000085 (8 bytes) // } // } // old: nil // ] NONFAILING(*(uint64_t*)0x200000000040 = 4); NONFAILING(*(uint64_t*)0x200000000048 = 0x1000085); syscall(__NR_prlimit64, /*pid=*/0, /*res=RLIMIT_RTPRIO*/ 0xeul, /*new=*/0x200000000040ul, /*old=*/0ul); break; case 3: // syz_open_dev$MSR arguments: [ // dev: nil // id: intptr = 0x0 (8 bytes) // flags: const = 0x0 (8 bytes) // ] // returns fd_msr res = -1; NONFAILING(res = syz_open_dev(/*dev=*/0, /*id=*/0, /*flags=*/0)); if (res != -1) r[0] = res; break; case 4: // sched_setscheduler arguments: [ // pid: pid (resource) // policy: sched_policy = 0x2 (8 bytes) // prio: ptr[in, int32] { // int32 = 0x1 (4 bytes) // } // ] NONFAILING(*(uint32_t*)0x200000000200 = 1); syscall(__NR_sched_setscheduler, /*pid=*/0, /*policy=SCHED_RR*/ 2ul, /*prio=*/0x200000000200ul); break; case 5: // sched_setaffinity arguments: [ // pid: pid (resource) // cpusetsize: len = 0x0 (8 bytes) // mask: nil // ] syscall(__NR_sched_setaffinity, /*pid=*/0, /*cpusetsize=*/0ul, /*mask=*/0ul); break; case 6: // read$msr arguments: [ // fd: fd_msr (resource) // buf: ptr[out, buffer] { // buffer: (DirOut) // } // count: len = 0x18ff0 (8 bytes) // ] syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x200000019680ul, /*count=*/0x18ff0ul); break; case 7: // socket$inet_tcp arguments: [ // domain: const = 0x2 (8 bytes) // type: const = 0x1 (8 bytes) // proto: const = 0x0 (4 bytes) // ] // returns sock_tcp syscall(__NR_socket, /*domain=*/2ul, /*type=*/1ul, /*proto=*/0); break; case 8: // setsockopt$inet6_int arguments: [ // fd: sock_in6 (resource) // level: const = 0x29 (4 bytes) // optname: inet6_option_types_int = 0x3c (4 bytes) // optval: nil // optlen: len = 0x0 (8 bytes) // ] syscall(__NR_setsockopt, /*fd=*/(intptr_t)-1, /*level=*/0x29, /*optname=IPV6_RECVPATHMTU*/ 0x3c, /*optval=*/0ul, /*optlen=*/0ul); break; case 9: // preadv arguments: [ // fd: fd (resource) // vec: nil // vlen: len = 0x0 (8 bytes) // off_low: int32 = 0x801f (4 bytes) // off_high: int32 = 0x0 (4 bytes) // ] syscall(__NR_preadv, /*fd=*/(intptr_t)-1, /*vec=*/0ul, /*vlen=*/0ul, /*off_low=*/0x801f, /*off_high=*/0); break; case 10: // pread64 arguments: [ // fd: fd (resource) // buf: nil // count: len = 0x0 (8 bytes) // pos: intptr = 0x6 (8 bytes) // ] syscall(__NR_pread64, /*fd=*/(intptr_t)-1, /*buf=*/0ul, /*count=*/0ul, /*pos=*/6ul); break; case 11: // sendmsg$NFT_BATCH arguments: [ // fd: sock_nl_netfilter (resource) // msg: ptr[in, msghdr_netlink[nft_batch_msg]] { // msghdr_netlink[nft_batch_msg] { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: ptr[in, iovec[in, nft_batch_msg]] { // iovec[in, nft_batch_msg] { // addr: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {} (length 0x0) // } // } // } // len: len = 0xe4 (8 bytes) // } // } // vlen: const = 0x1 (8 bytes) // ctrl: const = 0x0 (8 bytes) // ctrllen: const = 0x0 (8 bytes) // f: send_flags = 0x8001 (4 bytes) // pad = 0x0 (4 bytes) // } // } // f: send_flags = 0x20050840 (8 bytes) // ] NONFAILING(*(uint64_t*)0x2000000000c0 = 0); NONFAILING(*(uint32_t*)0x2000000000c8 = 0); NONFAILING(*(uint64_t*)0x2000000000d0 = 0x200000000040); NONFAILING(*(uint64_t*)0x200000000040 = 0x2000000001c0); NONFAILING(*(uint64_t*)0x200000000048 = 0xe4); NONFAILING(*(uint64_t*)0x2000000000d8 = 1); NONFAILING(*(uint64_t*)0x2000000000e0 = 0); NONFAILING(*(uint64_t*)0x2000000000e8 = 0); NONFAILING(*(uint32_t*)0x2000000000f0 = 0x8001); syscall(__NR_sendmsg, /*fd=*/(intptr_t)-1, /*msg=*/0x2000000000c0ul, /*f=MSG_FASTOPEN|MSG_BATCH|MSG_DONTWAIT|MSG_CONFIRM|0x10000*/ 0x20050840ul); break; case 12: // sendmsg$kcm arguments: [ // fd: sock_kcm (resource) // msg: ptr[in, send_msghdr] { // send_msghdr { // msg_name: nil // msg_namelen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: nil // msg_iovlen: len = 0x0 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // } // f: send_flags = 0x0 (8 bytes) // ] NONFAILING(*(uint64_t*)0x200000000000 = 0); NONFAILING(*(uint32_t*)0x200000000008 = 0); NONFAILING(*(uint64_t*)0x200000000010 = 0); NONFAILING(*(uint64_t*)0x200000000018 = 0); NONFAILING(*(uint64_t*)0x200000000020 = 0); NONFAILING(*(uint64_t*)0x200000000028 = 0); NONFAILING(*(uint32_t*)0x200000000030 = 0); syscall(__NR_sendmsg, /*fd=*/(intptr_t)-1, /*msg=*/0x200000000000ul, /*f=*/0ul); break; case 13: // syz_open_dev$sg arguments: [ // dev: nil // id: intptr = 0x0 (8 bytes) // flags: open_flags = 0x8401 (8 bytes) // ] // returns fd_sg res = -1; NONFAILING( res = syz_open_dev(/*dev=*/0, /*id=*/0, /*flags=O_LARGEFILE|O_APPEND|O_WRONLY*/ 0x8401)); if (res != -1) r[1] = res; break; case 14: // ioctl$SG_IO arguments: [ // fd: fd_sg (resource) // cmd: const = 0x2285 (4 bytes) // arg: nil // ] syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0x2285, /*arg=*/0ul); break; case 15: // syz_mount_image$btrfs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 74 72 66 73 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, fs_options[btrfs_options]] { // fs_options[btrfs_options] { // elems: array[fs_opt_elem[btrfs_options]] { // fs_opt_elem[btrfs_options] { // elem: union btrfs_options { // clear_cache: buffer: {63 6c 65 61 72 5f 63 61 63 68 65} // (length 0xb) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[btrfs_options] { // elem: union btrfs_options { // space_cache_v1: buffer: {73 70 61 63 65 5f 63 61 63 68 65 3d // 76 31} (length 0xe) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[btrfs_options] { // elem: union btrfs_options { // skip_balance: buffer: {73 6b 69 70 5f 62 61 6c 61 6e 63 65} // (length 0xc) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x0 (1 bytes) // size: len = 0x559e (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x559e) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000000, "btrfs\000", 6)); NONFAILING(memcpy((void*)0x2000000015c0, "./file0\000", 8)); NONFAILING(memcpy((void*)0x200000000100, "clear_cache", 11)); NONFAILING(*(uint8_t*)0x20000000010b = 0x2c); NONFAILING(memcpy((void*)0x20000000010c, "space_cache=v1", 14)); NONFAILING(*(uint8_t*)0x20000000011a = 0x2c); NONFAILING(memcpy((void*)0x20000000011b, "skip_balance", 12)); NONFAILING(*(uint8_t*)0x200000000127 = 0x2c); NONFAILING(*(uint8_t*)0x200000000128 = 0); NONFAILING(memcpy( (void*)0x200000005680, "\x78\x9c\xec\xdd\x7f\x6c\x55\xe5\xfd\x07\xf0\x73\x5b\x0a\x0d\xf8\x2d" "\xfd\x8e\x15\x18\x7f\x10\x20\x06\x83\x24\xc8\x96\x2d\x8e\xa0\x78\x31" "\x06\xb6\xe1\xe2\xa5\x82\xc2\x9c\x08\x44\x25\x06\x2b\xd8\x44\x37\x18" "\xa9\x45\x92\x65\xc6\xa0\x85\x4e\x04\x17\x91\x90\x68\x32\x63\xb1\xc3" "\x3f\x14\xcc\xb0\xcb\xb0\x8c\x65\xfc\xd8\xe6\x16\x63\xb3\x82\x52\x69" "\x96\x6c\x03\x35\x6b\x1c\x31\xba\xf4\xde\xfb\x5c\xee\x3d\x97\xdb\x5e" "\x99\xb3\x4e\x5f\x2f\xd2\x9e\xf3\xdc\xcf\x79\x9e\xfb\xdc\x93\xf3\xc7" "\x7d\x5f\xfa\x9c\x1b\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x40\x14\x45\x47\x12\x73\xdf\x9d\xd1\xfd\xe2\xd1\x91\x35\x5f\xbe\xff" "\x1f\x3f\x9e\xf8\xe8\xc6\x9f\x8c\xdf\xbd\x7f\xeb\xa1\x5b\xee\xdb\x74" "\xff\x82\x33\x23\x6e\xda\x39\x6b\x59\xdf\xfa\x69\x4d\xf3\x37\x6c\x6c" "\x38\xd2\xfc\xf4\xbe\x39\xb7\x46\x51\x22\xdd\x2f\x91\xed\x7f\xdb\xb5" "\xdf\xaa\xbf\xf3\xc6\xdb\xbe\x5b\x1d\x06\x5c\xbe\x30\xb3\xad\xad\x2d" "\xf5\x94\x99\xae\x27\x33\x8d\xe1\x05\x0f\xf6\xf7\x2b\xfc\x59\x11\x45" "\x51\x55\x6c\x80\xca\xec\xf6\xd5\xec\x4e\x45\xc1\x00\xb9\xdd\xc6\xe2" "\x01\x07\xf4\x4e\xeb\xa2\xe8\xee\xc9\xf3\x26\xb5\x75\x3d\x35\x6e\x49" "\x72\x61\x4f\xf1\x4b\xa7\x5f\xf5\x50\x4f\x60\xa8\x64\xaf\xab\x9e\xf3" "\xd7\x52\x32\xfd\xbb\x22\x76\x44\xae\x9d\x77\xe9\x25\x0a\x2e\xd1\x4c" "\xff\xf8\x05\xf7\xa9\xbc\x08\x00\xe0\x63\x99\x99\x4a\x6f\x72\x6f\x47" "\xb3\x6f\x71\x73\xed\xe6\x78\x3d\xd6\x4e\xc6\xda\x2d\xb1\x76\x78\x87" "\xd0\x92\xdf\xb8\x18\x99\x71\x87\x97\x9a\xe7\xa4\x78\x7d\x88\xe6\x99" "\xcc\x44\x85\x11\x25\xe7\x19\xab\x67\xcf\x7f\xae\x9d\x8a\xf7\x8f\xb5" "\x63\x51\xe3\x63\xcc\xb3\xf0\xd0\x6c\xa4\xa9\x2e\x35\xcf\xb5\xb1\xfa" "\x50\xcd\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0" "\xb3\x64\xec\xf1\xa3\x6b\x56\xb4\x3d\xb2\xe7\xbe\x5f\x76\xd4\x1c\x79" "\xf7\xfd\x39\x57\x3e\xf0\xa5\x8e\xc3\x6d\x8b\x4f\x8c\xbc\x7a\xe9\xca" "\x1d\x6b\xa6\xfc\x74\xd6\xb2\xbe\xf5\xd3\x9a\xe6\x6f\xd8\xd8\x70\xa4" "\xf9\xe9\x7d\x73\x6e\x8d\xa2\xda\x74\xbf\x44\xa6\x7b\xe2\x44\xcb\xe5" "\xbf\x4d\x8d\x9d\xdf\xbd\x77\xdc\x1b\x8d\xbb\x9f\xab\xe9\xab\xcc\x8e" "\x1b\xb6\xc3\xf2\x0e\x8e\x5e\x0f\x3b\xb3\x46\x47\xd1\xca\xbc\x4a\x4f" "\x18\xf6\xaf\x35\x51\x94\x2a\x2c\xa4\x9b\xd1\x8e\xe2\xc2\x5d\xe9\x9d" "\x6f\x87\x02\x00\x00\x00\x9f\x27\x5f\x49\xff\xae\xc8\xb5\x33\x71\xb0" "\xaa\xa0\x9d\x48\xa7\xc9\x44\xfa\x5f\x90\x09\x8b\xef\xb4\x2e\x8a\xee" "\x9e\x3c\x6f\x52\x5b\xd7\x53\xe3\x96\x24\x17\xf6\x5c\xfc\x78\xa9\x12" "\xe3\x25\x2f\x38\x5e\xae\x5d\x7b\xfe\x27\x91\x17\x8c\x43\xfc\x8d\x8f" "\x77\xbe\x1e\x0e\x6d\x2c\x1a\x67\x60\xf1\x11\xe3\x79\xfe\xd2\x31\x63" "\xde\x7e\x6b\x72\xfd\xe4\xaf\x4f\x9b\xfb\xc4\x0d\xcf\x8c\xea\xee\xfa" "\xbf\x27\x67\x6c\x49\xfd\xb1\xae\xe6\x85\x2b\xae\xef\xad\x7f\xf6\xba" "\xa2\xfc\x5f\x3b\x70\xfe\x0f\x67\x4e\xfe\x07\x00\x00\xe0\x3f\x21\xff" "\xc7\xc7\x19\xd8\x60\xf9\xff\x8e\xa5\x53\xb7\xbc\xfe\x8b\x61\xab\x7e" "\xdd\xda\xf0\xc4\xc1\xfa\x1d\x7f\x6e\xfd\xce\x33\x3b\x17\x9d\xea\xb9" "\xe1\x47\x7d\x2f\x4f\x4d\xde\xfe\xe8\xd5\x45\xf9\x7f\x52\xc1\x53\x16" "\xe5\xff\x30\xe3\x90\xff\x2b\xa2\x8b\xcb\xff\x00\x00\x00\xf0\x59\xf6" "\xdf\xce\xff\xc9\xa2\x71\x06\x36\x58\xfe\x6f\x38\xd3\x37\xfb\x07\x07" "\x5f\xab\xeb\xf8\xfb\x9c\xc5\x7b\x7e\xf5\xd0\x15\x8b\xcf\x9e\xfe\xdb" "\xfc\x53\xbb\x77\x0d\x5f\x73\x47\xcb\xfa\xba\x87\xae\x2c\xca\xff\x33" "\xcb\xcb\xff\xc3\xf2\xa7\x1d\x1e\xfc\x5d\x98\xf0\xea\xd1\x51\x34\xb3" "\xfc\x93\x0a\x00\x00\x00\x14\x08\xff\xef\x7e\xfe\xa3\x85\x90\xd7\x33" "\x9f\x1c\xc4\xf3\xfa\xb5\xff\xbc\xaa\x79\xdf\xcd\x1f\x7c\xf3\x1b\x0f" "\xde\xf3\xa7\x37\xdf\xfe\xcd\xb1\x03\xb3\x27\xad\xdb\x5e\x37\xf3\xe0" "\xcb\x37\xd5\x7f\x58\xf9\xbd\xed\xdd\x45\xf9\x3f\x59\x5e\xfe\xaf\xfa" "\x74\x5e\x2e\x00\x00\x00\x50\x86\xe7\x8f\xae\x9c\x3b\xef\x78\xcf\xb9" "\xc7\xcf\xbe\xd0\x75\xf2\xf0\xee\xde\x93\x33\x9e\x3c\xb3\xae\xa9\xef" "\x74\xeb\x25\x2d\xab\x57\x6d\x3a\xf6\x5a\x51\xfe\x4f\x95\x97\xff\x47" "\x0c\xcd\xcb\x01\x00\x00\x00\x2e\xe0\xde\x3b\x9f\x5b\xb1\xf9\xd5\x97" "\xfa\x1e\xd8\x7f\xd7\xd8\x29\x3d\x15\x57\x35\x5e\x92\xb8\x65\xdb\x8e" "\xa9\x4d\x13\x3e\xea\xbc\xb4\xf7\xf2\xed\x5b\x8b\xf2\xff\xf2\xf2\xf2" "\xff\xc8\xec\x36\xbb\xf2\x21\xd3\xa9\x33\xfc\x15\x42\xeb\xe8\x28\xaa" "\xee\xdf\x59\x9b\x29\x1c\x8a\x5a\xae\xc9\x15\x00\x00\x00\x80\x4f\x48" "\xc8\xe9\x5b\x3f\x58\xb1\x6c\xec\xce\xb1\xbd\xe3\x8f\x9f\x7e\xac\xe6" "\xd0\x1b\x87\x67\xff\x65\x6d\xe7\x9c\x8d\xd7\x74\x57\x75\x6f\xee\x5c" "\xd6\x78\x59\xd1\xfd\x02\x42\x62\x2f\x75\xff\xff\x70\xa7\x83\xb0\xfe" "\xbf\xe0\xfe\x7f\x45\xeb\xff\xf3\x0a\x99\xbb\xfe\xcd\x76\x63\x00\x00" "\x00\x00\xbe\x88\x8a\xd7\xf3\x87\xdb\xe3\x67\xbe\xb9\xa0\xd4\xf7\xef" "\x97\xbb\xfe\x7f\x49\xdd\xc4\x13\x89\xb6\xb7\xde\x5b\xf5\xd5\x73\x07" "\xce\x8d\x59\xb0\xff\xfb\xd7\x6f\x5a\x57\xdf\xdb\x7b\xcf\x84\x97\x7e" "\xff\xc3\x3f\x4c\xff\xa8\xba\x28\xff\x37\x97\x97\xff\x2b\xf3\xb7\x9f" "\xe4\xf7\xff\x01\x00\x00\xc0\x45\xf8\x5f\xfb\xfe\xbf\xa5\x45\xe3\x0c" "\x6c\xb0\xfb\xff\x37\x55\xf4\x35\xac\x5a\xb7\x77\xfa\xea\x2d\x6b\xb7" "\x2c\x4c\x2c\x3b\x50\x7d\xea\xc1\xd5\x7b\xdf\x5f\xb0\xe6\x5f\x53\x6f" "\x7e\xbe\xa9\xe6\xba\x03\x45\xf9\xbf\xa5\xbc\xfc\x1f\xb6\xa3\xf2\x5f" "\x5e\x47\x38\x3f\x9b\x46\x47\xd1\xf8\xfe\x9d\xec\xdd\x04\x7f\x1e\xa6" "\xbb\x3a\x56\x68\xaf\xca\x2b\x64\x4e\x7c\xac\xc7\x8d\xa1\x47\xb6\xd0" "\x3e\x22\xaf\x90\xb6\x36\xd6\xe3\x6b\xa3\xa3\x68\x72\xff\x4e\x73\xac" "\xf0\xff\xa1\xd0\x12\x2b\x9c\xad\xc9\x16\x76\xc5\x0a\xc7\x42\x21\x7b" "\x3d\xe4\x0a\x7b\x62\x85\x8e\x70\xa5\x6d\xab\xc9\x4e\x37\x5e\x78\x31" "\x14\xb2\x0b\x2c\xda\xc3\x0a\x8a\x51\xb9\x25\x11\xb1\x1e\xef\x95\xea" "\xd1\x5f\xb8\x60\x8f\xae\xdc\x93\x03\x00\x00\x7c\xa1\x84\xf0\x9c\xcd" "\xb2\x55\x85\xcd\x28\x1e\x65\xdb\x13\x83\x1d\x30\x72\xb0\x03\x2a\x06" "\x3b\xa0\x72\xb0\x03\x86\xc5\x0e\x88\x1f\x58\xea\xf1\x68\x79\x61\x21" "\x3c\x7e\x7b\xe7\x23\x1b\x36\x35\x4c\x49\xbe\xf2\xf0\xdc\xc7\x7e\xf6" "\xe6\xb3\x8d\x13\xf6\x3d\x7e\x59\x5d\xef\xe6\x0f\x5f\xd9\x76\xef\xc4" "\x9d\xd3\x5b\xa6\x16\xe5\xff\x5d\xe5\xe5\xff\x70\x2a\x86\x67\x36\xa5" "\xd6\xff\x47\x61\xfd\x7f\xf6\x7b\x0d\x73\xeb\xff\x97\x87\x42\x6d\xac" "\xd0\x1e\x0a\xa9\xf8\x1d\x03\x52\xe1\x39\x32\x61\xf7\xe1\xf0\x1c\xb5" "\xa9\x6c\x8f\xb3\xe3\x73\x05\x00\x00\x00\xf8\x5c\x0b\x9f\x0b\x54\x0e" "\xf1\x3c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfe\xcd\xde\xbd\xc7\x49\x55\xdd\x09\x02\x3f\xdd\xf4\x83\x6e\x9a" "\xa6\x8d\x13\xd1\x8c\x93\x74\xd4\x80\x66\xa4\x69\x6c\x0d\xc3\xe0\x28" "\x6a\x8c\x46\x45\x9a\x59\x75\xdc\x64\x34\x10\x68\x10\x69\x84\xf0\x58" "\x05\x51\x1b\x50\x67\x1c\xe2\x67\x7c\xed\xac\x99\xe8\x08\x0a\x22\xbb" "\xea\x87\x18\x57\x83\xc1\x48\x5c\xc4\x8c\x3a\x89\x62\xe2\x03\xf0\xb1" "\x8e\xae\xeb\xfa\x1e\x95\x18\xcd\x84\xfd\x74\xdf\x3a\x45\xd5\xad\x2e" "\xbb\x10\x50\xda\xf9\x7e\xff\xe8\x3a\x55\xbf\xf3\xbc\xf5\xe8\x3a\xf7" "\xde\x3a\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\x18\xee\x3d\xf8" "\xe5\x93\x86\x2e\x9c\xfd\x0f\x1f\x36\x9c\x7b\xc9\xea\xaa\xa9\x8b\xfe" "\x47\xc7\xe8\xcb\xfe\x70\xd5\xb7\xbe\xf8\xd4\x3f\x2e\x5b\xf4\x6f\x61" "\xfe\x2f\x46\x9c\xb9\x65\xde\x41\x17\x1e\x37\x7f\xc1\xb4\x7f\xe9\x58" "\xbe\xfa\x88\x33\x42\x68\xed\x2a\x57\x96\x14\x2f\x7b\xee\x8a\xaf\x3e" "\xd4\xba\xd7\x71\xcf\xde\x31\x70\xe3\xcc\x1b\x6f\xad\xdf\x52\x95\xa9" "\x37\x13\x0f\xfd\x3a\xff\x94\x67\xee\x5c\x1c\x5b\x7d\xb1\x7f\x08\x77" "\x97\x85\x50\x91\x0e\x0c\xa9\x4b\x02\x95\x99\xfb\x75\xb1\xbe\x7d\xeb" "\x42\xd8\x23\x6c\x0b\x64\x4b\xb4\xd5\x26\x25\xd2\x0d\x87\x07\x6a\x42" "\x58\x12\xb6\x05\xb2\x55\xad\xae\x09\xa1\x2e\x27\x70\xca\x86\xfb\xef" "\xbb\xbc\x33\x71\x4d\x4d\x08\x5f\x09\x21\x54\xa7\xdb\x78\xa6\x3a\x69" "\xa3\x26\x1d\x18\x54\x95\x04\x6a\xd3\x81\xe9\x15\x49\xe0\xb7\x5b\x13" "\xd9\xc0\x4f\xca\x93\x00\xec\xb0\xf8\x66\xc8\xbe\xe8\x57\xb5\xe6\x67" "\x68\xe8\xbe\x5c\x91\xd7\x5f\xe5\x4e\xeb\xd8\xa7\x2b\x3d\xbc\x3e\x31" "\xd1\x50\x3c\xdf\xeb\x47\xed\xe2\x4e\xe5\xa8\x4a\x3f\xd0\xba\x43\x4f" "\x5b\x41\x75\xec\x12\x05\x6f\x8f\xb5\xde\x6d\xbd\xe0\xdd\x56\xb0\x9d" "\xaf\xf0\xb4\xe5\x7e\x91\xca\x7c\x43\xd9\xba\x2d\x54\x1d\xca\x27\xb6" "\x4d\x1a\x3f\xa7\x7d\x76\x7c\xa4\x3c\x34\x35\xf5\x29\x56\xd3\x2e\x7a" "\x9e\x9f\x7e\x7b\xfe\x84\xed\x49\xf7\x9a\xd7\x61\xec\x40\xc3\x4e\x79" "\x1d\x5e\xfa\xd8\x8a\xe9\xfd\x96\x8d\xbe\xf4\xea\xcd\xbf\x1a\xb3\xe1" "\xac\x9a\x03\x76\xb4\x9b\x4f\xe5\x6c\xd2\xdc\xf4\xae\x56\x1d\x32\xaf" "\xb9\x5e\xf3\x3c\x46\xa3\x7c\x9e\xf4\x82\xb7\x5f\xc1\xb7\xa4\x46\x5f" "\xba\x42\x08\x5b\xcf\x3d\x7b\xc6\xd7\xe7\x4c\x3c\xfb\x88\x3e\xb7\x3c" "\xb9\xee\xd5\x07\x1f\xac\xdb\x72\xf6\x9c\x05\xbf\x38\x73\xe2\x79\x8b" "\x2e\x3e\x79\xc3\xbf\xcf\x7f\xa9\x60\xfe\xdf\xf0\xd1\xf3\xff\xf8\x72" "\x8e\xb7\xe5\x79\xb9\x63\xab\x1f\xd6\x27\x73\xf3\xf8\x48\x5d\x4c\xbc" "\x59\x9f\xcc\xcd\x01\x00\x00\xa0\xd7\xe8\x0d\x7b\x4d\x57\x9e\xff\xfa" "\x5f\xbd\xfe\xfd\xb5\xad\x33\x17\x9d\xfe\xed\xb7\x0e\x3e\xf7\xc3\xbd" "\x5a\x7f\x3d\xe2\xfe\x01\x55\x07\xbc\xb1\xae\xa9\xf5\xfc\x8d\x9f\x7f" "\xa5\x60\xfe\xdf\x58\xda\xf1\xff\x78\xc8\xbf\x2e\x77\xb4\x6b\x43\x18" "\xd5\x95\x58\x34\x20\x84\xbd\xbb\x1e\x4f\x02\x2b\x63\x77\xbe\x3b\x20" "\x84\x2f\x77\xa5\x5a\xf3\x03\x47\xa5\x02\x6b\x43\xd8\xa7\x2b\x71\x50" "\xb6\xaa\x54\x89\xbe\xb1\x44\x63\x2a\xf0\x72\x7d\x26\x30\x2a\x15\x58" "\x1f\x03\xad\xa9\xc0\xf2\x18\xb8\x22\x15\xb8\x38\x06\x56\xa5\x02\x13" "\x62\x60\x6d\x2a\x70\x74\x0c\x84\x29\xf9\xe3\xf8\x6a\x7d\x66\x1c\x25" "\x07\x6a\x62\x60\x5c\xb2\x11\x57\xc5\xb3\x10\xde\xa9\x8f\xad\xa5\xb6" "\xd5\xa6\x6c\x55\x00\x00\x00\x3b\x49\x66\x76\x58\x99\x7f\x37\xe7\x5c" "\x87\x1d\xcd\x10\xa7\x97\xab\x6a\x7a\xca\x10\xcf\xc0\x2e\x9a\xa1\x3a" "\x55\x43\x7a\x06\x9b\x9d\x56\x15\xad\xa1\xa2\xa7\x1a\xca\x7b\xaa\x21" "\x3b\xee\x8e\x8f\x1e\x7e\x41\xcd\x65\x3d\xd5\x5c\x70\x1a\x46\x59\x7e" "\x86\x1b\xd7\xfc\xe5\x7d\x8b\x5e\x3c\xec\x0b\x63\xf7\x9a\xf8\xf9\xc5" "\x43\x2f\x98\xf2\xb3\xf1\xe1\xac\xb7\xef\xae\x7a\xbc\x79\xc9\x8b\x6f" "\xed\x7b\xc4\xcd\xeb\x0a\xe6\xff\xcd\x1f\x3d\xff\xaf\xee\xa6\x23\x65" "\x05\xc7\xff\x43\x18\xdb\xf5\x37\xe6\x2e\xcf\x44\xda\xb3\xf1\x71\xad" "\x79\x19\x00\x00\x00\x80\x1d\x70\xd1\x1f\xff\xc5\x1e\xb5\x2f\x0f\x39" "\xa0\x61\xd3\xfb\x65\xf7\xce\x5f\xfb\xc4\xa3\x2b\x7e\xb9\x79\x8f\x53" "\x4e\x7f\x7f\xdc\xf1\xaf\xff\xf0\xf0\x9a\xc6\x7b\x0b\xe6\xff\xa3\x4a" "\x3b\xff\x3f\xee\x13\xe9\x93\x93\x39\x3c\x12\x77\x43\x4c\x1d\x10\x42" "\x73\x7e\x20\xa9\x76\x64\x61\x20\x39\xea\xdd\x2f\x13\x00\x00\x00\x80" "\xde\x20\x7b\x3c\x3e\x7b\x2c\x7c\x4a\xe6\x36\x39\x45\x3b\x3d\x9f\x2e" "\xcc\xdf\xba\x9d\xf9\xe3\x81\xff\x51\xdd\xe6\xff\xfd\x3d\xff\xb3\xf6" "\x8e\xad\xff\xfa\x62\xd9\x05\xdf\x3d\x77\x44\xcd\x80\xa5\xff\xf4\x6a" "\xc7\x84\x13\x4e\x3e\xfa\x96\xe3\xbf\xf5\xce\x3e\x15\x07\xfc\xb2\xbc" "\x60\xfe\xdf\x5a\xda\xf9\xff\xb5\xf9\xb7\x49\x27\xd6\xc7\x5e\x5c\x3d" "\x20\x84\xbe\x39\x81\x07\x63\x2f\x3b\x03\x5d\x1a\x63\xe0\xf9\x23\xf3" "\x03\x99\xf1\xaf\x8f\x1b\x60\x71\xac\x2a\x73\x62\x42\xb6\xaa\xc5\xb1" "\xc4\xb8\x18\x68\x4e\x05\x96\x14\x2b\xf1\x68\xb6\xc4\xde\xf9\x81\xcc" "\x93\x95\x6d\x7c\x51\x76\x1c\x53\x32\x25\x72\x02\x00\x00\x00\xf0\x89" "\x8b\xbb\x03\xe2\x71\xf9\x78\xfe\x7f\xcb\x19\x23\x4e\xfb\xeb\xef\xcd" "\xfa\xdb\x85\xaf\x3c\x78\xde\xea\x0b\x2e\xf9\xab\xe1\x1d\xf3\x47\x9e" "\x74\xff\xd3\x1f\x36\xcc\xbd\x72\x69\xd8\xf4\xe6\x11\x05\xf3\xff\x71" "\xdb\x77\xfe\x7f\xd7\x3c\xb8\xe0\xf4\xfe\xf6\x7e\x21\x0c\xad\x08\xa1" "\x4f\xfa\x87\x01\x8f\xd4\x26\x0b\x03\xc6\x40\x5d\x59\x26\x71\x6f\x6d" "\x52\x57\x9f\x74\x55\x0b\x6b\x43\x18\xd9\x39\xb0\x74\x55\x2f\x64\xd6" "\xff\xaf\x48\xaf\x31\xf8\x78\x4d\x52\x55\x0c\xec\xbd\xdf\x2d\x6f\x0f" "\xea\x4c\x2c\xab\x09\x61\x68\x6e\xe0\x89\x6f\x2f\x3d\xac\x33\x31\x27" "\x15\xc8\x36\x7e\x5a\x4d\x08\x5f\xea\x1c\x6d\xba\xf1\xbb\xfa\x26\x8d" "\x57\xa6\x1b\xbf\xb6\x6f\x08\x5f\xcc\x09\x64\xab\x9a\xd0\x37\x84\xce" "\xc6\xaa\xd2\x55\xfd\xaf\xea\xcc\x75\x0c\xd2\x55\xad\xaa\x0e\x61\xcf" "\x9c\x40\xb6\xaa\xe1\xd5\x21\xcc\x0d\x00\xf4\x56\xf1\x7f\xe9\xc4\xdc" "\x07\x67\xcd\x9d\x37\x75\x7c\x7b\x7b\xdb\xcc\x5d\x98\x88\x3b\xf1\x6b" "\xc2\xa4\x29\xed\x6d\x4d\x13\xa6\xb7\x4f\xac\x2e\xd2\xa7\x89\xa9\x3e" "\xe7\xad\x63\xb4\xa0\x70\x4c\xa5\x5e\xfa\x66\x53\x66\x8d\xa2\xc5\x2b" "\x27\x57\x96\x92\xce\xfe\x50\xb0\x39\xb7\xad\xcc\x8e\xfc\x82\x33\x07" "\x33\xf7\xe3\x97\xa1\xca\xae\x71\x1e\x52\x99\x77\xb7\x25\x3d\xe4\x03" "\xf7\x2f\x6c\x22\xe4\x7c\x95\x2a\x36\xe4\xf2\x5d\x3c\xe4\xda\xdc\x4a" "\xb6\x3d\x89\x05\xf5\xc7\xfc\x55\xa1\x5f\xe8\x3b\x67\x56\xdb\xcc\xa6" "\xf3\xc6\xcf\x9e\x3d\x73\x58\xf2\xb7\xd4\xec\x87\x24\x7f\xe3\x71\xa6" "\x64\x5b\x0d\x4b\x6f\xab\xda\xee\xfa\x56\xc2\xcb\xa3\xe8\x72\x59\x29" "\x1f\x77\x5b\x0d\xca\xad\x64\xe8\xec\x69\x33\x86\xce\x9a\x3b\x6f\xc8" "\x94\x69\xe3\x27\xb7\x4d\x6e\x3b\xa7\xe5\xd0\x3f\x6b\x19\x31\x7c\xf8" "\xd7\x46\x0c\xed\x1c\x54\x73\xf2\xb7\x87\x91\x0e\xea\xae\xe6\xd4\x48" "\xb7\x2e\x2d\x71\x58\x3b\x71\xa4\x5f\xa8\xc8\xa9\xe4\x93\xf8\xd0\x90" "\x90\x90\xe8\x6d\x89\xfd\xfe\xcb\xe6\x87\x47\xef\xb9\xfe\x9c\xeb\x7f" "\xf6\xda\x8f\xcf\xef\xf7\xcd\xd3\xee\xdd\xfb\xc8\x99\x3f\x3c\xf4\xaa" "\xa9\x0f\x55\xef\x7b\xf8\xe2\xdb\x87\x1c\x58\x30\xff\x9f\xf1\xd1\xf3" "\xff\xf8\xa9\x13\x3f\xf8\x33\xeb\x33\x14\x3b\xfe\xdf\x10\x0f\xf3\x27" "\x8f\x6f\x3b\xcc\x3f\x2e\x06\x96\x94\x7a\xfc\xbf\xa1\xd8\xd1\xfc\xec" "\x89\x01\x8d\xa9\x40\x47\x0c\x74\x38\xcc\x0f\x00\x00\xc0\x67\x43\xdc" "\x1d\x19\xf7\x66\xc6\x9d\xd2\x9b\x6f\x59\xbf\x6e\xe3\x92\x96\xb9\x3f" "\x68\x78\xa7\xe5\xd6\x35\xed\x4b\x6f\xba\xe9\xbe\x53\x7f\x72\xe7\xc0" "\x13\xbe\x34\x38\xec\xb5\xe1\xba\x13\x3e\x57\x30\xff\xef\x28\xed\xf7" "\xff\x3b\x69\xfd\xff\xec\xd2\xf5\x27\x14\x5b\xe6\xff\xa0\x58\xa2\xb9" "\xd8\xfa\xff\xe9\x65\xfe\xb3\xeb\xff\x77\x14\x5b\xff\x3f\xbd\xcc\x7f" "\x76\xfd\xff\x25\x9f\xc2\xfa\xff\x73\xb2\x81\xd4\x26\x79\xc7\xfa\xff" "\x00\x00\xc0\x67\xc1\x27\xb7\xfe\x7f\x8f\xcb\xfb\xa7\x2f\x10\x50\x90" "\xa1\xc7\xe5\xfd\xd3\x17\x08\x28\xc8\xd0\xe3\x32\xfe\xa5\x5e\x20\x60" "\xbb\xd7\xff\x5f\xf3\xe0\x5f\x7f\xa5\xaa\xdf\x98\x3b\xfe\xa4\xe5\x37" "\xf5\x97\xbc\xf6\x77\xf7\x1c\xd6\x7a\xe4\xba\xcd\x33\xff\xe4\x4b\x5b" "\xd7\x4f\xbc\xef\xba\xb1\xb7\xac\x29\x98\xff\x5f\x51\xda\xfc\xdf\xc2" "\xfd\x00\x00\x00\xb0\xfb\xf8\xcf\x97\x5d\x53\x71\xf4\xd9\x77\xdf\xd1" "\xb2\x6e\xea\xc6\x71\x6f\x0e\x7e\xf7\xc9\xb7\x96\x0c\xea\xf3\x41\xc5" "\xd1\x0f\xb7\x8f\x7c\x61\xe0\x1b\xb7\x9e\x57\x30\xff\x5f\x52\xda\xfc" "\xff\x93\x5f\xff\x2f\x14\x3b\xff\xbf\xb1\x58\xa0\xb5\xd8\xc2\x80\xd6" "\xff\x03\x00\x00\xa0\x97\x2a\xb6\xfe\xdf\x3d\x43\x5b\x1a\xff\x30\xa6" "\xff\x1f\x9e\x1e\xf6\x9b\xe5\x0f\xde\x3c\xfa\xa7\x8f\xfc\xfc\xf7\xcb" "\xf7\xfb\xf9\x89\x3f\x2b\xdf\x67\xc1\xb1\xcf\xcf\xbc\x6c\x52\xc1\xfc" "\x7f\x55\x69\xf3\xff\x78\xda\x45\x79\x5e\xee\xd8\x9b\x0f\xeb\x93\x35" "\xed\x42\x7a\x4d\xbb\x37\xeb\xb3\x3f\x19\x00\x00\x00\x80\xde\xa1\x3c" "\x34\x35\x55\x96\x98\x37\x6f\x61\xd4\xa3\x3e\x7e\x9b\x4f\x67\x96\x02" "\xfd\xa8\x74\xae\xef\xbd\x72\xed\xd9\x9b\x5f\x98\x7e\xdc\xe3\xa7\xaf" "\xfb\xbb\x9a\x13\x06\xef\x39\x61\xda\x05\xab\x1a\xff\x66\xf8\x81\x77" "\x7e\x7e\xd4\x25\x7b\x2e\xdd\x74\x6a\xc1\xfc\x7f\x6d\x69\xf3\xff\xbc" "\xdf\x65\x5c\xfa\xd8\x8a\xe9\xfd\x96\x8d\xbe\xf4\xc3\xab\x37\xff\x6a" "\xcc\x86\xb3\x6a\x0e\xd8\x76\xfc\x1f\x00\x00\x00\xd8\x75\x4a\xdd\x2f" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\xfa\xce\xed\x58" "\x7c\xe1\x23\xcb\x8e\x7d\xef\x9b\xb7\xff\xc5\xfe\x47\x2c\x79\x75\xf0" "\x6d\x77\x1d\xf8\xbb\x21\xfd\x5e\xba\xe2\xaa\x07\x26\xad\x7a\xe3\xcc" "\xc9\x5f\x2f\xf8\xfd\x7f\x18\xdb\x55\xae\xd8\xef\xff\xe3\x75\xff\xe2" "\xef\x0b\xfe\x28\x2f\x77\x6c\xb5\xe7\xf5\xff\x32\xf7\x4f\x39\xf1\xf6" "\xb9\x5d\x4b\x16\x3e\x52\x1f\xc2\xfe\xb9\x81\xa9\x0b\xa7\xee\x11\x32" "\xd7\xe6\x1f\x9c\x1b\xb8\xef\x8c\x83\x06\x76\x26\x16\xa6\x4b\xac\x79" "\xf6\xe8\x97\x3a\x13\xdf\x49\x07\x8e\x1f\xf2\xb9\x2d\x9d\x89\xc3\x53" "\x81\x71\x71\x91\xc4\x7d\xd2\x81\x78\x55\xc5\x2d\xfd\x53\x81\xb8\xbc" "\xe2\xe3\xe9\x40\xdc\x1e\xab\xd2\x81\xaa\x4c\xe0\xb2\xfe\xc9\x38\xca" "\xd2\xdb\xea\x95\xba\x64\x5b\x95\xa5\xb7\xd5\xc6\xba\x10\x06\xe4\x04" "\xb2\xdb\xea\xee\xba\xa4\x8d\xb2\xf4\x00\xaf\x49\x05\xb2\x03\xfc\x5e" "\x3a\x10\x07\x78\x72\x26\x50\x9e\xee\xd5\xed\xfd\x92\x5e\xc5\x40\x5d" "\x2c\x7a\x43\xbf\xa4\x57\x00\x00\xec\xb6\xe2\xb7\xc0\xca\x30\x69\x4a" "\x7b\x5b\x73\xfc\x0a\x1f\x6f\xbf\x50\x91\x7f\x1b\xe5\x2d\x59\xb6\xa0" "\xb0\xda\xb2\x12\x9b\xdf\x94\x59\x9a\x6c\xf1\xca\xc9\x95\xa5\xa4\xfb" "\xa4\xbf\x8b\x6e\xbb\xd6\x78\x65\xa8\xee\x1c\xc2\xb0\x82\xaf\xab\xb9" "\x59\xca\xba\x46\xb9\x73\x6a\xe9\x61\xd3\xfd\x51\x91\x21\xf7\xb4\xda" "\x5b\x79\x91\x72\x69\xdb\xbb\xe9\xaa\x8a\x8f\xa8\x26\x19\x51\xd3\x84" "\xe9\xed\x13\x2b\x7b\x1c\x78\x4b\xcf\x59\x0e\xa9\xe8\x31\xcb\xb0\x82" "\xc9\x4e\x6e\x96\xf2\xae\x4d\x5a\x42\x2d\x25\xf4\xa5\x84\x11\x95\xb8" "\x6d\x4a\xe8\x72\xbc\x5f\x1e\x9a\x9a\xfa\xa4\x72\xfd\x79\x0c\x36\x84" "\x3c\x3d\xbd\x22\x4a\xfd\xbd\x7e\xee\x3a\x7f\xc5\x5e\x05\xb9\x79\x6e" "\x3b\xf4\xca\xb7\xbe\x7c\xcc\x4f\x9f\xfb\xe0\x9f\x3f\xff\x44\xff\x6f" "\x9c\x56\x73\xfb\xac\xef\xbf\x7b\xe2\xaf\x5f\xbf\xff\xc0\x43\x8e\xb8" "\x6e\x42\xd3\x9a\x2d\x05\xf3\xff\x86\xd2\xe6\xff\xd5\xb9\xe3\xda\x92" "\xb9\x18\x40\x47\xbc\xb2\xde\xc8\x01\x21\x8c\x2b\x71\x44\x00\x00\x00" "\xf0\xd9\x77\xdb\x45\xb7\xde\x71\xfa\xf4\xf5\xaf\x4c\x5a\x5b\xf1\xe4" "\x63\x8f\x4d\x2d\x1f\x73\x7a\xe5\xd6\xf9\x77\xce\x9f\x77\xc9\xc6\x7b" "\x17\x1f\x7f\xd9\xc1\x2b\x76\x34\x7e\xd8\x59\xbf\xfd\xfe\x6f\x06\xef" "\xff\x6f\xcf\x5e\xf5\xd2\x4f\x47\xee\xf3\xc0\x0d\x37\xff\x9f\x27\x0f" "\x7b\xfc\xcf\x7f\xff\xf0\x8f\x1e\x7a\xa7\x6e\x65\x9f\xb1\xef\x15\xcc" "\xff\x1b\x4b\x9b\xff\xc7\x3d\x58\x99\x43\xc1\xc9\xde\x8e\xb5\xf1\xfa" "\xff\x8b\x06\x84\xd0\x75\x69\xfd\x86\x24\xb0\x32\x0e\xf7\xbb\x03\x42" "\xf8\x72\x57\xaa\x35\x96\x48\x2e\xa8\x7f\x42\x2c\xd1\x9c\x04\x56\xc6" "\x1d\x26\x07\xc5\x12\xe3\x5a\xf3\xab\xea\x1b\x03\xab\x52\x81\x97\xeb" "\x33\x81\xb5\xa9\xc0\xfa\x18\xc8\xec\xa5\xb8\x25\x64\x76\xe5\x5c\x59" "\x1f\xc2\x61\x5d\xa9\xb1\xf9\x25\x66\xc4\x12\x0d\xa9\xc0\x98\x18\x68" "\x4c\x05\x9a\x62\xa0\x39\x15\xe8\x1f\x03\xa3\x52\x81\xd7\xfa\x67\x02" "\xad\xa9\xc0\xc3\x31\x10\xa6\xe4\x6f\xab\x1f\xf7\xcf\x6c\x2b\x00\x00" "\x80\xed\x91\x99\x67\x55\xe6\xdf\x0d\xe9\x79\xde\xaa\x8a\x9e\x32\x94" "\xf5\x94\xa1\xb6\xa7\x0c\xe5\x3d\x65\xa8\xee\x29\x43\xb1\x51\xc4\xfb" "\x77\xc4\x0c\x95\xa9\x93\x57\xca\x72\x32\x55\xa6\x6b\xad\x49\xd5\x52" "\x90\x21\x5e\x0c\x7f\xbb\xfb\x55\x90\x21\x3c\x9a\x9f\x33\x5d\xb0\xa0" "\xe9\x78\xfe\x41\xf6\x7c\x83\xb2\xfc\x0c\x57\xfe\xe0\xd9\x53\xd7\x0f" "\x9e\xfe\xd0\xea\xcd\xc7\x7c\x6d\xe0\x6d\xff\x38\x64\xcf\x83\x9b\xa7" "\xd7\xbd\xb7\xe0\x86\xa7\x7e\x3b\xe6\x9c\xeb\x9e\xff\xd3\x41\x05\xf3" "\xff\xe6\xd2\xe6\xff\xb5\xf9\xb7\x49\xeb\xeb\xe3\xfc\x7f\xdb\xf5\xff" "\x92\xc0\x83\xb1\x7b\x57\xc7\x53\xc7\x1b\x63\xe0\xf9\x23\xf3\x03\x99" "\x1d\x03\xeb\xe3\x64\x77\x71\xb6\xaa\xd6\x4c\x89\xcc\xa4\x7d\x71\x2c" "\x31\x2a\x06\x1a\x53\x81\x19\x31\x30\x2a\x15\x18\x37\x36\x13\x58\x32" "\x30\x3f\x90\x99\x69\x67\x1b\x5f\x94\x6d\x7c\x4a\xa6\x44\x4e\x00\x00" "\x00\x00\x3e\x71\x71\x07\x41\xdc\x4d\x13\xe7\xff\x37\x1e\xf5\x83\xab" "\xdf\x1f\x30\x71\xcb\xb2\x79\x33\xef\x1f\xdb\xf2\xc4\xc9\xa3\xbf\x71" "\xf5\x5d\x3f\xba\x77\xff\x65\x77\xbe\xbb\x62\xf0\x80\x71\xef\x7d\xa7" "\x60\xfe\x3f\xaa\xb4\xf9\x7f\x6c\xaf\x5f\x6e\x63\x17\xc7\xde\xbc\xd8" "\x3f\x84\xbb\xcb\xb6\xf5\x26\x1b\x18\x52\x97\x04\xe2\x7e\x8c\xba\xf8" "\xf3\xf8\x7d\xeb\x42\xd8\x23\x67\x07\x47\xb6\x44\x5b\x6d\x52\xa2\x2a" "\xd5\x70\x78\xa0\x26\xf9\x85\x7a\x55\xba\xaa\xd5\x35\xc9\x1a\x03\xf1" "\xfe\x29\x1b\xee\xbf\xef\xf2\xce\xc4\x35\x35\x21\x7c\x25\x67\xef\x4b" "\xb6\x8d\x67\xaa\x93\x36\x6a\xd2\x81\x41\x55\x49\xa0\x36\x1d\x98\x5e" "\x91\x04\xe2\x9e\x9f\x6c\xe0\x27\xe5\x49\x00\x76\x58\x76\xaf\x60\x7c" "\x41\x65\x4e\x75\xc9\x6a\xe8\xbe\x5c\x91\xd7\xdf\x67\xe5\x9a\xa0\xe9" "\xe1\x15\xec\x03\xed\x26\x5f\x77\xbf\xb9\xda\x55\xaa\xd3\x0f\x64\xf6" "\xa9\x66\x6d\xdf\xd3\x56\x50\x1d\xbb\x44\xc1\xdb\x63\xad\x77\x5b\x6f" "\x7c\xb7\x35\x78\xb7\xe5\x7e\x91\xca\x7c\x43\xd9\xba\x2d\x54\x1d\xca" "\x27\xb6\x4d\x1a\x3f\xa7\x7d\x76\x7c\x24\xf7\x97\xac\x05\x76\xd1\xf3" "\x9c\xfb\x2b\xd5\x52\xd2\x3b\xe1\x75\xd8\xf1\xf1\x7b\xdb\xb3\xea\x74" "\x07\x9a\x53\x1f\x1f\xcd\xdd\x97\xeb\xfe\x75\x58\x16\xab\xbb\xf4\xb1" "\x15\xd3\xfb\x2d\x1b\x7d\xe9\xd5\x9b\x7f\x35\x66\xc3\x59\x35\x07\x94" "\xdc\x8d\x22\xe2\x0f\x85\x7f\xb4\xe5\x7f\x57\x3e\x95\xb3\x79\x77\xb5" "\xea\x90\x79\xcd\xf5\xba\xcf\x93\x56\x9f\x27\xbd\xf1\xdf\x40\xa3\xa7" "\x2d\x84\x70\xd9\xf5\xc7\xec\xbb\xe4\xdd\x5f\xef\xf7\xdc\x0d\xcf\x9d" "\xba\xae\xec\xc6\xb1\xaf\xfe\xe5\xac\x7b\x36\x2d\xff\x9b\xca\xc3\x47" "\xad\x7b\xff\xc9\xa1\xa3\x2f\x2f\x98\xff\xb7\x96\x36\xff\xaf\x48\xdd" "\x76\xf9\x5d\xdc\x98\xb3\x06\x84\x70\x60\xce\xc6\x7d\x24\x6e\xfe\x63" "\x06\x24\x9f\x83\x39\x81\xe4\x53\x72\xcf\xc2\x40\x72\xc8\xfd\x5f\xeb" "\x8b\x7e\x72\x02\x00\x00\xc0\xce\x96\xdd\xdd\x91\xdd\x5f\x30\x25\x73" "\x9b\x9c\x10\x9e\x9e\x27\x17\xe6\x6f\xdd\xce\xfc\x71\x7f\xc5\xa8\x6e" "\xf3\x97\xda\xef\x63\xd7\x6d\x5c\x79\xd2\xd0\x37\xae\x3b\xe0\x6f\x2f" "\x38\xf1\x8d\xbf\xbf\xf6\xf0\xa7\x1e\xba\xfe\xb2\xb2\x75\xcb\xff\xfb" "\xd8\x0f\x56\xaf\xb9\x7c\xf1\x7b\x4f\x14\xcc\xff\xc7\x7d\xf4\xfc\xbf" "\x6f\xaa\x9b\x8e\xff\x3b\xfe\xcf\x2e\xe2\xf8\x7f\xb7\x76\xf7\x5d\xd1" "\x7d\xd3\x0f\x74\xec\xd0\xae\xe8\x82\xea\xd8\x25\x1c\xff\xef\xd6\xee" "\xfe\x6e\x73\xfc\xbf\x5b\x8e\xff\x3b\xfe\xdf\x1d\xc7\xff\x7b\xe0\xf8" "\x7f\xb7\x76\xf7\xa7\xad\xe0\x5b\xd2\x0c\x5f\xba\x3a\x27\xc1\xd7\xdf" "\xf9\xf3\xdf\x4d\xbc\xe9\x83\xb9\x8d\xfb\x1d\x7c\xd2\x53\xcf\x1c\x3a" "\xf1\xba\x7f\xba\xaa\xe5\xee\xbb\x4e\x79\xe5\xbf\x9d\x7b\xde\xb4\xd7" "\xbe\xb5\xb9\x60\xfe\x3f\xa3\xb4\xf9\xbf\xf5\xff\xba\x5f\xb4\x2f\xbb" "\xfe\xdf\xb8\x62\xeb\xff\xcd\x28\xb6\xfe\x5f\x87\xf5\xff\x00\x00\x80" "\x5d\xaa\xc8\x42\x73\xe9\x79\x5e\xc1\xea\x7d\x05\x19\xd2\xab\xf7\x15" "\x64\xe8\x71\x81\xc0\x1e\x97\x18\xb4\xfe\xdf\x76\xaf\xff\xb7\x70\xe4" "\xbf\x5f\x74\xe1\x0f\x9f\x6f\xb9\xf6\x9d\x3b\xc7\x5d\xbe\x66\xd3\xb1" "\x67\xbe\xfa\xf4\xba\xd5\xcf\xcc\x5a\x71\xdc\xb9\xe7\xbf\xd5\x7a\xd7" "\x5d\xad\x05\xf3\xff\x8e\xd2\xe6\xff\xf1\xe5\xd0\x2f\xb7\xf5\xde\xb2" "\xfe\x5f\xe3\xd8\x22\x55\x5d\x11\x03\x33\x2c\x0c\x08\x00\x00\xc0\xee" "\xa8\xd8\x0e\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\x5d\x87\x9e" "\xf6\xce\xfb\x97\x7c\xfd\x1f\xda\x06\xfd\x62\xc5\xcd\x7f\x7f\xeb\xff" "\xfb\xbf\xcf\xd6\xae\x7d\xe0\x9b\xdf\xb8\x69\xf8\x2f\xa7\xfc\xe9\x19" "\x65\x6b\x36\x5c\x33\xe2\xcc\x2d\xf3\x0e\xba\xf0\xb8\xf9\x0b\xa6\xfd" "\x4b\xc7\xf2\xd5\x47\x9c\x11\xc2\x94\xae\x72\x65\x49\xf1\xb2\xe7\xae" "\xf8\xea\x43\xad\x7b\x1d\xf7\xec\x1d\x03\x37\xce\xbc\xf1\xd6\xfa\x2d" "\xd5\x99\x7a\x2b\x33\xb7\x7f\x9c\x97\x3b\xb6\xfa\x61\x7d\x08\x4b\x72" "\x1e\xa9\x8b\x89\x37\xeb\x3b\xef\x6c\x0b\x9c\x72\xe2\xed\x73\x2b\x3a" "\x13\x8f\xd4\x87\xb0\x7f\x6e\x60\xea\xc2\xa9\x7b\x74\x26\x96\xd7\x87" "\x30\x38\x37\x70\xdf\x19\x07\x0d\xec\x4c\x2c\x4c\x97\x58\xf3\xec\xd1" "\x2f\x75\x26\xbe\x93\x0e\x1c\x3f\xe4\x73\x5b\x3a\x13\x87\x67\x02\x65" "\xe9\xee\x5e\xd7\x3f\xe9\x6e\x59\xba\xbb\x97\xf7\x0f\x61\x40\x4e\x20" "\xdb\xdd\xb3\xfb\xe7\x57\x95\x6d\xe3\xb8\x4c\xa0\x3c\xdd\xc6\x8a\xba" "\xa4\x8d\x18\xa8\x8b\x45\xaf\xad\x4b\xda\x88\x81\xf6\x58\x62\x4a\xdf" "\x10\x86\x56\x84\xd0\x27\x5d\xd5\x3f\x57\x27\x55\xf5\x49\x57\x75\x4f" "\x75\x52\x55\x9f\x74\x55\x17\x55\x87\x30\x32\x84\x50\x91\xae\xea\xb9" "\xaa\xa4\xaa\x8a\xf4\xc8\x1f\xad\x4a\xaa\x8a\x81\xbd\xf7\xbb\xe5\xed" "\x41\x9d\x89\xa5\x55\x21\x0c\xcd\x0d\x3c\xf1\xed\xa5\x87\x75\x26\x66" "\xa6\x02\xd9\xc6\xff\x53\x55\x08\x5f\xea\x7c\xc9\xa4\x1b\xff\x71\x65" "\xd2\x78\x65\xba\xf1\xff\x5a\x19\xc2\x17\x43\x08\x55\xe9\x12\xef\x55" "\x24\x25\xaa\xd2\x25\x5e\xa8\x08\x61\xcf\x9c\xc0\xb6\x8d\x58\x11\xc2" "\xdc\xc0\x67\x43\xfc\xf4\x99\x98\xfb\xe0\xac\xb9\xf3\xa6\x8e\x6f\x6f" "\x6f\x9b\xb9\x0b\x13\x55\x99\xb6\x6a\xc2\xa4\x29\xed\x6d\x4d\x13\xa6" "\xb7\x4f\xac\x4e\xf5\xa9\x98\xb2\x9c\xf4\xd6\x05\x1f\x7f\xec\x9b\xde" "\x9e\x3f\xa1\xf3\x76\xf1\xca\xc9\x95\xa5\xa4\x2b\x32\xe5\x2a\xbb\xba" "\x7c\x48\x65\xde\xdd\x96\xdd\xbd\xf7\xb1\x5f\xb5\xb9\x95\x6c\x7b\x3e" "\x0a\xea\x8f\xf9\xab\x42\xbf\xd0\x77\xce\xac\xb6\x99\x4d\xe7\x8d\x9f" "\x3d\x7b\xe6\xb0\xe4\x6f\xa9\xd9\x0f\x49\xfe\xf6\xc9\x44\x93\x6d\x35" "\xac\xb7\x6c\xab\x41\xb9\x95\x0c\x9d\x3d\x6d\xc6\xd0\x59\x73\xe7\x0d" "\x99\x32\x6d\xfc\xe4\xb6\xc9\x6d\xe7\xb4\x1c\xfa\x67\x2d\x23\x86\x0f" "\xff\xda\x88\xa1\x9d\x83\x6a\x4e\xfe\xee\x8c\x91\x2e\xfd\xe4\x47\xfa" "\x85\x8a\x9c\x4a\x3e\x89\xf7\xbf\x84\x84\x44\x6f\x4b\x94\xe7\x7d\xba" "\x35\xef\xee\x9f\xe3\x05\x5f\xf4\xb7\x75\xb4\x32\x54\x77\x7d\x40\x17" "\x4c\x2b\x72\xb3\x94\x75\x8d\x72\x67\x0c\xfa\xa8\x8f\x39\xe2\x8f\xf3" "\x35\xa5\xc7\x11\x0d\x2b\x98\x38\x14\x64\x39\xa4\xe7\x2c\x2d\x05\x93" "\x89\x6d\x59\x6a\x92\x2c\x5d\x5f\xeb\x0a\x26\x87\xb9\x35\x95\x77\x6d" "\xd2\x78\xbf\x3c\x34\x35\xf5\x29\xb6\x1d\x1a\xf2\xef\xe6\x6e\xde\xd7" "\x77\x60\xf3\x3e\x9d\xd9\x74\xa5\xa6\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8" "\xff\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\x07\x0e\x04\x00" "\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x2c\x00\x00\x00\x00\x20\xcc\xdf" "\x3a\x8c\x9e\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb8\x14\x00\x00\xff" "\xff\x1f\x4b\x19\x91", 21918)); res = -1; NONFAILING(res = syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x2000000015c0, /*flags=*/0, /*opts=*/0x200000000100, /*chdir=*/0, /*size=*/0x559e, /*img=*/0x200000005680)); if (res != -1) r[2] = res; break; case 16: // ioctl$BTRFS_IOC_QUOTA_CTL arguments: [ // fd: fd (resource) // cmd: const = 0xc0109428 (4 bytes) // arg: ptr[in, btrfs_ioctl_quota_ctl_args] { // btrfs_ioctl_quota_ctl_args { // cmd: btrfs_ioctl_quota_ctl_cmd = 0x1 (8 bytes) // status: int64 = 0xfffffffffffffffc (8 bytes) // } // } // ] NONFAILING(*(uint64_t*)0x200000000140 = 1); NONFAILING(*(uint64_t*)0x200000000148 = 0xfffffffffffffffc); syscall(__NR_ioctl, /*fd=*/r[2], /*cmd=*/0xc0109428, /*arg=*/0x200000000140ul); break; case 17: // ioctl$BTRFS_IOC_SNAP_CREATE arguments: [ // fd: fd (resource) // cmd: const = 0x50009401 (4 bytes) // arg: ptr[in, btrfs_ioctl_vol_args] { // btrfs_ioctl_vol_args { // fd: align64[fd] { // v: fd (resource) // pad = 0x0 (4 bytes) // } // name: buffer: {93 43 5c 76 f3 91 f1 98 ab c3 ea de bb bb 3a a5 2d // 6a 58 b1 c6 dc 38 49 7b 56 66 ec d7 7b 8b 10 74 d1 7d 81 12 0b 03 // 8a d5 e5 92 01 3c b7 a1 0f ce b6 e2 f9 28 c8 13 90 d7 ed da 27 82 // df bb e4 ac d1 44 f5 05 08 f3 c3 f5 07 78 75 bb 27 c3 ae b3 f5 bc // 5c ee a7 53 26 b4 cc ed 5d 9b ef e4 b7 7f 90 93 ef a1 3f 2c 84 47 // c2 2d 08 98 64 fb 6a 3c 87 c7 25 8f cd 34 4d bd f8 3d 08 f2 6d 1d // 88 5b c0 1d fc b6 57 7c 6c 07 ab 4c 5a cd 9a d9 89 5e 5b 17 29 ab // fb 00 38 e3 d2 b3 47 68 15 46 20 70 a9 07 81 c1 27 2c ba 20 08 cf // 8f ec b2 ea 35 a9 54 a2 d9 42 bd 3f 5f 19 fc 88 36 86 1b 8d 34 b5 // 0f c4 d1 1c 54 1f 7c 71 ab 9a 7f d7 c9 e6 46 45 11 d1 8a 85 bd e9 // 5a 3c a4 0a 4a 5d 9b b5 cf 5f 74 b9 db 33 af 43 c6 5e 6f 06 27 4e // e8 bb 0a 69 99 26 0e 43 45 a7 07 bc f4 4d cd cb 15 79 a0 a1 8c 6a // 52 f0 c2 5c 56 38 8b 14 58 62 b0 b7 ec b3 d2 24 77 06 0a 41 95 42 // cf d7 d0 30 51 2b c5 a3 dc 8c e9 70 ab c3 37 0a 9b de b3 8e 89 59 // 42 45 75 f2 12 5f c0 99 15 8c 14 f8 8c f5 68 60 b3 a1 02 ca 12 0d // 38 95 75 f7 fc 81 9a 64 ce 1b 41 3f d9 98 6d c7 8c 86 10 8b 11 71 // b8 f5 1e d0 54 7b 3f 40 9e f4 9e 2d f5 91 29 8f 5d d9 7a 3e ca de // fa 2e d8 bc 23 71 40 1f af 30 bc 03 97 ad 78 65 26 c1 c1 93 13 59 // 28 64 39 3d 42 24 30 af 08 b1 b7 a9 93 96 f8 0b 0a 75 2b 3f 46 24 // 70 96 1a ce 56 8d 48 f8 0a 21 f1 21 c8 c2 ce 0c d4 2a e5 ef 79 3e // ec 2f 14 05 fe 7e 6f c7 6f b0 f1 ec bb 32 56 92 6b 33 0c d7 4b 0b // 17 60 bb 7f e7 47 bc be d6 38 05 c1 ba 17 fc cc 62 12 24 a4 79 ab // 2e c3 13 fa fe c1 56 cf cb ca b1 a3 63 5f 28 9f 0d ea 18 07 68 d8 // 17 c4 a1 20 d5 8c af 38 92 0a 8c 27 06 eb a7 0d 8e 32 fd 11 f4 e9 // fa 5d e0 c6 ab 0e 08 28 c3 04 4c fe ee eb ea 38 cf 84 bc 6c b3 3d // 09 eb 7d 2c 98 86 54 15 f1 66 6e f3 e7 9c c9 a2 fd 4b ca 3d 6d f2 // 6e 8e d8 26 fb 7f 30 42 a3 84 b0 8c d2 ad 78 d6 be c5 1e fa 7f fa // 1f a4 c0 04 46 04 bd ee 80 7f 62 5c f1 11 2a 89 f5 0b af 84 9b 4f // 8c ff b9 24 32 d4 76 ef 2d 74 2f c4 fe be d3 f1 07 7a 2d e7 a8 4c // f7 15 67 d8 65 8b b2 9c 5c 7c 40 e3 c0 ae 47 26 b2 b0 6d 73 a4 a6 // 7b 2f 47 20 ea 89 a6 a4 30 16 3f 61 bf 22 df 14 5b d9 f5 ac af 9c // 89 bc 01 11 ed a1 fa 6d e8 1f 49 10 8b b2 7b f0 4b 30 d5 bd 0f 25 // 5d bd f0 8c aa 75 82 68 e0 2b 5b 99 4d c1 ac 78 60 d4 ab 5b 29 43 // fa 7c 22 38 67 5a 95 43 48 20 53 28 9d 6f a3 7c db d3 ef 5d 3d 27 // 1e a7 19 bd e0 be 7d 02 09 89 db 3d a5 fa c1 8f b2 9d 7d f9 0b 78 // a5 49 0f b6 f1 9a c9 90 05 d2 e4 aa f0 65 78 62 23 c8 b4 e1 c9 e0 // 2e 65 4c ed 4c fa 99 2b 6f 15 ea 14 7b bb d2 d9 45 18 24 c9 6f 9a // 85 69 0f 98 6b 03 b2 c4 0e 93 70 3b 16 f3 c3 f8 20 3b c3 09 a8 b7 // fb 3d 5c d8 7f 7a 80 33 51 de 94 00 75 e3 3a 3b ab 3c aa bf cf 17 // 55 80 93 b2 13 eb c6 95 74 c0 45 4d 6e 98 f4 7f 4a d7 b7 ee 71 49 // 73 db 40 e1 be 81 a9 13 55 96 41 4f 66 02 ab 46 20 7f a0 f4 67 da // 4b bd 62 b2 3e 64 f2 44 2a ab a4 f0 32 a7 d0 28 8f 6e dc 00 7d d5 // 3a 5b 1e 3e a5 d5 d3 58 48 7e f9 5a 2d 22 1e 1c 9c 2d 97 da c6 8d // 3e 21 54 35 72 63 74 3b 23 99 48 12 83 a6 96 19 3e 3c 9a 89 51 29 // a6 1a 1d 41 c2 fe 4d 6c fe d8 fc bb 6a a5 a3 5b 25 04 9c 9b b8 fc // f2 68 7b f7 81 24 c0 50 04 bb 0f 36 92 90 bf ce 81 8b 44 83 d8 a5 // 21 5a 26 6f 69 e8 68 48 9c 4a e7 5f e1 50 55 97 d1 60 17 23 35 b0 // 1b b3 b1 7a 5f 4c 05 df a3 8b 38 88 f5 dd ca de 96 04 50 53 71 60 // 15 69 4e df fa 0b 74 35 13 3b 3c 98 f8 63 5a 54 aa 56 5d a6 d3 52 // f3 d8 9a ff 2f 20 95 d1 ad a9 0d 89 44 99 c6 c6 bf 0d 54 c7 0a e1 // bd 74 9b 84 9b ec a8 b6 a1 14 45 c5 b1 97 3e 22 54 26 6a 43 39 07 // ee c7 62 b1 28 52 cc 5e 49 53 91 87 9c 0d 49 a6 5b 20 ce 4d 75 32 // 9c 40 7e 39 c3 a1 27 41 ce 30 48 f4 1f c8 6c 26 40 ee 1d 95 64 58 // 68 19 3a 07 1b 69 97 65 26 16 fa cf a5 ac f2 cb 6b 26 2a d5 32 d5 // 2c 81 b4 61 1c 54 d7 3b 9b 58 56 9e 39 c5 79 94 5d 8e 82 b6 48 ae // a2 81 79 8d 3f c2 63 bb 98 ed a6 f0 84 fe 63 2d 60 55 6d be 01 b1 // 1b c5 dd 3c fb 6e 7a 58 a4 d4 02 c6 8e b9 14 b4 45 64 63 ae 58 c7 // 21 e4 3e e5 b2 e3 c1 6b ac 5f db 20 9e fd 53 08 70 ef 45 b6 da c3 // a6 fe 30 40 ae 23 98 34 7f 16 06 d6 0b f2 a4 69 5a 8a eb e1 cd ca // 70 9f a7 5c 12 92 13 81 e0 f0 71 c0 a0 bd 0a f5 6b 4d 00 bb f1 d5 // 09 25 77 e3 c6 fd cb d2 34 c1 c4 77 22 f4 88 96 6e 7b 95 d1 dc 41 // 83 ae 7d 47 c6 00 23 ae 25 e3 35 d8 26 4d c8 af 8e 8d 68 8a 8b 4d // 23 a1 03 65 08 16 57 bd 7f 3b 6d a6 fd 41 35 b8 6d 93 ae 0f 56 b6 // 69 22 cc 45 8b e2 a6 5d cf a3 a9 2b 92 56 b7 19 4b 96 4d 2a b2 0b // 23 34 bb d7 db a1 27 bb 4a c1 09 ed d3 49 0b 37 d9 3a 33 fb b8 2e // 5b dd 62 56 e1 e0 8d 85 94 2c 23 e3 bf 17 a7 f4 3e a6 90 7b 03 f6 // 8b 87 cb e0 09 65 10 dd 11 d7 40 84 79 71 d4 6a ee ae 44 1c 33 ad // 85 bf e2 cb 26 76 36 93 86 5a 70 ea d6 b2 9e a4 9d 57 6e 4f 04 da // 95 a4 7c c7 58 19 05 21 30 bb ba 45 17 47 2c dd 0a e3 38 f4 0a b9 // 65 b8 a5 77 0c 33 d6 e7 36 fd e5 bc bb ed 3f e0 a9 52 35 af 79 e6 // 7b 4d 62 9e 12 64 d2 76 f1 3e d8 f6 cd ec 45 ed 69 f1 7a 7b 12 2f // 8c ec 7c de 30 82 fa 0b 06 0b 28 f9 86 b9 ad 31 c3 a3 ef be 2d 9e // 95 06 b1 d6 f2 a4 16 16 da a5 c1 30 df b8 65 47 c9 b6 e5 84 c8 27 // b0 97 cc 00 0b 54 a0 5d cd c8 32 55 ed e7 5a 4a 1d 8f cb 9e 21 c2 // 97 af 0e 70 de bd 22 5c ae 3a c5 39 15 23 ca 08 37 df 87 72 85 a1 // cc 6d 41 62 71 78 ed ec bb ba 76 3e a6 a1 4b f4 3c ca af 1d 61 a5 // 92 f4 b1 44 f9 a8 7f 5d 62 80 db 8e 29 cf 79 c2 ba 79 e1 9f be 80 // f3 18 c0 1d d3 fa c1 77 3b b0 a4 6c 37 9e 54 29 0a 2f 18 cb 99 61 // 2b ed b9 ef 3d cf 9e 58 1d f5 cb 05 e7 f8 2d 73 8f 39 29 0d e2 c3 // c4 66 f2 8a bb 8d c3 8f ce 54 0c 57 fd c3 b7 b4 cd 49 fb 97 2b a5 // e3 e6 98 bc 1f db 76 44 c8 b2 39 e1 20 c1 32 3f 29 4b 25 52 ab 3e // 5d 27 ac b0 90 2b c0 75 df 90 8d d7 4c 38 b5 8b 49 52 51 bc f7 56 // 46 95 7f e3 18 af 44 d6 74 fe 04 ab 4c b4 e6 4c 03 30 00 3b b2 66 // d9 eb de ed f0 dd a9 73 85 fa aa 7e 8f 4c 47 d8 48 02 79 a3 51 2b // 8d af f7 52 5c 03 73 72 03 f8 b4 09 9d 14 89 55 fb 8c 89 83 9c 8c // 18 41 67 67 b4 39 8d 38 16 f6 4e a7 c4 b2 53 d0 9d 7b ec cb 89 6c // fe 61 20 29 81 70 08 7b 4c 83 91 dc 3a 4e 5c ca b9 c1 cd d9 bb f6 // 14 3b c9 d7 9c 91 68 f1 ee cd 29 32 38 7a 9e 65 cf 81 b7 42 10 da // 62 10 6c 5f bf 37 b4 cf 21 27 c6 8d 86 7d 56 fc a5 29 80 fe 3d 4f // b2 af 9a e0 c7 aa 4e 4d 0d 5b a3 4b 6b f7 9c c5 dc 44 c7 fc 29 b7 // da c2 cf 07 70 4e 84 06 f4 da fc 0f a6 a7 f1 6a 9d a9 d8 71 62 b6 // 9c d6 9e 22 90 e1 26 2e 59 11 90 a4 95 df c1 7e 66 a9 f5 33 13 48 // 84 c1 a1 a1 93 07 ce 05 df 16 e1 50 ea 7b b8 d8 9a a9 93 c7 67 b4 // ed 55 23 e9 62 cc 46 e9 e4 ed a2 af a7 1b b2 8c 56 e9 f5 9e b5 5e // 0f f5 0f c2 c4 26 27 e5 04 8a b2 b2 90 9d 6e 26 a1 9a 75 3a 3e d3 // 0e 56 36 da e2 9f e0 4f bd 48 3a e2 c7 85 81 25 3a dd 13 b0 a0 bf // 07 02 1e 60 4a a5 80 5c 0e c6 a4 01 0b c2 bc 19 ea 0f 2c 8b f0 d4 // 11 6e 11 b7 79 c8 64 46 df 4e f0 e0 4d 2f 87 ef d6 28 5b 21 1e b5 // f0 2b c7 6b 67 31 b8 f2 5d 79 dc 32 58 0e 5c 84 59 7d 05 8c e8 41 // 59 85 c3 40 7b 7b 0a 7f 99 04 fa f6 76 32 98 19 c7 e1 71 3f 48 12 // 20 60 96 af 3a 1d 89 da 91 48 95 34 86 6f cf 80 cf 2c 7c 67 ea 53 // 46 89 52 92 11 db 49 5a de 7e 4e bc a3 5f 5a 5d bd ec 19 c5 a8 19 // 32 62 ff f2 67 92 04 61 96 61 34 55 a8 3d bc c5 69 66 53 e9 fb 61 // 62 68 a9 43 4a 24 65 9f 80 4b f4 00 c7 22 d6 d8 72 53 ba 10 02 f8 // 60 9d 0d 90 79 6f f5 cd c1 66 61 60 22 86 1f 8e 23 b3 11 a3 c8 26 // 2c 5d 44 d2 48 e8 f0 71 e4 06 21 bc 4a 8e b9 ff d9 22 bc 40 07 c4 // 11 7d 91 3d e2 23 11 45 97 39 03 f2 85 89 8c 19 6f c0 18 75 42 5f // f1 7a 7e 9f 5e 2c ef 0b 1d 0a ee 62 80 c5 85 78 0c dd 23 b1 26 90 // 38 bb 07 5b 9e 46 ef ca 0b 2c 54 c9 9e a7 cc 2c 0c 9e f2 64 77 eb // 52 4a f1 37 47 e1 16 3a 26 63 2b 09 0d bf 5e e3 29 f7 fd 34 b6 c2 // 2e 8b 9b 23 dd 41 6d 21 e5 f0 67 7a d1 41 1c 96 e0 4e 57 85 a5 dd // 08 07 02 e9 c9 4d 65 30 44 d3 29 14 6b 09 2a 01 d1 f6 08 6e 69 79 // 2b 4d 22 65 f6 fb 95 44 9f a9 e4 32 3c 52 5e f0 42 45 82 22 6d 9c // 66 1d 28 94 df cf 37 88 ce 32 54 db ff 10 3c 69 84 60 ee 56 37 f0 // e2 eb 39 f8 3a 76 90 61 db 00 3b bb e8 7c cd ce 39 33 f3 9d 47 97 // 0a e5 f7 a1 e1 f1 4e cb e3 19 aa ba 1e ad 35 d2 fe 3f 83 a9 cf e9 // 49 9c 66 f9 d1 10 0c a8 22 e1 9c 4a df 2b 1f 90 ae 88 10 b0 ae 30 // e2 c3 da 8e ab ae 68 a5 6a f4 59 6e 89 22 aa c0 79 55 54 a5 c3 3f // 68 b5 0e 7f c9 ae ab a5 6d e9 ef f4 f4 7e fa b0 67 28 1a 29 20 df // 9b 1d be 05 9f d9 f4 a8 08 e7 ae 91 e7 e2 ee 91 ad b0 11 bc 68 5f // dc 67 c9 f6 59 dc 89 c0 3a cb 82 6f 0f 8c 9c 12 b3 6e f9 9a b2 82 // 95 6f dc b3 ba a4 f0 cd d5 48 e8 a6 95 57 d7 26 fd eb 89 52 ee 11 // 4a 10 96 ba 95 6b 5a 58 5d a3 c5 d9 f7 ec 98 a4 fc c8 90 47 ca 8f // 89 57 79 a7 d3 d9 ab e0 ba 1c b7 a3 a8 d1 50 83 90 8e 79 a9 70 7a // cf cf 03 dd b8 c4 87 53 89 58 d8 13 39 07 69 a6 fb 19 72 48 78 1c // a0 4e d0 90 75 09 12 43 c5 c1 3f 46 49 cf fa ff f3 36 63 0d cd 5d // 8a 19 9c dc 6e 4b db 91 6d e8 77 22 39 94 fc 53 a1 56 7b 46 3a 81 // 80 c8 c4 af 66 8b b6 0e 79 7c 25 40 b4 01 52 e5 7b 1d 37 33 95 b0 // f5 ca 06 84 af 52 29 9f 15 c6 03 50 4c 17 99 5e 3a 33 bc e5 a5 be // aa 6d 4c 51 e7 6b 0d 6c 1c fc 89 82 a8 dd 10 67 98 d2 86 5e cf 20 // 84 df 16 22 92 10 6b 2d a6 bb 9f 0a e1 2b 16 55 e9 b8 0e 54 93 75 // ca ee b0 2f 4a f1 02 93 32 55 2d c0 fe ff 77 01 39 81 57 a4 5e a9 // 48 4f f2 cf 36 31 4b 8b 13 ee 0b 92 1d 86 3a ce 93 82 b4 73 e0 f3 // 92 be cf fe fc b2 99 8c a5 52 b0 e4 78 cb 22 81 0b b7 6b f9 ec 2d // 90 da 18 83 74 16 6b 5e d1 62 86 d8 19 87 e6 d9 f8 bb cf b5 e5 14 // f6 86 06 7c 8e 15 bf d6 6d ac 08 9f 38 0c 94 b3 3b 59 62 a7 6d b4 // fe a4 4d 2f 36 46 d6 7d 19 c1 33 7b c9 0b 0e 78 8b d1 39 ef 4e 60 // 6a 94 af 09 d8 d0 2c a1 14 9e 83 87 52 a3 94 ad 67 a3 03 ac 67 2f // c0 62 7a c4 77 80 a4 ae ab e1 9e 42 ba 77 52 dd 7a 37 36 dd 52 7e // 67 25 68 0d 5f a5 47 0c 77 88 36 2e 29 91 d8 d9 74 6f 77 ba 85 53 // ab 36 17 b8 70 95 23 d7 f6 77 ed 74 21 16 70 52 33 f5 95 3b d9 1b // 49 ee 3a 3a 44 f8 4e 29 1e 98 c3 84 41 ca 56 47 64 56 72 19 e4 83 // dd 4c 23 80 4e 54 2c 08 53 78 7c 5d ba 9c f6 62 ce 87 ad ee d6 c5 // 45 c1 0f 07 65 43 27 91 b5 4d 97 7f 18 94 8d 68 8c 03 66 39 68 20 // e0 13 4b 18 ad 77 34 0c 31 59 ff a0 ff 18 f5 25 1a be 9c 73 37 87 // 7b 93 3c 1c a5 5e 34 5a 48 e6 64 93 3e 65 68 a8 0b 6e 01 5b 89 e5 // b5 11 76 ff 35 65 aa 54 55 ab 04 39 62 0f 33 29 63 71 3c 7a 81 21 // 6f 95 6a e0 9d be 46 92 c4 08 43 6f dc 6b 7d 89 cd c7 89 92 60 72 // d8 17 22 4b e5 ff ba 20 22 f7 3e ff b2 cb b5 b3 31 d3 66 24 48 9e // 53 f7 1f 20 28 11 15 4b 4b f3 e6 9e 1a 23 e1 c2 5c a9 0a de df b0 // 46 5a 87 5e 8f 9c 50 64 f8 50 a9 44 54 00 d7 1d 56 7e ba 4a 23 74 // 94 0a 81 23 09 86 60 e3 0c e0 cf d8 88 2f 75 4b ea 30 4c be 82 b3 // e9 b1 ed ad 77 e1 61 81 6c 1d 7e 90 d4 11 e4 f4 68 6b 81 ff b7 e7 // d7 af 98 7d c4 90 3b cc 51 ad fb 07 97 ce 11 eb 05 8d e3 9e 15 af // b2 ce 69 9e ea 6f 6c 85 da 59 92 5d 01 ce 1d f1 b8 b9 04 33 6c 33 // 18 1b a3 83 88 00 d3 51 e3 7c f4 a4 b8 5b 0d 2e 16 64 a0 c1 1e 2e // 5a 91 b8 d9 1a 00 98 a3 54 9d f8 f0 d6 57 e4 81 5e 19 c4 0d 0c 1b // 14 7e a7 c3 9c ad db cf 5a 02 f2 0c 3c 2a 3e 4a 7c db f7 cf c0 e4 // 20 07 b2 ed 9a 18 b1 73 9e c3 66 09 74 ff 54 5a 84 a0 9c 06 cc 94 // 64 60 ea 61 71 b3 7c ba a3 c7 39 c8 89 e6 0d 38 61 fa 3a 8e fa ef // 59 88 1b ea 4e c3 60 f3 f5 8c 8b 03 3f 77 bd 8a 1f 1f aa d8 8b 57 // 1e 65 98 a9 9f 89 a6 53 55 bf f1 0b 4d b8 ec 2e ce bf 0a 52 fc eb // 85 67 9b 75 31 f1 b7 d8 6b 16 0f 6d 72 86 23 57 e0 86 66 69 1a c1 // ad e0 bc 8e 8b 4f fd 5e ce f7 b2 ee d7 07 2b ad 12 42 26 a6 56 a2 // f0 a8 c6 b4 3b 5b 36 0d 84 23 a0 3b 0d e1 75 11 8a 45 ed ab 31 e8 // b0 67 7b bb 0f 15 ad 1f 8a db 5c 00 ad 84 f2 b5 91 c9 2d 9f b6 42 // b0 b0 2d bf 04 36 7c 90 e7 e9 ab bc 1c 52 95 d5 93 39 fe da 6a 79 // 56 53 1f e2 4b dd 0d e0 a3 90 d5 28 d6 33 36 ea 09 53 12 18 7c ae // d2 fa a2 38 7a 10 13 52 23 f0 cd 92 f4 64 ee d2 dd 99 96 47 1a f5 // f0 a8 05 a0 e3 1b 55 71 71 87 97 8b 46 7a f9 fe 50 a8 57 1e 15 90 // a2 ba a7 36 77 ed 31 8f 6b ce f5 88 b2 e0 d9 c0 7b 03 07 8d 9b 29 // 4d ec da 9c 34 2a 6e 59 98 cb 9a 53 82 51 c6 c8 d3 51 3e 6e d5 bb // 40 0d d9 61 13 2f b3 14 ae f6 fc 53 72 c9 57 9d 0f 9a ea bf 5e 88 // 5e 21 1e 5d 84 13 80 97 c5 1f c1 21 8e 54 9a 1c 53 8b 25 9b 60 a3 // 64 f1 67 30 cf 3d 7c 60 5d c1 e1 1d 97 a0 86 21 b8 09 d4 56 ff 36 // 8f 66 c6 bc f2 e3 f2 e7 89 36 72 1c 00 63 67 20 aa b3 f6 6c 0f fa // ff 69 ad c4 0e dc 5a 87 76 57 cd 0f 52 8e 52 56 2e ac 34 b6 86 58 // d5 5c af a4 68 cf 6e 8d 92 ba 46 5b 6b 55 70 34 7d 1a 77 ad 64 a5 // d4 9c f9 e5 c9 05 bd 0c c1 6a fb 50 34 99 41 fd b3 f1 70 0c 9f 29 // 32 64 ae 1c 68 73 25 55 a9 a3 12 a1 95 34 8e fa 8d 1a 71 37 a9 42 // 51 b5 7a dd 65 f6 0c e5 1a 53 fa 5a 1f 52 c0 ac cf e8 80 09 5e 45 // 12 ea da 74 67 a8 32 1f 82 d3 47 1b 50 96 ea be 0f 5c f7 04 11 20 // d3 8b 5c 52 76 74 0f cd 49 a6 ee 13 6a 8f 09 d4 13 f4 ce c9 da 95 // 5c cd 65 33 5e 15 bb b2 8e ed ae f9 cb 8f bc 27 32 b3 cb 33 f6 d7 // ef bf b8 aa a9 22 ef 34 d4 05 1a e6 7c 28 ae 5a d8 4a a3 d8 22 cc // cc 49 a9 4c c4 29 09 da 63 56 f0 df 41 a4 1a 33 85 60 37 72 94 2c // 18} (length 0xff8) // } // } // ] NONFAILING(*(uint32_t*)0x200000000300 = r[2]); NONFAILING(memcpy( (void*)0x200000000308, "\x93\x43\x5c\x76\xf3\x91\xf1\x98\xab\xc3\xea\xde\xbb\xbb\x3a\xa5\x2d" "\x6a\x58\xb1\xc6\xdc\x38\x49\x7b\x56\x66\xec\xd7\x7b\x8b\x10\x74\xd1" "\x7d\x81\x12\x0b\x03\x8a\xd5\xe5\x92\x01\x3c\xb7\xa1\x0f\xce\xb6\xe2" "\xf9\x28\xc8\x13\x90\xd7\xed\xda\x27\x82\xdf\xbb\xe4\xac\xd1\x44\xf5" "\x05\x08\xf3\xc3\xf5\x07\x78\x75\xbb\x27\xc3\xae\xb3\xf5\xbc\x5c\xee" "\xa7\x53\x26\xb4\xcc\xed\x5d\x9b\xef\xe4\xb7\x7f\x90\x93\xef\xa1\x3f" "\x2c\x84\x47\xc2\x2d\x08\x98\x64\xfb\x6a\x3c\x87\xc7\x25\x8f\xcd\x34" "\x4d\xbd\xf8\x3d\x08\xf2\x6d\x1d\x88\x5b\xc0\x1d\xfc\xb6\x57\x7c\x6c" "\x07\xab\x4c\x5a\xcd\x9a\xd9\x89\x5e\x5b\x17\x29\xab\xfb\x00\x38\xe3" "\xd2\xb3\x47\x68\x15\x46\x20\x70\xa9\x07\x81\xc1\x27\x2c\xba\x20\x08" "\xcf\x8f\xec\xb2\xea\x35\xa9\x54\xa2\xd9\x42\xbd\x3f\x5f\x19\xfc\x88" "\x36\x86\x1b\x8d\x34\xb5\x0f\xc4\xd1\x1c\x54\x1f\x7c\x71\xab\x9a\x7f" "\xd7\xc9\xe6\x46\x45\x11\xd1\x8a\x85\xbd\xe9\x5a\x3c\xa4\x0a\x4a\x5d" "\x9b\xb5\xcf\x5f\x74\xb9\xdb\x33\xaf\x43\xc6\x5e\x6f\x06\x27\x4e\xe8" "\xbb\x0a\x69\x99\x26\x0e\x43\x45\xa7\x07\xbc\xf4\x4d\xcd\xcb\x15\x79" "\xa0\xa1\x8c\x6a\x52\xf0\xc2\x5c\x56\x38\x8b\x14\x58\x62\xb0\xb7\xec" "\xb3\xd2\x24\x77\x06\x0a\x41\x95\x42\xcf\xd7\xd0\x30\x51\x2b\xc5\xa3" "\xdc\x8c\xe9\x70\xab\xc3\x37\x0a\x9b\xde\xb3\x8e\x89\x59\x42\x45\x75" "\xf2\x12\x5f\xc0\x99\x15\x8c\x14\xf8\x8c\xf5\x68\x60\xb3\xa1\x02\xca" "\x12\x0d\x38\x95\x75\xf7\xfc\x81\x9a\x64\xce\x1b\x41\x3f\xd9\x98\x6d" "\xc7\x8c\x86\x10\x8b\x11\x71\xb8\xf5\x1e\xd0\x54\x7b\x3f\x40\x9e\xf4" "\x9e\x2d\xf5\x91\x29\x8f\x5d\xd9\x7a\x3e\xca\xde\xfa\x2e\xd8\xbc\x23" "\x71\x40\x1f\xaf\x30\xbc\x03\x97\xad\x78\x65\x26\xc1\xc1\x93\x13\x59" "\x28\x64\x39\x3d\x42\x24\x30\xaf\x08\xb1\xb7\xa9\x93\x96\xf8\x0b\x0a" "\x75\x2b\x3f\x46\x24\x70\x96\x1a\xce\x56\x8d\x48\xf8\x0a\x21\xf1\x21" "\xc8\xc2\xce\x0c\xd4\x2a\xe5\xef\x79\x3e\xec\x2f\x14\x05\xfe\x7e\x6f" "\xc7\x6f\xb0\xf1\xec\xbb\x32\x56\x92\x6b\x33\x0c\xd7\x4b\x0b\x17\x60" "\xbb\x7f\xe7\x47\xbc\xbe\xd6\x38\x05\xc1\xba\x17\xfc\xcc\x62\x12\x24" "\xa4\x79\xab\x2e\xc3\x13\xfa\xfe\xc1\x56\xcf\xcb\xca\xb1\xa3\x63\x5f" "\x28\x9f\x0d\xea\x18\x07\x68\xd8\x17\xc4\xa1\x20\xd5\x8c\xaf\x38\x92" "\x0a\x8c\x27\x06\xeb\xa7\x0d\x8e\x32\xfd\x11\xf4\xe9\xfa\x5d\xe0\xc6" "\xab\x0e\x08\x28\xc3\x04\x4c\xfe\xee\xeb\xea\x38\xcf\x84\xbc\x6c\xb3" "\x3d\x09\xeb\x7d\x2c\x98\x86\x54\x15\xf1\x66\x6e\xf3\xe7\x9c\xc9\xa2" "\xfd\x4b\xca\x3d\x6d\xf2\x6e\x8e\xd8\x26\xfb\x7f\x30\x42\xa3\x84\xb0" "\x8c\xd2\xad\x78\xd6\xbe\xc5\x1e\xfa\x7f\xfa\x1f\xa4\xc0\x04\x46\x04" "\xbd\xee\x80\x7f\x62\x5c\xf1\x11\x2a\x89\xf5\x0b\xaf\x84\x9b\x4f\x8c" "\xff\xb9\x24\x32\xd4\x76\xef\x2d\x74\x2f\xc4\xfe\xbe\xd3\xf1\x07\x7a" "\x2d\xe7\xa8\x4c\xf7\x15\x67\xd8\x65\x8b\xb2\x9c\x5c\x7c\x40\xe3\xc0" "\xae\x47\x26\xb2\xb0\x6d\x73\xa4\xa6\x7b\x2f\x47\x20\xea\x89\xa6\xa4" "\x30\x16\x3f\x61\xbf\x22\xdf\x14\x5b\xd9\xf5\xac\xaf\x9c\x89\xbc\x01" "\x11\xed\xa1\xfa\x6d\xe8\x1f\x49\x10\x8b\xb2\x7b\xf0\x4b\x30\xd5\xbd" "\x0f\x25\x5d\xbd\xf0\x8c\xaa\x75\x82\x68\xe0\x2b\x5b\x99\x4d\xc1\xac" "\x78\x60\xd4\xab\x5b\x29\x43\xfa\x7c\x22\x38\x67\x5a\x95\x43\x48\x20" "\x53\x28\x9d\x6f\xa3\x7c\xdb\xd3\xef\x5d\x3d\x27\x1e\xa7\x19\xbd\xe0" "\xbe\x7d\x02\x09\x89\xdb\x3d\xa5\xfa\xc1\x8f\xb2\x9d\x7d\xf9\x0b\x78" "\xa5\x49\x0f\xb6\xf1\x9a\xc9\x90\x05\xd2\xe4\xaa\xf0\x65\x78\x62\x23" "\xc8\xb4\xe1\xc9\xe0\x2e\x65\x4c\xed\x4c\xfa\x99\x2b\x6f\x15\xea\x14" "\x7b\xbb\xd2\xd9\x45\x18\x24\xc9\x6f\x9a\x85\x69\x0f\x98\x6b\x03\xb2" "\xc4\x0e\x93\x70\x3b\x16\xf3\xc3\xf8\x20\x3b\xc3\x09\xa8\xb7\xfb\x3d" "\x5c\xd8\x7f\x7a\x80\x33\x51\xde\x94\x00\x75\xe3\x3a\x3b\xab\x3c\xaa" "\xbf\xcf\x17\x55\x80\x93\xb2\x13\xeb\xc6\x95\x74\xc0\x45\x4d\x6e\x98" "\xf4\x7f\x4a\xd7\xb7\xee\x71\x49\x73\xdb\x40\xe1\xbe\x81\xa9\x13\x55" "\x96\x41\x4f\x66\x02\xab\x46\x20\x7f\xa0\xf4\x67\xda\x4b\xbd\x62\xb2" "\x3e\x64\xf2\x44\x2a\xab\xa4\xf0\x32\xa7\xd0\x28\x8f\x6e\xdc\x00\x7d" "\xd5\x3a\x5b\x1e\x3e\xa5\xd5\xd3\x58\x48\x7e\xf9\x5a\x2d\x22\x1e\x1c" "\x9c\x2d\x97\xda\xc6\x8d\x3e\x21\x54\x35\x72\x63\x74\x3b\x23\x99\x48" "\x12\x83\xa6\x96\x19\x3e\x3c\x9a\x89\x51\x29\xa6\x1a\x1d\x41\xc2\xfe" "\x4d\x6c\xfe\xd8\xfc\xbb\x6a\xa5\xa3\x5b\x25\x04\x9c\x9b\xb8\xfc\xf2" "\x68\x7b\xf7\x81\x24\xc0\x50\x04\xbb\x0f\x36\x92\x90\xbf\xce\x81\x8b" "\x44\x83\xd8\xa5\x21\x5a\x26\x6f\x69\xe8\x68\x48\x9c\x4a\xe7\x5f\xe1" "\x50\x55\x97\xd1\x60\x17\x23\x35\xb0\x1b\xb3\xb1\x7a\x5f\x4c\x05\xdf" "\xa3\x8b\x38\x88\xf5\xdd\xca\xde\x96\x04\x50\x53\x71\x60\x15\x69\x4e" "\xdf\xfa\x0b\x74\x35\x13\x3b\x3c\x98\xf8\x63\x5a\x54\xaa\x56\x5d\xa6" "\xd3\x52\xf3\xd8\x9a\xff\x2f\x20\x95\xd1\xad\xa9\x0d\x89\x44\x99\xc6" "\xc6\xbf\x0d\x54\xc7\x0a\xe1\xbd\x74\x9b\x84\x9b\xec\xa8\xb6\xa1\x14" "\x45\xc5\xb1\x97\x3e\x22\x54\x26\x6a\x43\x39\x07\xee\xc7\x62\xb1\x28" "\x52\xcc\x5e\x49\x53\x91\x87\x9c\x0d\x49\xa6\x5b\x20\xce\x4d\x75\x32" "\x9c\x40\x7e\x39\xc3\xa1\x27\x41\xce\x30\x48\xf4\x1f\xc8\x6c\x26\x40" "\xee\x1d\x95\x64\x58\x68\x19\x3a\x07\x1b\x69\x97\x65\x26\x16\xfa\xcf" "\xa5\xac\xf2\xcb\x6b\x26\x2a\xd5\x32\xd5\x2c\x81\xb4\x61\x1c\x54\xd7" "\x3b\x9b\x58\x56\x9e\x39\xc5\x79\x94\x5d\x8e\x82\xb6\x48\xae\xa2\x81" "\x79\x8d\x3f\xc2\x63\xbb\x98\xed\xa6\xf0\x84\xfe\x63\x2d\x60\x55\x6d" "\xbe\x01\xb1\x1b\xc5\xdd\x3c\xfb\x6e\x7a\x58\xa4\xd4\x02\xc6\x8e\xb9" "\x14\xb4\x45\x64\x63\xae\x58\xc7\x21\xe4\x3e\xe5\xb2\xe3\xc1\x6b\xac" "\x5f\xdb\x20\x9e\xfd\x53\x08\x70\xef\x45\xb6\xda\xc3\xa6\xfe\x30\x40" "\xae\x23\x98\x34\x7f\x16\x06\xd6\x0b\xf2\xa4\x69\x5a\x8a\xeb\xe1\xcd" "\xca\x70\x9f\xa7\x5c\x12\x92\x13\x81\xe0\xf0\x71\xc0\xa0\xbd\x0a\xf5" "\x6b\x4d\x00\xbb\xf1\xd5\x09\x25\x77\xe3\xc6\xfd\xcb\xd2\x34\xc1\xc4" "\x77\x22\xf4\x88\x96\x6e\x7b\x95\xd1\xdc\x41\x83\xae\x7d\x47\xc6\x00" "\x23\xae\x25\xe3\x35\xd8\x26\x4d\xc8\xaf\x8e\x8d\x68\x8a\x8b\x4d\x23" "\xa1\x03\x65\x08\x16\x57\xbd\x7f\x3b\x6d\xa6\xfd\x41\x35\xb8\x6d\x93" "\xae\x0f\x56\xb6\x69\x22\xcc\x45\x8b\xe2\xa6\x5d\xcf\xa3\xa9\x2b\x92" "\x56\xb7\x19\x4b\x96\x4d\x2a\xb2\x0b\x23\x34\xbb\xd7\xdb\xa1\x27\xbb" "\x4a\xc1\x09\xed\xd3\x49\x0b\x37\xd9\x3a\x33\xfb\xb8\x2e\x5b\xdd\x62" "\x56\xe1\xe0\x8d\x85\x94\x2c\x23\xe3\xbf\x17\xa7\xf4\x3e\xa6\x90\x7b" "\x03\xf6\x8b\x87\xcb\xe0\x09\x65\x10\xdd\x11\xd7\x40\x84\x79\x71\xd4" "\x6a\xee\xae\x44\x1c\x33\xad\x85\xbf\xe2\xcb\x26\x76\x36\x93\x86\x5a" "\x70\xea\xd6\xb2\x9e\xa4\x9d\x57\x6e\x4f\x04\xda\x95\xa4\x7c\xc7\x58" "\x19\x05\x21\x30\xbb\xba\x45\x17\x47\x2c\xdd\x0a\xe3\x38\xf4\x0a\xb9" "\x65\xb8\xa5\x77\x0c\x33\xd6\xe7\x36\xfd\xe5\xbc\xbb\xed\x3f\xe0\xa9" "\x52\x35\xaf\x79\xe6\x7b\x4d\x62\x9e\x12\x64\xd2\x76\xf1\x3e\xd8\xf6" "\xcd\xec\x45\xed\x69\xf1\x7a\x7b\x12\x2f\x8c\xec\x7c\xde\x30\x82\xfa" "\x0b\x06\x0b\x28\xf9\x86\xb9\xad\x31\xc3\xa3\xef\xbe\x2d\x9e\x95\x06" "\xb1\xd6\xf2\xa4\x16\x16\xda\xa5\xc1\x30\xdf\xb8\x65\x47\xc9\xb6\xe5" "\x84\xc8\x27\xb0\x97\xcc\x00\x0b\x54\xa0\x5d\xcd\xc8\x32\x55\xed\xe7" "\x5a\x4a\x1d\x8f\xcb\x9e\x21\xc2\x97\xaf\x0e\x70\xde\xbd\x22\x5c\xae" "\x3a\xc5\x39\x15\x23\xca\x08\x37\xdf\x87\x72\x85\xa1\xcc\x6d\x41\x62" "\x71\x78\xed\xec\xbb\xba\x76\x3e\xa6\xa1\x4b\xf4\x3c\xca\xaf\x1d\x61" "\xa5\x92\xf4\xb1\x44\xf9\xa8\x7f\x5d\x62\x80\xdb\x8e\x29\xcf\x79\xc2" "\xba\x79\xe1\x9f\xbe\x80\xf3\x18\xc0\x1d\xd3\xfa\xc1\x77\x3b\xb0\xa4" "\x6c\x37\x9e\x54\x29\x0a\x2f\x18\xcb\x99\x61\x2b\xed\xb9\xef\x3d\xcf" "\x9e\x58\x1d\xf5\xcb\x05\xe7\xf8\x2d\x73\x8f\x39\x29\x0d\xe2\xc3\xc4" "\x66\xf2\x8a\xbb\x8d\xc3\x8f\xce\x54\x0c\x57\xfd\xc3\xb7\xb4\xcd\x49" "\xfb\x97\x2b\xa5\xe3\xe6\x98\xbc\x1f\xdb\x76\x44\xc8\xb2\x39\xe1\x20" "\xc1\x32\x3f\x29\x4b\x25\x52\xab\x3e\x5d\x27\xac\xb0\x90\x2b\xc0\x75" "\xdf\x90\x8d\xd7\x4c\x38\xb5\x8b\x49\x52\x51\xbc\xf7\x56\x46\x95\x7f" "\xe3\x18\xaf\x44\xd6\x74\xfe\x04\xab\x4c\xb4\xe6\x4c\x03\x30\x00\x3b" "\xb2\x66\xd9\xeb\xde\xed\xf0\xdd\xa9\x73\x85\xfa\xaa\x7e\x8f\x4c\x47" "\xd8\x48\x02\x79\xa3\x51\x2b\x8d\xaf\xf7\x52\x5c\x03\x73\x72\x03\xf8" "\xb4\x09\x9d\x14\x89\x55\xfb\x8c\x89\x83\x9c\x8c\x18\x41\x67\x67\xb4" "\x39\x8d\x38\x16\xf6\x4e\xa7\xc4\xb2\x53\xd0\x9d\x7b\xec\xcb\x89\x6c" "\xfe\x61\x20\x29\x81\x70\x08\x7b\x4c\x83\x91\xdc\x3a\x4e\x5c\xca\xb9" "\xc1\xcd\xd9\xbb\xf6\x14\x3b\xc9\xd7\x9c\x91\x68\xf1\xee\xcd\x29\x32" "\x38\x7a\x9e\x65\xcf\x81\xb7\x42\x10\xda\x62\x10\x6c\x5f\xbf\x37\xb4" "\xcf\x21\x27\xc6\x8d\x86\x7d\x56\xfc\xa5\x29\x80\xfe\x3d\x4f\xb2\xaf" "\x9a\xe0\xc7\xaa\x4e\x4d\x0d\x5b\xa3\x4b\x6b\xf7\x9c\xc5\xdc\x44\xc7" "\xfc\x29\xb7\xda\xc2\xcf\x07\x70\x4e\x84\x06\xf4\xda\xfc\x0f\xa6\xa7" "\xf1\x6a\x9d\xa9\xd8\x71\x62\xb6\x9c\xd6\x9e\x22\x90\xe1\x26\x2e\x59" "\x11\x90\xa4\x95\xdf\xc1\x7e\x66\xa9\xf5\x33\x13\x48\x84\xc1\xa1\xa1" "\x93\x07\xce\x05\xdf\x16\xe1\x50\xea\x7b\xb8\xd8\x9a\xa9\x93\xc7\x67" "\xb4\xed\x55\x23\xe9\x62\xcc\x46\xe9\xe4\xed\xa2\xaf\xa7\x1b\xb2\x8c" "\x56\xe9\xf5\x9e\xb5\x5e\x0f\xf5\x0f\xc2\xc4\x26\x27\xe5\x04\x8a\xb2" "\xb2\x90\x9d\x6e\x26\xa1\x9a\x75\x3a\x3e\xd3\x0e\x56\x36\xda\xe2\x9f" "\xe0\x4f\xbd\x48\x3a\xe2\xc7\x85\x81\x25\x3a\xdd\x13\xb0\xa0\xbf\x07" "\x02\x1e\x60\x4a\xa5\x80\x5c\x0e\xc6\xa4\x01\x0b\xc2\xbc\x19\xea\x0f" "\x2c\x8b\xf0\xd4\x11\x6e\x11\xb7\x79\xc8\x64\x46\xdf\x4e\xf0\xe0\x4d" "\x2f\x87\xef\xd6\x28\x5b\x21\x1e\xb5\xf0\x2b\xc7\x6b\x67\x31\xb8\xf2" "\x5d\x79\xdc\x32\x58\x0e\x5c\x84\x59\x7d\x05\x8c\xe8\x41\x59\x85\xc3" "\x40\x7b\x7b\x0a\x7f\x99\x04\xfa\xf6\x76\x32\x98\x19\xc7\xe1\x71\x3f" "\x48\x12\x20\x60\x96\xaf\x3a\x1d\x89\xda\x91\x48\x95\x34\x86\x6f\xcf" "\x80\xcf\x2c\x7c\x67\xea\x53\x46\x89\x52\x92\x11\xdb\x49\x5a\xde\x7e" "\x4e\xbc\xa3\x5f\x5a\x5d\xbd\xec\x19\xc5\xa8\x19\x32\x62\xff\xf2\x67" "\x92\x04\x61\x96\x61\x34\x55\xa8\x3d\xbc\xc5\x69\x66\x53\xe9\xfb\x61" "\x62\x68\xa9\x43\x4a\x24\x65\x9f\x80\x4b\xf4\x00\xc7\x22\xd6\xd8\x72" "\x53\xba\x10\x02\xf8\x60\x9d\x0d\x90\x79\x6f\xf5\xcd\xc1\x66\x61\x60" "\x22\x86\x1f\x8e\x23\xb3\x11\xa3\xc8\x26\x2c\x5d\x44\xd2\x48\xe8\xf0" "\x71\xe4\x06\x21\xbc\x4a\x8e\xb9\xff\xd9\x22\xbc\x40\x07\xc4\x11\x7d" "\x91\x3d\xe2\x23\x11\x45\x97\x39\x03\xf2\x85\x89\x8c\x19\x6f\xc0\x18" "\x75\x42\x5f\xf1\x7a\x7e\x9f\x5e\x2c\xef\x0b\x1d\x0a\xee\x62\x80\xc5" "\x85\x78\x0c\xdd\x23\xb1\x26\x90\x38\xbb\x07\x5b\x9e\x46\xef\xca\x0b" "\x2c\x54\xc9\x9e\xa7\xcc\x2c\x0c\x9e\xf2\x64\x77\xeb\x52\x4a\xf1\x37" "\x47\xe1\x16\x3a\x26\x63\x2b\x09\x0d\xbf\x5e\xe3\x29\xf7\xfd\x34\xb6" "\xc2\x2e\x8b\x9b\x23\xdd\x41\x6d\x21\xe5\xf0\x67\x7a\xd1\x41\x1c\x96" "\xe0\x4e\x57\x85\xa5\xdd\x08\x07\x02\xe9\xc9\x4d\x65\x30\x44\xd3\x29" "\x14\x6b\x09\x2a\x01\xd1\xf6\x08\x6e\x69\x79\x2b\x4d\x22\x65\xf6\xfb" "\x95\x44\x9f\xa9\xe4\x32\x3c\x52\x5e\xf0\x42\x45\x82\x22\x6d\x9c\x66" "\x1d\x28\x94\xdf\xcf\x37\x88\xce\x32\x54\xdb\xff\x10\x3c\x69\x84\x60" "\xee\x56\x37\xf0\xe2\xeb\x39\xf8\x3a\x76\x90\x61\xdb\x00\x3b\xbb\xe8" "\x7c\xcd\xce\x39\x33\xf3\x9d\x47\x97\x0a\xe5\xf7\xa1\xe1\xf1\x4e\xcb" "\xe3\x19\xaa\xba\x1e\xad\x35\xd2\xfe\x3f\x83\xa9\xcf\xe9\x49\x9c\x66" "\xf9\xd1\x10\x0c\xa8\x22\xe1\x9c\x4a\xdf\x2b\x1f\x90\xae\x88\x10\xb0" "\xae\x30\xe2\xc3\xda\x8e\xab\xae\x68\xa5\x6a\xf4\x59\x6e\x89\x22\xaa" "\xc0\x79\x55\x54\xa5\xc3\x3f\x68\xb5\x0e\x7f\xc9\xae\xab\xa5\x6d\xe9" "\xef\xf4\xf4\x7e\xfa\xb0\x67\x28\x1a\x29\x20\xdf\x9b\x1d\xbe\x05\x9f" "\xd9\xf4\xa8\x08\xe7\xae\x91\xe7\xe2\xee\x91\xad\xb0\x11\xbc\x68\x5f" "\xdc\x67\xc9\xf6\x59\xdc\x89\xc0\x3a\xcb\x82\x6f\x0f\x8c\x9c\x12\xb3" "\x6e\xf9\x9a\xb2\x82\x95\x6f\xdc\xb3\xba\xa4\xf0\xcd\xd5\x48\xe8\xa6" "\x95\x57\xd7\x26\xfd\xeb\x89\x52\xee\x11\x4a\x10\x96\xba\x95\x6b\x5a" "\x58\x5d\xa3\xc5\xd9\xf7\xec\x98\xa4\xfc\xc8\x90\x47\xca\x8f\x89\x57" "\x79\xa7\xd3\xd9\xab\xe0\xba\x1c\xb7\xa3\xa8\xd1\x50\x83\x90\x8e\x79" "\xa9\x70\x7a\xcf\xcf\x03\xdd\xb8\xc4\x87\x53\x89\x58\xd8\x13\x39\x07" "\x69\xa6\xfb\x19\x72\x48\x78\x1c\xa0\x4e\xd0\x90\x75\x09\x12\x43\xc5" "\xc1\x3f\x46\x49\xcf\xfa\xff\xf3\x36\x63\x0d\xcd\x5d\x8a\x19\x9c\xdc" "\x6e\x4b\xdb\x91\x6d\xe8\x77\x22\x39\x94\xfc\x53\xa1\x56\x7b\x46\x3a" "\x81\x80\xc8\xc4\xaf\x66\x8b\xb6\x0e\x79\x7c\x25\x40\xb4\x01\x52\xe5" "\x7b\x1d\x37\x33\x95\xb0\xf5\xca\x06\x84\xaf\x52\x29\x9f\x15\xc6\x03" "\x50\x4c\x17\x99\x5e\x3a\x33\xbc\xe5\xa5\xbe\xaa\x6d\x4c\x51\xe7\x6b" "\x0d\x6c\x1c\xfc\x89\x82\xa8\xdd\x10\x67\x98\xd2\x86\x5e\xcf\x20\x84" "\xdf\x16\x22\x92\x10\x6b\x2d\xa6\xbb\x9f\x0a\xe1\x2b\x16\x55\xe9\xb8" "\x0e\x54\x93\x75\xca\xee\xb0\x2f\x4a\xf1\x02\x93\x32\x55\x2d\xc0\xfe" "\xff\x77\x01\x39\x81\x57\xa4\x5e\xa9\x48\x4f\xf2\xcf\x36\x31\x4b\x8b" "\x13\xee\x0b\x92\x1d\x86\x3a\xce\x93\x82\xb4\x73\xe0\xf3\x92\xbe\xcf" "\xfe\xfc\xb2\x99\x8c\xa5\x52\xb0\xe4\x78\xcb\x22\x81\x0b\xb7\x6b\xf9" "\xec\x2d\x90\xda\x18\x83\x74\x16\x6b\x5e\xd1\x62\x86\xd8\x19\x87\xe6" "\xd9\xf8\xbb\xcf\xb5\xe5\x14\xf6\x86\x06\x7c\x8e\x15\xbf\xd6\x6d\xac" "\x08\x9f\x38\x0c\x94\xb3\x3b\x59\x62\xa7\x6d\xb4\xfe\xa4\x4d\x2f\x36" "\x46\xd6\x7d\x19\xc1\x33\x7b\xc9\x0b\x0e\x78\x8b\xd1\x39\xef\x4e\x60" "\x6a\x94\xaf\x09\xd8\xd0\x2c\xa1\x14\x9e\x83\x87\x52\xa3\x94\xad\x67" "\xa3\x03\xac\x67\x2f\xc0\x62\x7a\xc4\x77\x80\xa4\xae\xab\xe1\x9e\x42" "\xba\x77\x52\xdd\x7a\x37\x36\xdd\x52\x7e\x67\x25\x68\x0d\x5f\xa5\x47" "\x0c\x77\x88\x36\x2e\x29\x91\xd8\xd9\x74\x6f\x77\xba\x85\x53\xab\x36" "\x17\xb8\x70\x95\x23\xd7\xf6\x77\xed\x74\x21\x16\x70\x52\x33\xf5\x95" "\x3b\xd9\x1b\x49\xee\x3a\x3a\x44\xf8\x4e\x29\x1e\x98\xc3\x84\x41\xca" "\x56\x47\x64\x56\x72\x19\xe4\x83\xdd\x4c\x23\x80\x4e\x54\x2c\x08\x53" "\x78\x7c\x5d\xba\x9c\xf6\x62\xce\x87\xad\xee\xd6\xc5\x45\xc1\x0f\x07" "\x65\x43\x27\x91\xb5\x4d\x97\x7f\x18\x94\x8d\x68\x8c\x03\x66\x39\x68" "\x20\xe0\x13\x4b\x18\xad\x77\x34\x0c\x31\x59\xff\xa0\xff\x18\xf5\x25" "\x1a\xbe\x9c\x73\x37\x87\x7b\x93\x3c\x1c\xa5\x5e\x34\x5a\x48\xe6\x64" "\x93\x3e\x65\x68\xa8\x0b\x6e\x01\x5b\x89\xe5\xb5\x11\x76\xff\x35\x65" "\xaa\x54\x55\xab\x04\x39\x62\x0f\x33\x29\x63\x71\x3c\x7a\x81\x21\x6f" "\x95\x6a\xe0\x9d\xbe\x46\x92\xc4\x08\x43\x6f\xdc\x6b\x7d\x89\xcd\xc7" "\x89\x92\x60\x72\xd8\x17\x22\x4b\xe5\xff\xba\x20\x22\xf7\x3e\xff\xb2" "\xcb\xb5\xb3\x31\xd3\x66\x24\x48\x9e\x53\xf7\x1f\x20\x28\x11\x15\x4b" "\x4b\xf3\xe6\x9e\x1a\x23\xe1\xc2\x5c\xa9\x0a\xde\xdf\xb0\x46\x5a\x87" "\x5e\x8f\x9c\x50\x64\xf8\x50\xa9\x44\x54\x00\xd7\x1d\x56\x7e\xba\x4a" "\x23\x74\x94\x0a\x81\x23\x09\x86\x60\xe3\x0c\xe0\xcf\xd8\x88\x2f\x75" "\x4b\xea\x30\x4c\xbe\x82\xb3\xe9\xb1\xed\xad\x77\xe1\x61\x81\x6c\x1d" "\x7e\x90\xd4\x11\xe4\xf4\x68\x6b\x81\xff\xb7\xe7\xd7\xaf\x98\x7d\xc4" "\x90\x3b\xcc\x51\xad\xfb\x07\x97\xce\x11\xeb\x05\x8d\xe3\x9e\x15\xaf" "\xb2\xce\x69\x9e\xea\x6f\x6c\x85\xda\x59\x92\x5d\x01\xce\x1d\xf1\xb8" "\xb9\x04\x33\x6c\x33\x18\x1b\xa3\x83\x88\x00\xd3\x51\xe3\x7c\xf4\xa4" "\xb8\x5b\x0d\x2e\x16\x64\xa0\xc1\x1e\x2e\x5a\x91\xb8\xd9\x1a\x00\x98" "\xa3\x54\x9d\xf8\xf0\xd6\x57\xe4\x81\x5e\x19\xc4\x0d\x0c\x1b\x14\x7e" "\xa7\xc3\x9c\xad\xdb\xcf\x5a\x02\xf2\x0c\x3c\x2a\x3e\x4a\x7c\xdb\xf7" "\xcf\xc0\xe4\x20\x07\xb2\xed\x9a\x18\xb1\x73\x9e\xc3\x66\x09\x74\xff" "\x54\x5a\x84\xa0\x9c\x06\xcc\x94\x64\x60\xea\x61\x71\xb3\x7c\xba\xa3" "\xc7\x39\xc8\x89\xe6\x0d\x38\x61\xfa\x3a\x8e\xfa\xef\x59\x88\x1b\xea" "\x4e\xc3\x60\xf3\xf5\x8c\x8b\x03\x3f\x77\xbd\x8a\x1f\x1f\xaa\xd8\x8b" "\x57\x1e\x65\x98\xa9\x9f\x89\xa6\x53\x55\xbf\xf1\x0b\x4d\xb8\xec\x2e" "\xce\xbf\x0a\x52\xfc\xeb\x85\x67\x9b\x75\x31\xf1\xb7\xd8\x6b\x16\x0f" "\x6d\x72\x86\x23\x57\xe0\x86\x66\x69\x1a\xc1\xad\xe0\xbc\x8e\x8b\x4f" "\xfd\x5e\xce\xf7\xb2\xee\xd7\x07\x2b\xad\x12\x42\x26\xa6\x56\xa2\xf0" "\xa8\xc6\xb4\x3b\x5b\x36\x0d\x84\x23\xa0\x3b\x0d\xe1\x75\x11\x8a\x45" "\xed\xab\x31\xe8\xb0\x67\x7b\xbb\x0f\x15\xad\x1f\x8a\xdb\x5c\x00\xad" "\x84\xf2\xb5\x91\xc9\x2d\x9f\xb6\x42\xb0\xb0\x2d\xbf\x04\x36\x7c\x90" "\xe7\xe9\xab\xbc\x1c\x52\x95\xd5\x93\x39\xfe\xda\x6a\x79\x56\x53\x1f" "\xe2\x4b\xdd\x0d\xe0\xa3\x90\xd5\x28\xd6\x33\x36\xea\x09\x53\x12\x18" "\x7c\xae\xd2\xfa\xa2\x38\x7a\x10\x13\x52\x23\xf0\xcd\x92\xf4\x64\xee" "\xd2\xdd\x99\x96\x47\x1a\xf5\xf0\xa8\x05\xa0\xe3\x1b\x55\x71\x71\x87" "\x97\x8b\x46\x7a\xf9\xfe\x50\xa8\x57\x1e\x15\x90\xa2\xba\xa7\x36\x77" "\xed\x31\x8f\x6b\xce\xf5\x88\xb2\xe0\xd9\xc0\x7b\x03\x07\x8d\x9b\x29" "\x4d\xec\xda\x9c\x34\x2a\x6e\x59\x98\xcb\x9a\x53\x82\x51\xc6\xc8\xd3" "\x51\x3e\x6e\xd5\xbb\x40\x0d\xd9\x61\x13\x2f\xb3\x14\xae\xf6\xfc\x53" "\x72\xc9\x57\x9d\x0f\x9a\xea\xbf\x5e\x88\x5e\x21\x1e\x5d\x84\x13\x80" "\x97\xc5\x1f\xc1\x21\x8e\x54\x9a\x1c\x53\x8b\x25\x9b\x60\xa3\x64\xf1" "\x67\x30\xcf\x3d\x7c\x60\x5d\xc1\xe1\x1d\x97\xa0\x86\x21\xb8\x09\xd4" "\x56\xff\x36\x8f\x66\xc6\xbc\xf2\xe3\xf2\xe7\x89\x36\x72\x1c\x00\x63" "\x67\x20\xaa\xb3\xf6\x6c\x0f\xfa\xff\x69\xad\xc4\x0e\xdc\x5a\x87\x76" "\x57\xcd\x0f\x52\x8e\x52\x56\x2e\xac\x34\xb6\x86\x58\xd5\x5c\xaf\xa4" "\x68\xcf\x6e\x8d\x92\xba\x46\x5b\x6b\x55\x70\x34\x7d\x1a\x77\xad\x64" "\xa5\xd4\x9c\xf9\xe5\xc9\x05\xbd\x0c\xc1\x6a\xfb\x50\x34\x99\x41\xfd" "\xb3\xf1\x70\x0c\x9f\x29\x32\x64\xae\x1c\x68\x73\x25\x55\xa9\xa3\x12" "\xa1\x95\x34\x8e\xfa\x8d\x1a\x71\x37\xa9\x42\x51\xb5\x7a\xdd\x65\xf6" "\x0c\xe5\x1a\x53\xfa\x5a\x1f\x52\xc0\xac\xcf\xe8\x80\x09\x5e\x45\x12" "\xea\xda\x74\x67\xa8\x32\x1f\x82\xd3\x47\x1b\x50\x96\xea\xbe\x0f\x5c" "\xf7\x04\x11\x20\xd3\x8b\x5c\x52\x76\x74\x0f\xcd\x49\xa6\xee\x13\x6a" "\x8f\x09\xd4\x13\xf4\xce\xc9\xda\x95\x5c\xcd\x65\x33\x5e\x15\xbb\xb2" "\x8e\xed\xae\xf9\xcb\x8f\xbc\x27\x32\xb3\xcb\x33\xf6\xd7\xef\xbf\xb8" "\xaa\xa9\x22\xef\x34\xd4\x05\x1a\xe6\x7c\x28\xae\x5a\xd8\x4a\xa3\xd8" "\x22\xcc\xcc\x49\xa9\x4c\xc4\x29\x09\xda\x63\x56\xf0\xdf\x41\xa4\x1a" "\x33\x85\x60\x37\x72\x94\x2c\x18", 4088)); syscall(__NR_ioctl, /*fd=*/r[2], /*cmd=*/0x50009401, /*arg=*/0x200000000300ul); break; case 18: // syz_open_dev$vim2m arguments: [ // dev: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 76 69 64 65 6f 23 00} (length 0xc) // } // id: intptr = 0x6 (8 bytes) // flags: const = 0x2 (8 bytes) // ] // returns fd_vim2m NONFAILING(memcpy((void*)0x2000000000c0, "/dev/video#\000", 12)); res = -1; NONFAILING(res = syz_open_dev(/*dev=*/0x2000000000c0, /*id=*/6, /*flags=*/2)); if (res != -1) r[3] = res; break; case 19: // ioctl$vim2m_VIDIOC_ENUM_FMT arguments: [ // fd: fd_vim2m (resource) // cmd: const = 0xc0405602 (4 bytes) // arg: nil // ] syscall(__NR_ioctl, /*fd=*/r[3], /*cmd=*/0xc0405602, /*arg=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); setup_cgroups(); const char* reason; (void)reason; if ((reason = setup_binfmt_misc())) printf("the reproducer may not work as expected: binfmt_misc setup failed: " "%s\n", reason); if ((reason = setup_usb())) printf("the reproducer may not work as expected: USB injection setup " "failed: %s\n", reason); if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); if ((reason = setup_swap())) printf("the reproducer may not work as expected: swap setup failed: %s\n", reason); install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }