// https://syzkaller.appspot.com/bug?id=03f4404da0737d2be5145ac3ed936712fcfd504c // 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 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 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_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 long syz_genetlink_get_family_id(volatile long name, volatile long sock_arg) { int fd = sock_arg; if (fd < 0) { fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (fd == -1) { return -1; } } struct nlmsg nlmsg_tmp; int ret = netlink_query_family_id(&nlmsg_tmp, fd, (char*)name, false); if ((int)sock_arg < 0) close(fd); if (ret < 0) { return -1; } return ret; } #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_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } 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 < 6; 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); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); 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[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // socketpair$tipc arguments: [ // domain: const = 0x1e (8 bytes) // type: tipc_socket_types = 0x1 (8 bytes) // proto: const = 0x0 (4 bytes) // fds: ptr[out, tipc_pair] { // tipc_pair { // fd0: sock_tipc (resource) // fd1: sock_tipc (resource) // } // } // ] res = syscall(__NR_socketpair, /*domain=*/0x1eul, /*type=*/1ul, /*proto=*/0, /*fds=*/0x200000000000ul); if (res != -1) { NONFAILING(r[0] = *(uint32_t*)0x200000000000); NONFAILING(r[1] = *(uint32_t*)0x200000000004); } break; case 1: // sendmsg$tipc arguments: [ // fd: sock_tipc (resource) // msg: ptr[in, msghdr_tipc] { // msghdr_tipc { // msg_name: ptr[in, sockaddr_tipc] { // union sockaddr_tipc { // nameseq: sockaddr_tipc_t[TIPC_ADDR_NAMESEQ, // tipc_service_range] { // family: const = 0x1e (2 bytes) // addrtype: const = 0x1 (1 bytes) // scope: tipc_scope = 0x0 (1 bytes) // addr: tipc_service_range { // type: tipc_service_type = 0x0 (4 bytes) // lower: int32 = 0x0 (4 bytes) // upper: int32 = 0x0 (4 bytes) // } // } // } // } // msg_namelen: len = 0x10 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: ptr[in, array[iovec[in, array[int8]]]] { // array[iovec[in, array[int8]]] { // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {c3 e9 72 bd 85 a6 d8 41 36 d6 dd 55 04 8d 35 93 // a7 4f 33 8c e6 77 2a b9 a6 f6 40 41 c2 f6 fb be cd c0 8e // bc d3 19 2b 6a 53 66 2d ae 7c 8e 9c 66 5e 80 a5 d0 92 5f // 72 8d ca c3 0c 29 79 39 92 e5 88 95 26 53 d4 14 cb 8c cd // ab c3 87 67 fe e8 19 ec 5a f0 c5 ee 93 68 80 fe 85 49 b4 // ed 34 77 79 ca b4 ff d4 e0 b6 2c 53 a1 c0 1d b2 8f 2b 3f // 91 c3 42 11 c9 35 3b c1 de ce 61 51 19 17 c2 24 5f d6 6c // b8 df fe ac b4 d4 6d 62 7c 97 b4 98 bf 1f f6 b3 13 bf bc // 97 65 45 7c 83 17 71 d5 ee c7 99 7e c2 42 e4 50 5f 01 c1 // bb 3e 06 9b 2e 63 0f 42 a2 be 86 59 8a 61} (length 0xb6) // } // len: len = 0x64 (8 bytes) // } // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {56} (length 0x1) // } // len: len = 0x1 (8 bytes) // } // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {3e ed 50 d0 12 57 19 a8 10 f8 8e 3f 47 18 6f e4 // da e7 41 82 df d1 09 a2 58 7c 47 97 41 0c 9b 8e 39 bd 3d // 9a a1 44 d5 90 86 47 c3 0c 8d b6 9b 5c 17 08 4c 9b 1b fb // b8 68 07 37 c4 f8 8a bc db c7 d2 94 d7 2a b1 b3 44 27 09 // 15 df 9d df 56 35 64 4c 35 1c 22 b2 9d 94 8a c4 10 6b ce // 71 07 57 0b ee d6 30 77 cf bc 98 ef 71 69 9e ae 65 d3 77 // 24 d9 95 b5 53 e7 a3 ad e6 19 b5 22 31 3a b3 82 ca f8 79 // fe b4 89 42 87 8e 60 5e e3 ee 28 72 79 4e 3a be 22 a3 f0 // 25 06 8b 62 8a 5d 92 46 80 92 a5 cc 64 9b bb d9 78 b5 77 // 2e 53 79 39 43 2a 50 21 22 23 5c ed 31 2d af d1 08 c9 ff // eb 0b 38 cc 16 da 94 18 ca 01 d4 85 a6 af b5 82 7d a4 df // 6e 11 21 ec 30 7d e1 4b b3 2b 6a 97 76 08 e4 57 6a 99 81 // 82 dd 93 d5 92 ff 43 e5 5b fd bb ce 23 ec d5 01 e4 3b 3e // 93 ef 8d 9d 01 71 1d ff 54 c3 01 e2 99 d3 80 1a 3c ff e6 // c9 88 3f bd 0e 47 12 4d c0 25 69 f6 2d 48 b8 78 fc b5 8c // e9 9f cf fc d2 a5 16 6e ff 3a d9 3c f1 d1 37 27 49 93 d8 // 6a 3b 37 30 d6 3d ed 75 9f 6c a8 8f a4 49 e5 57 5b 15 32 // 1e 5a 58 a1 f8 88 ee d7 46 6d b4 97 6c e3 5f 6d 2e fb 5a // d0 5d 99 a6 64 82 dc 60 7c b5 ac b2 4d 32 68 03 bd 33 75 // 19 cc 98 10 3f 59 c6 3b 59 62 cd 72 e4 49 7d 1b 00 81 7d // 6e 09 de 70 27 0a 09 b4 93 c2 22 66 17 b1 c9 ef 9d 50 6b // e0 0d 6e 07 f1 46 33 a9 66 f0 4e cc a9 0f b8 d2 b9 63 ad // 6f 38 17 93 5b d6 53 4f a3 da 1c 5d c4 68 78 9c bf 11 92 // f3 c0 bf f3 77 7f 1e dd 2a da 5d 35 f8 8f 12 f2 9e 95 2c // 44 44 5c e6 23 50 9d 66 81 1c 80 a9 e0 f1 3a d8 5a ba 37 // d8 6f f0 da 4d da 60 1d 9e 8a cb 26 42 33 bc 93 9f b0 56 // 31 66 12 cf f6 87 d5 c4 41 57 be 05 bc c8 8b 33 3f f2 a4 // 00 41 d9 8f 1a cf e6 e2 23 1a 84 e0 9b d7 a5 4a 04 42 cf // 87 ce 3e e8 fd 8d a3 9d a1 86 28 62 ae 40 fc 3c b3 05 5c // 8b 70 e6 2f 24 38 50 70 73 41 f5 14 26 bb 3e 71 c7 a4 ff // fe fa b0 60 db 78 60 00 61 8b 05 eb 08 7a 42 4a 2f 30 f6 // a2 32 ff 44 b6 05 f7 0c ee c0 a8 f7 0e 37 90 7f 6e 0b bb // a2 1e 9d 5b 7e cb 6d 28 77 42 b7 5c 10 1b a7 95 25 91 8c // 34 73 ea e3 8f 3c 17 72 49 df a8 81 66 61 c9 92 1f 0b 0c // 85 8d 53 ab 87 c8 40 7b 97 95 0c 84 21 11 00 2e dd 1d 1e // 80 b8 01 b4 95 da 28 bc d5 40 9b c9 71 e5 5d ab 18 57 e1 // 88 ac 97 28 ef c8 f9 a4 54 39 45 f8 6a de 13 b4 45 ea ce // cb bf 84 8a 96 41 0a c3 7c 57 e3 e9 e8 bc 8b 8f ad d5 59 // d2 25 c7 46 86 39 da 2b 5d 12 08 55 8b 51 e9 4c 14 fa a7 // 94 7a 7c 60 e8 1a 96 bb 5d 19 4c c7 28 9a db c0 2e bb 4b // 49 be 1f 1e fc 42 9d b2 f9 b7 9b 5a 22 91 9d ba 0c 35 34 // 10 42 c5 77 69 42 c5 23 65 36 7c 4b fc 95 b4 2b e3 83 cc // a7 10 71 61 de d7 e8 51 d0 12 6d a3 3d 58 1f 1e 2b 08 d0 // c0 61 e8 6d 31 e7 a8 3f 9b 51 c7 9b 40 34 c7 de da 76 97 // 03 4e 14 04 c6 e8 e4 59 f7 6c 2e fe 64 35 01 46 c7 43 7e // f8 08 e0 4c a1 4d f5 f6 f5 00 26 4f d9 77 27 2b bf 8f c0 // 96 77 4e 8e b6 1d 09 63 43 07 51 ac 14 25 a0 73 f8 43 46 // b0 eb a3 68 cb a7 fa 34 ad c4 20 80 0d 4f 99 92 72 80 eb // a1 99 f9 69 5c f8 81 24 fa fc 3a 2b 12 26 d2 f2 ab 3e a2 // 7c 69 a1 27 65 0c f5 c7 25 b5 4c 02 bd 87 29 03 3c f6 99 // ce 7f 03 0f 9a 34 42 05 62 44 da 3c fb 61 a8 12 6d ba 11 // 37 76 24 f3 9e b0 09 24 21 52 fd 7b 8b 88 de 7d d8 60 57 // f2 9b fc b7 b7 df 0e 65 e7 e9 ac 9e ea a4 1a fa 62 74 36 // 98 bf f0 3d 5b 2d 51 fb 6b ca 2d 92 29 4e 8e 17 7c fa 36 // 61 b2 6f 1c 04 0e 9b ed 98 3b 7b c0 aa 15 4e b9 c9 2e 4e // e2 50 91 31 8c 53 11 3a 1c 23 ac 62 d2 d7 15 04 cb a9 90 // 41 f2 9a 4f 33 21 33 29 2c f2 0a be c9 22 2a 2a cc a5 7c // ac 48 fa 6c 06 68 ee 5e ec b4 94 74 1a 64 d3 3b 01 1d cc // a7 46 96 d4 61 4c 5b 45 a5 d2 09 83 b1 70 8d 36 5e d3 ff // a6 0f 91 61 97 2a 61 1c 22 64 2c 3c 25 9b 41 f9 43 f6 d7 // a8 b6 0f 28 4d 32 5e 38 fe 76 f0 64 5e 06 9f f7 0c ae 38 // 85 0c cf 97 31 93 b6 23 2c 98 7d f2 62 39 a5 74 69 1f 7f // 07 ff fa 6d ea e1 eb 03 24 fe 54 65 73 c3 6f 2a 2c 31 cd // 44 25 17 a9 b0 36 ae 6a 2a 49 1e 73 43 86 46 93 c1 07 a5 // dc 25 85 82 08 63 c1 46 c1 ba 6c aa 4f ea 9b 87 d5 67 71 // 6f 4c 8c a1 a9 d2 84 80 55 cd 75 05 12 d3 b7 41 5d 09 00 // 19 dc 8a 04 a1 a1 d2 89 31 09 3c d8 f0 0e 94 c4 07 ca 1f // a2 a5 ce 90 3d 9d f2 6e 00 8c 07 cd 13 af a7 83 22 0e 1b // d5 e6 b6 06 45 f3 db b6 ec b4 15 6f ed af a2 dd 25 49 8c // 6a 99 d9 4f 0b 38 12 5e a7 74 1b 75 10 9d ca c9 f8 06 35 // f7 9f 5c 8a 04 83 bb 9f 05 a3 a5 bf 72 1c 75 41 ed b2 52 // 44 9f 8b 13 e6 3c 37 0a 61 46 33 2f 03 ca 1f 1b 6f e0 be // d9 84 f1 37 44 bb 7f a0 fe 32 2e 83 dd f9 ff b2 08 3e 94 // f3 36 04 a0 a1 99 22 0c 45 0d ad 94 bf 15 48 05 e7 f9 e4 // 35 0c a2 d8 1a df 29 78 c8 7d cc 8a 8a 7d 56 29 7e c1 24 // bf ef 0d 28 f3 57 77 20 5e 97 32 72 c8 7e 01 07 0f 14 f5 // b1 4d aa 3b 51 04 d9 ff 6b 29 6c 4f 16 ed 49 eb 42 d3 5e // 7b a3 bc cb 7a 26 c3 3a 26 3d f8 8a ad d5 96 e9 d9 de 0a // bb d4 d4 49 df 11 08 1f 2c d6 2e 1d 89 62 b9 b9 fe b2 5a // 3b 8e 03 53 7d 61 a6 1c 11 ac 22 b7 21 1d 12 c8 4e 60 a6 // ab cc 21 9e 55 8b 25 13 d8 c5 30 b3 c7 a5 7c dc 47 de 54 // 5a af bb 2a 13 c0 e6 c7 5b 1b 92 fa 24 1c 71 3c 83 a0 9c // 92 b2 b6 1d 56 51 20 37 2a 91 43 41 55 83 c9 59 6f 27 a6 // 63 d4 96 7c d6 53 b0 8c eb d6 cb 96 c1 f0 dc 80 d5 72 67 // ac 9a 82 81 d7 14 9b de 88 08 28 ee 27 d6 9a 68 18 db 58 // 32 0d b2 9d 1b 04 4e af 6a b8 a5 10 8b c5 22 de 40 69 90 // b5 39 3b 1f 7e 7b ab 71 bf 6c f8 ee d1 cd 59 c7 60 7d 66 // 2e 8b 31 3f 5c 4f ce 0f 59 b1 02 73 71 38 10 11 b6 3d d5 // b2 b0 97 39 08 2c 0d 62 ff ad 96 e3 01 53 a3 95 23 49 37 // d3 77 c3 2f e7 af 82 ac a3 a1 9d 0e bc 4a 5c 5f b5 ff 19 // 0f 14 d5 69 5c 70 3b 57 1f b4 bf 03 75 66 35 ca fc 6c f6 // 26 7e ab 83 6c 34 7a 9d 07 e8 08 9f c1 05 34 69 34 cf 33 // 64 e5 be 37 0b 3c 42 b9 4b c5 ae 3d 17 a8 17 39 85 66 a2 // 95 32 51 eb 91 69 7d 67 27 81 45 df 9a 4b 91 7b cc a1 bf // 21 17 80 b2 2f 4c aa cf cb 76 04 c8 4f 94 3d 05 f6 fd f8 // ed bd 25 8d 7d 8d bf 84 f9 d9 9e 57 47 2c 5b 1c 23 37 d7 // 49 a1 f3 45 e6 62 e2 53 6d 23 c7 a6 3b bb bf 00 f8 b5 b0 // a2 10 6a 03 42 ab 27 b9 a1 0b 82 e8 26 68 cd 49 e0 cb b0 // 9d 7b e0 21 76 45 f1 dd a3 be 59 c8 23 2f a2 90 d3 47 91 // cd a5 2a a5 b5 ce c6 33 9a b9 6a 2e b3 f5 32 8c c7 c0 e6 // 71 7c 28 24 34 45 47 a2 ed 51 8f 6b 2b 4e 4f e5 b6 84 59 // 6a a6 a9 d3 98 8f c5 d5 ff 4c b4 6c ec 99 d9 51 b8 38 6b // 10 94 9a 16 3a f9 74 b7 54 3d f9 7b 48 82 a4 ed 60 e9 27 // a1 de b6 7c 5f 81 42 35 be f6 5f ea 79 a2 c7 12 81 5b e7 // 40 3c 93 a3 70 7f b9 0d 46 04 ec 3a 6a 3b 09 28 f2 53 f6 // ab 6b d5 6c 95 8e 02 6c 8c 58 17 2c 4a c2 a3 ef e2 ec d5 // ce a7 0c 83 13 f9 ac 2d 63 8b c2 96 ba 99 e2 ca 86 d2 fd // 06 b5 40 2c dc dd c3 f3 c9 84 5d 5a e7 7f 6f 36 96 3b 91 // e8 f6 cd cc d1 7a be 8d 40 ed 02 46 3a f4 bb 0e 49 63 44 // f3 50 09 7f 1c c1 33 13 fa 1e 17 2b 63 55 6e d2 b8 a8 12 // 1c 01 a5 fb 34 3f f7 76 78 21 62 6f c4 9b 0d 6b d5 22 e1 // c9 bf 13 7d 5a 5b cc b4 bc 8d bb 64 c8 3a 82 ef 6c 28 94 // f3 89 6c 9f 6b f0 c3 76 40 11 d5 3e eb 6d b9 ea 9d ae 22 // d3 eb cc a4 94 2d 58 28 c0 bc a0 d9 ea 37 70 1d 5a 06 c0 // 66 ac 4f e3 18 e1 1e 9c 0d 6c 65 8a c8 10 fb 5d 78 36 cf // ff e4 cc bb 09 34 e5 56 7d 74 69 59 80 a1 56 d4 bf 1c 18 // 86 1c 5a 29 cc d3 49 99 9d c2 05 62 d0 0e 1f 6c 18 51 ae // 56 35 41 08 64 38 d6 0b 97 5c 8c eb 46 64 14 ff 60 ef a0 // b2 de e7 90 fd 06 59 ff a9 8b 92 41 4c 13 d5 a6 82 53 68 // f5 6c 49 84 41 22 05 04 1c d8 e0 06 c7 12 7d 43 95 ec df // fb 5a dd f8 0e f9 38 ce 54 a3 67 15 4c 4f c2 86 d5 f9 69 // 32 5c 12 b1 36 55 a9 a9 56 dd 3b 98 28 1f 53 7e 83 76 69 // fc 55 d8 93 06 76 e8 07 aa 8c d0 46 e0 f4 58 3d 59 f8 6c // b9 9f 3f 7a 7d dd e1 fb 39 11 1f de c7 67 7d 2f ee 4b 8f // 48 14 a5 de f5 eb cc 67 c6 53 38 4c e8 0e af fd 88 04 05 // f7 ed f8 fd 3e a0 49 f0 40 59 5d f4 a7 5e 2f 89 2e 7a 85 // e0 ba 35 1f b8 d2 63 bf ff 71 68 bb 85 01 7b 36 0f cd 2b // a8 93 46 68 2a 6e a7 cc c4 6a fb db 5a b4 44 e3 f4 77 23 // 8b 2a b5 03 bd e9 14 d3 cf 17 89 53 9c de 9c 06 21 15 2c // d9 7b ff 9f 23 5d 88 a1 ef 4e a4 30 9d b3 a0 5d 40 1a f7 // fb 82 78 4b 05 0e f5 29 da b4 f1 f0 03 eb 29 71 0a 96 2f // 75 38 c5 21 e6 17 e2 f0 ef ac 36 18 2d 09 98 5e 1d 72 5c // c3 8c 38 33 a5 37 42 a0 2f 76 fb 28 54 a9 e4 5f 0f eb ac // f3 bd a8 3f 11 18 3e f5 b9 fe f0 2e bc df 56 d4 10 4b 17 // 5b ad 93 7d 8f 61 96 4f 97 d6 73 57 7c dc bb b4 8d 8e b6 // 2b 06 3e e6 56 3b 9f f0 53 71 9b af f8 71 bc d8 38 22 d8 // 65 b2 f7 ef 02 30 76 42 5a c5 cd 71 b1 f2 30 9d e0 c6 f1 // 4c c9 c4 d3 e8 fa d9 45 f7 56 a7 c8 a0 84 ea 1b fd f5 ac // 6e 74 00 43 e7 f7 bd ac a0 67 74 b0 84 ae 31 4c 26 36 52 // 9d 4f dc d9 65 c7 f8 c0 71 56 57 26 20 b8 27 d6 94 ef dc // 9d 2b fc 5a a9 39 12 20 a8 37 65 f2 c7 1f cd 48 d4 ac ae // d6 0a fb 53 d1 01 3f a3 b1 5e 94 8e c4 15 9f 7d 13 0e f8 // 5b 59 40 18 34 6e 99 03 4c 18 73 82 85 22 3e a5 3a 6b 1d // 5c f1 1a 60 7d e2 e1 96 08 ba 03 ec 97 0a 91 5b 77 38 24 // 26 1f 3f c9 31 dd 6d 3b 93 4d 89 f0 7b af 14 77 63 14 c3 // ee b8 cd 05 37 ef 57 36 f5 65 fb d1 4e 52 0d 4a b2 f7 7e // d9 59 7b 76 ff 91 f8 d1 f9 9e bd 6e 47 3e fd a7 ac cb 27 // 39 75 a0 69 44 d1 03 70 32 12 99 92 b9 94 ca 79 1a 09 b4 // d8 39 80 a1 e4 94 b0 f9 70 98 df 5f 6f b6 bb b0 27 22 ad // b1 1d c3 19 c5 65 c2 c3 63 cb d1 9d 9f b3 ef b4 61 3b 62 // d6 58 4c d5 3f 7b d8 0e 3e 89 30 4f 44 4c e9 dd 18 35 66 // 1e 3b b4 de 02 cc f5 68 a2 a5 da af 0d 56 89 8d 42 86 c3 // fb 62 e2 2a f6 2d 7a c3 18 68 58 34 46 7f 33 75 61 dd e2 // e0 c1 e2 82 7c df fc f4 2c 17 72 8e e6 4b 3f f4 cc c0 22 // 75 90 ba dd 0b d7 e4 48 b8 cc a0 89 2d 6a 5e 01 30 d2 ac // 66 5f 47 c6 b2 8d aa 10 1c 1b 31 98 69 bd d3 9f a9 24 d6 // d9 ba 7d 72 fe da 5f 21 ac 78 64 1c 7d 48 01 d4 1c 78 79 // 72 1b 3b e4 da b4 0d 9c 4a 78 55 24 40 10 1f 37 34 89 cc // 52 40 b0 14 4a 9c e3 26 91 a7 84 b6 df e9 71 a2 1b b5 98 // 0f f6 7d a2 d1 bb 90 b2 23 c9 e1 92 a3 9c 1a ea dd 1f 5c // 79 08 11 07 9c 0b 51 a9 71 05 c9 9b 6f 95 d7 1b b3 ea 47 // c3 3d 9d cb 0a 53 c9 29 c4 44 99 e1 84 a3 cd 72 2c 90 8d // 3b 0d 15 7e 28 ff de b2 ed 71 92 e7 80 d9 6a 7a 2f 0f d5 // a8 7b dc 97 3e 04 9d a0 ca f9 31 f2 6f 5a 21 81 3e 2e 60 // 2c eb 22 59 99 7e 02 05 ce 48 fd 94 24 bd 6d 4d 75 dd 43 // 01 f4 29 ee 30 74 5c d8 39 a4 0d be ab 4c 3d b2 f0 f1 0b // ba ea 07 1c a4 1d 13 92 38 56 81 73 0a 36 78 a5 f6 0f 60 // 4d be 19 cb 9d 7d d2 34 33 7e 32 74 51 b8 cc 65 39 4a f3 // 99 43 2e f7 fc 37 65 d0 55 87 4e bd ca 14 e5 99 92 92 d6 // f7 2f 31 e9 2b ac f2 5d b5 ef 8f 52 12 95 2c 19 10 de 06 // dd be 16 87 a0 e1 83 79 22 f2 22 82 89 91 6e d3 ae b7 b9 // cc 24 da 3a e4 71 39 e3 71 93 0a fa 6d 35 73 df 67 32 c2 // 6c 0c 7a e0 6d 9c ed fa 77 16 07 11 bc b0 6e 65 53 33 8d // ea e4 c5 73 1c f5 3c c1 54 11 30 96 d0 2f 30 36 d7 d9 ed // fc dc 33 1e 4b b8 60 c5 20 84 89 21 2e 90 4e ab 70 e7 f8 // 60 b0 37 98 95 cb de cb f7 a0 b7 a2 5e 5b 85 3c 7d be 08 // a4 e2 96 a3 0a fe c8 cf 5a 9f 6e a4 ae f3 2a 50 86 55 d5 // 39 a7 70 b2 1e 66 0c 9e e1 d7 68 8c 56 ab eb 7c f1 af cc // c8 d5 97 80 cf 26 31 25 89 e0 c8 e1 bc 00 ad 7b 13 25 cd // 9a 5d d6 92 46 e0 b3 34 07 c3 81 ea 09 26 51 54 ae c2 97 // e4 cc df 97 85 a1 04 2a 83 e7 7c 13 d4 ce 43 60 78 2f 24 // 28 f9 91 6b 5c d1 23 b0 89 eb 68 3d 30 c1 e8 95 b9 94 4a // a9 05 a1 a5 b5 23 01 d8 cc 5e 47 41 83 4e ad 6e bd b5 dc // 05 c9 c4 9c 5e 88 3e 99 d4 0b 98 38 03 7b ea f8 76 53 4d // 74 78 56 10 3e 59 ca f6 26 6f bb e7 60 b6 ef 83 d0 04 63 // 4b 74 f1 4f 8e b4 ae f9 3c 4c c9 cb bd 78 d8 3d 53 2c 70 // fe ef 51 ea 3f 17 0b 25 d8 1a 6a 9b 07 4b fc a7 e9 b3 77 // 1b f8 35 17 e0 dd 9d 06 00 f7 0b 86 b2 0f 61 fe 36 07 6f // 8b ad a3 34 b2 39 0f a9 54 97 3b c9 01 61 9a 3c fd 03 93 // 49 cb 32 86 25 f4 95 ab 28 8d bd d6 db fd 02 2c 2a 83 f5 // 9e 0b 99 86 19 a1 2e 35 89 1b 5a e9 e8 3a 71 76 55 07 b4 // a5 71 cd 22 41 e5 88 5c 70 52 44 c1 02 26 88 be f7 c5 06 // 5f bc f2 19 fc 01 75 3a db 61 1b 3f bc 09 40 3d cb 10 a4 // f9 9d 78 86 67 ef f7 5f a2 70 74 ca 84 81 a6 33 53 0e 26 // 16 3c cf 7d ad a0 49 d2 3e 71 7e 06 7b 6f a5 b2 f6 52 bc // 50 ab da 9e 7c cd c5 f2 f3 c3 5e cc 2c 44 31 c8 19 c9 69 // 1b e4 42 2e 37 97 50 77 4e 9f 39 da e0 6f 26 42 3c 8a 42 // 78 78 9c 9f 31 11 b4 3f 6d d2 5b 0a d4 7c 4c c5 fd a3 f3 // ed 82 07 9c 93 66 e0 ad ce d8 83 48 8f 42 9c 1d 7e 1b 35 // 1f d0 bb 20 4d d7 97 7e f2 24 c4 df 6d 7a 5f 76 97 bc 65 // 00 a7 d0 3a 8a 91 41 54 77 9f a7 09 2b f1 be 6b ad 40 92 // 36 7c e5 d2 95 a5 d5 d0 e7 c4 69 f3 72 ca 20 11 d6 12 63 // 70 25 e8 9f 17 8a e9 ad a0 c5 b7 3b cb 7d 7c 03 4f f5 95 // 26 3c d4 21 6e 3c 76 ba 5f 3d 81 93 2a 08 8a 90 bf 80 43 // e8 77 e2 99 c6 70 ef 16 22 a0 98 d5 51 9d 9a dc 4e e7 d4 // cd 00 e5 93 4a 43 75 fa 83 fd b8 12 14 b8 92 48 2b 31 bd // de 59 a7 0a af 25 cb 7f 41 7c 3a 2a 91 c4 e5 4b 48 14 9f // 6c 41 d9 d3 96 ee 6f f1 3e 30 28 c6 4a 7c 9b 1f 2e 7c 6e // 67 18 4a 3d 52 d6 f5 70 db 3d 22 5c 94 74 23 c4 c6 53 3f // 22 df 57 d1 5c 5e 5a 31 83 42 2b d3 78 b0 6f e4 73 2a 94 // 01 dc b1 98 40 fb 8f a5 c5 0a 0f f4 97 fe f3 62 c5 07 75 // 3e 46 b8 88 1d 3e 76 7f 3b 1d 89 3a 38 05 94 1c 94 f2 ef // a0 5c e3 4b 9e a8 1d 71 69 84 af 68 34 23 0d 47 07 a8 70 // 89 d4 07 79 50 3e e6 a9 bb 24 5d 7d 99 7f 14 ac b8 0e 89 // 73 1c 04 2b bb be 3d cd 05 17 7b 0e e0 ee c2 34 55 83 0e // f5 b6 5a ca 35 7f 2b 0b 88 7e 0b 98 21 c0} (length 0x1000) // } // len: len = 0x1000 (8 bytes) // } // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {b7 68 eb 20 30 4f 2f dc 5a 96 94 a4 86 78 40 d9 // 31 70 ca 1a 86 40 6f} (length 0x17) // } // len: len = 0xfffffec0 (8 bytes) // } // } // } // msg_iovlen: len = 0x4 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: send_flags = 0x8010 (4 bytes) // pad = 0x0 (4 bytes) // } // } // f: send_flags = 0x0 (8 bytes) // ] NONFAILING(*(uint64_t*)0x2000000003c0 = 0x200000000180); NONFAILING(*(uint16_t*)0x200000000180 = 0x1e); NONFAILING(*(uint8_t*)0x200000000182 = 1); NONFAILING(*(uint8_t*)0x200000000183 = 0); NONFAILING(*(uint32_t*)0x200000000184 = 0); NONFAILING(*(uint32_t*)0x200000000188 = 0); NONFAILING(*(uint32_t*)0x20000000018c = 0); NONFAILING(*(uint32_t*)0x2000000003c8 = 0x10); NONFAILING(*(uint64_t*)0x2000000003d0 = 0x200000000380); NONFAILING(*(uint64_t*)0x200000000380 = 0x200000000480); NONFAILING(memcpy( (void*)0x200000000480, "\xc3\xe9\x72\xbd\x85\xa6\xd8\x41\x36\xd6\xdd\x55\x04\x8d\x35\x93\xa7" "\x4f\x33\x8c\xe6\x77\x2a\xb9\xa6\xf6\x40\x41\xc2\xf6\xfb\xbe\xcd\xc0" "\x8e\xbc\xd3\x19\x2b\x6a\x53\x66\x2d\xae\x7c\x8e\x9c\x66\x5e\x80\xa5" "\xd0\x92\x5f\x72\x8d\xca\xc3\x0c\x29\x79\x39\x92\xe5\x88\x95\x26\x53" "\xd4\x14\xcb\x8c\xcd\xab\xc3\x87\x67\xfe\xe8\x19\xec\x5a\xf0\xc5\xee" "\x93\x68\x80\xfe\x85\x49\xb4\xed\x34\x77\x79\xca\xb4\xff\xd4\xe0\xb6" "\x2c\x53\xa1\xc0\x1d\xb2\x8f\x2b\x3f\x91\xc3\x42\x11\xc9\x35\x3b\xc1" "\xde\xce\x61\x51\x19\x17\xc2\x24\x5f\xd6\x6c\xb8\xdf\xfe\xac\xb4\xd4" "\x6d\x62\x7c\x97\xb4\x98\xbf\x1f\xf6\xb3\x13\xbf\xbc\x97\x65\x45\x7c" "\x83\x17\x71\xd5\xee\xc7\x99\x7e\xc2\x42\xe4\x50\x5f\x01\xc1\xbb\x3e" "\x06\x9b\x2e\x63\x0f\x42\xa2\xbe\x86\x59\x8a\x61", 182)); NONFAILING(*(uint64_t*)0x200000000388 = 0x64); NONFAILING(*(uint64_t*)0x200000000390 = 0x200000000300); NONFAILING(memset((void*)0x200000000300, 86, 1)); NONFAILING(*(uint64_t*)0x200000000398 = 1); NONFAILING(*(uint64_t*)0x2000000003a0 = 0x200000001600); NONFAILING(memcpy( (void*)0x200000001600, "\x3e\xed\x50\xd0\x12\x57\x19\xa8\x10\xf8\x8e\x3f\x47\x18\x6f\xe4\xda" "\xe7\x41\x82\xdf\xd1\x09\xa2\x58\x7c\x47\x97\x41\x0c\x9b\x8e\x39\xbd" "\x3d\x9a\xa1\x44\xd5\x90\x86\x47\xc3\x0c\x8d\xb6\x9b\x5c\x17\x08\x4c" "\x9b\x1b\xfb\xb8\x68\x07\x37\xc4\xf8\x8a\xbc\xdb\xc7\xd2\x94\xd7\x2a" "\xb1\xb3\x44\x27\x09\x15\xdf\x9d\xdf\x56\x35\x64\x4c\x35\x1c\x22\xb2" "\x9d\x94\x8a\xc4\x10\x6b\xce\x71\x07\x57\x0b\xee\xd6\x30\x77\xcf\xbc" "\x98\xef\x71\x69\x9e\xae\x65\xd3\x77\x24\xd9\x95\xb5\x53\xe7\xa3\xad" "\xe6\x19\xb5\x22\x31\x3a\xb3\x82\xca\xf8\x79\xfe\xb4\x89\x42\x87\x8e" "\x60\x5e\xe3\xee\x28\x72\x79\x4e\x3a\xbe\x22\xa3\xf0\x25\x06\x8b\x62" "\x8a\x5d\x92\x46\x80\x92\xa5\xcc\x64\x9b\xbb\xd9\x78\xb5\x77\x2e\x53" "\x79\x39\x43\x2a\x50\x21\x22\x23\x5c\xed\x31\x2d\xaf\xd1\x08\xc9\xff" "\xeb\x0b\x38\xcc\x16\xda\x94\x18\xca\x01\xd4\x85\xa6\xaf\xb5\x82\x7d" "\xa4\xdf\x6e\x11\x21\xec\x30\x7d\xe1\x4b\xb3\x2b\x6a\x97\x76\x08\xe4" "\x57\x6a\x99\x81\x82\xdd\x93\xd5\x92\xff\x43\xe5\x5b\xfd\xbb\xce\x23" "\xec\xd5\x01\xe4\x3b\x3e\x93\xef\x8d\x9d\x01\x71\x1d\xff\x54\xc3\x01" "\xe2\x99\xd3\x80\x1a\x3c\xff\xe6\xc9\x88\x3f\xbd\x0e\x47\x12\x4d\xc0" "\x25\x69\xf6\x2d\x48\xb8\x78\xfc\xb5\x8c\xe9\x9f\xcf\xfc\xd2\xa5\x16" "\x6e\xff\x3a\xd9\x3c\xf1\xd1\x37\x27\x49\x93\xd8\x6a\x3b\x37\x30\xd6" "\x3d\xed\x75\x9f\x6c\xa8\x8f\xa4\x49\xe5\x57\x5b\x15\x32\x1e\x5a\x58" "\xa1\xf8\x88\xee\xd7\x46\x6d\xb4\x97\x6c\xe3\x5f\x6d\x2e\xfb\x5a\xd0" "\x5d\x99\xa6\x64\x82\xdc\x60\x7c\xb5\xac\xb2\x4d\x32\x68\x03\xbd\x33" "\x75\x19\xcc\x98\x10\x3f\x59\xc6\x3b\x59\x62\xcd\x72\xe4\x49\x7d\x1b" "\x00\x81\x7d\x6e\x09\xde\x70\x27\x0a\x09\xb4\x93\xc2\x22\x66\x17\xb1" "\xc9\xef\x9d\x50\x6b\xe0\x0d\x6e\x07\xf1\x46\x33\xa9\x66\xf0\x4e\xcc" "\xa9\x0f\xb8\xd2\xb9\x63\xad\x6f\x38\x17\x93\x5b\xd6\x53\x4f\xa3\xda" "\x1c\x5d\xc4\x68\x78\x9c\xbf\x11\x92\xf3\xc0\xbf\xf3\x77\x7f\x1e\xdd" "\x2a\xda\x5d\x35\xf8\x8f\x12\xf2\x9e\x95\x2c\x44\x44\x5c\xe6\x23\x50" "\x9d\x66\x81\x1c\x80\xa9\xe0\xf1\x3a\xd8\x5a\xba\x37\xd8\x6f\xf0\xda" "\x4d\xda\x60\x1d\x9e\x8a\xcb\x26\x42\x33\xbc\x93\x9f\xb0\x56\x31\x66" "\x12\xcf\xf6\x87\xd5\xc4\x41\x57\xbe\x05\xbc\xc8\x8b\x33\x3f\xf2\xa4" "\x00\x41\xd9\x8f\x1a\xcf\xe6\xe2\x23\x1a\x84\xe0\x9b\xd7\xa5\x4a\x04" "\x42\xcf\x87\xce\x3e\xe8\xfd\x8d\xa3\x9d\xa1\x86\x28\x62\xae\x40\xfc" "\x3c\xb3\x05\x5c\x8b\x70\xe6\x2f\x24\x38\x50\x70\x73\x41\xf5\x14\x26" "\xbb\x3e\x71\xc7\xa4\xff\xfe\xfa\xb0\x60\xdb\x78\x60\x00\x61\x8b\x05" "\xeb\x08\x7a\x42\x4a\x2f\x30\xf6\xa2\x32\xff\x44\xb6\x05\xf7\x0c\xee" "\xc0\xa8\xf7\x0e\x37\x90\x7f\x6e\x0b\xbb\xa2\x1e\x9d\x5b\x7e\xcb\x6d" "\x28\x77\x42\xb7\x5c\x10\x1b\xa7\x95\x25\x91\x8c\x34\x73\xea\xe3\x8f" "\x3c\x17\x72\x49\xdf\xa8\x81\x66\x61\xc9\x92\x1f\x0b\x0c\x85\x8d\x53" "\xab\x87\xc8\x40\x7b\x97\x95\x0c\x84\x21\x11\x00\x2e\xdd\x1d\x1e\x80" "\xb8\x01\xb4\x95\xda\x28\xbc\xd5\x40\x9b\xc9\x71\xe5\x5d\xab\x18\x57" "\xe1\x88\xac\x97\x28\xef\xc8\xf9\xa4\x54\x39\x45\xf8\x6a\xde\x13\xb4" "\x45\xea\xce\xcb\xbf\x84\x8a\x96\x41\x0a\xc3\x7c\x57\xe3\xe9\xe8\xbc" "\x8b\x8f\xad\xd5\x59\xd2\x25\xc7\x46\x86\x39\xda\x2b\x5d\x12\x08\x55" "\x8b\x51\xe9\x4c\x14\xfa\xa7\x94\x7a\x7c\x60\xe8\x1a\x96\xbb\x5d\x19" "\x4c\xc7\x28\x9a\xdb\xc0\x2e\xbb\x4b\x49\xbe\x1f\x1e\xfc\x42\x9d\xb2" "\xf9\xb7\x9b\x5a\x22\x91\x9d\xba\x0c\x35\x34\x10\x42\xc5\x77\x69\x42" "\xc5\x23\x65\x36\x7c\x4b\xfc\x95\xb4\x2b\xe3\x83\xcc\xa7\x10\x71\x61" "\xde\xd7\xe8\x51\xd0\x12\x6d\xa3\x3d\x58\x1f\x1e\x2b\x08\xd0\xc0\x61" "\xe8\x6d\x31\xe7\xa8\x3f\x9b\x51\xc7\x9b\x40\x34\xc7\xde\xda\x76\x97" "\x03\x4e\x14\x04\xc6\xe8\xe4\x59\xf7\x6c\x2e\xfe\x64\x35\x01\x46\xc7" "\x43\x7e\xf8\x08\xe0\x4c\xa1\x4d\xf5\xf6\xf5\x00\x26\x4f\xd9\x77\x27" "\x2b\xbf\x8f\xc0\x96\x77\x4e\x8e\xb6\x1d\x09\x63\x43\x07\x51\xac\x14" "\x25\xa0\x73\xf8\x43\x46\xb0\xeb\xa3\x68\xcb\xa7\xfa\x34\xad\xc4\x20" "\x80\x0d\x4f\x99\x92\x72\x80\xeb\xa1\x99\xf9\x69\x5c\xf8\x81\x24\xfa" "\xfc\x3a\x2b\x12\x26\xd2\xf2\xab\x3e\xa2\x7c\x69\xa1\x27\x65\x0c\xf5" "\xc7\x25\xb5\x4c\x02\xbd\x87\x29\x03\x3c\xf6\x99\xce\x7f\x03\x0f\x9a" "\x34\x42\x05\x62\x44\xda\x3c\xfb\x61\xa8\x12\x6d\xba\x11\x37\x76\x24" "\xf3\x9e\xb0\x09\x24\x21\x52\xfd\x7b\x8b\x88\xde\x7d\xd8\x60\x57\xf2" "\x9b\xfc\xb7\xb7\xdf\x0e\x65\xe7\xe9\xac\x9e\xea\xa4\x1a\xfa\x62\x74" "\x36\x98\xbf\xf0\x3d\x5b\x2d\x51\xfb\x6b\xca\x2d\x92\x29\x4e\x8e\x17" "\x7c\xfa\x36\x61\xb2\x6f\x1c\x04\x0e\x9b\xed\x98\x3b\x7b\xc0\xaa\x15" "\x4e\xb9\xc9\x2e\x4e\xe2\x50\x91\x31\x8c\x53\x11\x3a\x1c\x23\xac\x62" "\xd2\xd7\x15\x04\xcb\xa9\x90\x41\xf2\x9a\x4f\x33\x21\x33\x29\x2c\xf2" "\x0a\xbe\xc9\x22\x2a\x2a\xcc\xa5\x7c\xac\x48\xfa\x6c\x06\x68\xee\x5e" "\xec\xb4\x94\x74\x1a\x64\xd3\x3b\x01\x1d\xcc\xa7\x46\x96\xd4\x61\x4c" "\x5b\x45\xa5\xd2\x09\x83\xb1\x70\x8d\x36\x5e\xd3\xff\xa6\x0f\x91\x61" "\x97\x2a\x61\x1c\x22\x64\x2c\x3c\x25\x9b\x41\xf9\x43\xf6\xd7\xa8\xb6" "\x0f\x28\x4d\x32\x5e\x38\xfe\x76\xf0\x64\x5e\x06\x9f\xf7\x0c\xae\x38" "\x85\x0c\xcf\x97\x31\x93\xb6\x23\x2c\x98\x7d\xf2\x62\x39\xa5\x74\x69" "\x1f\x7f\x07\xff\xfa\x6d\xea\xe1\xeb\x03\x24\xfe\x54\x65\x73\xc3\x6f" "\x2a\x2c\x31\xcd\x44\x25\x17\xa9\xb0\x36\xae\x6a\x2a\x49\x1e\x73\x43" "\x86\x46\x93\xc1\x07\xa5\xdc\x25\x85\x82\x08\x63\xc1\x46\xc1\xba\x6c" "\xaa\x4f\xea\x9b\x87\xd5\x67\x71\x6f\x4c\x8c\xa1\xa9\xd2\x84\x80\x55" "\xcd\x75\x05\x12\xd3\xb7\x41\x5d\x09\x00\x19\xdc\x8a\x04\xa1\xa1\xd2" "\x89\x31\x09\x3c\xd8\xf0\x0e\x94\xc4\x07\xca\x1f\xa2\xa5\xce\x90\x3d" "\x9d\xf2\x6e\x00\x8c\x07\xcd\x13\xaf\xa7\x83\x22\x0e\x1b\xd5\xe6\xb6" "\x06\x45\xf3\xdb\xb6\xec\xb4\x15\x6f\xed\xaf\xa2\xdd\x25\x49\x8c\x6a" "\x99\xd9\x4f\x0b\x38\x12\x5e\xa7\x74\x1b\x75\x10\x9d\xca\xc9\xf8\x06" "\x35\xf7\x9f\x5c\x8a\x04\x83\xbb\x9f\x05\xa3\xa5\xbf\x72\x1c\x75\x41" "\xed\xb2\x52\x44\x9f\x8b\x13\xe6\x3c\x37\x0a\x61\x46\x33\x2f\x03\xca" "\x1f\x1b\x6f\xe0\xbe\xd9\x84\xf1\x37\x44\xbb\x7f\xa0\xfe\x32\x2e\x83" "\xdd\xf9\xff\xb2\x08\x3e\x94\xf3\x36\x04\xa0\xa1\x99\x22\x0c\x45\x0d" "\xad\x94\xbf\x15\x48\x05\xe7\xf9\xe4\x35\x0c\xa2\xd8\x1a\xdf\x29\x78" "\xc8\x7d\xcc\x8a\x8a\x7d\x56\x29\x7e\xc1\x24\xbf\xef\x0d\x28\xf3\x57" "\x77\x20\x5e\x97\x32\x72\xc8\x7e\x01\x07\x0f\x14\xf5\xb1\x4d\xaa\x3b" "\x51\x04\xd9\xff\x6b\x29\x6c\x4f\x16\xed\x49\xeb\x42\xd3\x5e\x7b\xa3" "\xbc\xcb\x7a\x26\xc3\x3a\x26\x3d\xf8\x8a\xad\xd5\x96\xe9\xd9\xde\x0a" "\xbb\xd4\xd4\x49\xdf\x11\x08\x1f\x2c\xd6\x2e\x1d\x89\x62\xb9\xb9\xfe" "\xb2\x5a\x3b\x8e\x03\x53\x7d\x61\xa6\x1c\x11\xac\x22\xb7\x21\x1d\x12" "\xc8\x4e\x60\xa6\xab\xcc\x21\x9e\x55\x8b\x25\x13\xd8\xc5\x30\xb3\xc7" "\xa5\x7c\xdc\x47\xde\x54\x5a\xaf\xbb\x2a\x13\xc0\xe6\xc7\x5b\x1b\x92" "\xfa\x24\x1c\x71\x3c\x83\xa0\x9c\x92\xb2\xb6\x1d\x56\x51\x20\x37\x2a" "\x91\x43\x41\x55\x83\xc9\x59\x6f\x27\xa6\x63\xd4\x96\x7c\xd6\x53\xb0" "\x8c\xeb\xd6\xcb\x96\xc1\xf0\xdc\x80\xd5\x72\x67\xac\x9a\x82\x81\xd7" "\x14\x9b\xde\x88\x08\x28\xee\x27\xd6\x9a\x68\x18\xdb\x58\x32\x0d\xb2" "\x9d\x1b\x04\x4e\xaf\x6a\xb8\xa5\x10\x8b\xc5\x22\xde\x40\x69\x90\xb5" "\x39\x3b\x1f\x7e\x7b\xab\x71\xbf\x6c\xf8\xee\xd1\xcd\x59\xc7\x60\x7d" "\x66\x2e\x8b\x31\x3f\x5c\x4f\xce\x0f\x59\xb1\x02\x73\x71\x38\x10\x11" "\xb6\x3d\xd5\xb2\xb0\x97\x39\x08\x2c\x0d\x62\xff\xad\x96\xe3\x01\x53" "\xa3\x95\x23\x49\x37\xd3\x77\xc3\x2f\xe7\xaf\x82\xac\xa3\xa1\x9d\x0e" "\xbc\x4a\x5c\x5f\xb5\xff\x19\x0f\x14\xd5\x69\x5c\x70\x3b\x57\x1f\xb4" "\xbf\x03\x75\x66\x35\xca\xfc\x6c\xf6\x26\x7e\xab\x83\x6c\x34\x7a\x9d" "\x07\xe8\x08\x9f\xc1\x05\x34\x69\x34\xcf\x33\x64\xe5\xbe\x37\x0b\x3c" "\x42\xb9\x4b\xc5\xae\x3d\x17\xa8\x17\x39\x85\x66\xa2\x95\x32\x51\xeb" "\x91\x69\x7d\x67\x27\x81\x45\xdf\x9a\x4b\x91\x7b\xcc\xa1\xbf\x21\x17" "\x80\xb2\x2f\x4c\xaa\xcf\xcb\x76\x04\xc8\x4f\x94\x3d\x05\xf6\xfd\xf8" "\xed\xbd\x25\x8d\x7d\x8d\xbf\x84\xf9\xd9\x9e\x57\x47\x2c\x5b\x1c\x23" "\x37\xd7\x49\xa1\xf3\x45\xe6\x62\xe2\x53\x6d\x23\xc7\xa6\x3b\xbb\xbf" "\x00\xf8\xb5\xb0\xa2\x10\x6a\x03\x42\xab\x27\xb9\xa1\x0b\x82\xe8\x26" "\x68\xcd\x49\xe0\xcb\xb0\x9d\x7b\xe0\x21\x76\x45\xf1\xdd\xa3\xbe\x59" "\xc8\x23\x2f\xa2\x90\xd3\x47\x91\xcd\xa5\x2a\xa5\xb5\xce\xc6\x33\x9a" "\xb9\x6a\x2e\xb3\xf5\x32\x8c\xc7\xc0\xe6\x71\x7c\x28\x24\x34\x45\x47" "\xa2\xed\x51\x8f\x6b\x2b\x4e\x4f\xe5\xb6\x84\x59\x6a\xa6\xa9\xd3\x98" "\x8f\xc5\xd5\xff\x4c\xb4\x6c\xec\x99\xd9\x51\xb8\x38\x6b\x10\x94\x9a" "\x16\x3a\xf9\x74\xb7\x54\x3d\xf9\x7b\x48\x82\xa4\xed\x60\xe9\x27\xa1" "\xde\xb6\x7c\x5f\x81\x42\x35\xbe\xf6\x5f\xea\x79\xa2\xc7\x12\x81\x5b" "\xe7\x40\x3c\x93\xa3\x70\x7f\xb9\x0d\x46\x04\xec\x3a\x6a\x3b\x09\x28" "\xf2\x53\xf6\xab\x6b\xd5\x6c\x95\x8e\x02\x6c\x8c\x58\x17\x2c\x4a\xc2" "\xa3\xef\xe2\xec\xd5\xce\xa7\x0c\x83\x13\xf9\xac\x2d\x63\x8b\xc2\x96" "\xba\x99\xe2\xca\x86\xd2\xfd\x06\xb5\x40\x2c\xdc\xdd\xc3\xf3\xc9\x84" "\x5d\x5a\xe7\x7f\x6f\x36\x96\x3b\x91\xe8\xf6\xcd\xcc\xd1\x7a\xbe\x8d" "\x40\xed\x02\x46\x3a\xf4\xbb\x0e\x49\x63\x44\xf3\x50\x09\x7f\x1c\xc1" "\x33\x13\xfa\x1e\x17\x2b\x63\x55\x6e\xd2\xb8\xa8\x12\x1c\x01\xa5\xfb" "\x34\x3f\xf7\x76\x78\x21\x62\x6f\xc4\x9b\x0d\x6b\xd5\x22\xe1\xc9\xbf" "\x13\x7d\x5a\x5b\xcc\xb4\xbc\x8d\xbb\x64\xc8\x3a\x82\xef\x6c\x28\x94" "\xf3\x89\x6c\x9f\x6b\xf0\xc3\x76\x40\x11\xd5\x3e\xeb\x6d\xb9\xea\x9d" "\xae\x22\xd3\xeb\xcc\xa4\x94\x2d\x58\x28\xc0\xbc\xa0\xd9\xea\x37\x70" "\x1d\x5a\x06\xc0\x66\xac\x4f\xe3\x18\xe1\x1e\x9c\x0d\x6c\x65\x8a\xc8" "\x10\xfb\x5d\x78\x36\xcf\xff\xe4\xcc\xbb\x09\x34\xe5\x56\x7d\x74\x69" "\x59\x80\xa1\x56\xd4\xbf\x1c\x18\x86\x1c\x5a\x29\xcc\xd3\x49\x99\x9d" "\xc2\x05\x62\xd0\x0e\x1f\x6c\x18\x51\xae\x56\x35\x41\x08\x64\x38\xd6" "\x0b\x97\x5c\x8c\xeb\x46\x64\x14\xff\x60\xef\xa0\xb2\xde\xe7\x90\xfd" "\x06\x59\xff\xa9\x8b\x92\x41\x4c\x13\xd5\xa6\x82\x53\x68\xf5\x6c\x49" "\x84\x41\x22\x05\x04\x1c\xd8\xe0\x06\xc7\x12\x7d\x43\x95\xec\xdf\xfb" "\x5a\xdd\xf8\x0e\xf9\x38\xce\x54\xa3\x67\x15\x4c\x4f\xc2\x86\xd5\xf9" "\x69\x32\x5c\x12\xb1\x36\x55\xa9\xa9\x56\xdd\x3b\x98\x28\x1f\x53\x7e" "\x83\x76\x69\xfc\x55\xd8\x93\x06\x76\xe8\x07\xaa\x8c\xd0\x46\xe0\xf4" "\x58\x3d\x59\xf8\x6c\xb9\x9f\x3f\x7a\x7d\xdd\xe1\xfb\x39\x11\x1f\xde" "\xc7\x67\x7d\x2f\xee\x4b\x8f\x48\x14\xa5\xde\xf5\xeb\xcc\x67\xc6\x53" "\x38\x4c\xe8\x0e\xaf\xfd\x88\x04\x05\xf7\xed\xf8\xfd\x3e\xa0\x49\xf0" "\x40\x59\x5d\xf4\xa7\x5e\x2f\x89\x2e\x7a\x85\xe0\xba\x35\x1f\xb8\xd2" "\x63\xbf\xff\x71\x68\xbb\x85\x01\x7b\x36\x0f\xcd\x2b\xa8\x93\x46\x68" "\x2a\x6e\xa7\xcc\xc4\x6a\xfb\xdb\x5a\xb4\x44\xe3\xf4\x77\x23\x8b\x2a" "\xb5\x03\xbd\xe9\x14\xd3\xcf\x17\x89\x53\x9c\xde\x9c\x06\x21\x15\x2c" "\xd9\x7b\xff\x9f\x23\x5d\x88\xa1\xef\x4e\xa4\x30\x9d\xb3\xa0\x5d\x40" "\x1a\xf7\xfb\x82\x78\x4b\x05\x0e\xf5\x29\xda\xb4\xf1\xf0\x03\xeb\x29" "\x71\x0a\x96\x2f\x75\x38\xc5\x21\xe6\x17\xe2\xf0\xef\xac\x36\x18\x2d" "\x09\x98\x5e\x1d\x72\x5c\xc3\x8c\x38\x33\xa5\x37\x42\xa0\x2f\x76\xfb" "\x28\x54\xa9\xe4\x5f\x0f\xeb\xac\xf3\xbd\xa8\x3f\x11\x18\x3e\xf5\xb9" "\xfe\xf0\x2e\xbc\xdf\x56\xd4\x10\x4b\x17\x5b\xad\x93\x7d\x8f\x61\x96" "\x4f\x97\xd6\x73\x57\x7c\xdc\xbb\xb4\x8d\x8e\xb6\x2b\x06\x3e\xe6\x56" "\x3b\x9f\xf0\x53\x71\x9b\xaf\xf8\x71\xbc\xd8\x38\x22\xd8\x65\xb2\xf7" "\xef\x02\x30\x76\x42\x5a\xc5\xcd\x71\xb1\xf2\x30\x9d\xe0\xc6\xf1\x4c" "\xc9\xc4\xd3\xe8\xfa\xd9\x45\xf7\x56\xa7\xc8\xa0\x84\xea\x1b\xfd\xf5" "\xac\x6e\x74\x00\x43\xe7\xf7\xbd\xac\xa0\x67\x74\xb0\x84\xae\x31\x4c" "\x26\x36\x52\x9d\x4f\xdc\xd9\x65\xc7\xf8\xc0\x71\x56\x57\x26\x20\xb8" "\x27\xd6\x94\xef\xdc\x9d\x2b\xfc\x5a\xa9\x39\x12\x20\xa8\x37\x65\xf2" "\xc7\x1f\xcd\x48\xd4\xac\xae\xd6\x0a\xfb\x53\xd1\x01\x3f\xa3\xb1\x5e" "\x94\x8e\xc4\x15\x9f\x7d\x13\x0e\xf8\x5b\x59\x40\x18\x34\x6e\x99\x03" "\x4c\x18\x73\x82\x85\x22\x3e\xa5\x3a\x6b\x1d\x5c\xf1\x1a\x60\x7d\xe2" "\xe1\x96\x08\xba\x03\xec\x97\x0a\x91\x5b\x77\x38\x24\x26\x1f\x3f\xc9" "\x31\xdd\x6d\x3b\x93\x4d\x89\xf0\x7b\xaf\x14\x77\x63\x14\xc3\xee\xb8" "\xcd\x05\x37\xef\x57\x36\xf5\x65\xfb\xd1\x4e\x52\x0d\x4a\xb2\xf7\x7e" "\xd9\x59\x7b\x76\xff\x91\xf8\xd1\xf9\x9e\xbd\x6e\x47\x3e\xfd\xa7\xac" "\xcb\x27\x39\x75\xa0\x69\x44\xd1\x03\x70\x32\x12\x99\x92\xb9\x94\xca" "\x79\x1a\x09\xb4\xd8\x39\x80\xa1\xe4\x94\xb0\xf9\x70\x98\xdf\x5f\x6f" "\xb6\xbb\xb0\x27\x22\xad\xb1\x1d\xc3\x19\xc5\x65\xc2\xc3\x63\xcb\xd1" "\x9d\x9f\xb3\xef\xb4\x61\x3b\x62\xd6\x58\x4c\xd5\x3f\x7b\xd8\x0e\x3e" "\x89\x30\x4f\x44\x4c\xe9\xdd\x18\x35\x66\x1e\x3b\xb4\xde\x02\xcc\xf5" "\x68\xa2\xa5\xda\xaf\x0d\x56\x89\x8d\x42\x86\xc3\xfb\x62\xe2\x2a\xf6" "\x2d\x7a\xc3\x18\x68\x58\x34\x46\x7f\x33\x75\x61\xdd\xe2\xe0\xc1\xe2" "\x82\x7c\xdf\xfc\xf4\x2c\x17\x72\x8e\xe6\x4b\x3f\xf4\xcc\xc0\x22\x75" "\x90\xba\xdd\x0b\xd7\xe4\x48\xb8\xcc\xa0\x89\x2d\x6a\x5e\x01\x30\xd2" "\xac\x66\x5f\x47\xc6\xb2\x8d\xaa\x10\x1c\x1b\x31\x98\x69\xbd\xd3\x9f" "\xa9\x24\xd6\xd9\xba\x7d\x72\xfe\xda\x5f\x21\xac\x78\x64\x1c\x7d\x48" "\x01\xd4\x1c\x78\x79\x72\x1b\x3b\xe4\xda\xb4\x0d\x9c\x4a\x78\x55\x24" "\x40\x10\x1f\x37\x34\x89\xcc\x52\x40\xb0\x14\x4a\x9c\xe3\x26\x91\xa7" "\x84\xb6\xdf\xe9\x71\xa2\x1b\xb5\x98\x0f\xf6\x7d\xa2\xd1\xbb\x90\xb2" "\x23\xc9\xe1\x92\xa3\x9c\x1a\xea\xdd\x1f\x5c\x79\x08\x11\x07\x9c\x0b" "\x51\xa9\x71\x05\xc9\x9b\x6f\x95\xd7\x1b\xb3\xea\x47\xc3\x3d\x9d\xcb" "\x0a\x53\xc9\x29\xc4\x44\x99\xe1\x84\xa3\xcd\x72\x2c\x90\x8d\x3b\x0d" "\x15\x7e\x28\xff\xde\xb2\xed\x71\x92\xe7\x80\xd9\x6a\x7a\x2f\x0f\xd5" "\xa8\x7b\xdc\x97\x3e\x04\x9d\xa0\xca\xf9\x31\xf2\x6f\x5a\x21\x81\x3e" "\x2e\x60\x2c\xeb\x22\x59\x99\x7e\x02\x05\xce\x48\xfd\x94\x24\xbd\x6d" "\x4d\x75\xdd\x43\x01\xf4\x29\xee\x30\x74\x5c\xd8\x39\xa4\x0d\xbe\xab" "\x4c\x3d\xb2\xf0\xf1\x0b\xba\xea\x07\x1c\xa4\x1d\x13\x92\x38\x56\x81" "\x73\x0a\x36\x78\xa5\xf6\x0f\x60\x4d\xbe\x19\xcb\x9d\x7d\xd2\x34\x33" "\x7e\x32\x74\x51\xb8\xcc\x65\x39\x4a\xf3\x99\x43\x2e\xf7\xfc\x37\x65" "\xd0\x55\x87\x4e\xbd\xca\x14\xe5\x99\x92\x92\xd6\xf7\x2f\x31\xe9\x2b" "\xac\xf2\x5d\xb5\xef\x8f\x52\x12\x95\x2c\x19\x10\xde\x06\xdd\xbe\x16" "\x87\xa0\xe1\x83\x79\x22\xf2\x22\x82\x89\x91\x6e\xd3\xae\xb7\xb9\xcc" "\x24\xda\x3a\xe4\x71\x39\xe3\x71\x93\x0a\xfa\x6d\x35\x73\xdf\x67\x32" "\xc2\x6c\x0c\x7a\xe0\x6d\x9c\xed\xfa\x77\x16\x07\x11\xbc\xb0\x6e\x65" "\x53\x33\x8d\xea\xe4\xc5\x73\x1c\xf5\x3c\xc1\x54\x11\x30\x96\xd0\x2f" "\x30\x36\xd7\xd9\xed\xfc\xdc\x33\x1e\x4b\xb8\x60\xc5\x20\x84\x89\x21" "\x2e\x90\x4e\xab\x70\xe7\xf8\x60\xb0\x37\x98\x95\xcb\xde\xcb\xf7\xa0" "\xb7\xa2\x5e\x5b\x85\x3c\x7d\xbe\x08\xa4\xe2\x96\xa3\x0a\xfe\xc8\xcf" "\x5a\x9f\x6e\xa4\xae\xf3\x2a\x50\x86\x55\xd5\x39\xa7\x70\xb2\x1e\x66" "\x0c\x9e\xe1\xd7\x68\x8c\x56\xab\xeb\x7c\xf1\xaf\xcc\xc8\xd5\x97\x80" "\xcf\x26\x31\x25\x89\xe0\xc8\xe1\xbc\x00\xad\x7b\x13\x25\xcd\x9a\x5d" "\xd6\x92\x46\xe0\xb3\x34\x07\xc3\x81\xea\x09\x26\x51\x54\xae\xc2\x97" "\xe4\xcc\xdf\x97\x85\xa1\x04\x2a\x83\xe7\x7c\x13\xd4\xce\x43\x60\x78" "\x2f\x24\x28\xf9\x91\x6b\x5c\xd1\x23\xb0\x89\xeb\x68\x3d\x30\xc1\xe8" "\x95\xb9\x94\x4a\xa9\x05\xa1\xa5\xb5\x23\x01\xd8\xcc\x5e\x47\x41\x83" "\x4e\xad\x6e\xbd\xb5\xdc\x05\xc9\xc4\x9c\x5e\x88\x3e\x99\xd4\x0b\x98" "\x38\x03\x7b\xea\xf8\x76\x53\x4d\x74\x78\x56\x10\x3e\x59\xca\xf6\x26" "\x6f\xbb\xe7\x60\xb6\xef\x83\xd0\x04\x63\x4b\x74\xf1\x4f\x8e\xb4\xae" "\xf9\x3c\x4c\xc9\xcb\xbd\x78\xd8\x3d\x53\x2c\x70\xfe\xef\x51\xea\x3f" "\x17\x0b\x25\xd8\x1a\x6a\x9b\x07\x4b\xfc\xa7\xe9\xb3\x77\x1b\xf8\x35" "\x17\xe0\xdd\x9d\x06\x00\xf7\x0b\x86\xb2\x0f\x61\xfe\x36\x07\x6f\x8b" "\xad\xa3\x34\xb2\x39\x0f\xa9\x54\x97\x3b\xc9\x01\x61\x9a\x3c\xfd\x03" "\x93\x49\xcb\x32\x86\x25\xf4\x95\xab\x28\x8d\xbd\xd6\xdb\xfd\x02\x2c" "\x2a\x83\xf5\x9e\x0b\x99\x86\x19\xa1\x2e\x35\x89\x1b\x5a\xe9\xe8\x3a" "\x71\x76\x55\x07\xb4\xa5\x71\xcd\x22\x41\xe5\x88\x5c\x70\x52\x44\xc1" "\x02\x26\x88\xbe\xf7\xc5\x06\x5f\xbc\xf2\x19\xfc\x01\x75\x3a\xdb\x61" "\x1b\x3f\xbc\x09\x40\x3d\xcb\x10\xa4\xf9\x9d\x78\x86\x67\xef\xf7\x5f" "\xa2\x70\x74\xca\x84\x81\xa6\x33\x53\x0e\x26\x16\x3c\xcf\x7d\xad\xa0" "\x49\xd2\x3e\x71\x7e\x06\x7b\x6f\xa5\xb2\xf6\x52\xbc\x50\xab\xda\x9e" "\x7c\xcd\xc5\xf2\xf3\xc3\x5e\xcc\x2c\x44\x31\xc8\x19\xc9\x69\x1b\xe4" "\x42\x2e\x37\x97\x50\x77\x4e\x9f\x39\xda\xe0\x6f\x26\x42\x3c\x8a\x42" "\x78\x78\x9c\x9f\x31\x11\xb4\x3f\x6d\xd2\x5b\x0a\xd4\x7c\x4c\xc5\xfd" "\xa3\xf3\xed\x82\x07\x9c\x93\x66\xe0\xad\xce\xd8\x83\x48\x8f\x42\x9c" "\x1d\x7e\x1b\x35\x1f\xd0\xbb\x20\x4d\xd7\x97\x7e\xf2\x24\xc4\xdf\x6d" "\x7a\x5f\x76\x97\xbc\x65\x00\xa7\xd0\x3a\x8a\x91\x41\x54\x77\x9f\xa7" "\x09\x2b\xf1\xbe\x6b\xad\x40\x92\x36\x7c\xe5\xd2\x95\xa5\xd5\xd0\xe7" "\xc4\x69\xf3\x72\xca\x20\x11\xd6\x12\x63\x70\x25\xe8\x9f\x17\x8a\xe9" "\xad\xa0\xc5\xb7\x3b\xcb\x7d\x7c\x03\x4f\xf5\x95\x26\x3c\xd4\x21\x6e" "\x3c\x76\xba\x5f\x3d\x81\x93\x2a\x08\x8a\x90\xbf\x80\x43\xe8\x77\xe2" "\x99\xc6\x70\xef\x16\x22\xa0\x98\xd5\x51\x9d\x9a\xdc\x4e\xe7\xd4\xcd" "\x00\xe5\x93\x4a\x43\x75\xfa\x83\xfd\xb8\x12\x14\xb8\x92\x48\x2b\x31" "\xbd\xde\x59\xa7\x0a\xaf\x25\xcb\x7f\x41\x7c\x3a\x2a\x91\xc4\xe5\x4b" "\x48\x14\x9f\x6c\x41\xd9\xd3\x96\xee\x6f\xf1\x3e\x30\x28\xc6\x4a\x7c" "\x9b\x1f\x2e\x7c\x6e\x67\x18\x4a\x3d\x52\xd6\xf5\x70\xdb\x3d\x22\x5c" "\x94\x74\x23\xc4\xc6\x53\x3f\x22\xdf\x57\xd1\x5c\x5e\x5a\x31\x83\x42" "\x2b\xd3\x78\xb0\x6f\xe4\x73\x2a\x94\x01\xdc\xb1\x98\x40\xfb\x8f\xa5" "\xc5\x0a\x0f\xf4\x97\xfe\xf3\x62\xc5\x07\x75\x3e\x46\xb8\x88\x1d\x3e" "\x76\x7f\x3b\x1d\x89\x3a\x38\x05\x94\x1c\x94\xf2\xef\xa0\x5c\xe3\x4b" "\x9e\xa8\x1d\x71\x69\x84\xaf\x68\x34\x23\x0d\x47\x07\xa8\x70\x89\xd4" "\x07\x79\x50\x3e\xe6\xa9\xbb\x24\x5d\x7d\x99\x7f\x14\xac\xb8\x0e\x89" "\x73\x1c\x04\x2b\xbb\xbe\x3d\xcd\x05\x17\x7b\x0e\xe0\xee\xc2\x34\x55" "\x83\x0e\xf5\xb6\x5a\xca\x35\x7f\x2b\x0b\x88\x7e\x0b\x98\x21\xc0", 4096)); NONFAILING(*(uint64_t*)0x2000000003a8 = 0x1000); NONFAILING(*(uint64_t*)0x2000000003b0 = 0x200000000340); NONFAILING(memcpy((void*)0x200000000340, "\xb7\x68\xeb\x20\x30\x4f\x2f\xdc\x5a\x96\x94\xa4\x86\x78" "\x40\xd9\x31\x70\xca\x1a\x86\x40\x6f", 23)); NONFAILING(*(uint64_t*)0x2000000003b8 = 0xfffffec0); NONFAILING(*(uint64_t*)0x2000000003d8 = 4); NONFAILING(*(uint64_t*)0x2000000003e0 = 0); NONFAILING(*(uint64_t*)0x2000000003e8 = 0); NONFAILING(*(uint32_t*)0x2000000003f0 = 0x8010); syscall(__NR_sendmsg, /*fd=*/r[0], /*msg=*/0x2000000003c0ul, /*f=*/0ul); break; case 2: // dup2 arguments: [ // oldfd: fd (resource) // newfd: fd (resource) // ] // returns fd res = syscall(__NR_dup2, /*oldfd=*/r[1], /*newfd=*/r[0]); if (res != -1) r[2] = res; break; case 3: // syz_genetlink_get_family_id$tipc2 arguments: [ // name: ptr[in, buffer] { // buffer: {54 49 50 43 76 32 00} (length 0x7) // } // fd: sock_nl_generic (resource) // ] // returns genl_tipc2_family_id NONFAILING(memcpy((void*)0x2000000001c0, "TIPCv2\000", 7)); NONFAILING( syz_genetlink_get_family_id(/*name=*/0x2000000001c0, /*fd=*/r[2])); break; case 4: // setsockopt$sock_attach_bpf arguments: [ // fd: sock (resource) // level: const = 0x1 (4 bytes) // optname: const = 0x21 (4 bytes) // optval: ptr[in, fd_bpf_prog] { // fd_bpf_prog (resource) // } // optlen: len = 0x4 (8 bytes) // ] NONFAILING(*(uint32_t*)0x200000000040 = -1); syscall(__NR_setsockopt, /*fd=*/r[1], /*level=*/1, /*optname=*/0x21, /*optval=*/0x200000000040ul, /*optlen=*/4ul); break; case 5: // sendmmsg$unix arguments: [ // fd: sock_unix (resource) // mmsg: ptr[in, array[send_mmsghdr_un]] { // array[send_mmsghdr_un] { // send_mmsghdr_un { // msg_hdr: send_msghdr_un { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: nil // vlen: len = 0x0 (8 bytes) // ctrl: nil // ctrllen: bytesize = 0x0 (8 bytes) // f: send_flags = 0x40080d0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr_un { // msg_hdr: send_msghdr_un { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: nil // vlen: len = 0x0 (8 bytes) // ctrl: nil // ctrllen: bytesize = 0x0 (8 bytes) // f: send_flags = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr_un { // msg_hdr: send_msghdr_un { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: nil // vlen: len = 0x0 (8 bytes) // ctrl: nil // ctrllen: bytesize = 0x0 (8 bytes) // f: send_flags = 0x4000400 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr_un { // msg_hdr: send_msghdr_un { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: nil // vlen: len = 0x0 (8 bytes) // ctrl: nil // ctrllen: bytesize = 0x0 (8 bytes) // f: send_flags = 0x400d0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr_un { // msg_hdr: send_msghdr_un { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: ptr[in, array[iovec[in, array[int8]]]] { // array[iovec[in, array[int8]]] { // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {6a 95 33 65 c1 68 75 27 88 fe 55 2b 7e 44 5d // 11 99 0e 54 79 4b 79 96 5d b5 fb f7 be 37 4a ce 86 21 // 39 8a c9 e4 27 5d 88 a2 9c a8 08 6f 07 74 cb 03 10 b3 // 78 85 4e 38 62 21 cf ae 86 82 bb 1a fa 96 1b 78 86 b1 // 41 73 63 22 02 d8 e6 10 8e c4 fd 0c a1 45 bb 3c 0e f2 // c3 b4 fc 1c 0f f7 a9 b1 a5 44 2f 2e d7 d6 f6 5e ec bf // b1 fa 95 22 68 cb a1 4d 5d 43 66 22 dc 75 fd 3a 26 1b // 44 fd ec dd 0c 82 a7 43 ed 4d 74 9c 19 97 86 e6 7d 69 // 10 57 29 3d 04 bc d8 d9 06 ea 9e 08 8a 3b 55 e5 59 55 // 7d 06 c1 9c 49 61 10 ba 69 71 e2 39 ee f5 11 d1 d0 d7 // 49 f2 70 12 56 33 2c a9 44 f4 8d 8d 05 bf 79 f2 5b a7 // 98 d4 d6 a1 9f 3f e1 e8 39 76 a1 b0 bc b8 c8 24 13 6d // 89 b6 95 a0 5f 01 07 3d 4d 7c 88 d3 5a ea 2b 56 71 ed // 55 b5 e8 98 e0 d8 fc ff c9 98 b2 61 4e 5e 49 d6 f3 db // 1d 5e 5d aa 58 ae 84 f7 f3 d2 b2 9d a7 13 a6 f3 46 96 // cd 1d 2b 7c 15 ca 01 ff 51 b3 01 02 53 63 4e 05 dc 52 // 9c 6b 21 93 73 85 c6 a3 c6 be 24 cb 8e 96 8e 73 c4 0d // 89 08 55 55 7a a1 97 9e 9d 10 3f 47 bb 8c cd 81 8b 65 // d8 e8 50 a3 a4 c7 54 f4 78 41 0b 27 09 a9 1a d0 db aa // 58 1b bd a6 e8 81 f4 a4 80 35 a7 52 ef e2 94 45 e0 95 // 33 95 4c fa 0b 95 7b 0f df 93 98 6d 56 a0 ed b8 a2 b7 // 89 23 70 c2 9f 33 c3 42 20 b4 a7 02 b3 07 28 ae d0 01 // 7d ca ec f6 3f e5 f7 c2 e9 d8 cc c9 98 a2 35 3a 56 b3 // 6b d4 4b 50 05 2b f8 09 96 86 95 1f a8 f6 43 97 8b 4a // 81 8d 56 9f 0e 91 5d b6 ff d8 5e 20 b1 31 98 43 f6 52 // 97 4c c1 95 ca fc cc 8f a3 e9 1d 73 24 14 b8 52 33 f6 // 95 18 e3 e8 c3 d0 15 2c 22 97 af d6 c7 e2 4a a1 6a d1 // 38 cb da 05 5e 1f bf 57 d3 0b 1a 4e 28 cd 79 9a 27 ca // 0a c5 d0 bb 3a 14 f2 6e 51 ed 94 c7 1d 77 90 6d 58 a8 // c8 47 b3 19 9a 84 a6 aa 4d 16 05 56 80 86 0a d3 d3 c7 // 95 ed 38 45 8b ad 9d a9 fd 16 6a fb 33 a2 84 74 df 80 // f7 64 7d 18 49 a3 22 e6 bf e7 8d e3 54 ac cc 5f 22 ca // 93 a7 c5 a5 10 c1 c9 5c fa 06 ee ca d1 ba 09 47 a1 c9 // 60 1e 75 c7 61 99 ba 15 3f ae 35 4a c4 e1 ba 1f 14 b0 // 04 40 6b c1 90 e4 2f e7 d6 20 23 c4 92 b8 eb fd 36 0d // 90 5a 2c 91 4b 47 f2 ca cc c6 dd 66 b4 d2 f8 1f 85 14 // 15 2b 59 25 cc 79 31 a6 a7 8f 45 30 68 1f 87 01 40 8b // d0 9f b0 03 4d a7 10 39 7c 13 3b 70 8a 0d 3d fc c4 38 // 13 3c c3 fa 99 48 5c a7 70 b4 46 a5 79 59 d4 a5 12 52 // 8e 34 fb 26 d2 86 cd e6 67 54 15 eb 97 0f 1b 46 54 01 // 0f 97 a0 f4 90 28 b8 a7 72 ca c9 ca 05 62 70 11 f1 c5 // d5 da 3a 83 65 58 85 dd 67 9c 13 9f 00 bf 2e f0 1f 4f // 5e 42 aa 3f b5 78 0e e8 5a 14 3d 2c 60 97 55 e9 6a c3 // fc 37 84 73 37 b3 f4 28 0a 04 3f 21 c4 de ba 8e 8a e6 // a0 84 51 0c 3c 40 a7 9f 44 20 9d a8 be 9d 2b 56 27 a9 // 12 b4 b0 ce 63 da f6 47 65 66 cd 11 84 f4 b1 c8 43 e4 // 76 e6 be 44 e0 05 eb a4 8e 4d 3d 30 d5 e2 99 3c 44 ad // 37 1e c9 5c 3f 78 06 5f 1f 12 33 ee e2 0b 28 2f 65 61 // f6 26 c1 53 f1 27 64 09 ac 61 09 85 45 03 67 f0 5d cf // e9 15 af 55 f4 6d c4 e4 48 7d ec b2 73 bf 30 b4 4b 5f // 83 fd b1 57 19 50 5c d9 dd 80 3d 91 d3 66 6f 0a 27 73 // c0 1c b3 b3 3c 98 6c 87 05 ff 28 32 f4 1e 19 b8 c2 2c // c8 95 80 49 e1 bc 2b 56 50 2b 09 57 bd 94 8c 47 b4 25 // 7d b9 dd 93 71 6a 4c 88 2b f0 ec 51 4a 79 3a c5 54 e0 // 3a 8e 61 6e c8 94 94 28 26 ba 9e 0a 0b 9e 0f 07 d2 bb // 7a 17 43 2f 4c 47 f7 43 30 e1 56 42 cb 47 94 f1 58 af // f7 e9 88 bf b3 06 4c fe fb ba 17 be 4f 7f 73 4b 10 34 // 1c 18 58 f5 c9 3f 5f 5e 6e 51 7f e6 5e be ba b7 36 64 // 7b c7 79 fb 10 e2 94 e8 e4 8d 6c 00 56 d6 6e 86 73 85 // 8a 56 75 44 6e 6f 80 61 54 5f f2 78 16 32 c0 a2 86 ee // 26 3d d5 35 4b 5f a5 2a bc 41 e9 d0 37 06 dd 5e fa 0f // e8 02 3c 49 f2 d8 93 09 d3 65 3e b6 17 47 f6 a6 9e d4 // 50 37 1c 89 0c 5d 24 5d ef 96 cc 78 bb fb 36 95 25 c3 // b3 0c 0b 43 3d c6 a9 71 ae 6e dd 7f 28 9e 72 7d 49 f3 // 9d fb 78 e7 2c 1a 50 27 10 49 58 27 fd e3 17 f0 d8 79 // 58 6d 45 42 e5 3e 3a 6d fc 29 39 00 4b d1 39 99 0b 7f // cb f1 d0 bb 22 a1 7d 0d 53 75 cf a7 c8 89 51 6a e5 7b // 51 7d 42 08 44 b6 93 a5 9d e5 76 64 db 0d 98 29 55 1d // 2c e3 0d 54 da 00 58 04 22 38 86 61 fe 7d ac 76 0b 85 // 0d 46 aa 07 55 3f d5 7c 66 8d 48 ab cf b3 36 64 c3 db // 80 04 62 21 a6 88 60 b4 66 7f 45 71 6c 27 e2 7c 4b e1 // 99 69 e9 73 fc c3 2f 3d 13 89 fa bf f3 2a fb 12 79 0d // 94 6c db 8c cc 9e 9a 42 99 33 03 81 a4 0e 1b 5a e4 8c // 3d 03 4a e3 1b 8e e7 a7 f2 b0 2f 39 8e 7b 98 f7 cb ff // af 2c 2c fc 20 3f 0e 74 d1 f1 72 46 25 c8 52 50 b5 26 // fa 0b cb 8e d9 e9 d4 4c 1e d3 1b dc 90 47 12 e1 45 92 // d6 08 f8 43 16 7a 76 53 6f e8 f2 3d 28 3b ee 9c bb 2d // 59 93 fd 5a 3b 5c ab d1 3c de ec 7a 7d 6d fc 0d 08 72 // d5 cc 63 f7 2c a8 eb fb 63 d5 c7 d5 18 f0 34 d8 6c d6 // 57 3f 3b 03 61 46 f9 b0 0f 01 f0 54 2d cf 0e bc 28 f8 // f6 c3 1d e6 bb 82 72 bb 20 d4 aa 41 d7 71 1f 15 2d 78 // 11 12 df eb 04 04 aa 05 ad a6 3c b8 d7 c5 cd 89 dc 42 // 92 4a 85 fe de 4b 8d 89 b9 fb 95 fb b5 60 7a 8b 63 8c // 97 1a 01 74 60 f9 06 4d c0 88 b9 6e 97 0a 5f af d4 c6 // c7 67 5f eb c7 e8 98 28 a5 44 87 8e 01 09 c8 82 67 73 // fd 30 63 86 03 8a 54 9b a7 79 6d 29 ab 0e 06 ed 70 c3 // 38 76 37 ea 94 f2 cb ba 57 bc 85 c7 af 77 79 d0 be 6d // 7d c6 95 bf 5d c8 de 16 18 d5 08 ed 13 3d 10 06 7d e3 // ee 79 b5 64 be e8 ee 27 2c f6 af c5 6b a9 50 d1 ab e4 // 3e c3 43 e0 0d 83 3f ec 86 a2 66 2a a1 6a 2f ad 87 06 // 57 02 24 f5 c6 e3 4d 28 68 48 97 2e 07 37 f4 e8 3c db // 21 a4 f0 45 5a 78 29 75 38 30 0a a6 4c 6e 04 a2 36 fe // 7f 50 15 3e 20 69 5b 92 33 19 58 b0 63 76 d1 f3 b1 6b // 7c 88 d3 2a 2c 55 6f 43 db ab 9d ea c3 ee 13 ee 25 80 // 37 12 01 14 80 24 d3 99 4c d6 0e 09 11 d9 57 6a 18 01 // 94 bb 01 c9 29 5c 9d d3 ca 68 61 bf a8 fa 79 f3 fa 2b // 73 52 d6 01 a9 ab 63 bf ff e0 9a d3 69 f0 c4 e2 08 0a // 4f 86 b4 40 b9 62 7e 06 e9 00 07 02 ee 33 f7 2e 47 a7 // a5 b4 b4 a8 63 5a 9c 5e dd 1e 3e 98 02 12 dc dc 4c 45 // ed 0f 34 c3 91 99 eb 12 b9 d2 c2 b1 c3 53 7f d1 c4 eb // 24 e5 81 50 a6 33 2d cc 13 a5 05 8c f4 be a6 ed 16 4a // a3 04 69 d6 5b ae 4f 70 00 64 e4 ad d9 b1 ab bc cb 54 // d0 16 71 a0 fe 1c 21 5b 45 8b 8d 23 5b 16 33 be 44 65 // 45 52 60 55 06 fd 0f 8d 9c 24 8c f0 d2 30 c9 cd ca f7 // 5a 0b 98 a5 42 88 51 7a aa 21 68 d1 83 00 94 8a de 2b // 71 b7 43 6b 8c 1e b5 b9 0e 48 3a e1 55 2c 9b e3 c4 c1 // 86 d7 1e ba d8 f3 c7 fe 87 45 cf 1d bd 48 aa 96 51 20 // 30 1e a5 72 00 44 77 af e4 f3 89 fe 19 07 dc 90 73 f1 // 32 bf e0 4e 79 46 71 52 1e c2 94 90 d2 98 f5 8f 7d ec // d7 f9 cc 56 e5 1d f0 10 6c e6 7a 92 69 e5 11 0a 1c 6d // e4 8e 54 04 a3 f4 06 51 97 8b 6f 85 96 bb 52 a5 55 b5 // 50 a5 fd af 30 c2 7b 26 19 60 cc 08 53 70 a0 cc e7 f1 // 8b f3 06 b3 5b 7c 16 d1 52 b3 df 56 d7 5f 41 2a 36 59 // 74 41 57 b4 b5 a4 fc 91 29 ab 1a 06 16 35 5c 20 f9 97 // 5e bf 00 0e e3 de 05 69 0a 0b 27 e7 4a d3 c3 a3 3e 83 // d5 6e f0 d1 8b bd 09 7d f8 fa 56 f0 e8 97 d7 7a bd 85 // 39 a4 d3 5d ff fe d2 11 0e ca fb 64 f0 7b c7 da 26 0b // b6 d2 a1 91 9e 2b 0e 96 27 80 0a 1a 51 54 8b bb 01 fa // a6 dd 8e ea 96 e7 e3 07 06 d8 0f 03 98 89 20 35 b6 cd // 58 1f 93 01 84 06 cf ee 96 57 67 1a e5 a1 48 bb ea 29 // 7c a9 e5 c9 73 c9 33 3c 96 2f 8a cc b5 b8 a8 eb eb f8 // ac a3 d8 9f ac 27 a8 eb 31 d7 04 04 28 bd 96 72 ac 68 // 7e 3f 48 5d 15 55 38 6b ee c8 81 8f d7 c8 c2 5c e7 e9 // 13 b3 de b9 62 46 79 1a b0 a0 ff a5 c8 eb 93 f7 8e bb // 72 ca 14 40 42 64 85 ed 54 e5 f9 a8 c1 9c 36 5a 2b 6c // 82 46 e2 1d be 5f aa f0 62 0b f3 ce 89 ef d6 ab fa 73 // 0e b0 47 83 bf 55 5f 94 39 4c 1a ca cc 49 90 27 9b cc // 22 57 35 66 9f a4 9d 1f 6a 29 c0 77 33 17 68 d9 73 c2 // 4f 0a f2 c1 18 66 bd c7 7e 53 fb 41 ac af c1 17 fe 85 // 7c 96 6a 28 27 62 cd 8c d9 7e 5d 05 37 9b 39 21 d4 6c // 4f a2 43 d5 4f 8a a5 f4 ae ce 60 01 05 a6 76 9c d7 90 // dc 3c 8b 23 a4 db 5f ee 31 c9 3f 56 71 a1 18 a4 23 2b // 34 c3 6a 94 f1 e0 29 a1 3d ea 73 73 c5 f8 29 86 18 1c // 54 ed 0d 5f af 50 9b 5a 3a 63 d9 cb c3 33 e8 19 da c7 // 68 e3 9a 6c c5 98 8e 79 c4 75 dc ac a1 0b 1e 4e 77 a3 // 69 3a 99 7d 0d c9 76 4c 7a de f8 62 83 5a e2 27 58 a7 // 08 0c 54 f2 2e 65 c2 08 3d db aa 75 3c 49 57 88 13 9d // 70 bc f6 1a 64 d4 4d e7 85 02 39 b9 c0 db 9a 70 6d 04 // e4 39 63 be d4 47 8b e6 46 0d a4 8e cc 70 5d 0c 56 1f // 16 44 74 80 13 4f 22 98 90 21 d1 19 a6 80 7f e0 56 0e // 4d f2 6a 09 8c b2 3b 7c a7 55 86 b3 2c 24 ec 2f 62 d6 // f0 72 22 f3 a3 d1 82 d8 5c 3b 24 ad 3e 4d 8a ac 97 0a // 6d 0c 1f 40 1a c9 f7 72 3c 93 ae e8 15 97 71 ff 6e 4e // f6 63 d3 bb f0 6d 53 81 4b cf d1 9b c1 e0 cf 01 b3 65 // 0b 05 d6 14 21 da ae bd 1d 20 31 2e 34 ad ab 34 4a 6a // e3 50 93 68 03 0f dd a2 fb 45 c1 96 bf ec f5 0b 5a d2 // 18 ee 62 2f ef 6b 79 7c 3a a1 18 68 22 b3 97 c8 55 ce // 49 20 bc 5d 6e 84 9a 07 15 85 c1 36 81 d2 32 c6 07 0c // 64 1d 85 5f f8 35 47 fa 23 5f fd 79 e6 ae 3a b3 05 74 // d7 e3 45 61 de f0 5c ad 30 65 f3 82 fa 15 51 75 68 1e // 4d 49 b4 78 04 95 e1 fe 45 3e 26 a1 e9 af 34 25 ec 81 // 52 66 3d 2f 8d 5f 0c 80 b9 4d c3 3e d6 50 53 ca 34 ee // 70 f6 a4 77 94 06 1e fc 5e 6e 1d 3b d0 91 d8 53 dd 1f // 76 3c f2 7b 90 ca d8 b9 e8 d3 a2 31 37 21 38 b2 39 d0 // d5 89 5b ac 73 fe 4c c8 07 ca 84 7c 1a 7d bc 7e 1f 2c // 07 ff fa 7f c9 6f 0e b4 70 d1 ee 53 bd 04 f3 74 82 01 // 84 9a 42 de 3a a3 82 7b 99 44 34 44 24 38 60 1c 06 ec // f3 10 25 1e ad 1e e6 e3 b4 8b 69 cb 4e 21 b3 2a d8 b4 // 64 f3 3c 4b 48 cc 64 b2 09 8a dc 76 3b 53 e2 a4 fd 8e // 60 5d 55 6d 11 ca e2 aa c9 85 69 18 93 40 de 7b 30 6a // 89 a9 fe 1c 9d ad 33 cf 59 6e c9 96 12 e3 ed f4 53 95 // af f8 f2 83 17 22 a6 22 82 e1 55 ad 63 67 72 15 75 b0 // 2f 13 95 c8 73 b7 9e 1b 33 5c 1f 14 0a 3e cc ec fb 5a // 28 d5 98 3d 9c e2 64 2f d0 80 1b f8 cb 4c 1c 2a 84 89 // 3e aa 68 85 b1 a6 63 e3 96 d3 4a 08 f6 d0 be 86 38 f5 // 50 c8 0c 7f 13 f4 ce 75 36 fa a3 69 6a 5b 64 54 43 26 // 05 15 22 90 51 b1 a3 52 58 35 06 d1 6a 18 2b e4 b0 02 // 1a d0 48 ab 5a 7d 42 58 3a 07 16 39 36 85 1f 6a fe 9d // ec 6b 99 3b b2 cf 28 32 d6 f7 08 60 77 0b 6b d1 9f 46 // 7b b0 1d 50 67 54 0f f7 59 2f ef 5f 71 8c 88 6e 70 ea // e3 e1 35 45 da a4 f5 06 b8 65 3d 83 6e 5f 10 b4 1f 57 // 49 cf e9 09 9c 7c 98 fb 7f 1d eb 07 48 19 7e 87 f6 34 // 64 92 d3 3a 1e ca ad 79 8f 43 f0 0b aa 80 0f c3 a2 c6 // 7a fa 4c f4 15 0d 64 ef 4c e4 92 60 98 2a 69 a6 5d 6e // 56 38 0b 07 b3 dc 21 3d ee ce d9 2c 5c 5a 8a b6 34 82 // 4c b2 42 e6 e4 22 c9 db fb bd 7b f0 79 37 a3 31 23 08 // be 4b 07 ec 8b a0 6c 2c ba 18 22 f0 30 4b 11 37 23 63 // 82 c8 32 7a e3 67 63 35 97 6e 1c e7 c2 2a 1a e1 52 ee // c6 aa 18 46 f6 ca 6c d0 8f 0f 64 1a ea ff 48 5e b5 1f // 3a 62 2c 3a f0 29 1b 71 92 58 ef f0 a6 62 f6 58 ff ae // f2 b2 72 8b 6a 24 e7 35 a8 66 3e 8c c8 ec 89 26 b8 d3 // d8 de 2d 1b 9b e4 c7 d3 83 d5 19 5f 41 6a ef f0 77 23 // 19 f7 fd 3e 2f 46 25 40 2c 7d 0c 3f 7b ed 1c 7b e7 fd // 5b 5b 4b 1c d1 8d bd ad e4 79 a8 3f 15 55 aa 2c 83 70 // 66 81 44 c1 ef 44 f1 51 04 44 1c 45 b1 42 c6 af bc 16 // ce 7c 6a 9d 2f f8 83 b1 f5 48 d1 ed 53 ae 7a 13 d6 a5 // ba 3e 54 a7 3e 06 45 6c 0e 70 4e 5c 3d 61 43 3b 95 0e // 52 cf ee 4d 65 75 6b 55 ec e5 2b c9 14 c5 95 06 2c 82 // c2 ef 8f 81 c5 d1 71 2f 8b 20 6e 6b 10 9a 5f 93 a9 33 // 15 6b 23 c6 0a f9 5b 70 e1 14 b1 70 d0 5e c6 9e 39 c5 // 59 b6 fd e6 f7 77 2b 09 5b 2a f8 02 aa 6f 01 9e 55 50 // 50 09 eb 73 d6 71 b7 d9 c2 20 57 92 cc 86 e4 6c 96 5a // 03 87 15 8c 52 0e f1 1f ba 45 d9 95 fd 7c 45 18 98 2b // ab 34 98 90 2f 82 5e 89 0b 4a 4c c0 7a ed c4 e9 1b e5 // 0c e8 ee 93 d1 f6 d0 03 0d 09 66 e5 ee 9f e8 98 e6 0d // 7b a6 d0 75 94 c7 38 ce 8c 5a 4b 1d 16 6d a0 5d b4 fd // dd 57 ee 0c 3b 4c 30 a5 22 93 bf 7f 30 41 35 da a8 8c // d2 dc 53 ea 78 19 36 fb 93 41 6a b1 07 4a ea e4 73 ce // 22 4a e1 f1 2e 95 25 c7 5d 7c 34 1d 6f f9 07 22 d4 bd // 20 52 e5 9d 7b e7 2a 59 9f 56 a5 48 6a 22 5b d4 d2 17 // 60 5f 69 26 b1 70 6e 99 11 af 95 a6 4b ec be 9c 59 d4 // 90 19 fd f4 45 6a e1 75 8c 64 d7 0c 0e 3a c7 d6 9d f6 // 0b be 41 29 c7 f7 ad dc 81 d7 26 8b 2c a7 7a 32 16 fd // 5b 3b 7a 1b 1e 7e e1 36 5e fa 9e fb 0b 52 4d 45 df 3a // 38 9e 39 ce d0 60 49 79 58 6b 25 01 6c fa 40 b9 67 63 // 1b d1 c0 d8 d4 e8 ed 3f 91 a9 90 51 5e 5c 94 7d a9 1f // 69 03 c9 df 4d db 7e 81 f1 c6 9d 64 e7 d1 8d 19 7b f9 // 7a fb 49 4f 6b a8 ed eb 38 5a c6 18 b3 30 cd 08 83 f8 // f4 ba 68 9a 03 72 bc 8b dc e9 3f 3f cd 99 73 bd d4 a8 // 0c e5 c1 07 a5 6a 83 4a 2d 73 34 30 12 24 31 f6 8c 73 // 39 52 3a 36 bf f3 66 c4 13 4a 05 af bd cd e5 48 e8 84 // c4 18 33 75 c6 0b f3 fd 77 4a 87 74 82 85 29 49 87 2b // a5 14 5c 62 ec b7 04 63 18 7f 59 48 60 a5 13 33 85 db // 0e 8f 40 b4 a3 d1 e2 d5 f7 1b 20 5d 2a 26 cf e1 84 72 // 47 bc f3 c8 b8 24 2a 43 d4 b4 7f 58 29 7e 27 97 3d f6 // b8 99 eb e4 35 82 86 f3 db 5e 89 89 d3 af 9e 48 2a ed // e2 7e 15 bd 96 09 34 c1 58 fd f0 73 61 32 67 59 57 98 // 63 5b a3 ef 37 e9 68 dc 4d 57 08 05 48 8c 0c 70 68 6a // 76 08 4e 5f 7f 96 61 d0 c1 a8 e6 1a 10 6c 78 76 ef 7c // 3e 63 ec 2d e6 0a bb 24 0e c4 8c 2f 10 df 3f c0 a2 7f // bf ac cf 29 41 0f 35 11 4a 31 7b 27 b8 e3 20 4d a9 f9 // f3 15 74 55 e9 f5 a9 62 a1 14 87 1e 49 5f 54 76 53 52 // ea ec 29 06 1c b7 ba 7c 42 4d 7e e1 8d db 84 d6 f6 d7 // 02 df 68 d5 cf 1a 0b d3 d1 83 2a 15 ae 99 f6 ca 7f 6a // 35 ff b1 67 0f b9 09 50 da 84 e9 83 c4 84 3a fd 98 07 // 67 43 4d fb 72 92 c9 8c 7a 4a 31 aa a4 08 37 d2 5a 38 // 57 d9 a3 7f 5d 0c 0a c3 87 38 16 10 75 33 a9 1b 16 59 // cb e5 b5 b0 5f a9 23 66 a5 c8 4d 34 65} (length // 0x1000) // } // len: len = 0x1000 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // } // } // vlen: len = 0x6 (8 bytes) // ctrl: nil // ctrllen: bytesize = 0x0 (8 bytes) // f: send_flags = 0x24044804 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr_un { // msg_hdr: send_msghdr_un { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: nil // vlen: len = 0x0 (8 bytes) // ctrl: nil // ctrllen: bytesize = 0x0 (8 bytes) // f: send_flags = 0x40000c0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr_un { // msg_hdr: send_msghdr_un { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: nil // vlen: len = 0x0 (8 bytes) // ctrl: nil // ctrllen: bytesize = 0x0 (8 bytes) // f: send_flags = 0x40800 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr_un { // msg_hdr: send_msghdr_un { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: nil // vlen: len = 0x0 (8 bytes) // ctrl: nil // ctrllen: bytesize = 0x0 (8 bytes) // f: send_flags = 0x20040000 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr_un { // msg_hdr: send_msghdr_un { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: nil // vlen: len = 0x0 (8 bytes) // ctrl: nil // ctrllen: bytesize = 0x0 (8 bytes) // f: send_flags = 0x20008000 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // send_mmsghdr_un { // msg_hdr: send_msghdr_un { // addr: nil // addrlen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // vec: nil // vlen: len = 0x0 (8 bytes) // ctrl: nil // ctrllen: bytesize = 0x0 (8 bytes) // f: send_flags = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // } // } // vlen: len = 0xa (8 bytes) // f: send_flags = 0x24000000 (8 bytes) // ] NONFAILING(*(uint64_t*)0x200000009b40 = 0); NONFAILING(*(uint32_t*)0x200000009b48 = 0); NONFAILING(*(uint64_t*)0x200000009b50 = 0); NONFAILING(*(uint64_t*)0x200000009b58 = 0); NONFAILING(*(uint64_t*)0x200000009b60 = 0); NONFAILING(*(uint64_t*)0x200000009b68 = 0); NONFAILING(*(uint32_t*)0x200000009b70 = 0x40080d0); NONFAILING(*(uint32_t*)0x200000009b78 = 0); NONFAILING(*(uint64_t*)0x200000009b80 = 0); NONFAILING(*(uint32_t*)0x200000009b88 = 0); NONFAILING(*(uint64_t*)0x200000009b90 = 0); NONFAILING(*(uint64_t*)0x200000009b98 = 0); NONFAILING(*(uint64_t*)0x200000009ba0 = 0); NONFAILING(*(uint64_t*)0x200000009ba8 = 0); NONFAILING(*(uint32_t*)0x200000009bb0 = 0); NONFAILING(*(uint32_t*)0x200000009bb8 = 0); NONFAILING(*(uint64_t*)0x200000009bc0 = 0); NONFAILING(*(uint32_t*)0x200000009bc8 = 0); NONFAILING(*(uint64_t*)0x200000009bd0 = 0); NONFAILING(*(uint64_t*)0x200000009bd8 = 0); NONFAILING(*(uint64_t*)0x200000009be0 = 0); NONFAILING(*(uint64_t*)0x200000009be8 = 0); NONFAILING(*(uint32_t*)0x200000009bf0 = 0x4000400); NONFAILING(*(uint32_t*)0x200000009bf8 = 0); NONFAILING(*(uint64_t*)0x200000009c00 = 0); NONFAILING(*(uint32_t*)0x200000009c08 = 0); NONFAILING(*(uint64_t*)0x200000009c10 = 0); NONFAILING(*(uint64_t*)0x200000009c18 = 0); NONFAILING(*(uint64_t*)0x200000009c20 = 0); NONFAILING(*(uint64_t*)0x200000009c28 = 0); NONFAILING(*(uint32_t*)0x200000009c30 = 0x400d0); NONFAILING(*(uint32_t*)0x200000009c38 = 0); NONFAILING(*(uint64_t*)0x200000009c40 = 0); NONFAILING(*(uint32_t*)0x200000009c48 = 0); NONFAILING(*(uint64_t*)0x200000009c50 = 0x200000008240); NONFAILING(*(uint64_t*)0x200000008240 = 0); NONFAILING(*(uint64_t*)0x200000008248 = 0); NONFAILING(*(uint64_t*)0x200000008250 = 0); NONFAILING(*(uint64_t*)0x200000008258 = 0); NONFAILING(*(uint64_t*)0x200000008260 = 0); NONFAILING(*(uint64_t*)0x200000008268 = 0); NONFAILING(*(uint64_t*)0x200000008270 = 0); NONFAILING(*(uint64_t*)0x200000008278 = 0); NONFAILING(*(uint64_t*)0x200000008280 = 0x2000000071c0); NONFAILING(memcpy( (void*)0x2000000071c0, "\x6a\x95\x33\x65\xc1\x68\x75\x27\x88\xfe\x55\x2b\x7e\x44\x5d\x11\x99" "\x0e\x54\x79\x4b\x79\x96\x5d\xb5\xfb\xf7\xbe\x37\x4a\xce\x86\x21\x39" "\x8a\xc9\xe4\x27\x5d\x88\xa2\x9c\xa8\x08\x6f\x07\x74\xcb\x03\x10\xb3" "\x78\x85\x4e\x38\x62\x21\xcf\xae\x86\x82\xbb\x1a\xfa\x96\x1b\x78\x86" "\xb1\x41\x73\x63\x22\x02\xd8\xe6\x10\x8e\xc4\xfd\x0c\xa1\x45\xbb\x3c" "\x0e\xf2\xc3\xb4\xfc\x1c\x0f\xf7\xa9\xb1\xa5\x44\x2f\x2e\xd7\xd6\xf6" "\x5e\xec\xbf\xb1\xfa\x95\x22\x68\xcb\xa1\x4d\x5d\x43\x66\x22\xdc\x75" "\xfd\x3a\x26\x1b\x44\xfd\xec\xdd\x0c\x82\xa7\x43\xed\x4d\x74\x9c\x19" "\x97\x86\xe6\x7d\x69\x10\x57\x29\x3d\x04\xbc\xd8\xd9\x06\xea\x9e\x08" "\x8a\x3b\x55\xe5\x59\x55\x7d\x06\xc1\x9c\x49\x61\x10\xba\x69\x71\xe2" "\x39\xee\xf5\x11\xd1\xd0\xd7\x49\xf2\x70\x12\x56\x33\x2c\xa9\x44\xf4" "\x8d\x8d\x05\xbf\x79\xf2\x5b\xa7\x98\xd4\xd6\xa1\x9f\x3f\xe1\xe8\x39" "\x76\xa1\xb0\xbc\xb8\xc8\x24\x13\x6d\x89\xb6\x95\xa0\x5f\x01\x07\x3d" "\x4d\x7c\x88\xd3\x5a\xea\x2b\x56\x71\xed\x55\xb5\xe8\x98\xe0\xd8\xfc" "\xff\xc9\x98\xb2\x61\x4e\x5e\x49\xd6\xf3\xdb\x1d\x5e\x5d\xaa\x58\xae" "\x84\xf7\xf3\xd2\xb2\x9d\xa7\x13\xa6\xf3\x46\x96\xcd\x1d\x2b\x7c\x15" "\xca\x01\xff\x51\xb3\x01\x02\x53\x63\x4e\x05\xdc\x52\x9c\x6b\x21\x93" "\x73\x85\xc6\xa3\xc6\xbe\x24\xcb\x8e\x96\x8e\x73\xc4\x0d\x89\x08\x55" "\x55\x7a\xa1\x97\x9e\x9d\x10\x3f\x47\xbb\x8c\xcd\x81\x8b\x65\xd8\xe8" "\x50\xa3\xa4\xc7\x54\xf4\x78\x41\x0b\x27\x09\xa9\x1a\xd0\xdb\xaa\x58" "\x1b\xbd\xa6\xe8\x81\xf4\xa4\x80\x35\xa7\x52\xef\xe2\x94\x45\xe0\x95" "\x33\x95\x4c\xfa\x0b\x95\x7b\x0f\xdf\x93\x98\x6d\x56\xa0\xed\xb8\xa2" "\xb7\x89\x23\x70\xc2\x9f\x33\xc3\x42\x20\xb4\xa7\x02\xb3\x07\x28\xae" "\xd0\x01\x7d\xca\xec\xf6\x3f\xe5\xf7\xc2\xe9\xd8\xcc\xc9\x98\xa2\x35" "\x3a\x56\xb3\x6b\xd4\x4b\x50\x05\x2b\xf8\x09\x96\x86\x95\x1f\xa8\xf6" "\x43\x97\x8b\x4a\x81\x8d\x56\x9f\x0e\x91\x5d\xb6\xff\xd8\x5e\x20\xb1" "\x31\x98\x43\xf6\x52\x97\x4c\xc1\x95\xca\xfc\xcc\x8f\xa3\xe9\x1d\x73" "\x24\x14\xb8\x52\x33\xf6\x95\x18\xe3\xe8\xc3\xd0\x15\x2c\x22\x97\xaf" "\xd6\xc7\xe2\x4a\xa1\x6a\xd1\x38\xcb\xda\x05\x5e\x1f\xbf\x57\xd3\x0b" "\x1a\x4e\x28\xcd\x79\x9a\x27\xca\x0a\xc5\xd0\xbb\x3a\x14\xf2\x6e\x51" "\xed\x94\xc7\x1d\x77\x90\x6d\x58\xa8\xc8\x47\xb3\x19\x9a\x84\xa6\xaa" "\x4d\x16\x05\x56\x80\x86\x0a\xd3\xd3\xc7\x95\xed\x38\x45\x8b\xad\x9d" "\xa9\xfd\x16\x6a\xfb\x33\xa2\x84\x74\xdf\x80\xf7\x64\x7d\x18\x49\xa3" "\x22\xe6\xbf\xe7\x8d\xe3\x54\xac\xcc\x5f\x22\xca\x93\xa7\xc5\xa5\x10" "\xc1\xc9\x5c\xfa\x06\xee\xca\xd1\xba\x09\x47\xa1\xc9\x60\x1e\x75\xc7" "\x61\x99\xba\x15\x3f\xae\x35\x4a\xc4\xe1\xba\x1f\x14\xb0\x04\x40\x6b" "\xc1\x90\xe4\x2f\xe7\xd6\x20\x23\xc4\x92\xb8\xeb\xfd\x36\x0d\x90\x5a" "\x2c\x91\x4b\x47\xf2\xca\xcc\xc6\xdd\x66\xb4\xd2\xf8\x1f\x85\x14\x15" "\x2b\x59\x25\xcc\x79\x31\xa6\xa7\x8f\x45\x30\x68\x1f\x87\x01\x40\x8b" "\xd0\x9f\xb0\x03\x4d\xa7\x10\x39\x7c\x13\x3b\x70\x8a\x0d\x3d\xfc\xc4" "\x38\x13\x3c\xc3\xfa\x99\x48\x5c\xa7\x70\xb4\x46\xa5\x79\x59\xd4\xa5" "\x12\x52\x8e\x34\xfb\x26\xd2\x86\xcd\xe6\x67\x54\x15\xeb\x97\x0f\x1b" "\x46\x54\x01\x0f\x97\xa0\xf4\x90\x28\xb8\xa7\x72\xca\xc9\xca\x05\x62" "\x70\x11\xf1\xc5\xd5\xda\x3a\x83\x65\x58\x85\xdd\x67\x9c\x13\x9f\x00" "\xbf\x2e\xf0\x1f\x4f\x5e\x42\xaa\x3f\xb5\x78\x0e\xe8\x5a\x14\x3d\x2c" "\x60\x97\x55\xe9\x6a\xc3\xfc\x37\x84\x73\x37\xb3\xf4\x28\x0a\x04\x3f" "\x21\xc4\xde\xba\x8e\x8a\xe6\xa0\x84\x51\x0c\x3c\x40\xa7\x9f\x44\x20" "\x9d\xa8\xbe\x9d\x2b\x56\x27\xa9\x12\xb4\xb0\xce\x63\xda\xf6\x47\x65" "\x66\xcd\x11\x84\xf4\xb1\xc8\x43\xe4\x76\xe6\xbe\x44\xe0\x05\xeb\xa4" "\x8e\x4d\x3d\x30\xd5\xe2\x99\x3c\x44\xad\x37\x1e\xc9\x5c\x3f\x78\x06" "\x5f\x1f\x12\x33\xee\xe2\x0b\x28\x2f\x65\x61\xf6\x26\xc1\x53\xf1\x27" "\x64\x09\xac\x61\x09\x85\x45\x03\x67\xf0\x5d\xcf\xe9\x15\xaf\x55\xf4" "\x6d\xc4\xe4\x48\x7d\xec\xb2\x73\xbf\x30\xb4\x4b\x5f\x83\xfd\xb1\x57" "\x19\x50\x5c\xd9\xdd\x80\x3d\x91\xd3\x66\x6f\x0a\x27\x73\xc0\x1c\xb3" "\xb3\x3c\x98\x6c\x87\x05\xff\x28\x32\xf4\x1e\x19\xb8\xc2\x2c\xc8\x95" "\x80\x49\xe1\xbc\x2b\x56\x50\x2b\x09\x57\xbd\x94\x8c\x47\xb4\x25\x7d" "\xb9\xdd\x93\x71\x6a\x4c\x88\x2b\xf0\xec\x51\x4a\x79\x3a\xc5\x54\xe0" "\x3a\x8e\x61\x6e\xc8\x94\x94\x28\x26\xba\x9e\x0a\x0b\x9e\x0f\x07\xd2" "\xbb\x7a\x17\x43\x2f\x4c\x47\xf7\x43\x30\xe1\x56\x42\xcb\x47\x94\xf1" "\x58\xaf\xf7\xe9\x88\xbf\xb3\x06\x4c\xfe\xfb\xba\x17\xbe\x4f\x7f\x73" "\x4b\x10\x34\x1c\x18\x58\xf5\xc9\x3f\x5f\x5e\x6e\x51\x7f\xe6\x5e\xbe" "\xba\xb7\x36\x64\x7b\xc7\x79\xfb\x10\xe2\x94\xe8\xe4\x8d\x6c\x00\x56" "\xd6\x6e\x86\x73\x85\x8a\x56\x75\x44\x6e\x6f\x80\x61\x54\x5f\xf2\x78" "\x16\x32\xc0\xa2\x86\xee\x26\x3d\xd5\x35\x4b\x5f\xa5\x2a\xbc\x41\xe9" "\xd0\x37\x06\xdd\x5e\xfa\x0f\xe8\x02\x3c\x49\xf2\xd8\x93\x09\xd3\x65" "\x3e\xb6\x17\x47\xf6\xa6\x9e\xd4\x50\x37\x1c\x89\x0c\x5d\x24\x5d\xef" "\x96\xcc\x78\xbb\xfb\x36\x95\x25\xc3\xb3\x0c\x0b\x43\x3d\xc6\xa9\x71" "\xae\x6e\xdd\x7f\x28\x9e\x72\x7d\x49\xf3\x9d\xfb\x78\xe7\x2c\x1a\x50" "\x27\x10\x49\x58\x27\xfd\xe3\x17\xf0\xd8\x79\x58\x6d\x45\x42\xe5\x3e" "\x3a\x6d\xfc\x29\x39\x00\x4b\xd1\x39\x99\x0b\x7f\xcb\xf1\xd0\xbb\x22" "\xa1\x7d\x0d\x53\x75\xcf\xa7\xc8\x89\x51\x6a\xe5\x7b\x51\x7d\x42\x08" "\x44\xb6\x93\xa5\x9d\xe5\x76\x64\xdb\x0d\x98\x29\x55\x1d\x2c\xe3\x0d" "\x54\xda\x00\x58\x04\x22\x38\x86\x61\xfe\x7d\xac\x76\x0b\x85\x0d\x46" "\xaa\x07\x55\x3f\xd5\x7c\x66\x8d\x48\xab\xcf\xb3\x36\x64\xc3\xdb\x80" "\x04\x62\x21\xa6\x88\x60\xb4\x66\x7f\x45\x71\x6c\x27\xe2\x7c\x4b\xe1" "\x99\x69\xe9\x73\xfc\xc3\x2f\x3d\x13\x89\xfa\xbf\xf3\x2a\xfb\x12\x79" "\x0d\x94\x6c\xdb\x8c\xcc\x9e\x9a\x42\x99\x33\x03\x81\xa4\x0e\x1b\x5a" "\xe4\x8c\x3d\x03\x4a\xe3\x1b\x8e\xe7\xa7\xf2\xb0\x2f\x39\x8e\x7b\x98" "\xf7\xcb\xff\xaf\x2c\x2c\xfc\x20\x3f\x0e\x74\xd1\xf1\x72\x46\x25\xc8" "\x52\x50\xb5\x26\xfa\x0b\xcb\x8e\xd9\xe9\xd4\x4c\x1e\xd3\x1b\xdc\x90" "\x47\x12\xe1\x45\x92\xd6\x08\xf8\x43\x16\x7a\x76\x53\x6f\xe8\xf2\x3d" "\x28\x3b\xee\x9c\xbb\x2d\x59\x93\xfd\x5a\x3b\x5c\xab\xd1\x3c\xde\xec" "\x7a\x7d\x6d\xfc\x0d\x08\x72\xd5\xcc\x63\xf7\x2c\xa8\xeb\xfb\x63\xd5" "\xc7\xd5\x18\xf0\x34\xd8\x6c\xd6\x57\x3f\x3b\x03\x61\x46\xf9\xb0\x0f" "\x01\xf0\x54\x2d\xcf\x0e\xbc\x28\xf8\xf6\xc3\x1d\xe6\xbb\x82\x72\xbb" "\x20\xd4\xaa\x41\xd7\x71\x1f\x15\x2d\x78\x11\x12\xdf\xeb\x04\x04\xaa" "\x05\xad\xa6\x3c\xb8\xd7\xc5\xcd\x89\xdc\x42\x92\x4a\x85\xfe\xde\x4b" "\x8d\x89\xb9\xfb\x95\xfb\xb5\x60\x7a\x8b\x63\x8c\x97\x1a\x01\x74\x60" "\xf9\x06\x4d\xc0\x88\xb9\x6e\x97\x0a\x5f\xaf\xd4\xc6\xc7\x67\x5f\xeb" "\xc7\xe8\x98\x28\xa5\x44\x87\x8e\x01\x09\xc8\x82\x67\x73\xfd\x30\x63" "\x86\x03\x8a\x54\x9b\xa7\x79\x6d\x29\xab\x0e\x06\xed\x70\xc3\x38\x76" "\x37\xea\x94\xf2\xcb\xba\x57\xbc\x85\xc7\xaf\x77\x79\xd0\xbe\x6d\x7d" "\xc6\x95\xbf\x5d\xc8\xde\x16\x18\xd5\x08\xed\x13\x3d\x10\x06\x7d\xe3" "\xee\x79\xb5\x64\xbe\xe8\xee\x27\x2c\xf6\xaf\xc5\x6b\xa9\x50\xd1\xab" "\xe4\x3e\xc3\x43\xe0\x0d\x83\x3f\xec\x86\xa2\x66\x2a\xa1\x6a\x2f\xad" "\x87\x06\x57\x02\x24\xf5\xc6\xe3\x4d\x28\x68\x48\x97\x2e\x07\x37\xf4" "\xe8\x3c\xdb\x21\xa4\xf0\x45\x5a\x78\x29\x75\x38\x30\x0a\xa6\x4c\x6e" "\x04\xa2\x36\xfe\x7f\x50\x15\x3e\x20\x69\x5b\x92\x33\x19\x58\xb0\x63" "\x76\xd1\xf3\xb1\x6b\x7c\x88\xd3\x2a\x2c\x55\x6f\x43\xdb\xab\x9d\xea" "\xc3\xee\x13\xee\x25\x80\x37\x12\x01\x14\x80\x24\xd3\x99\x4c\xd6\x0e" "\x09\x11\xd9\x57\x6a\x18\x01\x94\xbb\x01\xc9\x29\x5c\x9d\xd3\xca\x68" "\x61\xbf\xa8\xfa\x79\xf3\xfa\x2b\x73\x52\xd6\x01\xa9\xab\x63\xbf\xff" "\xe0\x9a\xd3\x69\xf0\xc4\xe2\x08\x0a\x4f\x86\xb4\x40\xb9\x62\x7e\x06" "\xe9\x00\x07\x02\xee\x33\xf7\x2e\x47\xa7\xa5\xb4\xb4\xa8\x63\x5a\x9c" "\x5e\xdd\x1e\x3e\x98\x02\x12\xdc\xdc\x4c\x45\xed\x0f\x34\xc3\x91\x99" "\xeb\x12\xb9\xd2\xc2\xb1\xc3\x53\x7f\xd1\xc4\xeb\x24\xe5\x81\x50\xa6" "\x33\x2d\xcc\x13\xa5\x05\x8c\xf4\xbe\xa6\xed\x16\x4a\xa3\x04\x69\xd6" "\x5b\xae\x4f\x70\x00\x64\xe4\xad\xd9\xb1\xab\xbc\xcb\x54\xd0\x16\x71" "\xa0\xfe\x1c\x21\x5b\x45\x8b\x8d\x23\x5b\x16\x33\xbe\x44\x65\x45\x52" "\x60\x55\x06\xfd\x0f\x8d\x9c\x24\x8c\xf0\xd2\x30\xc9\xcd\xca\xf7\x5a" "\x0b\x98\xa5\x42\x88\x51\x7a\xaa\x21\x68\xd1\x83\x00\x94\x8a\xde\x2b" "\x71\xb7\x43\x6b\x8c\x1e\xb5\xb9\x0e\x48\x3a\xe1\x55\x2c\x9b\xe3\xc4" "\xc1\x86\xd7\x1e\xba\xd8\xf3\xc7\xfe\x87\x45\xcf\x1d\xbd\x48\xaa\x96" "\x51\x20\x30\x1e\xa5\x72\x00\x44\x77\xaf\xe4\xf3\x89\xfe\x19\x07\xdc" "\x90\x73\xf1\x32\xbf\xe0\x4e\x79\x46\x71\x52\x1e\xc2\x94\x90\xd2\x98" "\xf5\x8f\x7d\xec\xd7\xf9\xcc\x56\xe5\x1d\xf0\x10\x6c\xe6\x7a\x92\x69" "\xe5\x11\x0a\x1c\x6d\xe4\x8e\x54\x04\xa3\xf4\x06\x51\x97\x8b\x6f\x85" "\x96\xbb\x52\xa5\x55\xb5\x50\xa5\xfd\xaf\x30\xc2\x7b\x26\x19\x60\xcc" "\x08\x53\x70\xa0\xcc\xe7\xf1\x8b\xf3\x06\xb3\x5b\x7c\x16\xd1\x52\xb3" "\xdf\x56\xd7\x5f\x41\x2a\x36\x59\x74\x41\x57\xb4\xb5\xa4\xfc\x91\x29" "\xab\x1a\x06\x16\x35\x5c\x20\xf9\x97\x5e\xbf\x00\x0e\xe3\xde\x05\x69" "\x0a\x0b\x27\xe7\x4a\xd3\xc3\xa3\x3e\x83\xd5\x6e\xf0\xd1\x8b\xbd\x09" "\x7d\xf8\xfa\x56\xf0\xe8\x97\xd7\x7a\xbd\x85\x39\xa4\xd3\x5d\xff\xfe" "\xd2\x11\x0e\xca\xfb\x64\xf0\x7b\xc7\xda\x26\x0b\xb6\xd2\xa1\x91\x9e" "\x2b\x0e\x96\x27\x80\x0a\x1a\x51\x54\x8b\xbb\x01\xfa\xa6\xdd\x8e\xea" "\x96\xe7\xe3\x07\x06\xd8\x0f\x03\x98\x89\x20\x35\xb6\xcd\x58\x1f\x93" "\x01\x84\x06\xcf\xee\x96\x57\x67\x1a\xe5\xa1\x48\xbb\xea\x29\x7c\xa9" "\xe5\xc9\x73\xc9\x33\x3c\x96\x2f\x8a\xcc\xb5\xb8\xa8\xeb\xeb\xf8\xac" "\xa3\xd8\x9f\xac\x27\xa8\xeb\x31\xd7\x04\x04\x28\xbd\x96\x72\xac\x68" "\x7e\x3f\x48\x5d\x15\x55\x38\x6b\xee\xc8\x81\x8f\xd7\xc8\xc2\x5c\xe7" "\xe9\x13\xb3\xde\xb9\x62\x46\x79\x1a\xb0\xa0\xff\xa5\xc8\xeb\x93\xf7" "\x8e\xbb\x72\xca\x14\x40\x42\x64\x85\xed\x54\xe5\xf9\xa8\xc1\x9c\x36" "\x5a\x2b\x6c\x82\x46\xe2\x1d\xbe\x5f\xaa\xf0\x62\x0b\xf3\xce\x89\xef" "\xd6\xab\xfa\x73\x0e\xb0\x47\x83\xbf\x55\x5f\x94\x39\x4c\x1a\xca\xcc" "\x49\x90\x27\x9b\xcc\x22\x57\x35\x66\x9f\xa4\x9d\x1f\x6a\x29\xc0\x77" "\x33\x17\x68\xd9\x73\xc2\x4f\x0a\xf2\xc1\x18\x66\xbd\xc7\x7e\x53\xfb" "\x41\xac\xaf\xc1\x17\xfe\x85\x7c\x96\x6a\x28\x27\x62\xcd\x8c\xd9\x7e" "\x5d\x05\x37\x9b\x39\x21\xd4\x6c\x4f\xa2\x43\xd5\x4f\x8a\xa5\xf4\xae" "\xce\x60\x01\x05\xa6\x76\x9c\xd7\x90\xdc\x3c\x8b\x23\xa4\xdb\x5f\xee" "\x31\xc9\x3f\x56\x71\xa1\x18\xa4\x23\x2b\x34\xc3\x6a\x94\xf1\xe0\x29" "\xa1\x3d\xea\x73\x73\xc5\xf8\x29\x86\x18\x1c\x54\xed\x0d\x5f\xaf\x50" "\x9b\x5a\x3a\x63\xd9\xcb\xc3\x33\xe8\x19\xda\xc7\x68\xe3\x9a\x6c\xc5" "\x98\x8e\x79\xc4\x75\xdc\xac\xa1\x0b\x1e\x4e\x77\xa3\x69\x3a\x99\x7d" "\x0d\xc9\x76\x4c\x7a\xde\xf8\x62\x83\x5a\xe2\x27\x58\xa7\x08\x0c\x54" "\xf2\x2e\x65\xc2\x08\x3d\xdb\xaa\x75\x3c\x49\x57\x88\x13\x9d\x70\xbc" "\xf6\x1a\x64\xd4\x4d\xe7\x85\x02\x39\xb9\xc0\xdb\x9a\x70\x6d\x04\xe4" "\x39\x63\xbe\xd4\x47\x8b\xe6\x46\x0d\xa4\x8e\xcc\x70\x5d\x0c\x56\x1f" "\x16\x44\x74\x80\x13\x4f\x22\x98\x90\x21\xd1\x19\xa6\x80\x7f\xe0\x56" "\x0e\x4d\xf2\x6a\x09\x8c\xb2\x3b\x7c\xa7\x55\x86\xb3\x2c\x24\xec\x2f" "\x62\xd6\xf0\x72\x22\xf3\xa3\xd1\x82\xd8\x5c\x3b\x24\xad\x3e\x4d\x8a" "\xac\x97\x0a\x6d\x0c\x1f\x40\x1a\xc9\xf7\x72\x3c\x93\xae\xe8\x15\x97" "\x71\xff\x6e\x4e\xf6\x63\xd3\xbb\xf0\x6d\x53\x81\x4b\xcf\xd1\x9b\xc1" "\xe0\xcf\x01\xb3\x65\x0b\x05\xd6\x14\x21\xda\xae\xbd\x1d\x20\x31\x2e" "\x34\xad\xab\x34\x4a\x6a\xe3\x50\x93\x68\x03\x0f\xdd\xa2\xfb\x45\xc1" "\x96\xbf\xec\xf5\x0b\x5a\xd2\x18\xee\x62\x2f\xef\x6b\x79\x7c\x3a\xa1" "\x18\x68\x22\xb3\x97\xc8\x55\xce\x49\x20\xbc\x5d\x6e\x84\x9a\x07\x15" "\x85\xc1\x36\x81\xd2\x32\xc6\x07\x0c\x64\x1d\x85\x5f\xf8\x35\x47\xfa" "\x23\x5f\xfd\x79\xe6\xae\x3a\xb3\x05\x74\xd7\xe3\x45\x61\xde\xf0\x5c" "\xad\x30\x65\xf3\x82\xfa\x15\x51\x75\x68\x1e\x4d\x49\xb4\x78\x04\x95" "\xe1\xfe\x45\x3e\x26\xa1\xe9\xaf\x34\x25\xec\x81\x52\x66\x3d\x2f\x8d" "\x5f\x0c\x80\xb9\x4d\xc3\x3e\xd6\x50\x53\xca\x34\xee\x70\xf6\xa4\x77" "\x94\x06\x1e\xfc\x5e\x6e\x1d\x3b\xd0\x91\xd8\x53\xdd\x1f\x76\x3c\xf2" "\x7b\x90\xca\xd8\xb9\xe8\xd3\xa2\x31\x37\x21\x38\xb2\x39\xd0\xd5\x89" "\x5b\xac\x73\xfe\x4c\xc8\x07\xca\x84\x7c\x1a\x7d\xbc\x7e\x1f\x2c\x07" "\xff\xfa\x7f\xc9\x6f\x0e\xb4\x70\xd1\xee\x53\xbd\x04\xf3\x74\x82\x01" "\x84\x9a\x42\xde\x3a\xa3\x82\x7b\x99\x44\x34\x44\x24\x38\x60\x1c\x06" "\xec\xf3\x10\x25\x1e\xad\x1e\xe6\xe3\xb4\x8b\x69\xcb\x4e\x21\xb3\x2a" "\xd8\xb4\x64\xf3\x3c\x4b\x48\xcc\x64\xb2\x09\x8a\xdc\x76\x3b\x53\xe2" "\xa4\xfd\x8e\x60\x5d\x55\x6d\x11\xca\xe2\xaa\xc9\x85\x69\x18\x93\x40" "\xde\x7b\x30\x6a\x89\xa9\xfe\x1c\x9d\xad\x33\xcf\x59\x6e\xc9\x96\x12" "\xe3\xed\xf4\x53\x95\xaf\xf8\xf2\x83\x17\x22\xa6\x22\x82\xe1\x55\xad" "\x63\x67\x72\x15\x75\xb0\x2f\x13\x95\xc8\x73\xb7\x9e\x1b\x33\x5c\x1f" "\x14\x0a\x3e\xcc\xec\xfb\x5a\x28\xd5\x98\x3d\x9c\xe2\x64\x2f\xd0\x80" "\x1b\xf8\xcb\x4c\x1c\x2a\x84\x89\x3e\xaa\x68\x85\xb1\xa6\x63\xe3\x96" "\xd3\x4a\x08\xf6\xd0\xbe\x86\x38\xf5\x50\xc8\x0c\x7f\x13\xf4\xce\x75" "\x36\xfa\xa3\x69\x6a\x5b\x64\x54\x43\x26\x05\x15\x22\x90\x51\xb1\xa3" "\x52\x58\x35\x06\xd1\x6a\x18\x2b\xe4\xb0\x02\x1a\xd0\x48\xab\x5a\x7d" "\x42\x58\x3a\x07\x16\x39\x36\x85\x1f\x6a\xfe\x9d\xec\x6b\x99\x3b\xb2" "\xcf\x28\x32\xd6\xf7\x08\x60\x77\x0b\x6b\xd1\x9f\x46\x7b\xb0\x1d\x50" "\x67\x54\x0f\xf7\x59\x2f\xef\x5f\x71\x8c\x88\x6e\x70\xea\xe3\xe1\x35" "\x45\xda\xa4\xf5\x06\xb8\x65\x3d\x83\x6e\x5f\x10\xb4\x1f\x57\x49\xcf" "\xe9\x09\x9c\x7c\x98\xfb\x7f\x1d\xeb\x07\x48\x19\x7e\x87\xf6\x34\x64" "\x92\xd3\x3a\x1e\xca\xad\x79\x8f\x43\xf0\x0b\xaa\x80\x0f\xc3\xa2\xc6" "\x7a\xfa\x4c\xf4\x15\x0d\x64\xef\x4c\xe4\x92\x60\x98\x2a\x69\xa6\x5d" "\x6e\x56\x38\x0b\x07\xb3\xdc\x21\x3d\xee\xce\xd9\x2c\x5c\x5a\x8a\xb6" "\x34\x82\x4c\xb2\x42\xe6\xe4\x22\xc9\xdb\xfb\xbd\x7b\xf0\x79\x37\xa3" "\x31\x23\x08\xbe\x4b\x07\xec\x8b\xa0\x6c\x2c\xba\x18\x22\xf0\x30\x4b" "\x11\x37\x23\x63\x82\xc8\x32\x7a\xe3\x67\x63\x35\x97\x6e\x1c\xe7\xc2" "\x2a\x1a\xe1\x52\xee\xc6\xaa\x18\x46\xf6\xca\x6c\xd0\x8f\x0f\x64\x1a" "\xea\xff\x48\x5e\xb5\x1f\x3a\x62\x2c\x3a\xf0\x29\x1b\x71\x92\x58\xef" "\xf0\xa6\x62\xf6\x58\xff\xae\xf2\xb2\x72\x8b\x6a\x24\xe7\x35\xa8\x66" "\x3e\x8c\xc8\xec\x89\x26\xb8\xd3\xd8\xde\x2d\x1b\x9b\xe4\xc7\xd3\x83" "\xd5\x19\x5f\x41\x6a\xef\xf0\x77\x23\x19\xf7\xfd\x3e\x2f\x46\x25\x40" "\x2c\x7d\x0c\x3f\x7b\xed\x1c\x7b\xe7\xfd\x5b\x5b\x4b\x1c\xd1\x8d\xbd" "\xad\xe4\x79\xa8\x3f\x15\x55\xaa\x2c\x83\x70\x66\x81\x44\xc1\xef\x44" "\xf1\x51\x04\x44\x1c\x45\xb1\x42\xc6\xaf\xbc\x16\xce\x7c\x6a\x9d\x2f" "\xf8\x83\xb1\xf5\x48\xd1\xed\x53\xae\x7a\x13\xd6\xa5\xba\x3e\x54\xa7" "\x3e\x06\x45\x6c\x0e\x70\x4e\x5c\x3d\x61\x43\x3b\x95\x0e\x52\xcf\xee" "\x4d\x65\x75\x6b\x55\xec\xe5\x2b\xc9\x14\xc5\x95\x06\x2c\x82\xc2\xef" "\x8f\x81\xc5\xd1\x71\x2f\x8b\x20\x6e\x6b\x10\x9a\x5f\x93\xa9\x33\x15" "\x6b\x23\xc6\x0a\xf9\x5b\x70\xe1\x14\xb1\x70\xd0\x5e\xc6\x9e\x39\xc5" "\x59\xb6\xfd\xe6\xf7\x77\x2b\x09\x5b\x2a\xf8\x02\xaa\x6f\x01\x9e\x55" "\x50\x50\x09\xeb\x73\xd6\x71\xb7\xd9\xc2\x20\x57\x92\xcc\x86\xe4\x6c" "\x96\x5a\x03\x87\x15\x8c\x52\x0e\xf1\x1f\xba\x45\xd9\x95\xfd\x7c\x45" "\x18\x98\x2b\xab\x34\x98\x90\x2f\x82\x5e\x89\x0b\x4a\x4c\xc0\x7a\xed" "\xc4\xe9\x1b\xe5\x0c\xe8\xee\x93\xd1\xf6\xd0\x03\x0d\x09\x66\xe5\xee" "\x9f\xe8\x98\xe6\x0d\x7b\xa6\xd0\x75\x94\xc7\x38\xce\x8c\x5a\x4b\x1d" "\x16\x6d\xa0\x5d\xb4\xfd\xdd\x57\xee\x0c\x3b\x4c\x30\xa5\x22\x93\xbf" "\x7f\x30\x41\x35\xda\xa8\x8c\xd2\xdc\x53\xea\x78\x19\x36\xfb\x93\x41" "\x6a\xb1\x07\x4a\xea\xe4\x73\xce\x22\x4a\xe1\xf1\x2e\x95\x25\xc7\x5d" "\x7c\x34\x1d\x6f\xf9\x07\x22\xd4\xbd\x20\x52\xe5\x9d\x7b\xe7\x2a\x59" "\x9f\x56\xa5\x48\x6a\x22\x5b\xd4\xd2\x17\x60\x5f\x69\x26\xb1\x70\x6e" "\x99\x11\xaf\x95\xa6\x4b\xec\xbe\x9c\x59\xd4\x90\x19\xfd\xf4\x45\x6a" "\xe1\x75\x8c\x64\xd7\x0c\x0e\x3a\xc7\xd6\x9d\xf6\x0b\xbe\x41\x29\xc7" "\xf7\xad\xdc\x81\xd7\x26\x8b\x2c\xa7\x7a\x32\x16\xfd\x5b\x3b\x7a\x1b" "\x1e\x7e\xe1\x36\x5e\xfa\x9e\xfb\x0b\x52\x4d\x45\xdf\x3a\x38\x9e\x39" "\xce\xd0\x60\x49\x79\x58\x6b\x25\x01\x6c\xfa\x40\xb9\x67\x63\x1b\xd1" "\xc0\xd8\xd4\xe8\xed\x3f\x91\xa9\x90\x51\x5e\x5c\x94\x7d\xa9\x1f\x69" "\x03\xc9\xdf\x4d\xdb\x7e\x81\xf1\xc6\x9d\x64\xe7\xd1\x8d\x19\x7b\xf9" "\x7a\xfb\x49\x4f\x6b\xa8\xed\xeb\x38\x5a\xc6\x18\xb3\x30\xcd\x08\x83" "\xf8\xf4\xba\x68\x9a\x03\x72\xbc\x8b\xdc\xe9\x3f\x3f\xcd\x99\x73\xbd" "\xd4\xa8\x0c\xe5\xc1\x07\xa5\x6a\x83\x4a\x2d\x73\x34\x30\x12\x24\x31" "\xf6\x8c\x73\x39\x52\x3a\x36\xbf\xf3\x66\xc4\x13\x4a\x05\xaf\xbd\xcd" "\xe5\x48\xe8\x84\xc4\x18\x33\x75\xc6\x0b\xf3\xfd\x77\x4a\x87\x74\x82" "\x85\x29\x49\x87\x2b\xa5\x14\x5c\x62\xec\xb7\x04\x63\x18\x7f\x59\x48" "\x60\xa5\x13\x33\x85\xdb\x0e\x8f\x40\xb4\xa3\xd1\xe2\xd5\xf7\x1b\x20" "\x5d\x2a\x26\xcf\xe1\x84\x72\x47\xbc\xf3\xc8\xb8\x24\x2a\x43\xd4\xb4" "\x7f\x58\x29\x7e\x27\x97\x3d\xf6\xb8\x99\xeb\xe4\x35\x82\x86\xf3\xdb" "\x5e\x89\x89\xd3\xaf\x9e\x48\x2a\xed\xe2\x7e\x15\xbd\x96\x09\x34\xc1" "\x58\xfd\xf0\x73\x61\x32\x67\x59\x57\x98\x63\x5b\xa3\xef\x37\xe9\x68" "\xdc\x4d\x57\x08\x05\x48\x8c\x0c\x70\x68\x6a\x76\x08\x4e\x5f\x7f\x96" "\x61\xd0\xc1\xa8\xe6\x1a\x10\x6c\x78\x76\xef\x7c\x3e\x63\xec\x2d\xe6" "\x0a\xbb\x24\x0e\xc4\x8c\x2f\x10\xdf\x3f\xc0\xa2\x7f\xbf\xac\xcf\x29" "\x41\x0f\x35\x11\x4a\x31\x7b\x27\xb8\xe3\x20\x4d\xa9\xf9\xf3\x15\x74" "\x55\xe9\xf5\xa9\x62\xa1\x14\x87\x1e\x49\x5f\x54\x76\x53\x52\xea\xec" "\x29\x06\x1c\xb7\xba\x7c\x42\x4d\x7e\xe1\x8d\xdb\x84\xd6\xf6\xd7\x02" "\xdf\x68\xd5\xcf\x1a\x0b\xd3\xd1\x83\x2a\x15\xae\x99\xf6\xca\x7f\x6a" "\x35\xff\xb1\x67\x0f\xb9\x09\x50\xda\x84\xe9\x83\xc4\x84\x3a\xfd\x98" "\x07\x67\x43\x4d\xfb\x72\x92\xc9\x8c\x7a\x4a\x31\xaa\xa4\x08\x37\xd2" "\x5a\x38\x57\xd9\xa3\x7f\x5d\x0c\x0a\xc3\x87\x38\x16\x10\x75\x33\xa9" "\x1b\x16\x59\xcb\xe5\xb5\xb0\x5f\xa9\x23\x66\xa5\xc8\x4d\x34\x65", 4096)); NONFAILING(*(uint64_t*)0x200000008288 = 0x1000); NONFAILING(*(uint64_t*)0x200000008290 = 0); NONFAILING(*(uint64_t*)0x200000008298 = 0); NONFAILING(*(uint64_t*)0x200000009c58 = 6); NONFAILING(*(uint64_t*)0x200000009c60 = 0); NONFAILING(*(uint64_t*)0x200000009c68 = 0); NONFAILING(*(uint32_t*)0x200000009c70 = 0x24044804); NONFAILING(*(uint32_t*)0x200000009c78 = 0); NONFAILING(*(uint64_t*)0x200000009c80 = 0); NONFAILING(*(uint32_t*)0x200000009c88 = 0); NONFAILING(*(uint64_t*)0x200000009c90 = 0); NONFAILING(*(uint64_t*)0x200000009c98 = 0); NONFAILING(*(uint64_t*)0x200000009ca0 = 0); NONFAILING(*(uint64_t*)0x200000009ca8 = 0); NONFAILING(*(uint32_t*)0x200000009cb0 = 0x40000c0); NONFAILING(*(uint32_t*)0x200000009cb8 = 0); NONFAILING(*(uint64_t*)0x200000009cc0 = 0); NONFAILING(*(uint32_t*)0x200000009cc8 = 0); NONFAILING(*(uint64_t*)0x200000009cd0 = 0); NONFAILING(*(uint64_t*)0x200000009cd8 = 0); NONFAILING(*(uint64_t*)0x200000009ce0 = 0); NONFAILING(*(uint64_t*)0x200000009ce8 = 0); NONFAILING(*(uint32_t*)0x200000009cf0 = 0x40800); NONFAILING(*(uint32_t*)0x200000009cf8 = 0); NONFAILING(*(uint64_t*)0x200000009d00 = 0); NONFAILING(*(uint32_t*)0x200000009d08 = 0); NONFAILING(*(uint64_t*)0x200000009d10 = 0); NONFAILING(*(uint64_t*)0x200000009d18 = 0); NONFAILING(*(uint64_t*)0x200000009d20 = 0); NONFAILING(*(uint64_t*)0x200000009d28 = 0); NONFAILING(*(uint32_t*)0x200000009d30 = 0x20040000); NONFAILING(*(uint32_t*)0x200000009d38 = 0); NONFAILING(*(uint64_t*)0x200000009d40 = 0); NONFAILING(*(uint32_t*)0x200000009d48 = 0); NONFAILING(*(uint64_t*)0x200000009d50 = 0); NONFAILING(*(uint64_t*)0x200000009d58 = 0); NONFAILING(*(uint64_t*)0x200000009d60 = 0); NONFAILING(*(uint64_t*)0x200000009d68 = 0); NONFAILING(*(uint32_t*)0x200000009d70 = 0x20008000); NONFAILING(*(uint32_t*)0x200000009d78 = 0); NONFAILING(*(uint64_t*)0x200000009d80 = 0); NONFAILING(*(uint32_t*)0x200000009d88 = 0); NONFAILING(*(uint64_t*)0x200000009d90 = 0); NONFAILING(*(uint64_t*)0x200000009d98 = 0); NONFAILING(*(uint64_t*)0x200000009da0 = 0); NONFAILING(*(uint64_t*)0x200000009da8 = 0); NONFAILING(*(uint32_t*)0x200000009db0 = 0); NONFAILING(*(uint32_t*)0x200000009db8 = 0); syscall(__NR_sendmmsg, /*fd=*/r[2], /*mmsg=*/0x200000009b40ul, /*vlen=*/0xaul, /*f=MSG_ZEROCOPY|MSG_FASTOPEN*/ 0x24000000ul); 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); const char* reason; (void)reason; install_segv_handler(); use_temporary_dir(); loop(); return 0; }