// https://syzkaller.appspot.com/bug?id=fdeef9cf7348be8b8ab5b847f2ed993aba8ea7b6 // 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 unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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[1024]; }; static struct nlmsg nlmsg; 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; memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; unsigned n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != hdr->nlmsg_len) exit(1); n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (hdr->nlmsg_type == NLMSG_DONE) { *reply_len = 0; return 0; } if (n < sizeof(struct nlmsghdr)) exit(1); if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr)) exit(1); if (hdr->nlmsg_type != NLMSG_ERROR) exit(1); return -((struct nlmsgerr*)(hdr + 1))->error; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL); } static int netlink_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_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); (void)err; } const int kInitNetNsFd = 239; #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_CMD_RELOAD 37 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 #define DEVLINK_ATTR_NETNS_FD 138 static int netlink_devlink_id_get(struct nlmsg* nlmsg, int sock) { struct genlmsghdr genlhdr; struct nlattr* attr; int err, n; uint16_t id = 0; 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, DEVLINK_FAMILY_NAME, strlen(DEVLINK_FAMILY_NAME) + 1); err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n); if (err) { return -1; } attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); /* recv ack */ return id; } static void netlink_devlink_netns_move(const char* bus_name, const char* dev_name, int netns_fd) { struct genlmsghdr genlhdr; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); id = netlink_devlink_id_get(&nlmsg, sock); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_RELOAD; netlink_init(&nlmsg, id, 0, &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); netlink_attr(&nlmsg, DEVLINK_ATTR_NETNS_FD, &netns_fd, sizeof(netns_fd)); err = netlink_send(&nlmsg, sock); if (err) { } error: close(sock); } 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_devlink_id_get(&nlmsg, sock); 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); if (err) { 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); } static void initialize_devlink_pci(void) { int netns = open("/proc/self/ns/net", O_RDONLY); if (netns == -1) exit(1); int ret = setns(kInitNetNsFd, 0); if (ret == -1) exit(1); netlink_devlink_netns_move("pci", "0000:00:10.0", netns); ret = setns(netns, 0); if (ret == -1) exit(1); close(netns); initialize_devlink_ports("pci", "0000:00:10.0", "netpci"); } #define MAX_FDS 30 #define USB_MAX_IFACE_NUM 4 #define USB_MAX_EP_NUM 32 struct usb_iface_index { struct usb_interface_descriptor* iface; uint8_t bInterfaceNumber; uint8_t bAlternateSetting; uint8_t bInterfaceClass; struct usb_endpoint_descriptor eps[USB_MAX_EP_NUM]; int eps_num; }; struct usb_device_index { struct usb_device_descriptor* dev; struct usb_config_descriptor* config; uint8_t bDeviceClass; uint8_t bMaxPower; int config_length; struct usb_iface_index ifaces[USB_MAX_IFACE_NUM]; int ifaces_num; int iface_cur; }; static bool parse_usb_descriptor(char* buffer, size_t length, struct usb_device_index* index) { if (length < sizeof(*index->dev) + sizeof(*index->config)) return false; memset(index, 0, sizeof(*index)); index->dev = (struct usb_device_descriptor*)buffer; index->config = (struct usb_config_descriptor*)(buffer + sizeof(*index->dev)); index->bDeviceClass = index->dev->bDeviceClass; index->bMaxPower = index->config->bMaxPower; index->config_length = length - sizeof(*index->dev); index->iface_cur = -1; size_t offset = 0; while (true) { if (offset + 1 >= length) break; uint8_t desc_length = buffer[offset]; uint8_t desc_type = buffer[offset + 1]; if (desc_length <= 2) break; if (offset + desc_length > length) break; if (desc_type == USB_DT_INTERFACE && index->ifaces_num < USB_MAX_IFACE_NUM) { struct usb_interface_descriptor* iface = (struct usb_interface_descriptor*)(buffer + offset); index->ifaces[index->ifaces_num].iface = iface; index->ifaces[index->ifaces_num].bInterfaceNumber = iface->bInterfaceNumber; index->ifaces[index->ifaces_num].bAlternateSetting = iface->bAlternateSetting; index->ifaces[index->ifaces_num].bInterfaceClass = iface->bInterfaceClass; index->ifaces_num++; } if (desc_type == USB_DT_ENDPOINT && index->ifaces_num > 0) { struct usb_iface_index* iface = &index->ifaces[index->ifaces_num - 1]; if (iface->eps_num < USB_MAX_EP_NUM) { memcpy(&iface->eps[iface->eps_num], buffer + offset, sizeof(iface->eps[iface->eps_num])); iface->eps_num++; } } offset += desc_length; } return true; } #define UDC_NAME_LENGTH_MAX 128 struct usb_raw_init { __u8 driver_name[UDC_NAME_LENGTH_MAX]; __u8 device_name[UDC_NAME_LENGTH_MAX]; __u8 speed; }; enum usb_raw_event_type { USB_RAW_EVENT_INVALID, USB_RAW_EVENT_CONNECT, USB_RAW_EVENT_CONTROL, }; struct usb_raw_event { __u32 type; __u32 length; __u8 data[0]; }; struct usb_raw_ep_io { __u16 ep; __u16 flags; __u32 length; __u8 data[0]; }; #define USB_RAW_IOCTL_INIT _IOW('U', 0, struct usb_raw_init) #define USB_RAW_IOCTL_RUN _IO('U', 1) #define USB_RAW_IOCTL_EVENT_FETCH _IOR('U', 2, struct usb_raw_event) #define USB_RAW_IOCTL_EP0_WRITE _IOW('U', 3, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP0_READ _IOWR('U', 4, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_ENABLE _IOW('U', 5, struct usb_endpoint_descriptor) #define USB_RAW_IOCTL_EP_DISABLE _IOW('U', 6, __u32) #define USB_RAW_IOCTL_EP_WRITE _IOW('U', 7, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_READ _IOWR('U', 8, struct usb_raw_ep_io) #define USB_RAW_IOCTL_CONFIGURE _IO('U', 9) #define USB_RAW_IOCTL_VBUS_DRAW _IOW('U', 10, __u32) static int usb_raw_open() { return open("/dev/raw-gadget", O_RDWR); } static int usb_raw_init(int fd, uint32_t speed, const char* driver, const char* device) { struct usb_raw_init arg; strncpy((char*)&arg.driver_name[0], driver, sizeof(arg.driver_name)); strncpy((char*)&arg.device_name[0], device, sizeof(arg.device_name)); arg.speed = speed; return ioctl(fd, USB_RAW_IOCTL_INIT, &arg); } static int usb_raw_run(int fd) { return ioctl(fd, USB_RAW_IOCTL_RUN, 0); } static int usb_raw_event_fetch(int fd, struct usb_raw_event* event) { return ioctl(fd, USB_RAW_IOCTL_EVENT_FETCH, event); } static int usb_raw_ep0_write(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_WRITE, io); } static int usb_raw_ep0_read(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_READ, io); } static int usb_raw_ep_enable(int fd, struct usb_endpoint_descriptor* desc) { return ioctl(fd, USB_RAW_IOCTL_EP_ENABLE, desc); } static int usb_raw_ep_disable(int fd, int ep) { return ioctl(fd, USB_RAW_IOCTL_EP_DISABLE, ep); } static int usb_raw_configure(int fd) { return ioctl(fd, USB_RAW_IOCTL_CONFIGURE, 0); } static int usb_raw_vbus_draw(int fd, uint32_t power) { return ioctl(fd, USB_RAW_IOCTL_VBUS_DRAW, power); } #define MAX_USB_FDS 6 struct usb_info { int fd; struct usb_device_index index; }; static struct usb_info usb_devices[MAX_USB_FDS]; static int usb_devices_num; static struct usb_device_index* add_usb_index(int fd, char* dev, size_t dev_len) { int i = __atomic_fetch_add(&usb_devices_num, 1, __ATOMIC_RELAXED); if (i >= MAX_USB_FDS) return NULL; int rv = 0; rv = parse_usb_descriptor(dev, dev_len, &usb_devices[i].index); if (!rv) return NULL; __atomic_store_n(&usb_devices[i].fd, fd, __ATOMIC_RELEASE); return &usb_devices[i].index; } static struct usb_device_index* lookup_usb_index(int fd) { int i; for (i = 0; i < MAX_USB_FDS; i++) { if (__atomic_load_n(&usb_devices[i].fd, __ATOMIC_ACQUIRE) == fd) { return &usb_devices[i].index; } } return NULL; } static void set_interface(int fd, int n) { struct usb_device_index* index = lookup_usb_index(fd); int ep; if (!index) return; if (index->iface_cur >= 0 && index->iface_cur < index->ifaces_num) { for (ep = 0; ep < index->ifaces[index->iface_cur].eps_num; ep++) { int rv = usb_raw_ep_disable(fd, ep); if (rv < 0) { } else { } } } if (n >= 0 && n < index->ifaces_num) { for (ep = 0; ep < index->ifaces[n].eps_num; ep++) { int rv = usb_raw_ep_enable(fd, &index->ifaces[n].eps[ep]); if (rv < 0) { } else { } } index->iface_cur = n; } } static int configure_device(int fd) { struct usb_device_index* index = lookup_usb_index(fd); if (!index) return -1; int rv = usb_raw_vbus_draw(fd, index->bMaxPower); if (rv < 0) { return rv; } rv = usb_raw_configure(fd); if (rv < 0) { return rv; } set_interface(fd, 0); return 0; } #define USB_MAX_PACKET_SIZE 1024 struct usb_raw_control_event { struct usb_raw_event inner; struct usb_ctrlrequest ctrl; char data[USB_MAX_PACKET_SIZE]; }; struct usb_raw_ep_io_data { struct usb_raw_ep_io inner; char data[USB_MAX_PACKET_SIZE]; }; struct vusb_connect_string_descriptor { uint32_t len; char* str; } __attribute__((packed)); struct vusb_connect_descriptors { uint32_t qual_len; char* qual; uint32_t bos_len; char* bos; uint32_t strs_len; struct vusb_connect_string_descriptor strs[0]; } __attribute__((packed)); static const char default_string[] = {8, USB_DT_STRING, 's', 0, 'y', 0, 'z', 0}; static const char default_lang_id[] = {4, USB_DT_STRING, 0x09, 0x04}; static bool lookup_connect_response(int fd, struct vusb_connect_descriptors* descs, struct usb_ctrlrequest* ctrl, char** response_data, uint32_t* response_length) { struct usb_device_index* index = lookup_usb_index(fd); uint8_t str_idx; if (!index) return false; switch (ctrl->bRequestType & USB_TYPE_MASK) { case USB_TYPE_STANDARD: switch (ctrl->bRequest) { case USB_REQ_GET_DESCRIPTOR: switch (ctrl->wValue >> 8) { case USB_DT_DEVICE: *response_data = (char*)index->dev; *response_length = sizeof(*index->dev); return true; case USB_DT_CONFIG: *response_data = (char*)index->config; *response_length = index->config_length; return true; case USB_DT_STRING: str_idx = (uint8_t)ctrl->wValue; if (descs && str_idx < descs->strs_len) { *response_data = descs->strs[str_idx].str; *response_length = descs->strs[str_idx].len; return true; } if (str_idx == 0) { *response_data = (char*)&default_lang_id[0]; *response_length = default_lang_id[0]; return true; } *response_data = (char*)&default_string[0]; *response_length = default_string[0]; return true; case USB_DT_BOS: *response_data = descs->bos; *response_length = descs->bos_len; return true; case USB_DT_DEVICE_QUALIFIER: if (!descs->qual) { struct usb_qualifier_descriptor* qual = (struct usb_qualifier_descriptor*)response_data; qual->bLength = sizeof(*qual); qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER; qual->bcdUSB = index->dev->bcdUSB; qual->bDeviceClass = index->dev->bDeviceClass; qual->bDeviceSubClass = index->dev->bDeviceSubClass; qual->bDeviceProtocol = index->dev->bDeviceProtocol; qual->bMaxPacketSize0 = index->dev->bMaxPacketSize0; qual->bNumConfigurations = index->dev->bNumConfigurations; qual->bRESERVED = 0; *response_length = sizeof(*qual); return true; } *response_data = descs->qual; *response_length = descs->qual_len; return true; default: exit(1); return false; } break; default: exit(1); return false; } break; default: exit(1); return false; } return false; } static volatile long syz_usb_connect(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { uint64_t speed = a0; uint64_t dev_len = a1; char* dev = (char*)a2; struct vusb_connect_descriptors* descs = (struct vusb_connect_descriptors*)a3; if (!dev) { return -1; } int fd = usb_raw_open(); if (fd < 0) { return fd; } if (fd >= MAX_FDS) { close(fd); return -1; } struct usb_device_index* index = add_usb_index(fd, dev, dev_len); if (!index) { return -1; } char device[32]; sprintf(&device[0], "dummy_udc.%llu", procid); int rv = usb_raw_init(fd, speed, "dummy_udc", &device[0]); if (rv < 0) { return rv; } rv = usb_raw_run(fd); if (rv < 0) { return rv; } bool done = false; while (!done) { struct usb_raw_control_event event; event.inner.type = 0; event.inner.length = sizeof(event.ctrl); rv = usb_raw_event_fetch(fd, (struct usb_raw_event*)&event); if (rv < 0) { return rv; } if (event.inner.type != USB_RAW_EVENT_CONTROL) continue; bool response_found = false; char* response_data = NULL; uint32_t response_length = 0; if (event.ctrl.bRequestType & USB_DIR_IN) { response_found = lookup_connect_response( fd, descs, &event.ctrl, &response_data, &response_length); if (!response_found) { return -1; } } else { if ((event.ctrl.bRequestType & USB_TYPE_MASK) != USB_TYPE_STANDARD || event.ctrl.bRequest != USB_REQ_SET_CONFIGURATION) { exit(1); return -1; } done = true; } if (done) { rv = configure_device(fd); if (rv < 0) { return rv; } } struct usb_raw_ep_io_data response; response.inner.ep = 0; response.inner.flags = 0; if (response_length > sizeof(response.data)) response_length = 0; if (event.ctrl.wLength < response_length) response_length = event.ctrl.wLength; response.inner.length = response_length; if (response_data) memcpy(&response.data[0], response_data, response_length); else memset(&response.data[0], 0, response_length); if (event.ctrl.bRequestType & USB_DIR_IN) { rv = usb_raw_ep0_write(fd, (struct usb_raw_ep_io*)&response); } else { rv = usb_raw_ep0_read(fd, (struct usb_raw_ep_io*)&response); } if (rv < 0) { return rv; } } sleep_ms(200); return fd; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); int i; for (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_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter; for (iter = 0;; iter++) { int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5 * 1000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { *(uint8_t*)0x200001c0 = 0x12; *(uint8_t*)0x200001c1 = 1; *(uint16_t*)0x200001c2 = 0; *(uint8_t*)0x200001c4 = 0x95; *(uint8_t*)0x200001c5 = 0xe; *(uint8_t*)0x200001c6 = 0x3d; *(uint8_t*)0x200001c7 = 0x40; *(uint16_t*)0x200001c8 = 0x1286; *(uint16_t*)0x200001ca = 0x204a; *(uint16_t*)0x200001cc = 0x795b; *(uint8_t*)0x200001ce = 0; *(uint8_t*)0x200001cf = 0; *(uint8_t*)0x200001d0 = 0; *(uint8_t*)0x200001d1 = 1; *(uint8_t*)0x200001d2 = 9; *(uint8_t*)0x200001d3 = 2; *(uint16_t*)0x200001d4 = 0x65; *(uint8_t*)0x200001d6 = 1; *(uint8_t*)0x200001d7 = 0; *(uint8_t*)0x200001d8 = 1; *(uint8_t*)0x200001d9 = 0; *(uint8_t*)0x200001da = 1; *(uint8_t*)0x200001db = 9; *(uint8_t*)0x200001dc = 4; *(uint8_t*)0x200001dd = 0x5f; *(uint8_t*)0x200001de = 0; *(uint8_t*)0x200001df = 0; *(uint8_t*)0x200001e0 = -1; *(uint8_t*)0x200001e1 = -1; *(uint8_t*)0x200001e2 = -1; *(uint8_t*)0x200001e3 = 0; *(uint8_t*)0x200001e4 = 0; *(uint8_t*)0x200001e5 = 0x24; memcpy((void*)0x200001e6, "\x70\x2b\xb6\xe9\x77\xb0\x0d\x93\x28\x00\xc3\xcc" "\xdb\xe1\x57\x35\x70\x93\x59\xa4\xb2\x04\x75\xc6" "\x42\x95\xd1\x3b\x7a\xe8\x5e\x5f\x11\x3c\x60\x36" "\xf2\xde\x1b\xc9\x6e\x6e\xbd", 43); *(uint8_t*)0x20000211 = 0xa; *(uint8_t*)0x20000212 = 0x24; *(uint8_t*)0x20000213 = 1; *(uint16_t*)0x20000214 = 6; *(uint8_t*)0x20000216 = 0xc; *(uint8_t*)0x20000217 = 2; *(uint8_t*)0x20000218 = 1; *(uint8_t*)0x20000219 = 2; *(uint8_t*)0x2000021a = 5; *(uint8_t*)0x2000021b = 0x24; *(uint8_t*)0x2000021c = 4; *(uint8_t*)0x2000021d = 4; *(uint8_t*)0x2000021e = 8; *(uint8_t*)0x2000021f = 9; *(uint8_t*)0x20000220 = 0x24; *(uint8_t*)0x20000221 = 3; *(uint8_t*)0x20000222 = 6; *(uint16_t*)0x20000223 = 0x305; *(uint8_t*)0x20000225 = 4; *(uint8_t*)0x20000226 = 1; *(uint8_t*)0x20000227 = 0x19; *(uint8_t*)0x20000228 = 9; *(uint8_t*)0x20000229 = 0x24; *(uint8_t*)0x2000022a = 3; *(uint8_t*)0x2000022b = 1; *(uint16_t*)0x2000022c = 0x306; *(uint8_t*)0x2000022e = 1; *(uint8_t*)0x2000022f = 3; *(uint8_t*)0x20000230 = 9; *(uint8_t*)0x20000231 = 9; *(uint8_t*)0x20000232 = 0x24; *(uint8_t*)0x20000233 = 3; *(uint8_t*)0x20000234 = 4; *(uint16_t*)0x20000235 = 0x307; *(uint8_t*)0x20000237 = 3; *(uint8_t*)0x20000238 = 5; *(uint8_t*)0x20000239 = 3; *(uint8_t*)0x2000023a = 0x3f; *(uint8_t*)0x2000023b = 0x24; *(uint8_t*)0x2000023c = 7; *(uint8_t*)0x2000023d = 3; *(uint16_t*)0x2000023e = 5; *(uint8_t*)0x20000240 = 0x20; memcpy((void*)0x20000241, "\xc8\x7c\x86\x4e\xda", 5); *(uint8_t*)0x20000246 = 5; *(uint8_t*)0x20000247 = 0x24; *(uint8_t*)0x20000248 = 4; *(uint8_t*)0x20000249 = 3; *(uint8_t*)0x2000024a = 3; *(uint8_t*)0x2000024b = 9; *(uint8_t*)0x2000024c = 5; *(uint8_t*)0x2000024d = 0xc; *(uint8_t*)0x2000024e = 0; *(uint16_t*)0x2000024f = 0x540; *(uint8_t*)0x20000251 = 0x20; *(uint8_t*)0x20000252 = 0; *(uint8_t*)0x20000253 = 3; *(uint8_t*)0x20000254 = 0; *(uint8_t*)0x20000255 = 0x25; *(uint8_t*)0x20000256 = 1; *(uint8_t*)0x20000257 = 2; *(uint8_t*)0x20000258 = 0x7f; *(uint16_t*)0x20000259 = 0x3ff; *(uint8_t*)0x2000025b = 0; *(uint8_t*)0x2000025c = 0x25; *(uint8_t*)0x2000025d = 1; *(uint8_t*)0x2000025e = 0x80; *(uint8_t*)0x2000025f = 0xc; *(uint16_t*)0x20000260 = 9; *(uint8_t*)0x20000262 = 9; *(uint8_t*)0x20000263 = 5; *(uint8_t*)0x20000264 = 0xd; *(uint8_t*)0x20000265 = 4; *(uint16_t*)0x20000266 = 0; *(uint8_t*)0x20000268 = 0x20; *(uint8_t*)0x20000269 = 0x44; *(uint8_t*)0x2000026a = 0; *(uint8_t*)0x2000026b = 9; *(uint8_t*)0x2000026c = 5; *(uint8_t*)0x2000026d = 4; *(uint8_t*)0x2000026e = 0x10; *(uint16_t*)0x2000026f = 0; *(uint8_t*)0x20000271 = 0x1f; *(uint8_t*)0x20000272 = 2; *(uint8_t*)0x20000273 = 3; *(uint8_t*)0x20000274 = 9; *(uint8_t*)0x20000275 = 5; *(uint8_t*)0x20000276 = 0; *(uint8_t*)0x20000277 = 0; *(uint16_t*)0x20000278 = 0x400; *(uint8_t*)0x2000027a = 7; *(uint8_t*)0x2000027b = 0x81; *(uint8_t*)0x2000027c = 7; *(uint8_t*)0x2000027d = 9; *(uint8_t*)0x2000027e = 5; *(uint8_t*)0x2000027f = 0xb; *(uint8_t*)0x20000280 = 8; *(uint16_t*)0x20000281 = 0x200; *(uint8_t*)0x20000283 = 4; *(uint8_t*)0x20000284 = 4; *(uint8_t*)0x20000285 = 1; *(uint8_t*)0x20000286 = 9; *(uint8_t*)0x20000287 = 5; *(uint8_t*)0x20000288 = 6; *(uint8_t*)0x20000289 = 0xd; *(uint16_t*)0x2000028a = 0xa4c6; *(uint8_t*)0x2000028c = 0; *(uint8_t*)0x2000028d = 0x8c; *(uint8_t*)0x2000028e = 0; *(uint8_t*)0x2000028f = 0; *(uint8_t*)0x20000290 = 0x25; *(uint8_t*)0x20000291 = 1; *(uint8_t*)0x20000292 = 0x82; *(uint8_t*)0x20000293 = 1; *(uint16_t*)0x20000294 = 0x800; *(uint8_t*)0x20000296 = 9; *(uint8_t*)0x20000297 = 5; *(uint8_t*)0x20000298 = 0x18; *(uint8_t*)0x20000299 = 0; *(uint16_t*)0x2000029a = 8; *(uint8_t*)0x2000029c = 5; *(uint8_t*)0x2000029d = 7; *(uint8_t*)0x2000029e = 2; *(uint8_t*)0x2000029f = 0; *(uint8_t*)0x200002a0 = 0x44; memcpy( (void*)0x200002a1, "\x28\x8f\xe6\xa3\x2c\x6a\x8b\xba\x35\xa9\x44\xe3\x56\x36\x68\xc8\xd0\xce" "\x75\xfb\x14\x8b\xf5\x80\xc9\xcd\x7a\x5b\x36\x31\xf2\x69\x51\xc6\x1e\xdd" "\x38\x76\x65\xb8\xfb\x80\xdb\x2d\x04\x16\x34\xcf\x0f\x77\xb6\x30\x2a\xf2" "\xb7\x06\xbf\x8d\x36\x79\x01\x43\x15\xec\x69\xbe\x77\xb3\xc9\x42\x4f\xba" "\x3e\xcc\x2f\x28\xb1\xa8\xd7\x5f\x77\x80\x65\x7e\x44\x72\x80\xa6\x65\x63" "\xd1\x87\xa3\xf0\x33\x3d\x6b\xb5\xc1\x93\x08\x6a\xfe\x79\x04\xe2\xc9\xfb" "\x07\xe8\xd0\x2e\xad\x91\x61\xaf\x86\x5f\x84\xb3\xab\x57\x81\xe3\xc9\x99" "\xc6\x37\xc9\x71\x36\xef\x7d\x06\xe4\x77\xd0\x71\x47\x82\x6b\xb7\x77\x94" "\xdb\x07\x33\xc7\x42\xb5\xeb\x18\x41\xa6\x97\xa8\x76\x82\xea\xb3\x1d\xd9" "\xdf\x95\x5a\x6e\xc6\x21\xdb\x00\x39\xee\x22\x8e\x2a\x87\x9c\x0a\x66\xd3" "\x98\x8c\x4d\xb8\x54\x77\xf2\x89\x7f\xb7\xc9\x2b\x36\x88\x96\x24\x28\x35" "\x62\x6f\x71\x12\x5f\x93\xbd\x5f\xdb\x62\xed\x0b\xaf\xb6\x43\xe1\xe8\xd0" "\x9a\xa5\x85\x98\xa0\x79\x17\xf2\xb5\x28\x83\x2b\xf4\x2f\x96\xe4\x7a\xef" "\x85\x2d\xbd\x63\x4f\x89\xf0\x11\x0b\x8a\xcd\xac\x51\x4c\x55\x53\x02\xe5" "\xba\xbc\x0b\xc6\xc5\x49\xdd\x2e\x73\xc9\x1c\xc9\x20\x84\x2f\x9b\xa5\xc8" "\x26\xf4\xb6\xbc\xb7\xe6\x66\xf8\x46\x6c\x12\x6a\x1a\xd8\x3c\xfb\xe9\x6d" "\x3d\x96\x11\x0b\xcc\x50\x05\xdd\xdf\x28\xde\xb7\xbc\x6c\x24\xd1\x85\x1b" "\x35\x8c\x9a\x21\xad\x66\x49\x76\x3a\x0d\x4e\x17\xa3\x52\x9d\x3a\xad\xfb" "\x98\x8c\x45\xcb\xae\x2b\xd5\xa1\x99\x88\x8f\x3c\x67\x9a\x77\x47\x28\x20" "\x8a\x7a\xbf\x5e\xb6\x58\x38\x15\xf4\xe3\xea\x94\x95\x64\x2c\x16\x3c\xe4" "\x44\xe4\x9b\x8c\xde\xbc\xc0\x12\x91\xd1\x2c\x4d\x55\x10\x7b\xbe\x0c\x60" "\x8c\x72\x9a\xa6\xe5\xe5\xb0\xd2\x60\xac\x40\xa3\x17\xb1\x1e\x91\x8b\x96" "\xcf\xde\xf5\x08\xbc\x88\x14\xa0\xd7\x21\x20\xe8\x95\xb3\x75\x26\xcd\xeb" "\x4a\xff\x86\x51\xa4\xf2\xeb\x67\x0f\x10\xaf\x35\xae\x9c\xe8\xd9\x9f\x9e" "\x9c\xfe\x05\x75\x17\x18\x3f\xa5\x0a\x0b\x90\x99\x42\x93\x84\xce\x22\x49" "\x3d\xaa\xda\x12\x53\xa1\x6e\xb9\xb5\x34\x7b\xbd\xc4\x4d\xbc\x08\xa6\xed" "\x13\xfd\x1e\x6e\x53\x9b\xfe\xa9\x43\x33\x3b\xf3\xec\xd0\x33\xfb\x11\x05" "\xf0\xf3\xec\xf0\xf5\x2d\x74\x08\x7e\x68\x87\x0a\x11\x5e\x2c\x90\x16\x79" "\x53\xb0\xb2\x9e\x4f\x49\xdf\x33\xbf\x9b\x90\xd3\xc5\x5d\x34\x1d\xe6\xc7" "\xf3\x41\xf0\x19\x30\xa2\xfd\x42\xa0\xda\xa5\x32\x4e\x66\xac\x2d\xf3\xb4" "\x37\xfd\x87\xc8\x84\xfd\x30\x6a\xe7\xb6\xbe\xad\xb9\x45\x18\x3f\xde\x02" "\x1e\x4c\xd8\x15\x78\x5d\x9e\x0a\x43\xab\xdb\xba\xea\x44\x7b\x9d\xfe\xc9" "\x71\xc3\x2f\x6c\xcb\xa5\x96\x77\xe0\xe4\x73\x5a\x3a\x46\xc8\xba\x70\x88" "\x63\xd6\x19\xf3\x48\x9e\x8a\x1e\x1a\xb4\x50\xdc\x31\xb8\xcb\x4e\x3e\xa4" "\xb2\xb3\xdb\xbf\x23\x04\x42\x0d\x8f\xa1\xde\xc5\xb2\x5f\x90\xaa\xef\x21" "\x96\x05\xb2\xbe\x40\xd1\xbe\xd0\x26\x12\xd9\xaf\xae\x65\xc4\xbb\xc8\x77" "\x3e\xe7\x8e\x90\x88\xcf\x75\xf4\x5d\x67\x03\x8a\x9e\xf8\xaa\xd7\x3f\x55" "\x0a\x8c\xda\xe4\xca\x5f\xc6\x33\x3b\xdd\xe3\x27\xdb\x5e\xb4\xc4\xdb\x27" "\xcf\xa5\x4a\xc1\x7f\xec\xcf\xe8\x65\x6c\x0d\x74\x73\x80\xbc\x52\x8c\x1c" "\x17\x0a\x53\x5e\x92\x0e\xe0\x15\x92\x43\x88\xd4\x07\x98\x82\x12\xc2\x31" "\x5f\x83\xf9\xc3\x09\x5f\xc5\xfe\xf8\xf0\x9c\x7f\xce\x41\xf4\x8d\xbe\xf3" "\xf8\x24\xf4\xf8\x74\xee\xdf\x9b\x1e\x6a\x60\xba\xc8\x16\xfa\x20\x98\x75" "\xb0\xfc\x1e\x31\x9a\x83\x99\x6b\xb0\x5e\xbb\x9c\x41\x66\xa0\x6b\xcc\xf2" "\xb2\xf1\x7a\x8d\x9f\xd4\x2d\x79\xd0\x7b\x3e\x25\x6f\x28\x60\x13\x16\x89" "\x95\xd8\x50\x72\xf8\xba\x45\x66\x2b\x93\x66\xc9\x0f\x08\xa1\xc0\x79\x0b" "\xc0\xb1\x13\x13\x60\x75\xd3\x33\xb4\x73\x4b\xd0\x87\x59\x53\x3f\xdd\xb8" "\xb8\xf5\xf5\xd4\x74\x5c\x40\x6c\x8d\x35\xef\xbd\x9a\x60\xe8\xa7\xa8\xcb" "\x27\xee\xda\x7c\x4d\xfd\x18\x1c\xf1\xeb\xca\xe2\xca\x2d\x16\x46\x0c\x8d" "\x03\x4e\xb6\xd7\x9f\x36\xbc\x69\x22\xb9\xb9\xc0\x7c\x77\xd0\xe7\x75\x83" "\x34\xa4\x9d\xf9\x20\xed\x2a\x3e\xdd\x7f\x08\x78\x0e\x1c\x5b\xc3\x6b\x5d" "\xfa\xf5\xff\x76\x2d\x90\x76\xfd\x3e\xe2\xa2\xac\x2d\x0e\x3c\x48\x86\x71" "\x21\x12\xee\x79\xf5\xdd\xa8\x2c\x21\x13\x2f\x0b\x62\x9b\x16\xe3\xc3\x58" "\x02\x14\xf6\xa3\x14\x6a\x20\x32\xfa\x3e\x7b\x64\xfe\x6e\xa2\x9a\xbd\x6b" "\x1c\x14\x3d\xc4\x88\x34\x56\x15\x50\xfb\xfe\xa1\x50\x51\x59\x0f\x0d\x9b" "\x0e\x4d\x2e\xa8\xdb\x80\xab\xe7\x1e\x5c\xd3\x9e\xa4\x14\x46\xa2\x3e\x67" "\xf8\x72\x04\xc0\x2f\x3a\x67\x20\x11\xe4\x8f\x83\x87\x6b\x5d\xc4\x4a\xb1" "\x15\xd2\x94\xd0\x45\x14\xe1\x09\xa2\x55\xc1\xeb\x56\xaa\xba\x4e\x67\x9f" "\x12\x84\xdd\xbf\x0c\xce\x66\x48\x20\x82\x44\x4f\xfc\x57\x9a\x47\xdc\xb7" "\x84\x0c\x98\xbc\xfc\x0b\x27\xe2\x68\xb2\x48\xf2\xc5\x7b\xcf\x4a\x3a\xb3" "\xb4\x85\x42\x4a\x0d\xcb\x30\xbc\x07\x02\x6f\xd2\x81\x7a\xc6\x2e\x76\xf5" "\x5b\x78\xb4\x04\xe5\x4e\x06\x4d\x45\x07\x2e\xc5\x79\x3b\xc4\x74\x4a\x49" "\x6c\x51\xc0\x36\x5d\x7d\xdf\x85\xba\x6c\xfd\xa3\xaf\x42\x6e\x4c\xfe\x37" "\xf1\x87\xfe\xe6\x8a\x6a\x50\x13\x5a\x4d\x3a\xd8\xb2\xbe\x23\xbb\x47\x47" "\xe8\x09\xd0\xa4\x29\x5c\x09\xee\x9d\x69\x96\x16\x6d\xf0\xbe\x04\x40\x55" "\xe4\xa5\xed\x1c\x5b\x5c\xa6\xda\x32\x42\x7d\xbb\x82\x27\xc4\xe7\x31\xd4" "\x21\x0a\x67\x3d\xa0\xda\x31\x18\xd5\xf1\x9b\x3c\xab\x13\x6f\x5d\x7b\x07" "\xee\x1d\xe9\x01\xf7\x61\xd4\x2f\x24\x70\xe6\x92\x9b\x93\xe1\x7c\x8f\x5f" "\x81\x4d\x76\x1d\xc9\x47\x7f\x46\x23\xec\x80\x38\xe2\x2d\x18\xd9\x2e\xc5" "\x9f\xff\x78\xab\xb5\x1b\x8a\x3a\x94\xe6\xbf\x40\x1c\x95\xa6\x03\x10\x9a" "\xe0\xcb\x6b\x34\x5f\x07\x57\x89\xe5\x6f\xa2\xe7\xd3\x11\x86\x33\xa5\xce" "\x71\xb4\x5c\x56\xd9\x08\x4b\xcd\x32\x12\xf7\x50\x3a\x99\x10\x62\x50\x28" "\x23\x10\xe4\x51\xb0\x78\xf8\x20\x72\x95\xce\x7e\x7c\x91\x90\xa0\x6c\x3a" "\x3a\x36\x87\x77\xf0\xea\x34\x80\x4e\x23\x9a\xac\x9e\x5b\x59\x50\xb5\x2d" "\x55\xbc\xcc\x16\x50\x20\x90\x04\xa3\xaa\xf5\x2a\xe4\xa8\x76\xbe\x3f\xd9" "\xaa\x00\xb2\xad\x76\xdf\xca\xdb\x0d\x24\x4a\xc6\xf5\x67\xf6\x75\x73\x3b" "\x1c\x55\x90\x79\xe3\x15\xbf\xad\x64\x01\x6d\xdd\x7d\xde\xc2\x97\x6d\x5e" "\xf8\xe3\xb4\x1c\xaf\x7c\xd3\x9f\xe4\x7f\xf1\x87\x5f\xaf\x94\x29\xd0\x0d" "\x21\x2c\xb1\xc1\x03\x3c\x0c\xfa\x92\xb1\x27\x70\xd6\xcf\xb0\x03\x30\x1b" "\x75\x8c\xad\x14\x9d\x36\x6e\x39\x64\xab\xaf\x16\x74\x56\xc8\x80\x04\x1f" "\x79\x14\x88\x98\x19\x39\xec\xe3\xb5\xfa\x19\x0f\xfb\x35\xb0\x78\xfb\x39" "\x43\x71\x40\xae\x3f\x56\xfb\x3b\x3a\x19\xbf\x7d\xbd\xc2\x2b\x85\x90\xbd" "\x5a\x94\x24\xe0\x08\xb3\xe4\xc2\x8f\xea\x75\x30\xfe\xe9\xe0\x52\x6a\x81" "\xb2\x4c\xc8\xa4\x07\x30\xde\x45\xbe\x50\x2d\x98\x6f\xb5\xdd\x80\x26\x38" "\xc7\x58\x04\x7c\x7e\x80\x23\xc3\x37\xe5\xfe\x00\x43\xba\x35\x1c\x0b\xd3" "\x94\x86\x98\x1f\xad\x0d\xe0\x8d\x16\x93\xd2\x6c\xe1\xc4\xf9\xc1\x8b\x7b" "\x11\x4d\xfa\x92\xc7\x8c\x61\x3c\xa4\x62\xb1\xf6\x6a\xfa\x65\x30\x3d\x25" "\xcc\x70\x5a\x1d\x4f\x5f\xb5\xaf\xe6\x9a\xbb\x2f\x00\xeb\x92\xba\x56\x19" "\xd5\xc2\x50\x8b\x31\x85\x18\x40\x3c\x8e\x8f\x5c\xbe\xa9\xf9\xcc\x04\x34" "\xd0\x61\x15\x73\x18\x9f\xb5\xf4\x35\xd7\xa6\xe2\x11\xed\x9d\xe9\x68\xa5" "\xf8\xa6\xf9\xbb\xe5\x42\x31\xfd\x4b\x28\x9f\x57\xd5\x5f\x99\x89\x38\x3c" "\x89\x54\x45\xbe\xaa\x52\x65\x39\xc0\x79\xfc\xcc\xa0\x7f\x61\x5a\x9e\xcf" "\x66\xd3\xa7\x18\x65\xf9\x6b\xab\xd3\x6e\xe6\xc0\x36\x76\x94\xf8\x6c\x91" "\x34\xf7\xef\x8a\xdf\xf9\xb4\xc8\xb8\xdc\x45\xcd\x65\xdb\xf6\x19\x1a\xbe" "\xcf\x60\xd8\x7d\x8e\x1d\xe6\x1f\xb1\x35\x67\xda\xa0\x0a\x8f\x29\x5b\xad" "\xcf\x0a\x6c\xbf\x1c\xb6\x5d\x92\x75\xb0\x57\xff\x43\x85\x60\xbc\x6c\x0e" "\xf5\xdb\xbf\xfd\xdd\x3e\x51\xee\x99\x69\x88\x39\x51\xb1\x05\xbb\xa9\xb6" "\xf0\xe1\xd0\xb5\xe1\x5e\xb8\xbb\x71\x07\x7e\xd7\x32\x5e\x3a\xce\x8e\x0a" "\xae\x74\x70\x4f\xb5\x5e\xba\x74\x21\x9c\x4a\xff\xa5\x11\x3e\x5c\xd1\x38" "\xdc\xcd\x12\xf9\x9b\x81\x37\x01\xa8\xe8\xaa\x68\xba\x1f\x0a\xaa\xf8\xd6" "\xf6\x3c\xeb\x69\x78\x33\x5c\x59\x21\x50\xea\x91\x9b\xc0\x89\xca\xc6\xf1" "\x23\x5f\xaa\x35\xbd\xe1\x24\x63\x1f\x43\xb8\x33\xc2\x33\x44\xe1\x18\x2e" "\x78\xbc\x6b\xf0\x5d\xdb\x55\x32\x8d\xcd\x88\x14\x60\x5b\x2f\x79\x96\x47" "\xd5\xe0\x54\x6a\xa8\x0f\xcc\x4e\x1a\xbf\x44\x4c\x29\x70\x27\x2a\xdd\x58" "\xd4\x5b\xbe\xb5\xd1\xb7\x5b\xec\xb1\x3b\x28\xda\xa6\x17\x96\x6e\x44\x76" "\xf1\xb4\x73\x2b\xb9\xf1\x0b\x1f\xdb\x41\x60\x9b\x51\xc3\x68\xba\xb1\x49" "\x02\x30\x5d\xfc\xe9\x13\x3d\x27\xe3\xf6\xd9\x2c\xb4\x37\x02\x27\xf7\x51" "\x45\xd2\x4f\xb5\xf7\x42\xc4\x03\x55\xc5\xfb\x89\x9b\x3b\x7d\x02\x8c\xe4" "\x18\xfd\x95\xd8\xa1\xe5\xb4\xc3\xa1\x2a\x86\xf7\xb5\xef\xce\x17\x88\x6c" "\xf8\xe4\x9a\xdc\x85\x22\x43\x84\x84\xdd\x94\x24\x70\x83\x30\x30\x84\x72" "\x3e\x1a\x5a\x33\x0c\xd9\x9c\x99\x95\x20\x2a\xe2\x0f\x4f\xe3\xf8\xa1\x10" "\x38\x40\xad\xd9\x5a\xb0\x85\x3d\xee\xe5\x18\x6a\x77\xaa\x66\x02\x73\x08" "\xf8\xb6\xb0\x83\x92\xf7\x26\xb8\x2e\x69\xbf\xa2\x22\xf3\x63\xdf\x72\xd8" "\x05\xfc\x43\x12\x1f\x1f\x66\x29\xb5\x82\xf4\x25\xbc\xc4\x13\x2d\xa9\x57" "\x96\xbd\x1c\x91\xc7\x2b\x09\x96\xb7\xe8\x79\xa3\x21\xee\xda\xfb\xcd\x49" "\x01\xf3\x12\x31\x56\xab\xe7\x35\xf6\x87\xdf\xb2\x0d\x45\x26\xc0\xa0\x92" "\x7e\xaa\xb3\xb2\x4a\x20\x66\xbc\xca\x05\xb5\x89\xc4\x6b\x7f\x8a\xd7\x4b" "\x11\xf6\x73\x37\x0d\x98\x88\xcc\x90\x32\xb2\xb3\x06\x4f\x6d\x64\xd7\xae" "\xf9\xba\x0b\x0d\xc6\x52\x6a\xec\xca\x01\x6b\x26\x92\xd8\xd3\xc1\x90\xd5" "\x38\xbe\xe6\xeb\xef\x90\x21\xb2\x7c\x55\xae\x3c\xb6\x39\x27\xa0\xa9\x5e" "\xfb\xa6\xb2\x96\x17\x24\x21\x23\xec\x71\x50\x19\x66\x2d\x0c\xab\xe1\xb7" "\x19\x66\xf8\xe8\xca\x18\x2c\xea\xfe\xcf\xe1\x39\x0f\xaf\xef\x04\xc3\x34" "\xad\x10\x92\x81\x61\xdf\x11\xb5\xec\xbd\xd0\x59\xfa\xcc\xea\xb0\xaf\x95" "\xa2\x41\xd9\x4e\xd5\x3b\xba\xb3\xd2\x52\xac\x0a\xd0\x7f\x9e\xaf\xaa\xb4" "\x59\xba\x6a\x43\x0d\x3a\x34\x5b\x82\xdc\x0e\xbc\x19\x1e\x79\xb6\x42\xdb" "\x82\xea\xab\xff\x94\x57\xff\xac\x59\xfd\xf3\x33\xef\x90\xb5\xb7\x67\x48" "\xf1\x0d\xbc\x0c\xae\x93\x99\x90\x26\x19\x35\x5a\x76\x4c\x61\x67\x34\x45" "\xfc\x27\xd1\xb1\x92\xf5\x50\xf7\xd3\x1c\xd1\x48\x27\x8e\x02\xfb\x71\xf2" "\xfc\x59\xf7\xb7\x31\xaa\xed\xbf\x2a\xf5\x53\x11\x30\xc4\x30\x28\x83\x2f" "\xe4\x07\xea\x0b\x6e\x73\x91\x0b\xb1\x6a\x53\x24\xf6\x6e\x7f\xe1\xec\xb7" "\x39\x1f\x38\x9b\x5c\x9a\x6a\xa8\x5c\xec\xf1\x9f\x3d\xcf\x93\xde\xfb\x07" "\x1f\x59\x4d\xf0\xb1\x31\x89\x7c\x7f\xa1\x8a\x59\x0f\x63\xfd\x35\xba\x35" "\xe9\x92\xc0\x33\x93\xbe\x36\xb3\xaa\xc7\x29\x61\x6b\x8f\x81\x19\x49\x08" "\xe6\x0f\xaf\xa1\xa3\xb6\x76\x80\x72\x74\x97\xc2\xd8\x62\x63\x7e\x41\x4b" "\xf4\xec\x2e\x59\x0e\xd0\x7d\x8b\x50\xaa\x7d\x43\x46\xd1\x9c\x61\x6e\xe5" "\x82\xce\xc1\x1a\xe9\x6b\xc9\xd9\x58\x66\x05\x04\x9f\xc8\xd5\xd1\x1d\x69" "\x87\x36\xea\xa7\x34\x81\xfd\x2a\x73\x5c\x63\x95\x17\xb7\x1a\x64\x19\x97" "\x14\x8f\x83\xc8\xcf\xd6\xce\x8a\x50\x38\xdf\xca\x16\xa5\xb5\xb8\x82\xbc" "\x68\x0a\x82\x53\x7c\x01\x28\x7b\x52\x50\x22\x17\xc8\x9e\xbe\x43\xaa\x57" "\xa1\xb6\xd4\x35\xfb\xca\xde\x5e\xfd\x9c\x15\x33\x26\x10\xec\x76\x1b\x63" "\xc9\x7f\x03\x65\xe0\x85\x2b\x49\x8e\x02\xd4\x50\x4f\x39\x06\x3f\x45\xac" "\xfa\x2c\x4c\x47\xd2\xb8\x95\x49\xcf\x17\x93\xb3\xfe\x4e\x58\x0c\x24\x03" "\x4c\xe9\x08\x9d\x51\x58\xa8\x48\xe5\x1f\x0f\x5c\x88\xc9\x2d\xc1\x6b\x88" "\x1d\xb4\x77\x81\x36\x8c\xdb\xa2\x2e\x1e\xef\xae\x67\x92\x2c\x8b\xf7\x3c" "\x01\x1f\xc9\x79\x28\x14\xed\x7e\xc3\x74\x03\x52\x7a\x8c\x64\xa4\x47\xd9" "\x91\x71\xf5\x27\x04\x50\x05\xd3\x44\xd0\xab\xcf\xf5\xea\x55\xee\x52\x25" "\xd6\x21\xc0\x4d\xc2\x0d\x93\xd4\x25\xed\x5c\xf2\x79\x90\x55\x52\x76\x1d" "\x54\x20\x5f\x9f\x14\xb5\x58\x4f\x82\x4a\xe1\x54\x1e\xc0\x1f\x87\x21\x49" "\x45\x52\x9f\x9d\xf7\x28\x45\xc5\xa4\x50\x7b\x40\xbe\x98\xb5\xea\x93\xba" "\x29\x28\x81\xea\x73\x0e\x0b\x1b\x16\xa3\x4b\xf1\x3d\xfc\xed\xfa\x84\xe6" "\x82\xd4\xa1\x4c\xd4\x77\xa4\xae\xd6\x49\x64\x2f\xb2\x17\xfb\x13\xff\xe3" "\x6a\xa6\x36\x17\x69\x9c\x5b\x3a\xd1\x6b\x8e\x4b\x0a\x5d\x50\x23\xc5\xe0" "\xb7\x84\x84\xde\x91\xee\xee\x62\xae\xa1\x4b\xe0\x0d\x17\x88\xfc\x90\xa5" "\x49\xa3\x6e\xe5\x5f\x30\x90\x33\x3a\x50\x1c\xfc\xaf\x1d\xbe\x7b\x34\xd5" "\x68\xcb\x7b\x8d\x27\x24\x4e\x62\xf7\xea\x0a\xde\x54\x2f\x9a\x1f\xf9\xb7" "\x8f\x47\x4d\xc8\x4f\xe5\x9f\xf0\x34\x1b\x4d\x51\x37\x82\x61\xe1\xba\x67" "\x1f\x57\x62\xe6\xea\x1d\xa1\xcc\x84\x80\xfa\x7e\xad\x35\xf5\xd7\x9c\x2e" "\x47\xde\xb7\x1f\x3b\xb5\xa8\x21\xd7\x46\xf7\x90\xd3\x69\x16\xf2\x0d\x3a" "\xfc\x9f\xe3\xa0\x91\x85\x3e\x50\xaa\x55\x59\x71\xf9\x72\x98\x13\x91\xc0" "\xe2\xf7\xe9\x5a\x1d\xbc\xad\x17\xa5\xa3\x35\x2a\xbd\xf5\x60\x36\x98\x12" "\x37\xe1\x6a\xb8\x8b\x2a\x82\x7b\x9d\x67\x3a\x79\x15\xa7\xf6\xc6\x9b\xe8" "\xe4\xa3\x1d\xa9\x3e\x91\x96\xe9\x9b\x95\xcf\x96\xe0\x59\x4b\x70\x47\x87" "\xfd\x63\xdc\x7e\x16\xb2\xb0\x44\x79\x88\x77\x05\x79\xc5\x5b\x08\xcb\x8e" "\xfb\xb2\x54\xf6\xbc\xf2\xc2\xee\x96\xc4\xa6\x90\x08\xb4\x5f\xf6\x34\x12" "\x85\xfe\x62\x86\x15\x73\x8a\xb1\xde\x9f\xfa\x11\xab\x6b\x4a\x8a\xec\x9f" "\x2c\x0e\x62\x01\x75\x2c\xa5\xe3\xdb\xa2\xe3\x91\x7f\x4d\xc1\x72\x4a\x8e" "\xd1\x36\x96\x14\x6d\x60\x79\xd5\x2c\xdc\x53\x1a\x73\x74\x5b\xb9\xff\xf3" "\xd9\x3b\x60\x29\xf8\x1b\xa1\x69\x50\x52\xe0\xf0\xed\x3f\xcc\x3c\x71\x97" "\xcd\x0e\x30\x9a\x4e\xec\x28\xa6\x02\x2c\x94\xa9\x36\x9e\xcb\x71\x38\xa7" "\xe6\xfe\xaf\xc0\x32\x80\x91\xc7\xed\x24\x33\x15\x54\x91\x15\x3e\xd6\xcf" "\xa0\xf6\xe1\x03\xa3\xb1\x5e\x67\x9d\xb9\x54\x4e\xb3\x61\xe0\xba\x4a\x30" "\xb7\x89\xf1\x6f\x8f\x42\xb0\x00\xc3\x57\x85\x06\x3c\x62\x88\x2f\x89\x72" "\xd9\xc5\xa9\x9a\x2f\xda\x36\x04\x53\x66\x65\x81\x9d\x98\x46\xa8\x9f\x11" "\xbd\xeb\x98\xf9\x3c\xf9\xd4\xb7\x95\x2b\xc7\xc6\xb8\x22\xf1\xfd\xd8\x79" "\x98\xbd\x09\x70\xfa\xbe\xab\x6c\xf6\xb3\x56\xeb\x50\x30\x57\x0a\x3c\x32" "\xee\x2e\x5c\x07\xf9\xfd\x6c\x89\x78\xdb\x87\xc1\x6a\x86\x62\x1e\x45\x48" "\x1e\x43\x31\xc9\xc3\x2c\x05\xc7\x5b\xc3\xab\x07\x1e\xed\x4b\x57\xda\x82" "\xfd\x22\x2a\x2b\x82\xcc\x2d\x7d\x45\xdc\xcf\x71\xc5\x79\x25\x43\x3f\x83" "\x1d\xb9\x0c\xbe\x27\x57\x49\x36\x7f\x27\x92\xde\x9e\x38\x02\xfd\xdc\x64" "\x47\x39\xe5\xca\xce\x0d\x55\x0a\x5d\xe0\x9f\x31\xc4\xd0\x33\x6b\xb8\x0c" "\x98\x80\x74\x51\xfc\xbe\xf3\xef\xbc\xfb\x36\x51\xbf\x38\xb2\xde\xed\xd6" "\x27\xa3\xde\x54\x80\x78\x68\x8b\x20\x99\x5d\x4d\x25\x98\x6c\x13\x12\x53" "\xe2\x45\xb9\x7e\x8c\xdc\x6a\xb7\xb4\x56\x54\xe4\x0c\x0a\x19\x6f\x2a\x40" "\x4b\x7d\xb3\xe4\xb1\x7c\x8b\x8b\xe8\x15\xa0\x86\x13\x17\x7e\xd8\xeb\x9f" "\xe8\xdc\x56\xbd\x48\x13\xf0\xe4\x98\x8c\xda\xed\x08\x9e\xbb\x8a\xa9\x7f" "\xdb\x31\x09\x71\x61\x70\x4e\xae\x0e\xae\x8a\x62\x9a\x0b\xd2\x37\x40\x71" "\xa9\x39\x93\x66\x2a\x3d\x4f\x9d\x5a\x39\xfd\x53\xfc\xce\xaa\xab\x47\xe8" "\x5f\x1a\xa5\x14\x16\xc5\x96\xdf\xf7\xf4\x7f\x88\x3c\xce\x4d\x18\x26\x6e" "\xcc\xed\x73\xb5\xd6\xa2\xd8\x90\x28\x6e\xd6\x8e\xe2\x56\x0e\x06\xeb\x40" "\xe2\x78\x69\xcc\xd8\x57\xc2\x31\x40\x0c\x4d\xb0\x1b\x75\x42\xb2\x16\x41" "\x28\xde\xff\x72\xae\x56\x85\xa6\x33\x61\x61\x14\x09\xcf\xa0\x22\xa6\x9d" "\xd3\xed\x6a\xf6\x8a\x28\x59\x97\x95\x1b\xba\x68\xfd\xa7\xa7\x01\x8d\xdc" "\xdd\x19\xd2\xa8\x78\x83\x9d\x7b\x3e\xc6\x91\xd6\x9d\xb2\x68\xae\xd3\x42" "\x00\xed\x9b\xc3\x5c\x42\xe9\xe5\x4c\xa9\x6d\x17\x39\xca\xc0\x08\xf0\x8d" "\x27\x5e\xe0\xe4\xa0\x20\x43\xe4\xb5\x4c\xd1\xf9\xc8\x84\xd4\xe2\x79\x71" "\xfd\x4f\xf6\x34\x16\x43\xe8\xdd\x17\x3f\x60\x03\x83\x34\xb5\x9c\xb6\xc8" "\x91\x9e\x1a\xa0\x2b\x56\x59\xfa\x3e\xc4\x94\xeb\x27\x59\x00\x7a\x8f\x29" "\x06\xd5\x41\x79\x09\x5f\x0f\x94\x91\xca\xae\xe8\x69\xd9\xe2\x6f\x90\x2e" "\xe2\xb4\xf1\x29\x1c\xad\xf5\x5d\xe7\xd6\x16\xd5\xb5\xcc\x95\x75\x18\xf3" "\x05\x91\x83\xc3\x7f\x3a\x4e\xc7\x61\xb1\x56\xe2\x1b\xab\x23\x9f\xb2\x28" "\xea\x22\x55\x07\x0e\x5d\x8c\xd5\xe5\xaa\x68\x0e\xa2\x64\x9e\xfb\x35\xca" "\x52\xe1\xdb\xfa\x8b\x73\x56\x18\x7d\x1c\xda\xcb\xd0\xcb\x62\x2c\x68\xf8" "\x98\x6f\x8e\x61\x47\x3a\xbd\x4d\x64\x62\x50\x30\x9c\x66\x87\xeb\x8f\x7f" "\x99\xb7\x35\xba\x12\xa7\xca\x2b\x34\xee\xcf\xff\x3d\x77\x85\xc3\x5a\xb2" "\xb7\x49\xa7\x7f\x32\xbe\x1a\x8b\xb9\xa2\xec\x8b\x3d\x05\x39\x0c\xe5\xd2" "\xf4\xc7\x42\xeb\x35\x85\x79\xeb\xb9\x0d\xd5\xbd\xd3\x3a\xda\xb2\x69\xd0" "\xfc\xdc\xa1\x27\x54\xd0\x77\x28\xc1\xa0\x3f\x34\x2d\x77\x54\x96\xa1\xe3" "\xfa\x61\x93\x72\x44\x99\x6e\x30\xa6\x8e\x79\x16\x3f\x29\x94\xa7\x22\x63" "\x6c\x7f\xae\xf6\xa0\xf2\xae\xad\x72\x40\xef\x89\xdc\x5b\x45\x95\xd1\xb9" "\x06\x5d\x17\x9f\x39\x67\xa6\x0b\xa7\xa5\x02\xfb\x95\xf0\x3d\xfa\x4d\x98" "\x0e\x7f\x39\x58\x12\xa2\x3b\x34\x30\x34\x34\xf2\xc1\x5d\x26\xad\x60\x37" "\x68\xe3\x46\xd6\x7b\xea\x11\xf0\xcf\x7e\x3d\x7d\x48\xb2\xa4\x33\x17\x28" "\xd2\xd8\x60\x85\xfc\xd4\x58\xa8\x98\x12\x91\x6d\x2e\xf5\x21\x4e\xa3\xb0" "\x7c\xe6\x39\x40\x95\x91\x5a\xe1\x7d\x29\xc8\xa0\xe3\xae\x55\x29\x1e\x91" "\x34\x0c\xe3\xc1\x8c\xba\x14\x3f\x72\x00\xa6\x4e\x87\x7d\x85\xf9\xff\xa4" "\x17\x1b\xb4\x0b\xbc\xb2\x55\x34\xf6\xf9\xe8\xf8\xfd\x4a\x53\x5c\xe3\x2a" "\xd7\x9f\x81\x06\x38\x2f\xde\x98\x7e\x70\x87\xa7\x5c\x25\x49\x84\xaf\x13" "\xa8\xf4\x84\x80\x85\x2e\xe8\x5a\x51\x3b\x25\x4f\x02\x38\x0c\xf3\x24\xd0" "\xfe\x7f\x63\x31\x44\x10\xa7\x1b\x45\x85\xb6\xdd\x6e\xaa\x31\x47\xe8\xe7" "\x34\xa9\x60\xc6\xf8\x32\xe2\xcc\xca\xec\xc3\xf9\x14\x95\xc5\xd0\x6c\x64" "\x4a\x35\x70\x4e\x00\x3f\x3e\x31\x53\x23\x97\x01\xf5\x35\xd7\x79\x4e\xf0" "\x78\x00\xaf\xf4\xd1\x21\xb0\x91\x9e\xc4\x41\xe8\x0f\x0b\x22\xa1\x2c\x2b" "\x39\x7a\x74\x23\xcf\x6a\x01\x27\xf0\x7c\x36\x91\xcf\x5b\x8e\xa9\xf6\x6d" "\xfe\xe4\x94\xad\x8b\xfc\xa6\xbc\x67\xf1\x5f\x88\x82\x17\x67\xdc\xce\xf4" "\xec\x57\x5f\x39\xbe\x78\xb4\x43\x36\x47\x2e\x4d\x43\xd6\xe9\xff\xe6\xc7" "\x22\xa7\x2f\xa4\x9a\xf3\xc0\x10\x4a\xe2\x35\xbe\x10\x12\x0b\x93\x05\x9e" "\x31\xfd\xb3\xa7\xa9\xd7\xac\x19\x9c\x7a\x9f\xa3\xc1\x3d\x6a\xe3\x76\x01" "\x75\x00\x0d\x1e\x81\xcd\x9c\x36\x9f\x18\xb0\x89\x9f\xb9\xcc\x0e\xda\xc2" "\x6f\xe6\x95\x32\x33\x0a\x39\x5e\x16\x2f", 4096); *(uint8_t*)0x200012a1 = 9; *(uint8_t*)0x200012a2 = 5; *(uint8_t*)0x200012a3 = 0xe; *(uint8_t*)0x200012a4 = 3; *(uint16_t*)0x200012a5 = 0; *(uint8_t*)0x200012a7 = 0xa3; *(uint8_t*)0x200012a8 = 0x40; *(uint8_t*)0x200012a9 = 0x1f; *(uint8_t*)0x200012aa = 0; *(uint8_t*)0x200012ab = 0xc8; memcpy((void*)0x200012ac, "\x69\x6a\x2f\xee\xa1\x08\xc0\x07\x0f\x9e\x6a\x5c\x4e\x4f\x65\x31\xa4" "\x71\x90\xca\x9a\x56\x3b\xfb\x7d\xd0\x6a\x2f\x2b\xe0\x86\xfc\x8c\x2e" "\x72\x97\x60\x30\xba\x14\x60\xbb\xcb\xba\xf8\xae\xa0\x00\xc3\xb2\x3f" "\xa5\x75\xbd\x19\x53\xc8\xd5\x9b\x96\x80\xc7\xff\xb7\x15\xdb\xef\x8f" "\x51\x44\xc2\x7d\xc7\x51\x4a\x1a\xd1\x0a\xa1\x5d\xbc\x1b\x2f\x71\x83" "\x96\x1f\xb3\x0c\x3d\xdc\x62\x00\x24\x6e\x87\x37\x7d\x2e\x44\xdb\x9f" "\x44\xc6\x35\x48\xf6\x56\x6e\x69\x43\x22\x0d\xe1\x87\xea\x4a\x2e\xee" "\xdb\x77\xdb\xc0\x67\x10\xf9\xb7\x87\x81\x38\xc8\x01\xe0\xc9\x4d\xc3" "\x54\x50\xc4\x02\x9c\x61\x47\xe0\xa5\x64\x35\xf7\x91\xb2\x8f\xf5\xa0" "\x18\x2a\x2a\xe4\xfd\x3d\xd0\x5d\xf0\xe4\x47\x6e\xd8\xc8\x6a\x15\xa6" "\xec\xc6\x30\x1f\xa4\x84\x50\x2d\x73\xcf\xd7\x8c\x2c\xbd\xe9\x00\x41" "\xc0\xbf\xdd", 190); *(uint8_t*)0x2000136a = 0; *(uint8_t*)0x2000136b = 0x25; *(uint8_t*)0x2000136c = 1; *(uint8_t*)0x2000136d = 1; *(uint8_t*)0x2000136e = 6; *(uint16_t*)0x2000136f = 6; *(uint8_t*)0x20001371 = 9; *(uint8_t*)0x20001372 = 5; *(uint8_t*)0x20001373 = 0; *(uint8_t*)0x20001374 = 8; *(uint16_t*)0x20001375 = 0x400; *(uint8_t*)0x20001377 = 0xb9; *(uint8_t*)0x20001378 = 0; *(uint8_t*)0x20001379 = 0x80; *(uint8_t*)0x2000137a = 0; *(uint8_t*)0x2000137b = 0x23; memcpy( (void*)0x2000137c, "\xeb\xbd\x4e\x01\x44\x0d\x0f\x0d\x68\x8d\x2e\xa2\x1f\xd8\xdc\xd3\x27\xfc" "\x9b\x16\x23\x7e\x80\x5e\x83\x74\xca\x13\x1b\x05\x53\x04\x50\xd6\x98\x25" "\x10\xf0\xac\x71\x84\xf5\xd8\xaa\xf1\xe0\xaa\x47\xaf\xce\x3a\x30\xae\x49" "\xac\x64\x19\x0f\x04\x77\x12\xec\x6d\x40\x11\xcb\xa1\x73\x3d\xae\xb8\x37" "\x9a\x59\xbb\x70\xd2\x13\x62\xac\xbc\x76\x07\x73\x9c\x6e\xa5\x11\x50\x13" "\x28\xf7\x79\xaa\x9f\x9f\x39\x1c\x13\x1f\x6e\xe9\xc2\x33\x05\x6e\xae\x70" "\x63\x55\xba\xb4\x06\xb0\xa0\xb0\xf7\xb2\x7f\x79\x05\x47\x63\x2b\x64\x38" "\x31\x61\xab\x07\x7c\xad\xa7\x0c\xe4\x54\x6e\x50\x8e\x7c\x0c\x4b\xd7\xed" "\x53\x55\xca\x6e\x1e\xf3\x8e\xb5\xd4\xa9\xbe\x8d\x31\xfd\xbc\xb1\x9b\x16" "\xfd\x99\x6d\x45\x13\x82\x33\xa3\x50\x04\x41\xcd\xb4\x6a\x78\xa7\x5a\x6a" "\xcf\x0a\x01\x7f\x6e\xa0\xc8\x1e\xfc\x06\xae\xcf\x6f\x22\x31\xcc\x56\x7a" "\xfb\x69\x97\x40\xe0\x66\x3a\x54\xef\x0e\x86\x77\x1d\xf0\x06\x69\x5b\x88" "\x4c\x92\xf6\xae\xbf\xa4\x72\xb9\xae\x6b\xda\xc7\x3d\x16\x0e\x71\xc3\x14" "\x0f\x3a\xf7\xd7\xb8\xc8\x32\xf0\xa4\x2f\x0e\x48\xad\xc8\xfc\x65\xcf\x6e" "\x16\xc8\xe1\x3e\x7b\x0a\xf7\x76\x11\xc6\xdf\x12\xc7\x01\xd6\x5c\x4c\xb6" "\x4a\xa1\xa6\x8a\xee\x4c\xb4\xeb\xb7\xe6\xba\x81\x2a\xa9\x41\xc2\x99\x1a" "\x3e\x0b\x72\x9c\x8c\x24\x8b\x9f\xe0\x50\x11\x00\xb3\x34\xb6\xdc\xa4\x0a" "\xa2\xa7\xff\xd3\x60\x93\x06\xb6\x29\xe3\xe4\x4f\xf6\xd9\x0a\xa6\x68\x00" "\x1f\x88\x2c\x18\xd1\x20\x7e\x51\xc2\x56\xb2\x7d\x2f\xdb\xa6\xca\x3b\x74" "\x9c\x5b\x55\x4b\xa9\x15\x0f\x27\xf3\xac\xa2\xa0\x82\x5e\x22\x22\x90\x94" "\xde\x8f\xd7\x85\xb3\x6c\x69\x08\x09\x69\x0b\xb5\x28\x2e\xf1\xd1\xd1\x6f" "\xca\xfd\xbf\xc9\x86\x5f\x26\x96\x7b\x3a\x07\x32\xad\xfd\x4a\x6f\x77\x8e" "\x0c\xeb\x35\xbd\x8f\x1e\x9f\xdc\xde\x62\x21\x44\x10\x3a\x0b\x86\x2a\xad" "\x4c\x9b\xa0\x93\xfa\x3f\x2b\x38\x46\x57\x8a\x6f\x40\x3e\x54\x31\xb5\xd2" "\x8c\x8b\xa6\x4f\xdd\x30\xc2\xda\xd4\x7e\xbe\x21\x0e\xe2\x2b\x71\x86\xa8" "\x18\xde\x01\xee\xbe\x0d\xbd\x4a\x03\xc8\x42\x6a\x8e\xe5\x4c\x9d\x66\x0c" "\x6c\x9b\x40\x30\xb2\x8e\x97\x4e\xd0\x7d\x76\xfd\xf0\x0e\x62\x67\x1f\xf4" "\x45\xd3\x63\x0d\xfa\x07\xa7\x77\x2b\xf3\xf2\x77\x6d\xbb\x90\x8a\xd9\x62" "\xc1\x87\x16\xac\x9b\x3e\xb8\x5e\x2d\x67\xe7\x36\xe1\x9d\x3e\x4e\xe1\x26" "\x8f\xb4\x6c\x54\x99\x3f\x2e\x5f\x52\x65\x4f\xd9\x31\xf4\xb9\xb3\xc8\x06" "\x7b\xf0\x3b\x9b\xce\x1a\x59\xc6\xd8\xe1\xa9\xa1\xe7\xfb\x42\xe9\x86\x4d" "\xe5\x08\x4e\x49\xe1\x96\x4a\x75\x66\x87\x47\x3e\x7a\xf3\xcc\x24\x07\x6c" "\xc3\x5b\x63\xa8\x1e\x80\xa2\x77\x1f\x9f\xe4\xf1\xde\x5b\xa7\x5a\xa1\xdd" "\x1c\x3c\x1e\x21\x05\x4b\xb8\x6f\x5b\x22\x90\xd0\xf6\x9d\x3a\x7e\xdc\xea" "\xd8\x4b\x82\x04\xe8\x84\xed\xc8\xed\xec\xfb\x1b\xa8\x3d\xb7\xa5\xdc\xa3" "\x80\x14\x08\xa8\xa3\xf3\x8b\x07\x71\xba\xdf\xa2\x8e\x1c\xa6\xd4\xa0\x75" "\xc7\xaa\x19\xbc\xde\x6a\x10\x36\x2d\x60\xc6\x29\x84\xb3\x96\xc6\x0c\x4f" "\xe7\x8a\x7b\x79\x2b\x46\x89\x30\x91\xdd\x8b\x97\x99\xbb\x9e\xcc\xaa\xdd" "\x9a\x8d\x59\x09\x11\xa8\x06\x97\xad\xd1\x49\x96\x6a\xb2\x67\xb9\xe9\xf4" "\xd0\xee\xee\xa0\xaa\x15\x38\xa0\x63\xc7\x48\x83\xee\x21\x76\xc9\x97\x32" "\x22\x26\x58\x0f\x90\x80\x68\xc3\x55\x21\x76\x68\x01\x74\xcc\x3a\xed\xc8" "\x4a\x0e\x19\x51\xf0\xae\x81\x40\x0a\xa3\x9a\xa7\x6b\xca\x52\xba\x7d\x81" "\x5a\xad\xaa\x19\x7d\x21\x9a\x2b\x05\x63\x28\xc7\x0a\xf0\x10\xda\x01\xa3" "\x0d\x0d\x06\x11\x8b\x58\x7a\x50\xa9\x30\x06\x87\xd1\xb6\x40\xe2\x1d\xad" "\xee\xa9\x45\x8c\xba\x1a\x23\x08\x62\x60\x2c\xa8\xe0\x4a\x43\xc8\x35\x99" "\x1a\x02\x5b\x6b\xff\xc1\x12\xeb\x0a\x5f\x2f\x34\x69\xf5\x33\xde\xaa\x01" "\x8e\xf9\x06\x93\x74\x29\x11\x1e\xad\x58\xe6\x29\x9c\x57\x79\x71\xcb\x85" "\xed\x39\x5d\x67\x8a\x71\xf1\xcc\x49\x9e\xdc\xee\x0d\xfa\xba\xc0\x99\x22" "\x64\x98\x53\x2d\x03\xfd\x33\xcd\x4d\x8e\xcb\xa7\xd8\xdb\x71\x9c\x28\x29" "\xca\x91\xd6\x90\x32\x3c\x86\x12\x2d\x2e\x8b\x86\x06\x39\x26\x1a\xda\x44" "\xca\x67\x42\x61\x64\x19\xa8\x56\x27\x41\xe3\x16\xc4\x81\x4a\x8e\xef\x06" "\x67\xa7\x2c\xf0\x8d\xfe\x0b\xd5\x43\x1b\xdc\x96\x60\xe6\xb2\xb1\xcc\x68" "\xe7\x8b\xa0\xa9\xe0\x2d\xf6\x5b\x21\x2f\xfb\xcd\x52\x27\xf2\xee\x06\x48" "\xe1\xba\x05\x8e\x39\xfc\xa9\x93\x06\x29\xb9\x3e\x66\x27\x26\x41\x38\x1a" "\x26\x52\xfd\xda\x58\xfa\x56\xd2\x43\x29\x72\x35\x37\x13\x81\xae\xeb\xfd" "\x28\xbd\xc8\x9d\x61\x60\x41\x3e\x7d\xb2\x33\xcc\xb0\x82\x53\x36\x31\x5c" "\x58\x8d\xa5\x29\x70\x3a\x95\x01\xe8\x8d\xc7\x35\x51\xe7\x42\x0b\x5d\x4d" "\xf9\xa8\xb9\xa1\x05\x34\x89\xbd\x60\xef\x5c\xba\x36\xb5\x53\xb0\x3f\xee" "\x0b\xc3\x7d\xe2\x8b\xc4\x33\x9a\x3b\xa6\xc2\x2f\xd8\x1e\x66\xd2\xa4\xff" "\xf0\xdb\xf7\xf1\x72\x88\xf7\x49\x00\x70\xa5\xc9\x6c\x99\x44\x20\x7b\xf5" "\x57\xcc\xe8\xeb\x80\xd1\x68\xf0\xcf\x75\x53\x29\x54\x75\x07\xcd\x02\x2d" "\xe6\x51\x79\xba\xec\xf8\x0a\xe1\xe4\xa2\xa9\x86\xbb\xa8\xb1\xb3\x03\x15" "\xb0\x84\xe3\x1a\xa0\x44\x9d\x6c\x0f\x30\x1a\x2a\xc5\x6c\xa3\x7a\x4e\x53" "\x00\xc8\x82\xb7\xfe\xa3\x07\x35\xf1\xec\x81\x15\x95\x46\x98\x13\x76\x3f" "\xb6\x82\xef\xa2\x73\x7f\x31\x19\x38\xc8\xfc\xb3\x7b\x70\x8f\x55\x83\x08" "\xb1\x25\xb9\x30\xef\x8a\xa0\xdf\x0d\x75\x7b\x2e\xae\xa6\x71\x28\x2a\x69" "\x0f\x91\x7e\x86\x46\x10\xe2\x6b\x59\xb3\x2f\xe5\xf8\xf9\xd2\x7e\x08\xb7" "\xfc\x84\xd7\x42\xae\x31\x79\xd7\xcb\x31\xd9\xfe\x1a\xd4\x18\xd4\x2b\xda" "\x72\xf3\x11\xce\xa6\x00\xa9\xe1\x3a\x60\x39\xe2\xcc\x3a\x52\x6f\xd0\xc9" "\x34\xc4\x21\x97\x0d\xdc\x7c\xe6\x16\xfc\xa7\xe4\x9f\x39\xdf\x51\xcf\x5f" "\x18\xfc\x34\x55\x1e\x8f\xc7\xe5\x14\xd8\x05\x8a\x02\x1a\x57\x2c\xfc\x7e" "\x7d\xba\x8d\xea\x6a\x30\xc0\x0a\xf5\x34\xcd\x93\x6a\x62\xc3\xab\xf0\x54" "\xb4\x64\xe4\xa7\x7a\x02\x38\x70\xe7\xf0\x77\x49\xe3\x2d\xa9\x25\x56\xfe" "\xc6\x78\x8e\x6e\x8b\xc6\x65\x7a\xe6\xaa\x64\xd2\xd8\xe4\x55\x31\x2e\xf7" "\x53\x0d\xc2\x45\xfd\x6e\x59\x73\xfc\xc3\x83\xee\x39\xf0\xd8\x86\xea\x35" "\xcf\xfd\x35\x61\x70\x82\x92\xeb\x9c\xba\xaa\x4c\xf6\xae\xd7\xfe\x8f\x84" "\xef\x9d\x59\xeb\xb5\xa2\x82\xf7\xe8\x1a\xbc\xe5\x46\xb7\x94\xc2\xba\x3d" "\x0b\x7e\x66\x59\xb4\xe9\xa2\x72\xfb\xde\x4f\x2c\xdd\x08\xd4\x0a\xf9\x5e" "\x95\x72\x5b\x62\x29\xaf\x5f\xde\xed\x4a\xfe\x26\x86\x9c\x17\xf0\xb1\x98" "\xd5\x89\x2b\xc1\xe2\x1f\xd6\xdc\x74\x65\xf8\xe2\xca\x8b\xad\x82\x03\x04" "\x7e\x94\x27\x5e\x7e\xa0\x5a\x8b\xe2\x19\x50\xd9\xfa\x68\x68\x0b\x0e\xfc" "\x99\x1b\x35\x58\x30\x5b\x75\x54\x0a\x9d\x2c\xf3\xd5\x94\x7e\x4c\x27\xd6" "\x7b\x3b\x85\x49\x12\xa2\xea\x87\x0c\xea\x74\xf4\x5a\xa3\x90\xf0\x64\x4a" "\x11\xb2\xed\x9f\x22\x9c\x55\xad\x39\xd0\xfc\x14\xa4\x03\x49\x0f\x9b\xb7" "\x89\x79\x20\x5c\x06\x05\xad\xd1\x5e\xc7\x75\x06\x02\x0e\x8b\xcb\x2a\x6d" "\x4f\xdb\x34\x5c\x17\x10\xeb\x7e\x76\x79\x97\xe0\x40\xec\x16\xa2\xc4\x37" "\x5a\xf2\xda\x9e\xea\x88\xb7\xbc\x57\xb2\xf8\xfc\x7c\xaf\x4d\x70\xf0\xfc" "\xa7\x9a\xe7\xba\x8d\x9d\xe5\xe1\x2a\x5e\xb2\x20\x0a\x9d\x9c\xe1\x07\x01" "\x1f\xac\xd1\x09\xa1\x00\xa4\xc2\xda\xe6\x29\xd2\xa8\x8c\x90\xa1\x81\xb7" "\x91\x6f\x35\xd0\xbf\xf6\x12\xad\xf1\xac\xaa\x2e\x20\xdc\x7b\xde\x19\x49" "\xc0\x80\x36\xb8\x8a\xfd\x97\xc1\x6a\xd5\xf7\xfa\x08\xa4\xf5\xaf\x4f\xdd" "\x33\x18\x42\x4f\x8c\xb6\xa6\xeb\x57\xd5\xa8\x28\x08\xc7\xa9\xc4\x99\x20" "\x87\xed\xd8\x47\x24\x28\x88\x8d\x08\x08\x45\xa0\xdd\x3f\x08\xd4\xfa\x46" "\x93\xf0\xa7\x95\xe2\x01\x2b\x95\x48\xa4\xff\x69\x3f\x55\xf3\x6e\x87\x97" "\xc2\x1a\x88\xa5\xfe\x7e\xea\x36\x95\xde\xa9\x77\x93\xde\x34\x43\x45\x99" "\x7b\x0e\xe6\x63\x37\xd1\xe4\x3a\x48\x0b\x3e\xe6\x2f\x00\x5d\xde\x83\x09" "\x50\xab\x68\xa9\x4b\x50\x83\xf5\xc8\x18\xce\x59\xf1\x2c\xbc\x58\x4b\x7d" "\xef\x2e\x0c\x6d\x28\x06\x5e\xa8\xe9\x83\x9a\x83\x2a\x2a\x76\x4a\x45\x03" "\x70\x96\x64\x4a\x7a\xea\x53\x9e\x0c\xe5\x02\xbd\xd8\xad\x39\x5e\x34\x38" "\x99\x3b\x96\x97\xef\x9c\x8b\xb4\xac\x1f\xf9\x89\x30\x84\x98\x81\x95\xd1" "\xdb\x0d\xd9\xa8\x8e\x63\x42\x10\x0a\xbe\xfd\x7e\x31\x93\x64\x17\x2f\xc4" "\xd4\x3e\x0f\x26\x24\xb3\x9d\x05\x5d\xd0\x91\x82\x8d\x6b\xef\x8d\x7e\xf3" "\x71\x99\xde\xe1\xfb\x21\x9d\x5a\xd7\x38\x50\xfb\x28\xe6\xe4\x2b\x34\xaa" "\xbd\x84\xe8\x35\xa8\x78\xee\x41\x3a\x84\x13\xaa\x45\x42\xce\xdc\xe1\xae" "\x30\x49\x9d\xa6\x48\x3a\x5b\xc2\x11\x6a\xda\xed\x2b\x27\xe9\xad\xc6\xe6" "\x0e\xda\x53\xb6\xb4\x04\x4b\xf5\x5f\x5a\x6c\x5a\x29\xac\x5e\xec\x4c\x70" "\xb2\x87\x4d\x1b\x09\xb9\x99\x70\xe3\x4f\x10\xad\xd3\x6e\xa0\x97\x36\x35" "\x8b\xff\x9b\x6e\x98\x3c\x19\xfc\x0d\xde\xbf\x36\xff\x98\xad\xa0\x84\x05" "\x43\x53\xba\x8f\xb3\x2a\x84\x1b\xf1\x04\x1c\x32\xd9\xcf\x66\x75\xb7\x63" "\xf1\x19\x83\x5e\xd5\x33\xf1\xf5\x2d\xc2\x35\x24\x62\x98\x14\xec\xc9\xe9" "\xe5\xc7\x90\x64\x29\xa2\x48\x7d\x88\x79\xfc\x02\x49\x4a\x64\x95\x5a\x12" "\xc8\x26\x7b\x4b\x8a\xb7\xd6\x28\x58\x57\x00\xc1\x76\x63\xcb\x4c\x8e\xe5" "\x07\xab\x5b\xdd\x79\x0a\x94\xae\xa2\x76\x98\x9b\x1b\x70\x0d\x55\xec\x58" "\x6a\x1c\xdf\xe4\xfb\x5c\x2d\x45\x75\x00\x20\x10\xe9\x80\x51\xff\x0b\xb8" "\xfe\x8e\xc4\x7b\x55\xe7\x70\xe9\x05\xf3\xc0\xba\x1b\x93\xa4\x65\xdd\xc8" "\xdc\x0b\x25\xe6\xaa\x05\x9c\x64\xf8\xc0\x5d\x31\x94\x78\xb9\xb6\xdd\x77" "\xba\x1a\x4b\xe1\x29\x83\x1a\x7f\x56\x2d\xf6\xc1\x1b\xa3\x35\x7a\x0b\x12" "\x29\xd4\xa0\xab\x6a\xda\xf6\xa0\x25\xe6\x69\x73\xef\xd9\x75\x48\x43\xea" "\x31\xe2\x7b\x1c\x4b\x5d\x3c\xab\x87\x79\x0c\x65\xf1\x63\x85\x7a\x9f\xe6" "\xed\xcd\x2d\xa6\xc3\x34\x86\x88\x27\x71\x64\xd6\xa2\x34\xe0\x05\xc6\xd3" "\x36\x7e\xa3\x65\x8d\x4c\xb2\x30\xb3\x99\x65\x50\x57\x13\xf5\x11\x66\xec" "\x8a\x31\x51\xdc\xe6\xff\x3b\x13\x56\x36\x51\xeb\x51\x30\x5a\xa5\x78\x42" "\x97\xdb\xf8\x65\xe5\xc5\x40\x40\xc9\xaa\x9d\x8e\x95\x51\xa6\x35\x68\x6d" "\x96\x97\xb3\x34\x00\x65\xbd\xd4\x07\x00\xfa\x0b\x4d\xdc\xb3\x0f\x87\xf0" "\x73\x4e\x24\x5b\xef\x7b\x59\xdd\xd7\xe7\xa4\x7d\x9f\x69\x3c\xa5\xe8\xa1" "\xa3\x70\xd5\x3d\x9c\x38\x8c\x32\x6a\xf2\x41\x22\x99\x84\xef\x21\x91\x88" "\xbe\xe2\x9f\xd0\x2e\xc0\xec\x67\xf7\xde\xfd\x53\x9e\x94\xb1\x1d\xf9\xae" "\x4e\xba\x7b\x4f\x4f\x5b\x46\xb8\x5f\x87\x1d\x29\x0d\x5a\xb5\xa3\x15\x0c" "\xd4\xd7\x8f\xff\xfa\x89\x5c\x8e\x3b\x61\x88\xbb\x9a\x9c\x1f\xd0\xe4\x88" "\xd1\xf0\xf2\x46\x99\x02\x61\x84\xe7\xce\xc8\x88\xfd\x11\x66\x84\x3d\xf0" "\xb5\x60\xbe\xa4\x23\xf4\x3f\x9b\x31\x58\xbc\x43\x3d\x4d\x60\xa0\xe6\xe2" "\xbd\x3c\x1f\xa3\x9d\xe6\x65\x53\xae\x90\xc9\x9c\x30\x66\x58\x7f\xed\xaf" "\x65\x5e\xb0\x36\xb9\xa3\x68\x42\x87\x30\xfe\x59\x1f\x02\xae\x86\x70\x64" "\xe4\xcf\x9f\xdd\x01\x75\xa5\x7c\xe1\xd4\x2c\x1d\x4b\xe8\x72\xca\x0c\x14" "\xdd\xe2\xf7\xf7\x8b\x2a\x25\xf4\xc8\xea\xa0\x56\x35\x39\x14\xb1\x5a\x04" "\xb8\x63\xd9\x93\x4f\x34\xe8\x1a\xb7\xa2\xbe\x32\x8d\xd7\xea\x36\xf5\xf1" "\x32\x03\x46\x62\x6a\xa2\xd8\x0e\xe6\x20\x3f\x8b\xe0\x0f\x70\x39\x65\x03" "\x1d\x66\x83\xd2\x60\x0c\x0f\x2b\x07\x0f\x1d\xaa\x59\xce\xd8\x32\xf7\xef" "\x70\xc3\x2f\xa8\x01\x8d\x22\x2b\x8c\xa7\x81\xcd\xe6\x08\xe6\xa0\x93\x67" "\x14\xd3\xe5\xd3\xa9\x91\xb6\x18\x27\xb8\xca\x23\x58\x57\x04\xec\x84\x45" "\x5e\x81\x11\x86\xbf\xe6\xeb\x70\xa7\x2c\xc9\xa1\x27\xcc\x21\x34\xf2\x87" "\x5e\xab\x85\xcb\xc1\x5f\x07\x2e\x58\x99\x07\x7b\xe3\x41\xa7\x58\x23\x65" "\x48\x7d\xca\x40\xbe\x97\x82\x29\x2a\xac\x2e\x17\xea\x0e\x43\x91\xb9\x8a" "\xd6\x07\x01\x02\x99\xc5\x24\x5d\x22\x71\x7b\x04\x4b\x6e\x82\x2b\x00\x48" "\x72\x2c\x06\x59\x69\xee\x48\xe3\x4c\xc6\x1a\x41\xe0\x90\xae\x78\x5d\xf0" "\x3c\x13\x19\x0e\xb8\xbf\x65\x9a\x57\x0b\xe8\xc0\x3e\xc4\xef\x99\x2a\xd9" "\xab\x7b\x91\x5f\xb2\xb8\x3f\xb8\x56\x72\xa9\x9a\xe9\x34\xb9\x10\x4b\x53" "\xdc\x1b\xf5\xda\x5f\xd1\x47\xa3\x24\xba\x42\x93\xe8\xfd\xe7\xe3\x7e\x03" "\x6d\xe1\x4d\xe9\xc3\x60\x97\x1d\x09\x4a\xe1\xbf\x9c\x09\x28\x71\xce\x1c" "\xd0\xa8\x78\xd6\xa2\x54\x29\x20\xa3\xde\xab\xa5\x62\x5a\x70\x81\x1a\x3e" "\x34\x75\x83\x0f\x91\xd0\x55\x6a\xd8\x1d\x95\xc3\xb4\xe7\x06\x2e\x82\x54" "\x11\xeb\x91\x57\xea\xaf\xd5\x5a\x7b\x4d\x56\x2a\x0b\x70\x6e\x5c\x2c\xbc" "\x96\xa2\xae\xa5\xdf\x90\x37\x51\x6f\x94\xa5\xa7\xf5\x0a\x77\x87\x75\x9b" "\x66\x7d\x77\x97\x34\x94\x7e\xa3\xc2\x02\x31\x53\x7b\xb8\x4c\x89\x6d\x73" "\xec\x45\x98\xc8\x6d\x4b\x23\x01\xa5\xab\x2a\x8d\xa5\x54\x55\xa9\x33\xeb" "\xec\xc0\x59\xb5\xb8\x63\x72\x10\x16\x45\x15\x1f\x6f\x61\x7d\x20\x32\x07" "\xf9\x32\xc8\x27\x55\x23\x5a\x56\xb0\xae\x64\xc1\x06\x9e\x13\x97\x75\xa7" "\xbd\xe1\x39\x4f\x7d\xc4\x4b\x0b\x74\x35\x39\xb1\x9d\xa1\x65\x0f\x6a\x32" "\x0c\x13\x67\xae\xef\xa5\x7f\x39\x2e\x60\x02\x0a\x13\x1e\x75\x20\xac\x1f" "\x64\x8c\x7a\xdd\x1f\x48\x7c\x03\x72\x38\x04\xdd\x4e\xd9\x24\x80\x61\xdd" "\x39\x49\x57\x33\xf1\x17\x62\x56\x53\x16\xb8\x51\xba\x36\x7b\xb9\x13\x3e" "\xf4\x71\x91\x0a\x02\xae\x89\xc0\x12\xf4\x5c\x6b\x7e\x7e\x71\x79\x34\xb3" "\x9a\xa8\xe2\x17\x7c\x7d\x96\xfa\x6d\x66\x73\x08\x43\x13\x83\xda\x43\x80" "\xe6\xe0\x88\x55\xaf\x15\x72\xc0\x71\xfe\xa1\x46\x3b\x97\x1f\x5a\xad\x4c" "\x65\x0e\xb8\x01\x01\x35\x19\xe0\xa2\x89\xc1\x89\xc1\x68\xe2\x81\xfe\x0e" "\x67\x7f\x92\xe2\x06\x4d\xac\xc2\x37\xad\xea\xc6\xcd\xfa\x21\x65\x1e\xc0" "\xd1\xea\x97\x99\x1c\x90\xb0\x0a\xb2\x84\xe0\xec\xb1\x3b\xf9\xab\x4d\x70" "\xd1\xd2\x38\x78\x76\xdb\xc3\x2b\x78\xa9\x1c\x7b\xa9\x83\x89\xec\x02\x03" "\xb1\x9a\x90\x2f\x68\x18\xee\x6a\xcd\x93\x54\x1c\x07\xea\xb6\x54\x4b\x9b" "\xbe\x56\x8d\xa4\xe7\x56\xfa\xfa\x22\x0d\x38\x9a\x9d\x5c\x91\xeb\xb7\xbf" "\x4b\x0c\xf9\xd2\xe0\x99\x41\x98\x73\xe2\x4a\x7c\x49\x33\x85\xf2\x33\xdd" "\x2c\x41\x32\x01\x41\xe5\xd2\xaf\xf2\x33\x89\xa7\x9d\xd4\x85\x35\x47\x15" "\x24\x98\xd3\x4a\x88\xba\x1d\x64\xcc\x32\xac\x07\x9d\x4d\x85\x82\x74\x0f" "\xa0\x20\x4b\x33\xcb\x32\xd2\x47\xfc\x84\x25\xb3\xa6\x61\x8b\x25\xa5\x34" "\x07\x97\x90\x0b\xb9\x43\x7f\x47\x15\x9d\x37\x65\xc0\x63\x88\xd4\xa5\xe5" "\xdf\x68\x0c\x91\xe2\x5f\xaf\xd5\x58\x09\xaf\x77\x7b\x00\xce\x84\x77\x39" "\x50\x96\x68\x1f\x1e\xc0\x21\xed\xbd\xcc\x52\xcc\x7f\x32\x73\x7f\x80\x0b" "\x3e\x58\x11\xbc\x1a\x5e\x1c\xc7\xec\x18\x26\x6e\xaf\xe6\x35\x49\x6d\xed" "\xc9\x8c\x63\x32\xa6\xa3\x97\x8f\xa6\x21\x38\xce\xee\xdd\x59\x54\xa6\xd8" "\x1a\x13\xe7\xbd\x19\xa1\xc2\x3f\xf9\x08\x7a\xcc\x62\x6c\x04\x52\xc8\x94" "\x39\x3e\xc6\xbd\xf2\x3b\x7d\xef\x82\x65\xd2\x83\x01\xc7\xe1\xc2\xd5\x81" "\x37\x66\x63\xf6\xa4\xda\x2c\x04\x8d\x97\xee\x31\x88\x4e\xcd\xff\x25\xbc" "\x0b\xe5\x8d\xdb\x1c\x1a\x38\x12\xe5\xeb\x9c\x47\xc6\xed\x24\x21\x59\x2c" "\x41\x2c\x23\x54\x79\x3c\xd4\xca\x72\x5f\xeb\xe8\xd1\x89\x92\x8b\xfa\x47" "\x25\xa1\x05\x96\x73\x23\x67\x9c\x3e\x00\x28\xa4\x62\x4a\x86\x2e\xb3\x7c" "\x9b\x8d\x19\xc7\x59\x50\xfc\xec\x0a\xaf\xf4\x9f\x9f\xe1\x1e\xf7\xd9\x65" "\x83\x6a\x2f\x9b\xd6\xd8\xa9\x37\xf0\x4a\x36\x67\xce\xf0\x25\x15\x6b\xba" "\xc9\xc5\xb8\xe6\x9b\x04\x9d\x03\x72\x69\xed\x3a\xa5\x99\x4c\x35\x15\xf2" "\xce\x98\x11\x45\xcc\x75\xc1\x70\x86\x27\xf1\x30\x6f\x11\x73\x00\x16\x43" "\x88\x17\x45\x1d\xdd\xa5\x2a\x28\xa4\xfc\x67\x47\xa4\x31\x98\x88\x8b\xde" "\xf8\xff\x3c\x90\x16\x70\x53\xe8\xfe\xc2\x6c\xcd\xb0\x6d\x59\xb4\x50\x4c" "\x49\xc3\x45\xc5\xcb\xa1\xd0\xbb\x61\x87\xfc\x28\xff\x5e\xdf\xe7\xe1\x62" "\x25\xff\x44\x6d\xb9\x14\xc6\x2d\x7c\x91\xe8\x98\x38\x8a\xfa\x29\xc4\x55" "\x91\xe9\xf0\x3c\xc4\x68\x10\xf5\x7c\xbb\x10\x07\xff\x72\x18\x46\x10\x4b" "\x6b\x08\x2e\x6d\x2a\x9f\x0e\xd3\xd8\x3d\xf8\x0d\x47\x6f\x3e\xf4\x77\x07" "\x01\x51\x55\x4c\x33\x22\x29\x70\xb9\xef\x68\xb6\x19\x6c\x2b\xe4\xde\x5d" "\x40\x6b\x7c\xa5\xcc\xd7\xfe\xe7\xee\xb0\xdf\xd1\x18\xd4\x11\x11\xa3\x7c" "\x14\x98\x7c\x7c\xe3\x2f\x21\x58\xb1\x57\x6d\x93\x38\x01\x55\x7f\xef\x26" "\x57\x73\x0d\xe3\xb5\xe5\xde\x3a\xa5\xb7\x4b\x71\x6d\x53\x67\x63\x6c\x98" "\xd9\xa6\x09\x5c\x4f\xf0\x5c\x41\x1d\x89\x01\x5c\xc1\xf9\x8f\xfa\xe3\xa2" "\xbe\x64\x86\x4e\x11\xfa\xb3\x0a\x8b\xf5\x97\x58\x1f\xc6\x71\xd7\x5a\x94" "\xd3\x9c\x90\xfb\x14\x4c\x17\x7f\x5b\x33\x24\xf3\x4d\xe7\x02\x5e\x1f\x8d" "\x2d\x5a\x24\x97\x58\x0d\x03\xa2\xef\x54\x58\xbe\x05\xac\x90\x33\x3d\x34" "\x8b\x10\xec\xf0\xa6\x4a\xe0\x69\xd2\x53\x5c\x3e\xe7\x3c\x3d\x68\xe4\x54" "\x99\x57\xdc\xfb\xfa\x8f\x99\x26\xd9\xb0\x1b\xd8\xda\x93\x88\xd7\x33\xda" "\x6e\x5d\x8d\xea\x32\xc6\x38\xb4\x45\xd8\x1e\x45\xd7\x90\x65\x83\xb7\xe2" "\x6f\x6e\xb0\x16\xf5\xf1\xcc\x68\xef\x56\x3e\xd6\x97\x9d\x48\x4b\x92\xab" "\x19\xb3\xa9\x22\x83\x6a\x20\x60\x76\x52\x52\x22\xc6\xf0\x30\xc8\x96\xb4" "\x6d\x44\x9c\xa7\x86\x28\xa1\x84\xcc\x98\xca\x21\xa1\xef\x70\x0c\x04\xfa" "\xa5\xbf\x20\xc3\x11\xde\xe4\xa5\xa0\xdd\x58\x4f\x76\x49\xa3\xb0\x8e\x5c" "\xb4\x99\xf4\xbf\x1e\xa7\x19\xb2\x55\x9c\xf0\x39\xfa\xa7\x0f\x2b\x28\x45" "\x42\xfb\x25\x2d\x84\xa2\x13\x7c\xbe\x34\x31\x5b\x9d\xa8\x5d\x7c\x06\xb8" "\xb4\x3a\x0c\xbb\xb9\xb5\x4b\xd2\x0d\x7a\xac\x57\x30\x87\xa6\x1f\xbf\x6f" "\x20\xb1\x65\x51\x7c\x88\xb0\x18\x51\xe3\x8d\x6d\x4c\x85\xaf\x34\x10\x59" "\x9f\xe9\x87\x5b\x0b\xdc\xdf\x51\xb7\x3d\x03\xf3\x0b\x39\xc3\x25\xf0\x33" "\xd4\x10\xa7\x4c\xfc\x74\x80\x99\x48\x81\x09\xb1\xb1\xa2\x3d\xad\xa1\x8e" "\xf1\x92\xa7\xb8\x88\x2c\x43\xdb\x39\x3c\xa1\xb5\x5f\x65\x1f\x71\x3c\x7b" "\x9b\xf4\x58\xa0\xba\x10\x7f\x2a\x96\x95\x2e\xe9\x9b\x7d\x5f\x0b\x43\x04" "\x56\xa5\xd0\xca\x11\x14\x95\x08\x94\x66\x98\x86\xcf\xf8\xcb\x01\x04\x96" "\xb8\xe0\x40\xa3\x07\xd1\x9b\x9a\x71\xb8\x1e\xb2\x15\x9e\x43\x09\x2f\x5f" "\xaf\xdd\x11\x5f\xa7\xc4\x52\x01\xb7\x5d\xc9\xb1\x92\xe8\x0b\x90\x77\x00" "\x88\x55\xe6\xe1\xd8\x9e\x50\x9a\x8a\x19\x9e\x05\x48\x0c\x6e\xa9\xe3\x15" "\xc1\x54\x1b\xa0\xdb\x9a\x53\xf2\x7b\x93\x60\x8d\x96\xda\x3a\x0b\x0d\x0d" "\x6e\xc1\xdd\x12\x41\x03\xee\x2b\x5a\x39\x0d\x57\x77\xc2\x21\xde\x80\x87" "\x7d\x57\xe3\xa4\x82\x8c\x91\xc1\x4b\x3d\x5a\xf1\x2a\xa1\x12\xbc\x0e\x6f" "\x51\x5f\x18\x16\x21\xf1\xe7\x1e\x06\xf9\x9a\x36\xfe\x15\x39\x3e\x14\xc8" "\x3f\xef\x72\xbf\x8d\x0e\xc5\xbc\x2d\x0e\xa5\x83\x89\xc3\x44\x8d\xe5\x21" "\xe5\x16\xae\x30\xf6\x1c\xc2\xb9\x27\x63", 4096); *(uint8_t*)0x2000237c = 0; *(uint8_t*)0x2000237d = 0xd; memcpy((void*)0x2000237e, "\xbf\xce\x43\xf8\xee\x5e\x5f\xc4\xf7\xee\x0d\xc9\xea\x8e\xbf\xa1\xd2" "\xe2\x56\x3a\xca\x58\xd8\xf0\x12\x25\x49\x0a\x35\x95\x9b\x44\x5f\x87" "\xde\x90\xfc\xee\x1b\xc2\xc1\x86\x1d\x15\x48\x92\xab\xeb\xfe\x1e\x49" "\x2e\x1f\x21\xdc\xc2\xe6\xa3\xea\x15\x4c\xc1\x2e\x99\x5a\x28\x62\xf8" "\x29\x6d\x48\xd5\x57\x1b\xb6\x40\xab\xa4\x11\x27\x63\xe6\x8d\x02\x2d" "\x07\x90\xa5\xda\xaf\xfb\xa0\x45\x73\x2f\xd2\x27\xd2\x0e\x24\x02\x78" "\x09\x57\xea\x56\x46\xdc\xfb\xb8\xa1\x44\xd6\xd8\xfb\x26\x97\x0c\x71" "\xcb\x4c\xf2\x4f\xa5\x9a\x58\x56\x47\xde\x0b\x10\x35\x52\xf5\xac\x54" "\x60\xd7\xeb\xf6\x0b\xb7\x7f\x64\x9d\x7b\xa3\x78\xa9\x3e\xa0\xdd\x4a" "\xe1\xcd\xc8\x4d\x2a\x15\x35\xfd\x14\xf3\xc3\x7f\x93\xa7\x78\xde\xc3" "\xd7\x90\x5a\x60\xe8\xfa\xe4\x72\xd6\x34\x9b\xa7\x34\x47\x71\xf8\xea" "\x1b\x97\x77\x02\x8d\x13\x7c\xb4\x04\xac\x54\xa5\xb8\x3b\xc2\x2f\x01" "\xe9\x5a\x1d\xf7", 208); *(uint8_t*)0x2000244e = 9; *(uint8_t*)0x2000244f = 5; *(uint8_t*)0x20002450 = 0; *(uint8_t*)0x20002451 = 0x2d; *(uint16_t*)0x20002452 = 0x20; *(uint8_t*)0x20002454 = 2; *(uint8_t*)0x20002455 = 7; *(uint8_t*)0x20002456 = 0x20; *(uint8_t*)0x20002457 = 0; *(uint8_t*)0x20002458 = 4; memcpy( (void*)0x20002459, "\x84\xc4\xc3\x12\xc7\x25\x6a\xcb\xb6\x86\xa6\xb1\xaf\x78\x52\x98\x0c\x32" "\xc5\x2b\x5d\xbe\xde\xe6\xdb\x71\x3d\xd9\x76\x5f\xab\x9c\x48\x65\xa8\x03" "\x74\x86\x4b\xc2\x63\xdf\x4d\xde\x49\xeb\x95\xab\xd7\xba\x92\xd2\x97\x21" "\x50\x71\x50\x78\x91\xc1\x71\xe3\x29\xf2\x0c\xbb\x22\x4c\x1d\x5e\x2f\x7a" "\x91\x4f\x4a\x5f\x26\x0a\xd9\x03\xe3\x6a\xf3\xea\x3d\x93\xfb\x1a\x9c\xf2" "\xe0\xed\x08\x7b\xd9\xc8\x4a\xa5\xf5\xf9\xed\xa9\xfe\x44\xad\xf8\x29\xc1" "\x5b\x74\x40\x2d\xec\xb5\x63\x9b\x82\xb9\x00\xb2\xde\x49\x67\x3a\x0b\xea" "\xf7\xfe\x58\xd7\x89\xb0\xa3\xe7\xca\xc6\x76\x44\x3a\xaa\xf6\x88\x7a\x39" "\xd3\x38\x9b\x63\x5d\xf3\xab\xd7\xd1\xdd\x33\x8f\x83\x7f\xc0\x70\x9a\x72" "\x67\xe8\xd0\xfb\xcb\x43\x96\xc5\xc7\xfe\x8e\x34\x10\xd1\x61\x45\xbc\x00" "\xe8\x8d\xe6\x23\x6e\x1d\xf4\x26\x49\x92\x1d\x88\x2a\x17\x1a\x77\x70\xa9" "\xc4\xdb\x26\x13\x40\x28\x9d\xeb\x43\x72\xcf\x0c\x5f\x52\xfa\x86\x97\x2e" "\x25\xc6\xd6\xb2\x6b\x24\xdc\x5c\xc9\xfe\x55\x5c\x16\x04\x73\xc2\xea\xf4" "\xea\x95\xf8\xce\x59\x05\xac\x37\x78\x08\xa2\x38\xf4\x77\x46\xfd\x63\x5b" "\x63\x72\x45\x2b\xed\xc0\x54\xc5\x42\x8b\xaf\x25\xc7\x89\x43\xd7\xa0\x1c" "\x5f\x0c\x04\xf2\x85\xa0\x24\x08\x29\x58\xf7\x10\xc0\xb4\x09\x26\x3a\x73" "\x76\x8c\xb9\x43\x82\x41\x62\x60\x73\x6d\x33\x89\x17\xd1\x50\xd5\x3d\x5a" "\x22\xb7\x72\xc5\xe5\x63\xd8\x84\xd0\x35\xfc\x4f\xe4\x2f\xe2\xd5\xd0\xcc" "\x11\xab\xea\x90\x60\xc3\x38\x1e\xcf\x37\x9f\x57\x00\xb1\x3e\xab\x0f\x62" "\xec\x14\x9c\x77\x66\xf8\x8f\x1c\x27\x9c\xbc\x0a\xcd\x0c\x08\x03\xab\x5b" "\x79\x91\xc3\x9f\xbb\x4c\x74\xc8\x27\xa9\x69\xed\xe7\xfa\x72\xe9\xd3\x6d" "\x99\xfb\xa4\xb2\xae\x0a\x85\xc4\xa5\x75\xc0\xcb\xc4\x36\x48\x79\x8e\xc6" "\xc1\xea\x7a\xf4\xed\x73\x99\x4a\x36\xc0\xfc\x13\x59\x21\x30\x38\xc9\x3f" "\xb6\x9a\x5b\xb0\xfb\x81\x07\x47\x08\xf7\x98\x00\x76\x8d\xb7\xe6\x78\xe9" "\xdd\xe3\x47\xbe\x04\x87\x3b\x77\xe7\xa8\xed\x2a\xe4\x1c\x37\x3e\xd9\xf1" "\xeb\x96\xaf\xe3\x2d\x2c\x97\x9d\xf0\x1b\xf9\x58\xb6\x20\x00\x33\x6e\x05" "\xcd\xb6\x86\xc0\x94\xc7\x58\x17\x01\x99\x12\xdb\x7f\x40\xd8\xab\x44\x49" "\x2b\x31\x86\x7b\x0d\xb4\xbd\x7b\x5a\x2e\x52\x75\x53\xb5\x33\x01\xfb\x7f" "\x79\x69\x58\x88\x10\x9c\x46\x03\x44\x4c\x14\xc3\xea\x6f\x00\x41\xa1\x5b" "\x32\x61\x70\x56\x35\xc4\xbf\x95\x38\x33\x88\x19\x1b\x0a\x85\xb0\x83\x27" "\x4a\x77\x51\xfb\xb3\x38\x3a\xf7\x99\x0f\x24\xc0\xcf\xfa\x9e\xd3\x31\xbd" "\x2b\xe7\xc7\x1b\x44\xf5\x05\xb2\x43\x4b\xbb\x90\x64\x79\x8d\x36\x9b\xaf" "\xb0\xf5\x62\xcf\x92\x4b\x06\x9a\xbb\xc6\x3e\x5f\x64\x66\xe9\x89\xe3\xcc" "\x7d\x08\x88\xba\xdf\x13\x46\xa2\x88\x1a\x71\xce\x2d\x24\x1b\xc3\xc4\x06" "\xd1\x7a\x2e\xa2\x9b\x43\x29\x15\x71\xe1\xb4\x33\xcf\x82\x36\x2b\xca\xe7" "\xea\x87\xcd\xb7\x6b\x39\xff\x67\xe8\xbc\x2e\xcf\xac\xdd\x73\x33\xbc\xd5" "\xc8\x21\x4b\xe3\xe7\x39\x5d\x85\xc5\x18\x97\x3c\x97\x11\x3c\x14\xaf\xd9" "\x3b\x00\xaa\xeb\xdc\x86\xb0\x10\xc0\xb7\xa8\x66\x3b\x8e\x63\xa3\x80\x56" "\x43\xa3\x43\x9a\x04\x4e\x9a\x39\x14\x02\x62\xa5\xe9\x79\xed\x7f\x09\x91" "\xaf\xc3\x8f\xd3\xdd\x34\x67\x02\xcb\xe9\x6f\x11\x69\x48\x9f\x25\x49\x23" "\xf3\x3c\x8d\x6d\x50\xb0\x95\x0b\x76\xff\xd7\xfc\x06\xf0\x57\x0e\xf7\x89" "\xe4\x11\xec\x98\x7d\xfd\x04\xce\x72\x4e\x9f\x7c\xd3\xe6\x14\x1a\xa4\x36" "\x9f\xef\x20\xfd\x0e\xb9\x0a\x91\x34\x7e\xeb\xf5\xa0\xb9\x5e\x23\xb1\xff" "\x45\x91\x44\x40\x67\xe7\xbc\x20\x6d\xa8\x49\x00\x4c\xfd\x51\xd0\x93\x6f" "\x5f\x95\x82\x7c\xf3\x8e\xdf\x60\xdb\xd9\x0c\xa8\xdc\x4c\xf5\x42\x1d\xc6" "\xd9\x21\x13\x8d\xe9\x20\x08\x12\x8b\x34\x7d\x30\x3d\x49\x87\xa6\xac\x09" "\xf8\x0d\x1a\xf4\xe6\x1c\x77\x5a\xf9\x79\x74\x2d\x40\xa5\x26\x5d\x47\xe6" "\x3c\x47\xe7\x29\xfd\x04\x08\x87\xc2\x4d\x98\x1f\x22\xa1\xd1\xaa\x91\xd6" "\x49\x37\x91\xc0\x93\x37\xe0\xa7\x9c\x89\x79\x28\x36\xd1\xda\x32\x16\xa1" "\x64\xe9\x0e\xfa\xd2\x26\xb2\x5b\xf8\x32\x3b\xac\x55\x2b\xc0\x89\xc5\xb8" "\x6d\x2c\x48\x5d\xf4\x00\x40\x82\x0b\x50\x3c\x26\x17\x50\x87\x1f\xa3\x58" "\x97\x95\x5a\x99\x56\x47\x33\xcc\x69\x3f\x5b\x95\xe4\xa9\xe8\x82\xa1\x9d" "\xd8\xe7\xf7\x0b\x37\x4a\x42\xdd\x38\xee\xbc\xd0\x1a\x95\x7a\xd8\x05\xc9" "\x9c\x10\x73\x6a\x40\x00\xa4\xd2\x5b\xa3\x3c\xc0\x5e\xdb\x37\xad\x19\xa9" "\xcb\x7d\x5a\xd6\x6c\xf8\xc0\xc5\x2f\xd9\xeb\x9e\x56\x09\x0d\x0e\xfb\x4d" "\x30\xcf\xe8\x98\xb1\x4e\x38\x14\xe6\xde\x85\x04\xc5\x99\xe6\x80\xe5\x45" "\x82\x91\xd3\x1b\xd2\xe8\xac\xd6\x1e\x35\x06\x3c\x8d\x55\x16\x2e\x96\x0f" "\x9c\xab\x7d\xa8\xe7\xb9\xfd\x85\x47\xc2\x78\xad\x68\xc9\xd9\xe8\x77\x62" "\xab\xec\x77\x2d\x3a\x32\x6b\x4c\x03\xf4\x5e\x47\x9a\x34\x97\xfc\xe0\x7f" "\xfc\x2b\x0c\x50\xb1\x7b\xd5\xaa\xaf\xdf\x94\x49\xde\xda\x5f\x63\x0d\x89" "\x0a\x75\xdd\xda\xba\x26\x68\x68\x60\xe0\xbe\xd0\x7d\xa9\x61\xc4\xc5\x95" "\x5b\x6a\x84\x52\x3c\x6c\x6a\x39\xd2\xab\x5c\xf5\xf8\xee\x96\x99\x2d\x36" "\xf9\x8e\xea\x80\x94\xfc\xec\xe8\x74\x09\xc8\x64\xa9\xcb\x80\x92\xf8\x07" "\x6e\x51\x6b\x81\x6a\x19\xd9\xaf\x41\x65\x57\x20\xb0\xc3\x9f\x87\xcc\x8d" "\x6a\x50\x98\xfd\xf9\x32\xba\xa2\x20\x50\x2e\x29\xf0\x66\x93\x1c\x47\x05" "\x7e\xcb\x6b\xb0\x78\x03\xee\x59\x79\xce\xb9\xa6\xff\xed\x1b\x79\x20\x19" "\x6b\xaa\xf3\x52\x5b\x99\xf8\xba\xad\x1c\x55\x4c\x0b\xd9\x9d\x6d\x64\xc7" "\x95\xe7\x40\x60\x02\x69\xd9\x65\x6e\x5e\xa1\xfd\xf5\x8d\x4a\x49\x37\x15" "\x1c\x2f\xde\x0d\xf2\x28\x9e\x0f\x83\xda\xfe\x25\x8a\x27\x47\x2b\x92\xa2" "\xe7\x18\x10\xb4\x39\x89\xa6\x19\xd6\x33\xf8\xec\xaf\xb4\xbf\xa1\xec\xf4" "\x48\x58\xd3\xf5\xe8\x7f\xd5\x49\x5f\x75\x29\x96\xb7\xc0\x04\x6f\x85\xc3" "\x07\x95\x55\x43\x48\x7c\x81\x0e\x77\x0f\x7a\x9f\x8b\x4a\xe0\xd1\xf0\x1a" "\x7d\x30\x49\xb1\xad\xe0\x4e\xd0\x32\xeb\x04\x50\x54\x27\x70\xf7\x9c\xb6" "\x1c\xdf\x65\x76\xd6\xe6\x3e\xa3\x7b\x0a\x71\x4c\x17\x52\x83\x28\xa2\xe7" "\xac\x76\x8b\x73\x2a\xe4\x4c\xb7\x6c\x2d\xb8\xa6\x69\x78\x5b\xcb\x72\xdd" "\x60\x12\x58\x7d\xc3\x7c\x56\x8e\x0c\x7d\x82\x05\x16\x5e\xc0\x9e\xa7\x70" "\x7d\xd0\x26\x8f\xe8\x70\x47\xdd\x25\xc8\x5d\x83\xaa\xa1\x86\x3d\x2f\xfe" "\x80\xea\x56\x67\x37\x33\x81\xe0\xf9\x3e\xb8\x08\x78\x28\xfa\x2b\x48\x73" "\x21\xd7\x67\x4a\x2a\x78\x2a\x47\x66\xcf\xf2\x5f\x2b\x30\x41\xc4\x51\x88" "\xa7\xd5\xa0\xf5\x85\x15\x2d\x36\x7c\x42\x49\xcd\x59\x26\x37\x0a\x5b\x79" "\x38\xbf\x60\x78\x45\xe0\xde\xb9\xa8\x14\xb7\xc1\xb5\xf5\xee\xe7\x16\x19" "\x7e\x29\xa0\x2e\xf7\x8b\x71\x7d\x3a\xca\x65\x3f\xf2\x9f\x84\x9d\x9a\x31" "\xa5\x44\x6f\x32\x70\xb9\x89\x38\x3b\xb4\x97\x85\xff\x05\xe6\x03\x87\x1d" "\x6f\xe9\x71\x14\x61\x19\xba\x47\x53\x5e\x98\x49\x93\x6b\x52\xd2\x84\x3c" "\x2b\xd3\x25\xf2\x68\x4d\xda\x50\xd9\x2d\x38\x79\x8b\x8f\x81\x0a\x4d\x15" "\xe9\x1f\xc1\xb2\x98\x2f\x8a\xcc\x28\xbd\xcc\x00\x13\x01\x7e\xaf\xcb\x3c" "\xba\xc8\xa0\x40\x84\x11\x13\x62\x11\xfc\xe7\x7c\xd8\x17\xb0\xff\xb4\x20" "\xd1\x94\xed\xd8\xd3\x86\x71\x0b\xbb\x86\x7e\x4c\x94\xd0\xcd\xae\xfe\xdc" "\xf0\x5c\x7b\x4c\xb9\x50\x15\x2c\xf0\x4b\xb2\x76\x58\xa1\x1b\xff\xea\x35" "\x77\xdb\xfb\x93\x54\x10\x77\xf0\x7d\x32\x38\x52\x72\x3b\x37\x3d\x93\x2e" "\xb4\x1e\xb4\x7f\x47\x5f\xb9\x51\xd2\x6c\xbc\xa2\x8c\x1f\xb0\x94\x06\xa7" "\x58\xa5\xf5\xc4\x92\x9f\x3c\x50\x39\x21\xc5\x9d\x2b\x08\x70\x21\xcf\xc0" "\x6f\x9b\x4a\x83\xde\xb5\xae\xd2\x68\x19\xdd\xda\xbd\xb5\x33\x84\x78\xab" "\xa7\x1d\x1d\xd0\xb7\xfc\x93\x09\x52\x89\xab\x74\x59\xfc\xd5\x08\x0a\xfc" "\xeb\xba\xf1\x08\xb5\x5e\xc5\x02\xbf\x8f\xfa\x41\xd7\xa4\x37\xde\x79\x73" "\x77\xc5\xb2\x0b\x6a\xbc\x6d\x3d\xce\x75\x52\xd6\x4a\xb0\x50\x9f\x76\x83" "\xe3\x03\x01\xf3\x32\x69\x92\xa0\x57\xf1\x10\x32\xd2\xd3\x90\x5e\x20\xef" "\xb7\x74\xe1\xe7\xa9\xc7\x53\x21\x7d\x29\xc0\x07\x42\x02\xd6\x97\x03\xdf" "\x36\x42\xc0\x90\x3a\x9f\x3e\x51\x80\x4d\x64\x9b\x63\x16\x14\xfe\x1c\xcb" "\xd5\x72\x96\xa5\xa1\xde\x99\x68\x3a\xf6\xca\xfa\x47\xa3\x24\x7f\xe2\xdd" "\xa3\x46\xd0\x97\x3b\x16\xff\xa4\x09\x28\x3a\x8d\x85\x62\xe7\x53\x62\x80" "\x19\xa5\xa2\x28\x26\x41\x3d\x79\x9e\x5e\xab\x49\x12\x03\xab\xb6\x25\xa3" "\x27\x53\x2f\x54\x6f\xec\xfe\x5e\xad\xb9\x37\x4e\x28\x65\x64\xa5\x84\x07" "\x37\xa4\xf5\xc6\x90\x74\x38\x68\x05\xd5\xce\xdd\x40\xfa\xce\x2c\x96\x03" "\x7f\xc0\x7e\xd6\x50\x25\x29\x0c\xd1\x7c\x60\x02\xf5\x40\xe7\xc7\x7e\x7f" "\xba\x15\x3d\x2b\x2e\x2e\x1f\xd3\xa9\x99\x22\xc2\x87\x39\xd3\xd6\xd0\x5e" "\x74\x55\x78\x8b\x90\xf9\x15\xe6\xc6\xad\x48\xd5\xd7\xe1\x7c\x90\x7f\x46" "\x08\x0d\x64\xea\xa6\xbc\xd0\xf6\x07\x31\xfb\x0b\x01\x89\x51\x48\x28\x5d" "\x68\xc5\x63\x14\x4a\xd6\x77\x21\x74\xef\xd4\xc5\x66\x0c\x86\xb1\x79\x98" "\x85\x61\x8a\xf7\x37\x73\x0d\xcc\xbd\x85\xa1\x66\xff\x78\x12\xfe\x33\x1f" "\x4e\xc1\x50\x9d\x8e\x10\x8e\x15\x5e\xf4\x7a\xfe\x73\xd3\xc0\xa1\x18\x87" "\xd3\xf8\x64\xdd\x41\xba\xfb\xab\x92\x8d\xcc\x9f\x65\x32\x0a\x39\x1d\xbb" "\xd7\x4a\x36\x1e\x43\xd3\x47\xd4\xf8\x94\xe6\xcf\xb2\x68\xdc\xe2\xf8\x5b" "\xad\x30\x16\xb3\x84\x09\x5d\x94\xc6\x76\x5c\xdb\xc6\x9c\x5a\xc4\x8f\x59" "\xdf\xfb\x84\x7e\x86\x4d\x66\x56\xd4\x88\x50\x51\x0f\x49\x23\xe8\xd2\x1b" "\x0b\x53\x5b\xde\x10\x35\xd7\x2e\xb6\x83\x41\xa3\x59\xe0\xd1\xf5\x94\x58" "\x0d\xeb\xb9\x54\x59\x3a\xad\x25\x47\x23\x7c\x26\x7c\x1b\x32\x83\x18\x0d" "\xd0\xdf\xeb\x7b\xb1\xc8\x9d\x03\x57\x50\x30\x31\xf5\x62\x22\x4e\x57\xcd" "\xf2\x5f\x57\x11\xd2\x2e\x40\x1c\x04\xba\x73\x52\xeb\xb8\xfc\x02\xad\x67" "\x5c\x21\xd0\xa8\x7e\x4a\xd7\x64\x26\xa7\xbb\x9c\xb9\x1a\xca\x96\x80\x6b" "\xd8\x92\xe2\xcb\x11\x24\xa8\x06\x46\xd0\xd2\x5d\xb9\xf4\x57\x74\x12\xa7" "\x5c\x42\x6a\x30\xdb\xf6\xd7\x25\xca\xe2\x95\xc4\x89\x38\x32\x53\x2e\x35" "\xe1\x94\x73\xf9\x59\x17\x60\xfe\x5d\xec\xf6\xf2\x66\x72\xe6\xfd\x1d\xa6" "\x58\xa0\x4d\xe6\xf7\x9c\x66\xbd\x11\xae\x5e\x08\x1e\x89\xe4\x1a\x8b\xce" "\x10\x33\xea\x58\xcd\x46\x9a\xc4\x92\xbe\x61\xc4\x2c\xf9\x0c\xf4\x3d\xa4" "\x9d\x70\x70\x87\xe2\x15\x3a\xb9\x18\xfe\x36\x2d\xb5\xea\x99\xbd\x56\x9f" "\x57\xc6\x5a\x3b\x12\x41\xb8\xfe\x70\x2e\x2f\x0b\x39\x74\xbd\x83\x03\xc1" "\x36\xb1\xc4\x29\xd4\xe2\x92\x9c\xcf\x1c\xdd\x03\x90\xd1\x89\xa3\x71\x92" "\x41\xbd\x5e\x6c\xbf\x11\xf5\x5c\xad\x95\x72\x40\xe9\xd4\xa1\x79\xa8\xc4" "\x80\xfc\x97\xad\x70\xd7\x54\xd0\xfe\xb6\xf5\x4b\x0b\x33\x54\x11\x3c\x56" "\x52\x65\xbc\x62\x45\x6c\x11\xe2\x09\x67\x8d\xd7\x73\xf9\x17\x3a\xc8\x7a" "\xbc\xe7\x79\x8b\x14\x7a\x5c\x9b\x3c\x84\xbd\x4a\x03\xb3\x68\x3d\xab\x6d" "\x23\x57\x5f\x51\x2c\x4f\x16\x15\xdf\xb2\x02\x74\x1b\x06\xa3\x8c\x07\xc3" "\x2d\xf1\x35\x2d\x55\x22\x0c\x1a\xd2\x64\x9b\xe6\x98\x17\x98\xbc\x4f\x38" "\x19\xac\x0b\x65\x49\x0b\x35\x04\xac\xbf\xb8\x88\x28\xd4\x42\x5b\x42\xf1" "\xd7\xbd\xe4\x77\xf1\x8e\x14\x23\x27\x54\xbc\x6b\x74\xfa\xb0\xe9\x49\xc7" "\x60\x10\x05\x09\xfb\xa1\x7f\x04\x5b\x3b\xca\x4e\xe9\xcd\x69\x7f\xff\xc2" "\xc7\x66\x9e\xe6\x6a\x41\xd6\x9a\x12\x2f\x2b\xf4\xf0\x75\xb3\xe5\x48\x37" "\x22\x46\xb2\x2a\x1d\xae\xe9\xed\xdc\x4d\x84\x90\x2e\x18\x1d\x5b\xb4\x12" "\x49\xab\xa1\xba\xcd\x0d\x1a\x54\x80\x6d\x9a\x63\x1c\xd5\x19\xa5\x84\x9c" "\xee\x52\x8b\x64\x1d\xb8\x5d\xba\xf7\xb7\x49\x97\x45\x3f\x3b\x19\xd4\x3f" "\x79\x27\x95\x5e\xf8\x55\x46\x13\xca\x0a\x46\x99\x8c\x98\xd0\x9c\x88\x08" "\x5a\x7a\xe3\xaa\xa1\x99\xef\x3a\xee\x19\x4e\x49\xb4\x63\x64\x1b\xc8\xc1" "\x17\x7f\x5e\xfe\x43\xff\xd3\xbf\x89\x07\x5a\xe1\xb5\xc0\x01\x3a\x71\x2f" "\x89\x36\xd9\xdf\xf0\x12\xac\xe3\xaa\x15\x72\x16\x3e\xc9\x44\x6f\x11\x95" "\xcc\x37\x01\xe4\xf2\x88\x02\xab\x9f\x1b\x1c\x26\x22\x64\x22\xa9\x17\x5b" "\x0d\x0f\x4f\xb4\x7c\x5f\x5a\xc6\xe2\x38\x7e\x34\xdf\x6a\x7a\x19\x67\xed" "\x46\x09\x01\xe9\xcd\xbc\x2d\xf3\xec\x70\xd9\x6e\x0c\xe1\x70\xa0\x84\x2a" "\xd9\x6e\x1a\x02\x79\x85\x7e\x65\x6b\x30\x03\xa4\x7f\xa6\x3a\xf3\xf6\xa9" "\xf2\x26\x67\xcf\x2f\x4d\x09\xa3\xec\x06\xf9\x41\x17\xc5\x74\xe1\x28\x9b" "\x96\xf0\x17\x1e\xe1\x61\x9d\x6d\xa9\x47\xa7\x40\x62\x8d\x4a\x5f\x76\x62" "\xb1\xe7\xca\xb8\x60\x35\x3b\xf1\x04\xa1\x52\xb3\x08\xbd\xae\x41\xde\x3c" "\xad\x3f\xde\xcb\x20\x12\x38\x55\xfa\xd3\x9c\xbf\x96\x87\x16\xc1\x1d\x32" "\x30\x1f\x9b\x48\xee\x6e\xc7\xd6\xc8\xb4\x83\x5d\xb9\x5d\x22\x11\xe4\x2e" "\x7f\x5d\x18\x8f\x7c\x74\x18\x86\x01\x72\xc9\x92\x14\xf7\xa5\x87\x06\xf4" "\x9b\x5b\xc2\xb9\x35\x21\x29\xa7\xf1\x8f\x0d\x25\xed\x2a\x2c\xb8\x38\x94" "\x31\x34\x3e\xd7\x13\x8b\x51\x5f\xc7\x2d\x10\xe8\xb0\x9f\x3a\xda\x7f\xc7" "\x39\xef\xc5\x6c\x29\x41\xb2\xbf\x22\xd3\x55\x7a\xe7\x5f\x7d\x9f\xbb\x31" "\x61\x62\x85\xaa\x3d\xbf\xc3\x70\xf8\xdf\xb3\xc7\xac\xf8\x52\x25\x48\xe4" "\x4f\xac\xe8\xa2\x35\x10\x0d\xa6\xfc\x45\xa1\x01\xb5\xc9\xdd\x99\x04\x57" "\xb0\xca\x94\x3d\x66\x31\xef\x2b\xfd\xc0\x2f\xa2\xdd\x52\xd8\xe7\x8e\xf6" "\x8c\xa9\xf8\xdd\x2b\x2d\xb7\x0d\x30\xe3\x6a\x53\xcb\xc0\xf2\x3d\xd7\x3a" "\x2b\x5c\x4a\xf4\x9e\x73\x2a\xb7\x90\xce\x6c\x94\x35\x5a\x6b\xa3\x8f\xe0" "\x77\xd9\xfb\xd8\x24\x10\x4d\x84\xb9\xd2\x76\xa8\x86\x55\x09\x3c\x09\x80" "\x60\x07\x8c\xfb\x8e\xf5\xa6\xa2\x47\x21\xdd\xb4\x81\xb6\x29\x90\x50\x88" "\x5b\x84\x37\xd2\x74\xd4\x69\xe5\x15\x06\xaa\x55\xb5\xca\x97\xc1\xde\x77" "\xae\x8c\x78\x90\x99\xcd\x2d\x7c\x3b\xdf\x7d\x0b\x65\x80\xa4\x3e\xea\x03" "\x64\xea\x57\x80\xa3\x79\xb2\xb9\x29\xd1\x11\x49\x0c\xb5\x6b\xa2\xed\x5f" "\xcc\x53\x36\xdd\xdf\x53\xd1\x16\x42\x09\x32\x0a\xa5\x5b\x1b\x9e\xd4\x13" "\x9f\xf9\x52\xa7\xb1\xd5\xfa\xf0\x6f\xc9\x70\x4b\x39\x29\xa2\x19\x01\xa0" "\x28\x85\xf9\xf6\x97\x8d\x07\x1f\xee\x93\x27\xf0\x52\xd5\x8c\x8b\x10\x97" "\xfa\x0f\x2f\x43\x64\x69\xcc\x03\x01\x05\x44\x10\x64\x33\x2e\x63\xc9\x57" "\x88\x68\xb5\x15\x3d\x4a\xfc\x57\x5a\xcf\x1a\xd7\xe6\x9e\x25\x89\x19\x4a" "\xac\xd5\x86\xe2\xd0\x20\x0d\x5a\x95\xdc\x15\x7d\x7c\xa2\x1a\x37\x5c\x70" "\xde\xa6\x9e\x47\x63\x32\x39\x7b\x50\x48\xbf\xd1\x84\x1b\x28\x4a\x28\xd5" "\xee\x4b\x6a\x7b\xd4\xdb\xd6\xf3\xca\xc0\xc8\x86\xc8\x89\x1c\xc0\xfd\x79" "\x80\x7e\x30\x7a\xc3\x46\x27\xe0\x90\x1b\x28\xf9\xa5\x81\xd3\x2a\xbf\x36" "\x3c\xab\xf9\xb5\x64\xa4\xd6\x54\x34\x2b\xf1\x01\xfd\xf6\xcb\x0f\x3a\x5c" "\xb6\x3b\xc4\x21\xef\x6d\xee\x63\xd9\x92\xf4\xcb\x68\x43\xe0\x88\x3a\xfb" "\xc5\x0b\x2b\xff\x23\xa9\x22\xb1\x59\xc8\x4c\x5e\x7c\xeb\xc3\xd1\x6b\xa6" "\xef\xaa\x4f\x3e\xbd\xb5\x07\x53\x3f\xe4\xff\x7c\xf4\xf1\x5f\xb6\xb4\x65" "\x7d\x0c\x6a\x9b\xfd\x52\xff\xa5\xae\x9d\x1d\xc0\x09\x57\x79\x7f\x82\x1d" "\xc4\x69\x68\xd0\x1a\x5a\x24\x23\x20\xec\xad\x1f\x7b\x03\x70\x73\x85\x9b" "\xf0\xf6\x03\xb8\x59\x30\x1f\xf6\x19\x45\xf8\x6b\xa5\xc8\xfb\xbd\x79\xfc" "\xff\x71\x81\x49\x40\xf9\xe7\x13\x63\x45\x4f\xe5\x2b\x22\x32\x04\xe2\x03" "\x4f\x3c\x92\x2d\x27\x4c\xaa\xa0\x4a\xb6\x61\xcc\xcf\xd5\x30\x30\xa0\xad" "\x9d\x49\xec\xf4\xe2\xcb\x02\xfa\xf1\xe2\xc4\x1f\x37\x75\x30\x00\x7b\x1d" "\xd1\x91\x2e\x50\x1c\x38\x73\xf6\xa7\x1f\x69\x3e\xfe\x9a\x34\xfe\x2e\xa2" "\xfd\x31\xd1\xae\x48\x4f\x74\xe4\x18\xb2\xe1\x9c\xd1\xb1\xd8\x3e\x5b\x4f" "\x59\x85\x17\xcf\x35\xac\x6d\x50\x5c\x66\x33\x88\xdd\xf0\x06\xc3\xf3\x3c" "\xd6\x79\x34\xb6\x78\x7b\x63\x84\x7b\x11\xcd\x49\x88\x01\x75\x8e\xf5\x45" "\x02\xb0\x39\xa3\x51\x86\xf4\xaa\xa6\xa4\x7f\x4b\x4d\x8a\x5c\x2b\x2b\x10" "\xea\x82\xa7\x35\x8b\xad\x7c\x10\x9c\x28\x79\x7d\x10\x41\xae\xe6\x98\x01" "\x1f\x47\x02\xb2\x80\x66\x22\xa4\x36\xcb\xfc\xdd\xe9\xa4\x95\xfd\x80\x47" "\xb9\x2a\x26\xc2\xcb\x5a\xa1\x01\xfc\xfa\x99\xe8\xbe\xd8\x08\x74\xc9\xee" "\xfe\x23\xb3\x20\x8e\xb9\x92\x89\x75\xfa\x91\x17\x1e\x2a\xd9\x3e\xe6\xfe" "\x2a\xde\x1c\x0e\xda\xd7\x2f\x33\xac\x6a\x49\x3d\x7e\x94\x99\x04\x2f\x9e" "\x8f\xd0\xa2\x7e\x3b\xdf\x79\xa1\xb0\x2e\x60\x29\x6c\x0d\x27\x08\xff\xff" "\x68\x2b\x3d\x37\x17\xe1\x6c\xdb\xe7\x49\x86\x6a\xcd\x54\xf0\xdc\x9b\x6f" "\x91\xe3\xe2\x15\x77\x2c\x9f\xf5\xc3\x7f\xd5\x42\xbc\xfe\x72\xa4\xb2\xcb" "\xd1\x10\x80\x8b\x1b\x0f\x38\x8c\xcc\x4e\xdf\x35\xb9\xc6\xb7\x27\x55\xd3" "\xaa\x52\x66\xc7\x1b\xfe\x3e\xee\x81\x6d\x9d\xde\x42\x91\x72\x6e\x53\x0f" "\x53\x4d\x33\x14\x9a\x60\x5b\xc2\x93\x8e\x94\x7b\x33\x08\x37\x50\x41\xe5" "\xd4\x28\x92\x6d\xfa\x41\xf9\x82\x79\x17\xfe\x19\x53\x0a\x22\xca\xa8\x6f" "\xcb\x63\x6f\x47\x18\x3f\xbf\x87\x81\xf9\xdc\x6d\xfd\x2d\x98\x0c\x34\x6a" "\x2d\xbf\x3f\xd8\x7f\x79\xc6\xdc\xae\x92\xe7\x45\x68\x55\xb2\x3d\x17\xb2" "\xd8\xf2\x9d\x5d\x80\x53\x7a\x38\x24\x1a\x34\xc0\xee\x2c\x21\xd3\x6c\x2c" "\x4c\x39\x6a\x80\x5e\xbd\xb2\x08\x4f\x96\x48\xf9\x98\x57\x23\xae\x88\x12" "\x18\xd2\x7c\x6f\x8f\xc2\x83\x05\x82\x4b\xef\x5e\xa1\xeb\x29\x54\x20\x6a" "\xd8\x57\x3a\x84\xea\xef\x48\x94\xe3\xbe\xc2\xfa\x74\x1a\x66\xef\x53\xcb" "\xbb\xf0\xcf\x8e\x3f\xdb\x19\x34\x3b\x65\xb3\x35\x30\xce\xc3\x18\xdf\x3d" "\xe2\xbc\x52\x5f\x09\x0e\x10\xd8\xcd\xfb\x42\xe6\xc6\xff\x78\x43\xb6\x88" "\x71\x1e\x02\x68\x62\x96\x4a\xa4\x23\x59\x29\xea\x29\x25\x34\x98\x0d\x4b" "\xb2\x21\xb0\xc2\xf3\x8a\x95\x94\xcc\x30\xac\x52\xef\x76\x15\x1d\x92\xae" "\x92\xa2\xc3\xd1\xc7\xe1\x91\x6b\x1e\xfe\xac\x77\xe4\x53\x4e\x26\x9a\x6f" "\xf6\xb2\x71\x80\xad\x9e\x4b\x25\x67\xb2\x0b\x4e\x6c\xa3\x9e\x22\x96\xd2" "\x81\x79\xf7\xca\x3f\x13\xe7\x96\x02\xae\x62\x06\x09\x8d\xd5\x46\x4a\xcc" "\x9e\x72\x05\x6d\x92\x2c\x80\x3f\x29\x56\x7f\x0d\x8a\x94\xed\xb5\x52\x78" "\x4a\x29\xf9\x38\x6e\xe2\x52\x26\x63\x2b\x86\x5c\x1b\x4d\x56\xe5\x37\x49" "\x16\x52\x10\x16\x19\xd1\x14\xe8\x14\xef\xb8\x21\xa6\x7a\xb7\xea\x21\x7a" "\xd8\x36\x65\x1e\xa2\x04\xf7\xb6\xee\xf7\xdc\x2a\xaf\xb9\xd6\x97\xa6\xcf" "\x75\x8a\xa9\x7f\x11\x06\x9b\x7e\xee\xae\x36\x52\xbc\x32\xf2\xbf\xda\x69" "\x23\xe1\x10\x64\xec\x4c\x1c\x30\x6e\x8b\x46\xab\xe6\xa1\x7e\xb0\x27\x58" "\x5b\xf5\x62\x75\x39\xaf\xf8\x6c\xb2\x89\xc9\x75\x87\xc5\xd8\xd5\xa1\xa1" "\xd0\x83\xef\x53\x68\x07\xce\x72\xf0\xbe\x22\xd9\x03\xc5\xaa\xad\xbd\xb8" "\x75\x47\x76\x61\x94\x4e\xd9\x8c\x66\x76\x5f\x66\x75\x9d\xb7\xd7\x04\x4e" "\xc5\x5c\x4d\x7f\xe4\xcb\xdc\x19\x4f\xbe\xbf\x66\xfc\x61\x2e\xc8\xb2\xf9" "\xaa\xd9\x2d\xa8\xea\xfe\x46\x4c\x3b\xe0", 4096); *(uint8_t*)0x20003459 = 0; *(uint8_t*)0x2000345a = 0x25; *(uint8_t*)0x2000345b = 1; *(uint8_t*)0x2000345c = 1; *(uint8_t*)0x2000345d = 9; *(uint16_t*)0x2000345e = 0x100; *(uint8_t*)0x20003460 = 9; *(uint8_t*)0x20003461 = 5; *(uint8_t*)0x20003462 = 0xd; *(uint8_t*)0x20003463 = 0; *(uint16_t*)0x20003464 = 0x10; *(uint8_t*)0x20003466 = 4; *(uint8_t*)0x20003467 = 5; *(uint8_t*)0x20003468 = 0xcb; *(uint8_t*)0x20003469 = 0; *(uint8_t*)0x2000346a = 0x31; *(uint8_t*)0x2000346b = 0; *(uint8_t*)0x2000346c = 0x10; memcpy((void*)0x2000346d, "\x1e\x0e\x22\xda\x02\x0f\x73\x31\xa7\x57\xf3\xab\x21\x0f\x9f\x01\xad" "\xcb\x31\x47\xc5\xed\x27\xb7\xa7\x86\xbb\x8c\xd7\x60\x80\x71\x1b\xc4" "\xc6\x11\xf0\x6d\xa9\x64\xe1\xf1\x6e\x0e\xa8\xcf\x7a\x2a\xe1\xc4\xcb" "\x16\xf7\x58\x6c\x9c\xd8\x72\xf5\x70\xd6\xe2\xa1\xef\x4b\xd3\x97\xcb" "\x0f\x69\xc3\x62\x74\x0c\x42\xd2\xe9\x5f\x69\x59\xa4\x02\xfd\xe5\x96" "\x6a\x24\x41\x06\x30\x77\xe3\xcd\x70\xf7\x02\x91\x09\x18\x3d\xfb\x44" "\x0f\xd3\xcf\x2f\x94\x0b\x7b\x4e\x9f\xed\x01\xd4\xeb\x9d\xf9\x0f\x7e" "\x3f\x57\x3e\xfb\x16\xfb\x12\x0e\x56\xe8\x97\xef\xe6\xe0\xdc\xef\x3f" "\xe3\x37\xdd\x91\x78\xe7\xf4\xf6\x35\xc7\x9e\x58\x4e\x68\x7e\x7f\x15" "\xd7", 154); *(uint8_t*)0x20003507 = 9; *(uint8_t*)0x20003508 = 5; *(uint8_t*)0x20003509 = 0xf; *(uint8_t*)0x2000350a = 0x19; *(uint16_t*)0x2000350b = 0x40; *(uint8_t*)0x2000350d = 0x80; *(uint8_t*)0x2000350e = 0x7f; *(uint8_t*)0x2000350f = 0x48; *(uint8_t*)0x20003510 = 0; *(uint8_t*)0x20003511 = 0x25; *(uint8_t*)0x20003512 = 1; *(uint8_t*)0x20003513 = 0; *(uint8_t*)0x20003514 = 9; *(uint16_t*)0x20003515 = 0x81; *(uint8_t*)0x20003517 = 9; *(uint8_t*)0x20003518 = 5; *(uint8_t*)0x20003519 = 0; *(uint8_t*)0x2000351a = 0xc; *(uint16_t*)0x2000351b = 0x400; *(uint8_t*)0x2000351d = 4; *(uint8_t*)0x2000351e = 7; *(uint8_t*)0x2000351f = 3; *(uint8_t*)0x20003520 = 0; *(uint8_t*)0x20003521 = 0x25; *(uint8_t*)0x20003522 = 1; *(uint8_t*)0x20003523 = 1; *(uint8_t*)0x20003524 = 5; *(uint16_t*)0x20003525 = 0xff05; *(uint8_t*)0x20003527 = 9; *(uint8_t*)0x20003528 = 5; *(uint8_t*)0x20003529 = 2; *(uint8_t*)0x2000352a = 0; *(uint16_t*)0x2000352b = 0x200; *(uint8_t*)0x2000352d = 0x20; *(uint8_t*)0x2000352e = 0x8b; *(uint8_t*)0x2000352f = 0x12; *(uint8_t*)0x20003530 = 9; *(uint8_t*)0x20003531 = 5; *(uint8_t*)0x20003532 = 0x1f; *(uint8_t*)0x20003533 = 0; *(uint16_t*)0x20003534 = 0x20; *(uint8_t*)0x20003536 = 0xfd; *(uint8_t*)0x20003537 = 0x40; *(uint8_t*)0x20003538 = 0; syz_usb_connect(2, 0x6a, 0x200001c0, 0); } int main(void) { syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x32ul, -1, 0); loop(); return 0; }