// https://syzkaller.appspot.com/bug?id=857976e0a2e819366bc548bb8d19d9af217c19dd // 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 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 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; } } #define FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, FUSE_SYNCFS = 50, FUSE_TMPFILE = 51, FUSE_STATX = 52, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; struct fuse_out_header* statx; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; case FUSE_STATX: out_hdr = req_out->statx; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 7; 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); } uint64_t r[2] = {0xffffffffffffffff, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // mkdirat arguments: [ // fd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: open_mode = 0x110 (8 bytes) // ] memcpy((void*)0x200000002040, "./file0\000", 8); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x200000002040ul, /*mode=S_IWGRP|S_IRUSR*/ 0x110ul); break; case 1: // openat$fuse arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 66 75 73 65 00} (length 0xa) // } // flags: const = 0x42 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_fuse memcpy((void*)0x2000000005c0, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x2000000005c0ul, /*flags=*/0x42, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // mount$fuse arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {66 75 73 65 00} (length 0x5) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {66 64 3d} (length 0x3) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 72 6f 6f 74 6d 6f 64 65 3d 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 30 34 30 30 30 30 2c 75 73 65 // 72 5f 69 64 3d} (length 0x29) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 67 72 6f 75 70 5f 69 64 3d} (length 0xa) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // } // } // ] memcpy((void*)0x200000000000, "./file0\000", 8); memcpy((void*)0x200000002100, "fuse\000", 5); memcpy((void*)0x200000000080, "fd=", 3); sprintf((char*)0x200000000083, "0x%016llx", (long long)r[0]); memcpy((void*)0x200000000095, ",rootmode=0000000000000000040000,user_id=", 41); sprintf((char*)0x2000000000be, "%020llu", (long long)0); memcpy((void*)0x2000000000d2, ",group_id=", 10); sprintf((char*)0x2000000000dc, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200000000000ul, /*type=*/0x200000002100ul, /*flags=*/0ul, /*opts=*/0x200000000080ul); break; case 3: // rmdir arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 2e 2e 2f 66 69 6c 65 30 2f 66 69 6c // 65 30 00} (length 0x17) // } // ] memcpy((void*)0x200000000040, "./file0/../file0/file0\000", 23); syscall(__NR_rmdir, /*path=*/0x200000000040ul); break; case 4: // read$FUSE arguments: [ // fd: fd_fuse (resource) // buf: ptr[out, fuse_in[read_buffer]] { // fuse_in[read_buffer] { // len: len = 0x2020 (4 bytes) // opcode: int32 = 0x0 (4 bytes) // unique: fuse_unique (resource) // uid: uid (resource) // gid: gid (resource) // pid: pid (resource) // padding: int32 = 0x0 (4 bytes) // payload: buffer: (DirOut) // } // } // len: bytesize = 0x2020 (8 bytes) // ] res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x200000008180ul, /*len=*/0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x200000008188; break; case 5: // write$FUSE_INIT arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_init_out]] { // fuse_out_t[fuse_unique, fuse_init_out] { // len: len = 0x50 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_init_out { // major: const = 0x7 (4 bytes) // minor: const = 0x2b (4 bytes) // max_readahead: int32 = 0x0 (4 bytes) // flags: fuse_init_flags = 0x0 (4 bytes) // max_background: int16 = 0x0 (2 bytes) // congestion_threshold: int16 = 0x0 (2 bytes) // max_write: int32 = 0x0 (4 bytes) // time_gran: int32 = 0x0 (4 bytes) // max_pages: const = 0x0 (2 bytes) // map_alignment: const = 0x0 (2 bytes) // flags2: fuse_init_flags2 = 0x0 (4 bytes) // max_stack_depth: int32 = 0x0 (4 bytes) // unused: buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00} (length 0x18) // } // } // } // len: bytesize = 0x50 (8 bytes) // ] *(uint32_t*)0x200000000380 = 0x50; *(uint32_t*)0x200000000384 = 0; *(uint64_t*)0x200000000388 = r[1]; *(uint32_t*)0x200000000390 = 7; *(uint32_t*)0x200000000394 = 0x2b; *(uint32_t*)0x200000000398 = 0; *(uint32_t*)0x20000000039c = 0; *(uint16_t*)0x2000000003a0 = 0; *(uint16_t*)0x2000000003a2 = 0; *(uint32_t*)0x2000000003a4 = 0; *(uint32_t*)0x2000000003a8 = 0; *(uint16_t*)0x2000000003ac = 0; *(uint16_t*)0x2000000003ae = 0; *(uint32_t*)0x2000000003b0 = 0; *(uint32_t*)0x2000000003b4 = 0; memset((void*)0x2000000003b8, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000380ul, /*len=*/0x50ul); break; case 6: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {89 7c 65 00 ff 30 35 46 5c 7a cb 4e 06 98 0b 05 68 7c 14 80 // c7 aa fe 63 1c 05 43 db 2b f0 d6 f5 39 50 6e 87 82 da 06 c1 ca 01 87 // 74 d7 2e 9e 5a 34 18 ab 66 ee 78 da d6 84 57 b1 7e c9 d4 7b f7 d8 27 // 2d 60 7c 1c 0a 4b d9 06 f0 ce e7 f8 45 18 28 d2 45 85 96 bd d6 a4 59 // ba 18 eb af 61 b3 8f 5d 66 c2 7f a8 a0 24 ad 78 32 a8 5e 58 68 9a 4c // 25 4c 94 cb cf 72 08 fc e6 e6 1d 95 66 45 97 89 d1 5a 6f 91 dd 7d b7 // c5 4c c3 a9 4d a9 56 fb 29 0a 8a 15 f8 49 27 0b c4 59 d9 d9 f4 78 01 // be 86 dd 5c 9d 18 38 20 81 a9 93 b7 bf de 5c 28 ad ca 4c 71 32 fd 6b // e7 43 b0 76 03 3b 58 59 89 17 03 eb 65 fa 25 6d 6f 47 45 0b 6e da cb // d0 5a 9b d8 b3 72 e9 0c fc 30 f3 28 26 56 6d ac 6c 48 e6 ef 00 18 81 // cb c3 04 82 f9 ec 46 9e 47 6a 10 1d a4 96 b8 c0 78 5e af 87 5d 36 08 // b0 c4 9e 9d 39 ba aa 10 41 f9 03 a8 05 f0 f2 4a a6 37 22 fa 2d 87 b9 // 85 95 fa 5c fa f8 b7 9c 45 8d e4 3e e3 99 04 e7 ca c7 54 0a 93 4b 41 // 08 95 77 85 d5 88 07 ab ff 18 69 49 f1 b9 4c d2 1b 72 4a ff 34 ac 45 // c7 06 6d cd bd 68 ea 7b 76 6a f9 d0 45 cd 7f af ea fc 5c 5a 0c 34 00 // ef 4e 0c 71 a6 fd d5 b8 d6 8a 6f 31 76 44 cd a9 d2 fd 2c 83 9a 82 b9 // 7b 3d 90 9b 54 c6 72 22 7b ef 57 3c 9d e1 99 1d 65 a6 30 17 f7 24 d1 // f7 f1 57 5e 69 db 53 31 8a 7f d7 06 5b 30 3e 75 15 18 c8 ee f0 4f 64 // 2d bd 4d fa 34 90 40 a7 b5 40 10 50 ff c2 b4 ef 62 80 3a 7c 8e ab a9 // 9e 01 1d fa c2 4d 81 b2 b6 1e 0b 05 81 e5 3b f5 20 f6 23 ec a1 7f 05 // 45 c5 e5 9f f1 5b 52 74 75 f9 70 f5 89 89 4a e5 89 14 5f a4 28 3f 72 // 25 08 8c cf eb a1 d7 2e 91 28 f8 c2 23 ae 18 40 f2 ed ae 3d bc df 7e // 56 0d 5c df 4f 71 c9 ad a1 93 1c 0f 83 12 c0 00 10 1b 26 4a ad db 9f // ab 16 6b a8 d8 90 3d 60 98 ec a2 09 35 ca 60 7e a7 9e 93 67 98 b3 df // b2 2a 7e 15 9a bb 23 4c f2 1f 37 33 db f2 63 a8 ff 11 60 92 f2 51 65 // 91 08 89 2b 2e 21 e1 b4 28 fd 22 50 96 a5 04 02 70 b2 d7 03 47 01 3e // aa 1f d8 e4 52 94 22 00 28 3a ab 09 2c 4f fc 5b 8b 42 7b 5d 69 1a 5a // 77 3e 09 da 20 53 9f f0 f8 21 43 31 c5 d8 41 07 ae 8a 59 ae b5 8e fe // 22 d7 a0 79 e4 46 f1 df b0 75 10 37 77 99 bf dc 7e e5 9c ab cd 76 af // 0f e8 a4 27 ac 82 58 ff 33 bb ad 5a 80 61 f1 cf df bf 37 5d 73 d6 76 // cc 79 16 d6 65 8c e4 6a 0b 17 ad 63 50 15 0f 98 e3 51 2b 51 3e 25 ca // 73 f5 f5 df 0a 1f b9 58 2a ce 79 06 c4 93 fe 1f d2 88 9d 9a ac 0b 7c // 29 c2 b6 c2 05 53 76 27 ba d6 4d f4 33 33 6a 5a ce 32 ca 87 1e 51 b4 // da b0 fb b0 08 86 a1 fa 81 a9 8b 74 de 0a 26 ce bf 65 72 35 15 eb b8 // 07 fc 3c 16 1e d4 2d 1a 7b 6b 55 71 76 13 57 7e a4 37 f3 a2 96 7c 66 // ce 45 ff 85 a6 a3 5b 7c d4 06 25 fc 57 5b 10 7d 73 94 e3 d2 db 51 d5 // 83 47 27 6c 33 e2 1f 50 b5 a6 b5 67 2b f9 fd a6 31 39 bb 75 ae ad 1f // e4 ee 9a 40 64 af 5a 59 58 46 6a a3 9f aa 6d 82 14 89 fa 41 52 24 c8 // d6 9d 3b 59 22 23 68 32 c2 b1 e4 f6 b8 86 3b 32 f9 ae a8 3f b5 22 a2 // de 08 1d 67 45 02 b4 8f 73 ce 6d b9 8d 84 13 60 59 b4 a6 67 6b c8 5a // c6 b7 62 63 29 af a9 bc 7d 3f 9f 2c aa 3c 4d 87 27 44 e0 a8 e0 2d 72 // a7 5c 6c 54 5b 8e c8 e1 5b 6f b0 fe 41 85 bd 0d 15 49 60 e6 fe f0 5b // a4 0e 5f e2 96 8e b1 30 1d cc 52 a0 33 37 17 9e 74 ba 15 22 af 93 d7 // 78 27 84 5f 89 41 c6 9e d8 bb 84 56 7e 3c 63 f1 cc 37 8a 54 2f 1d e7 // 00 7b 68 8f f0 a9 c6 9d 58 61 f0 b8 54 02 c3 0a 2f d3 91 c5 2b af be // 65 f8 e8 21 35 fd 38 36 1d 7c 0b 43 c9 82 b2 f3 e7 cb 09 c4 0c 7e 21 // 51 14 f4 24 3d 67 0c d5 76 bc d9 3c 1e 95 93 45 17 0c 75 d6 c3 cf 89 // cf 8c 2c 70 dc 79 2e 64 6e 7c 64 9d 4c 5f 36 bb 01 6c 7a cd 46 6a d5 // 84 73 d4 0d fe f3 63 94 e5 81 06 5a 85 81 ab 85 22 50 40 3c f3 72 ac // 00 65 bf 75 7f a3 f4 45 42 4a c0 d8 2a ec 19 38 a2 ea 11 6b df d3 06 // ba a1 cb 06 c6 2a 4a 97 d6 6a b1 b9 48 94 69 cb 8b a8 42 da 12 e3 10 // ca ed 02 c5 ef 05 c0 be 1e 1e 8c 9c 8b 87 d6 87 1c 94 c5 7d 16 4d 08 // 67 2b 20 5c 94 80 86 a0 6a 54 5b 26 6b 7a d9 02 a9 08 68 1e b1 88 bc // 51 b6 19 0b 5c b9 d8 ca 59 b8 c4 c6 e7 36 9c 00 d6 f6 11 9f d5 d4 37 // 23 9e 3d 3c 89 cb 81 e0 9e 56 0f b8 17 59 01 06 01 5f 08 e7 b0 9f 1e // 1e 65 bf ab 3b 84 89 fa 05 8e 24 08 19 78 b9 e2 54 63 d9 94 5b fb ca // 81 c0 88 85 d4 b6 d4 c6 2e 21 7b d9 e1 94 60 76 2f 36 c6 6b c9 48 fe // 31 cd e0 89 62 6f bb 31 0e 3c 78 a8 d3 f2 ea c2 1d 37 4d 9b 58 d8 87 // 23 5d 3a 95 72 11 68 e4 b9 47 58 49 07 1d 60 ec fe 7e a5 d6 c4 bf 60 // da 37 47 61 2e f5 9b b6 51 27 0f 32 6c 0a f3 1b c8 c7 13 61 f8 51 de // 34 cc b3 c8 07 1b 96 f1 12 8d 7e e7 9b 41 24 6e 56 6e dd 02 72 db d3 // cc fe 47 2b 38 e5 e0 3d 3e f8 32 18 bd 49 8e 6d e8 b4 d9 2c b6 f8 27 // 16 44 9e de 7b a8 45 02 8e cc db 91 37 be 8a 62 2a c8 8a c5 31 18 fb // c3 96 37 fa 7a 93 cd 3a bc 6f 76 71 c7 80 44 20 d6 6e 94 72 0a cb ca // c9 16 95 0f 9b ac a7 7f ef 42 17 15 5c cc 2c d0 50 73 39 a0 48 6f 9f // 46 8e b2 87 72 98 6e e7 68 c6 3e ba 67 1b f8 c5 2e 48 a2 a5 dc 2c c2 // 4f e9 25 36 87 06 c2 d7 12 dd 10 64 69 2b 0f b2 a3 2d df bd 4a 0f fc // f9 c2 ab ce da ae 6e 52 7b c1 d4 26 37 af f2 a2 75 b7 6a 7a 7f 01 0e // 42 e1 cc 1d 27 14 1f 6c 35 85 a2 bf 58 c6 c5 78 9c e6 15 51 d1 01 18 // a0 00 e3 76 46 31 ec 0b 7f 4b 1a 6f 22 a6 78 13 3a 30 94 0b 79 dc 76 // f8 63 dd 9f 6e 0d 77 76 30 08 98 c9 7c ef 28 6c 73 1c 20 50 92 8c 49 // 24 39 25 6e 48 16 52 bf f0 d2 02 db 3c fd c5 4c 98 16 ce ea 78 95 35 // 7b fa 03 62 fa d7 9a fd 09 ed 55 18 92 94 d6 ea d7 e8 98 ac 09 1c dd // be 7e fc ed b3 14 bc 02 a1 8d d5 bb dd c4 2e 08 91 24 75 8b b4 91 fd // 15 36 aa b2 7c 5c 12 45 67 bc 32 5e 70 28 bc ed 5a 17 9a 01 1d 1c b9 // a5 ff b6 1d 7a f8 63 e9 1e c8 e6 04 95 56 11 88 b7 4d 15 8b a1 41 82 // 28 d4 4e 92 91 5a 22 eb 1c 16 6e f7 d6 17 9e 84 38 1e d9 50 ff d7 47 // f1 3e 24 17 29 42 d9 22 ca 31 09 fb 8b 1e 4e 62 64 fa 4a 4e ec 75 ad // 0d 0e 22 57 9d 90 f4 5d 6c d1 57 30 0e 38 ae 66 5e b5 64 57 20 2e 25 // a8 dd 58 77 ba 99 72 5d e2 88 66 0b ad d2 70 43 45 d9 ba d2 08 c9 03 // ba 27 ea 16 7d d4 5a 77 f7 7b 65 02 b5 25 b2 97 32 70 58 28 58 18 3c // 78 4c 32 4c 13 66 fb ba 8d 41 0c 38 bf 75 b4 1e 06 7f 6a 9a 01 7c 56 // 59 51 61 db 4f c5 63 93 93 fd af b1 f1 48 d3 f4 16 c1 ad c5 fe 1a b9 // ce be 46 89 85 5c 9b 4b da 6d cb a5 d5 fa 85 8a 1b 87 d2 ad 23 cd f5 // 4d bd f4 d1 4a a4 46 2d a0 b6 f1 10 7f 4a fa 00 91 c2 64 35 08 86 1a // 4d 9f 13 3b a7 77 51 94 1b b8 fb 75 6a bf 1a 10 42 05 b8 0d 47 a3 b4 // a5 97 24 d9 59 c8 b5 83 3d a4 f5 6f b6 61 32 31 f2 30 a9 37 8c 9a f7 // 41 e9 4f d2 c7 21 3a c1 d7 62 55 59 b3 f0 32 f6 c8 df 3a b4 41 92 97 // 20 fe 43 d7 c5 48 cc 66 1e ed 5b 3c 62 b3 c6 1f 53 8e a3 22 83 76 e2 // a1 8c 6d a2 ad 90 63 22 f6 4f b4 86 5c de 8e 18 89 a8 e5 23 7f d6 a3 // 9b bd 66 62 f1 de dc 22 fb d7 4e 43 76 fa 61 0c d7 10 70 3d bd 39 24 // a3 8b ea e6 97 83 d1 d5 ab f3 61 22 cb b8 71 29 ba 71 90 42 74 8f 06 // 0f 43 03 a3 19 9c 58 91 c5 04 0f d8 cd b9 76 1b 00 6b f6 4c dc b6 5e // 5c c5 0a 29 99 4b 8c 1c 34 b8 37 60 ec e1 2e d9 ed 7c 3d 2a 7f 89 11 // cd f2 3a 1a fe 0d 7d b1 bf 34 2a a0 12 3d d5 cd 31 33 9f 5c 8e 16 0c // 4e fe f8 82 60 2b 3e cc be 76 fb 69 01 62 b8 bf b8 a3 19 10 bc df 9a // 4a 5d de 76 c2 ac 2f cd 86 78 ad d7 a0 00 cf dc ab 39 8e b2 17 1c 02 // 63 13 eb 6e b5 6b 4b 87 bf 8e f9 3f 7f 8a 1c 0b cc 37 75 b6 81 d4 22 // 9e a5 61 cb 52 28 1d 8b a4 31 5c 36 94 ed 08 43 35 96 88 4d 5a 7c e3 // a8 b1 f8 23 59 84 6b 71 36 72 6e 2f e3 7b f4 f7 b7 e2 20 6c dc db 07 // 05 ce d9 f0 dc aa a2 ed 3a 78 ea 70 d2 cf ea b6 68 eb 32 14 00 fc 95 // 5e 9a eb 7b bc f8 6c d0 3f 02 dd 44 35 03 a1 48 0d 9d 9f 89 9f 53 bd // 74 7a 95 29 37 86 79 8f c5 9f ce b0 9e 68 6a 93 28 da 4f 92 9b 62 01 // 84 1b bb ef af fc f3 38 6a bd f6 95 40 e3 b4 6a 64 3e c1 0f 0a cf 21 // f2 7c 00 53 dc 13 f1 84 85 db c8 98 72 9d fb ea aa 48 87 b5 8c d4 42 // d7 ff a9 41 80 8c d9 65 85 95 be 86 50 a8 15 b0 88 62 12 78 d8 9f 0d // 8a 42 52 56 6b 92 3d f3 a3 cd 65 c0 e4 af 08 fa d3 85 92 72 51 b3 1d // 35 f7 5e af 25 e6 cf 13 a5 79 ae eb 0b cc 0a 14 ca 4a 20 a6 83 1d 53 // 2b e0 b2 af 38 21 79 2a 2d f9 51 31 b7 fa fe f2 45 aa 19 b2 14 05 33 // 42 aa 82 0c 35 85 8d 13 f8 4e 49 62 94 52 94 11 01 5c 41 ed 44 7b 5b // 51 dc 44 a4 5d 52 55 2a 2b e1 ab fc 15 7f 3a ce 7b fa 32 d5 b9 31 42 // 1d 5a 15 2d d6 6b 7b f5 49 31 1b 08 32 5e 5a 72 01 f7 93 03 7b 38 99 // 0b ed ec a8 a6 47 c0 8d 24 78 67 0f 8f c2 b4 e8 98 3e a1 8b cd 51 4d // ae ee eb 9d 7a 77 8f 78 3c 76 ed f0 1b d4 be da 4b 77 b6 12 cd 2e 86 // 5c 2e 4f 58 ca 7a e0 61 47 bf 66 ae 6a ee 22 1c f9 b9 50 5d c0 7e 6f // b6 cf 4f 82 dc 8c 40 6c 78 e2 70 21 0c 11 cf 25 31 01 1e d6 78 d9 df // e1 f4 9c 9a 69 a9 5a 9f 3b 0e 5b 62 4d 9c 26 64 d7 87 ab 91 1b 75 a4 // a3 8d 63 e9 d6 c3 53 f8 aa f4 33 ff 96 1f e5 e3 4d 84 93 6e ad 0d 0b // c7 95 4c af 84 e5 41 f5 c6 f3 f2 0c 9e ed 21 eb 03 16 b8 2c 0d c5 18 // 25 40 e6 3a 0a f2 55 65 49 67 92 15 3d 63 95 ad c2 b8 d6 8b 8b cd 93 // dd 11 0f f5 68 58 79 db 43 84 ec 39 0d 44 b8 96 63 d4 3a 5d e3 bd c0 // e1 03 b7 c1 b3 55 dc 5f 6f e3 51 8c 93 62 87 80 ba 03 f1 56 ba de a6 // 5d 1d 0a f8 43 3c 9e 8a 97 5f dd 19 45 3d a6 62 a3 3f a9 f0 f5 fa 15 // fd b2 16 b4 83 fb 48 37 0a 96 72 46 e0 b7 63 df 8b 3b c7 92 4a 6c 76 // c4 b1 14 f8 03 db fa 3b 31 2e 68 15 b4 eb 67 be 16 72 83 a9 e4 82 d9 // a5 be ac 25 00 89 d0 69 d4 c3 86 b7 fd a5 fc 22 84 04 a0 f5 8b 12 ca // 4d c1 31 c3 81 b4 9b 42 b5 70 bc fc 0d d6 63 f2 4a fa f6 5a 26 a2 1f // 6d 92 f5 2c 9f 8d e3 6c b7 6b ac ba a0 ee f9 8b a6 b7 db bc 26 29 a0 // 3b b2 b6 f8 3f c5 ad af 20 c2 17 bc 8d 0f 0d 24 21 e0 14 72 53 2b cb // 54 6a eb 2d 48 3c 8f 95 01 1a 3b a1 d2 fd 80 86 a7 17 cb 01 5d d5 30 // 64 ef 4a 80 b6 d6 fd c1 2d 90 69 22 3f df 2a a9 b1 92 a0 e0 bd b3 84 // 36 f4 9d 9e ed fe f3 66 58 15 63 3f ee 43 44 af f1 11 62 52 63 62 b7 // 0b 18 e1 db ed bb 5d 8c 46 98 86 0b ec cf 66 78 51 87 8a 25 a1 e7 66 // ca ae 28 61 f2 e2 34 04 aa c8 59 e6 2f df ea c0 6a 60 57 55 48 28 d7 // 03 58 06 e8 ab 3e e2 fa 6d 71 1e 58 11 db 61 23 1a 22 f4 67 2f 6a 11 // b2 76 41 f3 50 bc ab 78 79 23 62 e6 eb c1 c0 54 a6 43 bb bf 27 46 67 // 8c 14 dc 56 7d 1f 73 e3 70 05 c8 ab 63 74 c4 d8 d3 10 63 84 a2 d3 2c // 5f cf 05 cb 9b a9 7c b7 fa 1a ff 11 50 5a 70 1b ea d5 43 e5 55 f3 90 // 1e f3 b6 93 d5 b9 eb f4 95 18 c3 50 9a f0 42 b7 e8 4b 1b 86 7c 22 b7 // e0 87 25 22 0e 43 38 fd 07 4e dc e4 28 21 2e 6a 35 63 a0 8e 2c cd 8a // b7 19 10 25 65 32 90 45 42 e9 3d 5c 7d eb 5b f5 d4 9b eb 32 02 d4 da // 4f 64 36 49 e5 5e db b9 11 88 cd cf 08 83 a4 0c 6e d6 b8 a0 86 fb 5c // 50 dc 08 fe e0 03 08 42 01 21 d4 c7 43 1b 3c fb 80 f9 c1 e0 99 42 3a // c4 51 d6 7b 12 e9 30 d9 e3 91 d0 a7 99 c7 d4 b5 4a 0d 56 ea 0a ae 00 // c1 d0 09 e2 1f b5 45 94 16 b4 64 b2 27 d6 6c cc 1a 68 da 59 d6 4c 15 // 83 de e5 4b bc d7 d6 1f fe 54 1f d0 fb 74 52 ad ba 91 90 69 18 96 6a // 7d 58 01 9a d1 f8 fd eb ec ee ed 70 18 83 7b 6e 42 72 ee fe ec 83 85 // ab e7 20 7f b2 d7 06 1f a6 cd c4 78 16 5a 98 97 1f 97 29 b8 18 a7 3e // de fe d9 76 d5 c7 c0 a6 51 c0 91 cf d1 17 4c 02 0e 39 33 0a 79 14 42 // 71 fe 4c bc 61 ea 0f fa 27 4d 0d 87 d0 6d d0 8c 1d 5f 8a 03 64 d4 6e // f7 b5 44 26 bc 28 63 30 c7 5f a2 57 af eb 27 15 c2 ae 51 1f f5 3b 11 // 89 cc 59 ab 80 b1 32 5f bd ce df db 8f 36 ed 71 f7 00 91 11 6e 16 b5 // 21 88 b7 94 e6 37 75 50 27 ca ac 8d b8 55 4f 86 74 b8 44 96 4c 71 0c // ac d7 a9 d6 b0 6b af 6f ef 76 15 9a 38 0e 63 9b 0d 3e 66 08 0a 7c f7 // f8 6b aa c0 1d be 47 fe 68 7f ce f2 f3 bf bf 6f 8f ba 04 51 81 de e6 // 88 36 0a 11 ee 56 e5 fc 73 ed 31 c0 e2 92 4a e5 7f 0c c9 3c 63 a3 06 // 62 a6 5c 5d 5f 17 12 3a e2 8c c5 b7 4d d1 3e d8 1b 03 dc 7f a6 1d c5 // 75 66 88 68 c0 df 12 d3 55 32 69 f0 4b a7 90 84 d0 70 ab cd bd 47 45 // de 80 e9 0e 4e 3e 52 4f 27 24 9b 5c 4a 2f 2d 4c 8b 33 1b 0c b6 d4 ef // e6 2a 29 8d aa cc 6e ac df e0 08 c1 f9 12 79 5d bd c3 70 98 c4 2d b8 // 60 95 31 20 fd a7 09 ba a6 d4 6f 52 ea ba 78 15 05 e6 85 61 ca 0f 28 // 1e 85 05 32 ef 8e 7c 77 98 83 e3 12 80 6e 1c 35 7b de f8 d0 dd a0 05 // e7 10 cf a6 eb 86 86 e8 bf 3b ff 03 6b 3f cd c4 03 65 41 d9 35 30 ce // 6f 59 84 42 c2 41 70 b3 07 ef 05 f2 3c 93 aa 0e c9 68 31 b5 32 d8 12 // 04 02 21 4a 94 0d 1f a0 1e d6 49 06 1a 4a 71 30 8b e1 89 cf fd 72 9a // 19 67 54 fb 8a 75 f2 38 51 18 95 89 be 1b 81 9f 06 12 ca d3 dc 94 cc // ee 88 f4 ab 9e f6 ac 9c 7d aa d8 cf 94 f5 ed 94 96 c4 c8 24 e5 b4 f6 // 6c e3 2a 80 e7 a6 ef 06 9a 32 f6 81 2e 65 6a a5 f5 74 2b d4 32 af df // 02 6c 86 e8 f2 82 12 c1 13 9d ad 47 d7 fc 07 e5 c1 a8 3e 99 3d aa a4 // a4 bb 5f 0c 94 35 cc ab 2a 10 f8 67 ff e2 59 db a7 a1 d9 16 86 19 b1 // e3 04 88 60 a5 12 2e 4a 5d 0b 00 37 2e aa e8 61 a0 cc 88 54 98 52 ff // fa 76 e6 d7 87 39 b6 54 d6 7d f1 5e a9 7a 9a 46 b7 c3 82 d8 31 91 a6 // 73 aa 61 9b 4a 10 ec 05 bc 68 13 79 b0 d6 df 82 4c b6 fe 15 8e 9d 89 // ae 5d d1 ef 66 97 6f 67 97 2b 55 3d b5 2e b6 fe ef 83 6d ca 60 26 29 // 3f 83 a6 1e 11 77 54 a7 42 4a 3d a6 3b d8 2d 01 7f 87 f0 60 3e 2a 9b // 8f c5 50 aa e6 11 68 19 35 ae 91 f7 ca 2b 53 41 b0 5a 25 20 8b d2 8f // 1a 20 2a 7f 2a 21 3b 1d 74 11 ff b5 57 47 0a ec 00 c4 d1 3c 70 16 3f // 22 a0 38 a1 89 71 0d d1 9a 47 e8 db 4a 87 c3 fd 32 9a 63 ab ca 17 2a // 98 10 ed ad 2d 8e 19 ef 85 b5 7e a4 28 7c fb 3d 74 0d 7e a3 fa 9c 80 // d0 6e 1a a8 4b 31 7f 67 8d db 3c 14 7b a5 e0 db 43 21 25 f5 9c a4 94 // 4c 8e 90 50 28 1c a8 2a 3e cf 67 b2 a5 df 67 86 97 a5 2a 72 97 af 1e // cb 03 c5 86 af 7b 91 d7 4e 88 19 64 ed 95 f7 be 12 fa 07 e2 a4 e7 1a // ab 8b 91 3a 13 99 6f a3 3e 91 51 44 bf 00 e4 9b 8e 7a de c5 b2 c4 b8 // 16 5f 54 ba 31 55 23 0e 24 1e e0 23 af 77 a2 95 ab 87 c4 0f 63 f6 09 // 2c ce e0 5c b0 8a 26 5a be 8f 57 c9 91 9b f4 50 64 b6 c2 24 0b a8 01 // 1d b2 23 a2 83 a4 e2 29 2d 9b 59 df 8c 9a 4f dc 76 3f 06 31 00 7d b9 // 97 6f 35 17 17 db 0e 6b 5f 9c 6e 5f 22 7c 2e fa 1a e5 fe 0b e1 af 0b // 22 fc 16 4f 9f 96 78 a0 1f e8 b0 59 74 9f e8 a2 97 24 55 73 2d a1 98 // 9c 60 9d 19 15 44 ef 9f bb 3e 58 da 93 ec 4a 58 24 30 52 3f 26 0b 77 // 6e 4d 74 73 12 74 7d 18 a9 ba e1 47 40 f5 dc d3 5f d1 07 2f 8a 4d 81 // 57 3b 58 82 20 3b e8 56 b6 2d 7e 1d 87 08 1a 9e 43 18 72 c9 d6 88 64 // 19 7b bc 61 f1 5d d8 ae ae 95 0d 34 d6 ce 97 18 2d ee bd 2a d6 4c ab // d1 c7 23 ba f5 12 ac fc 7e 94 67 5b 31 36 9b d6 0e 15 5a f7 9b 97 bb // 73 43 12 56 9f 73 6d cd 5b 5a 78 22 3f fa a0 f7 e9 3e 1a 11 2c b9 f6 // a5 b8 8f e3 cf 12 c3 00 24 c1 6c 6b 83 80 fd f0 86 c6 62 66 5d 37 51 // c1 16 17 cc 4d bd 5b 8b c7 54 33 01 a2 3f bc 90 ba 8d 06 01 93 cd c2 // b6 8c 31 c7 34 d5 16 70 7b 75 9f 7d b0 09 c8 f0 6e 69 b4 01 54 e1 cd // 8a e4 44 af b2 81 34 ac df 87 11 36 b4 fd 78 bd 86 d7 fa aa f6 18 af // b2 5e 92 d1 ee 37 cd ff 05 95 27 8f 95 65 f5 eb 10 9e 18 1e 9c ac ec // 2f 22 e3 2e 9f 34 77 4e e2 23 fd b9 92 fe bc c5 db c5 cc ee da 16 cb // cf 14 34 73 0d 85 9e 7e 03 d3 6f f1 76 36 a7 a7 e6 69 56 b5 15 89 4d // a1 14 f3 04 09 09 f9 0c e3 cf bb 2d 7d 46 e3 70 49 c0 fb 12 4e 06 83 // d6 62 eb 42 7c d7 b8 51 ad a2 29 45 1e 6e 3a ae e6 4b 99 64 ce d3 03 // 6b de 5d 9d 80 eb 06 24 74 f9 6e cf b9 b6 5f ca fc 71 94 94 ac 12 ab // 7d f2 45 47 5f 2a 5e 7f 85 ca 47 89 83 3c a3 73 e6 21 4d 39 17 6c 8f // 51 dd e8 7a 4c fe 54 14 a2 0f 68 bb 9f 34 70 99 79 b9 95 33 ba 34 35 // c4 aa 56 e5 25 19 5e 10 ff d0 0f 8e 41 ae e3 0a 90 9c 07 b9 73 bb f7 // 33 d4 55 00 b5 39 eb e2 20 6d 43 82 16 69 09 98 d9 e2 56 db 1b 7a c6 // be f3 e8 10 78 5e 19 86 98 5c 94 5a 2b 82 03 23 a5 92 72 1f cf a4 44 // 93 4d 0f af 8a a4 39 d5 ef ca 5d cd 77 b7 2d 1e b9 1b 37 90 d5 0d 0a // 74 83 e3 54 c4 15 f8 1d 99 c1 33 d6 48 c1 29 3e 79 5b 3c 43 f9 b4 7e // 23 ef 98 2e 10 07 2e a5 ba af b0 df 67 5e 69 af 18 07 b2 25 af a0 ce // c3 ea fb de 85 35 d3 ec aa 0e a6 dd bf fe 44 65 20 74 25 bb 00 36 70 // 32 03 24 df 0a ee b1 6b 38 a0 43 f9 c0 e8 56 73 b3 6d ef 33 2f d6 8b // 2b 1e 6e dd a6 21 d0 ca de bb ce d8 c7 fc 8f 89 04 89 11 5b 45 72 49 // e8 d8 10 36 76 b3 20 7a 47 28 04 d3 3e 0f e5 11 ac 56 cd 8d c5 33 3b // 23 33 89 2f 87 b4 55 94 0a da 78 fc f5 07 5c 35 8f ce 99 0e 6f 65 f0 // 95 eb 41 6d 87 6c e6 f1 20 b8 b0 2c fa 6b 17 6e e2 69 c9 42 f8 81 24 // 7c 3e 46 4c ce 2a a6 5c 39 13 76 07 c5 85 ae b4 b5 f2 4f 5f 8e 05 8c // 9c 8b 48 00 3c 18 09 da 3e 8a ad 1b ee 79 55 c3 a9 76 d4 3f e1 32 e2 // b1 6f 47 58 a0 a9 88 4e 51 d1 3b 93 06 75 a4 36 1f f3 66 b0 fe d1 90 // ad 7b 2a 00 38 55 28 95 1e 39 cd 44 ea 06 d8 92 1b 9d 61 3d 76 26 22 // 11 54 cf 86 24 9a 55 01 98 fe 4e 5b 05 ad 30 52 b4 74 29 1d a0 a0 a2 // f7 01 75 98 59 bc 03 92 ad f2 43 ad 5e ca 89 e6 d1 8e 28 df f9 9e f9 // 57 43 bc ab e7 55 04 be 8c 71 5c d6 36 0f ac f3 bb 06 cb 97 c2 99 89 // d4 f6 ff 50 83 57 3c ef e6 ef 0b 39 a2 52 a2 67 81 12 fa 88 e5 b0 6c // 9a 6b fc 95 97 cc 96 e5 a4 97 10 c4 fc 12 0f b0 da 49 45 b9 d9 4e 46 // de 1e 99 89 d0 fc 3d 8d 20 df 23 d8 15 b6 60 c7 99 a9 03 f6 51 b0 d0 // 13 f7 fe 15 8f 1d 29 7f 7f cb 6a 48 78 0c a5 52 5f 1d 08 1a da 0a af // a8 35 52 31 8b 84 87 83 30 65 49 75 0b 62 54 cf 67 6c 7b 93 4c f7 fd // ab 99 27 17 f0 cd c0 89 b3 42 78 f3 fb 15 1c ad de 14 d0 d3 25 0e 85 // a4 b0 ff 2a 27 78 a2 19 aa 40 56 3d 3e f5 75 28 54 84 42 4b 6d 0e 7c // c8 39 23 42 e4 84 8c 6f c8 cb 20 fa 1b 45 0c c4 c1 fe a1 9f 3b bd d9 // e3 42 e6 c4 9c d7 ac 89 3b 1e da 2e 93 d1 d7 4d 20 96 94 65 94 6b 39 // 8f bc 73 37 57 74 1a c8 22 c4 a1 18 63 2c d2 42 a4 39 fc 37 51 2c f7 // 9b 7c 62 95 04 cc c1 e7 f2 f1 17 98 95 5c 32 62 b5 e9 69 56 25 ba 74 // d8 05 0e 20 f5 1d 47 69 e1 ab 93 8f 48 7f 1b c4 b5 5b 5a bc aa 3e c0 // 79 c2 d0 97 2b 2a e9 bf b7 c5 42 3b 95 91 19 29 2e a0 5f 1d 79 d3 5a // fe 47 e4 9d 97 c9 46 b1 93 bf fc 0a 8f 60 7f 18 a6 84 5c ec bb dd 98 // cd 35 1d b2 b2 dc e0 5a 48 48 ba 84 a6 a4 97 b4 61 89 50 13 0c b7 e7 // 6c 03 d0 97 6e b2 fb 41 d3 a4 2a 14 30 06 3e d8 e5 b8 c6 7e 80 fd 4f // c1 14 89 11 95 8b ab bc bf f3 3a 65 05 de 20 9b 0d 93 20 01 7f d7 36 // fd 02 7a 16 56 40 08 ab 2e 1f 48 a6 dd 66 c9 25 67 30 e9 fd a0 a6 06 // 87 5d 08 71 b2 b9 b0 bc 2e d4 e1 b6 96 db f0 28 3c 8d c7 2c f4 33 8e // 59 52 66 f5 39 0b c3 a2 1f 98 83 53 11 8f 29 48 fc 75 d0 50 ea 07 6b // 73 50 8d 9e d8 9b ad e0 ba 30 5c 1f 4e 5d af 9d 40 d2 f5 e7 ab ab ed // 8d 1b 1d 91 9c 61 a6 d3 fb 14 9c 1a 9b 44 e3 85 85 a2 fe 32 2f 83 d7 // 3a 3a ec b4 4d a3 f0 e8 29 42 d7 5d 62 ed 3f 91 eb 44 f3 41 1d f0 14 // f8 88 39 e4 cb 1e 21 b9 b2 59 d4 eb 4a da f6 b0 be 43 3d 0e d4 c8 7e // c7 7d de 5e e9 d5 66 e3 dd 8d 92 8f c1 87 5c 63 af 26 c5 9d ab a5 ae // 26 7d 9b d5 da 72 b9 9a 03 e6 a3 3c c4 8e d9 61 ab 48 4f f4 a4 6c 2d // 5f a5 97 e6 26 e0 0b 53 0d 7b 9a 97 05 e4 e0 8d 03 f3 a7 f2 a5 a5 23 // 3a d6 34 0e 3b 5c 89 db 81 ca 71 3b 6d 7d 85 5c 63 24 95 5f 85 10 9b // 20 45 66 f5 01 78 cd 88 ab e3 fc ba 25 de 90 5e 8e a0 b7 5a d5 18 31 // 76 1e d9 b1 af 24 70 f9 76 f0 5e c7 3b f7 4d 13 7c 20 72 70 cf d6 14 // 17 05 18 cd c4 49 ae eb 66 3e 11 43 59 c8 12 4e af 24 99 d8 cf 5d c8 // 4a 08 72 30 1d b2 e5 7b 50 bd 28 50 60 ec 43 90 d9 9d 4a e3 67 4c a3 // bb 86 79 c1 b0 8e 56 6b a4 f3 0d ae c8 68 4a 98 00 55 eb 43 cb 5a 13 // 06 c4 b5 2a 15 46 82 aa 96 63 7e 06 c8 69 27 8a a2 f7 4e f7 34 56 32 // c1 12 65 ef 8a c9 7e 95 37 45 30 25 56 88 1b a0 cb 59 0f ef 27 1c 0a // bb 19 3f b8 4d 18 ee 3f 24 d9 97 6a e8 16 b8 57 d6 f6 8d 1f df e1 0b // 31 2c 79 9f e0 14 de bf 87 5d 04 bf f8 b4 f3 87 85 9e 97 c6 bf 13 f7 // 08 3c 28 a2 04 5a 0b 5e b0 9c 94 e7 81 a1 65 96 5e 86 17 c0 ef ed 17 // 01 ea 96 67 ae ca 26 d9 57 7e a7 b1 24 2e 1d 91 b2 5d 6a 66 75 6c c6 // 27 64 8a 29 3b 9f 43 45 96 6b c4 69 fa fa ed dc 11 18 d0 97 2b d5 c7 // 75 1a 1f 51 e5 98 9f d9 52 f3 14 ae 10 41 7c 97 b4 1e 60 eb fb c4 7e // 49 64 86 fa 4a 89 fd 16 ae a7 fa 1e ab eb d2 6e b2 a3 7a 3e 2b 35 1e // 0c 9d 2f 67 b2 e5 be 0f 92 1a dc 9b 60 45 b0 45 94 8e 51 03 af 0e 50 // 50 b9 c0 79 9b 51 3c 00 86 5d ee bd a7 30 de 53 8f 95 6c eb 61 64 e0 // 8b d6 f5 86 55 a2 94 b4 b4 4f c6 53 09 b3 0f 9c 00 f9 2e f5 bd 5b 91 // 1a 3d 83 0f 72 c2 58 b1 95 21 bb 8e 80 db 02 12 99 54 ef b6 14 23 f5 // 18 d2 c5 f3 65 87 30 38 90 ca d9 a9 3f a4 f4 bc d0 e2 4c 67 db 67 9c // 67 ea 59 c1 35 0b 84 42 57 76 32 d5 e8 73 58 33 f3 da f5 a7 4b c7 bd // 82 65 9a 81 be ba 8c 88 96 32 ef e0 3c d2 41 87 ae e8 56 cf 65 9e 16 // e1 95 46 4f 52 f2 b9 84 fc 7a 29 9e 7b 2a a5 39 79 a1 47 eb ed 35 70 // 5d 5e 89 69 16 66 53 6f 2f eb ac fc ef 9b 32 d1 49 52 f9 58 b7 25 12 // 86 9e 4f 6a 0a 34 17 69 18 21 78 88 b1 eb 8b 89 32 2e bb 6b b1 de ad // 2b 47 44 e7 28 47 98 80 db 70 e6 14 7e da ff 6c 3f 08 3f 18 e0 69 6b // db d7 8c f0 bd a1 4d 9f 42 e5 c1 07 7c ed 00 04 1a ad ff 90 47 0a ac // ec 0e 48 e2 a5 f2 a0 ed 37 81 8a 17 3b 96 06 1e 8c 5b f2 4c 0b de 9e // 09 f9 e0 dd b8 e1 33 06 ef 1d 4e b8 04 3e ba dd e5 d7 55 3e 52 12 ec // d4 69 1e b4 26 25 1f 9d 67 20 b8 27 6a c5 43 dd e0 23 99 a3 5d 97 4b // 22 c1 72 7d 4b 6d f0 19 57 ca e4 74 43 b7 06 d4 31 65 e0 1d 69 32 b1 // 36 f5 61 ce 83 74 31 25 4c fb 2a 6e 7d 80 70 a2 d3 80 5a aa 15 b3 c1 // 0c cd 0c da 2e 9b 41 8c e9 ef 38 0e 5d 08 21 77 52 e1 2b 3b 89 2d 03 // a9 49 5c 83 d7 8d 67 46 12 fd e5 a6 77 38 b2 d4 64 9c e4 46 06 ec ce // 6b f3 bd 12 93 ec a2 46 a8 36 43 e4 f1 c7 ba 36 2b 11 0e 07 c8 47 9f // 21 6e 3d 4a fc 4f cb 8d 08 20 c8 ab 70 2a 66 d8 18 3e 83 17 45 97 03 // 5e 92 b9 b5 00 de e0 8c 80 b9 27 b4 2c 36 89 c7 c9 61 7b 41 12 c9 e5 // 4c bf a5 1e 98 9b 5f d4 2b 80 c5 95 d3 ed d2 65 f1 38 e8 12 8c fb bb // 0e 4f 53 aa 0a a9 5a 2e cd a4 51 8b 2e 56 4c 42 d5 de 76 71 56 08 43 // d0 81 03 b9 bd ce ac 5f de b0 b1 26 6f 72 f4 91 26 5d d2 b2 b8 0a 22 // 5a 50 95 51 67 da 18 12 36 4e a3 40 d8 2f 61 53 54 01 ba e6 f3 14 0a // 87 95 d7 c3 18 a6 4c ee 46 76 62 72 44 93 09 57 b2 f0 b2 27 be 21 b7 // 2d 90 02 7e 6a 5a 7a f3 c5 94 70 c7 4d cd b7 1d 1e f0 90 a0 f4 9c 91 // ac d6 04 c7 92 38 5c 8f 4e 08 57 65 29 28 22 ee 5e ca 03 88 5f d6 bf // ea ca 9b 3b bb de ac 93 9f 78 46 a4 87 c5 a4 83 ed 1e 4f bf 37 c9 38 // 86 ea 27 bb 35 c8 12 08 9b 90 0b 77 c7 c9 24 14 7e 97 b6 a7 15 33 61 // 07 50 bc 84 92 10 12 aa 81 58 b2 13 f7 60 1d 93 4a 20 bd d1 f7 57 b0 // a3 30 42 a6 83 af 6b 90 69 f3 90 00 59 d7 f8 0f 9f dc c9 f3 3e ce 8c // f7 88 8d c9 e2 4f 1f c6 ca 0e cc cf 16 1c 53 34 c6 0f 44 0f eb 3a cf // c3 d1 15 01 1c 17 6d fa 05 31 4c 5b cf 08 9e 3c 82 bb e7 68 0a 3e ef // dc db f3 ac 27 26 5b 77 9d b4 f4 9b ad e0 12 8e da 6e 29 bc 59 33 ef // 45 46 01 db 1b 49 62 8f d3 9a b9 38 79 4f a4 6a 33 93 7a 08 6e ce 70 // 50 d3 1a 21 52 4e 2f 0c ac b3 07 ed 44 12 a2 07 86 36 f9 cc 8e 11 c5 // c3 1c c0 f9 ed d7 be 6d 1e 31 a1 51 3a 58 e2 52 15 f5 a2 42 45 cb 98 // 85 89 e6 d5 e5 11 9f 4f 65 57 c6 97 fa d7 d1 c3 a7 e3 ba e0 64 db 43 // 82 70 1e 33 e4 8c 5b 6a 52 fe 91 41 a3 85 ef 23 25 c6 f7 78 11 34 60 // 7e 98 bf d0 2c 43 d6 de ef aa 86 17 00 38 8b 40 d9 8e 94 1c fb 2d de // c2 09 f9 77 e8 b9 f9 3d 29 fd bf 85 e3 01 0c e7 cd 62 2e 8c 75 ce 3d // f5 35 e3 92 05 2b 6d 65 d5 04 2d 2a 6e 78 bb fe 5e e1 46 e8 b1 8d 4b // c7 fb 02 4d bb a5 7c be 04 02 20 55 93 76 6a 31 39 50 cb 71 9d 00 c6 // 7b b6 b3 bc aa 10 15 b8 9e 82 0f 11 47 5a fc e6 55 94 71 13 a7 c3 dc // bb 52 42 7f 09 0d f9 94 fb f0 76 db 86 7e 0a b3 f6 12 5f b8 88 4c 1d // 13 ff 3e 99 fa b5 fa 8b 9f 0b 72 cb 44 db 4d 0a 48 d9 ec 17 f9 73 37 // 64 e2 13 c4 0a 15 ad 82 1e c6 0e 4a 88 cb 2f d9 dd 9a 4f 35 e6 a7 08 // f4 b7 40 67 f4 be 3f 03 a9 52 61 f6 b1 91 df 53 fa 5b b5 16 4e 4a 16 // 46 30 ad 9c e3 90 87 aa 95 0a d9 e6 0c d2 c4 4f a2 23 7c 49 ab f8 58 // c9 77 37 fd 21 18 0f d0 b9 54 27 67 15 0f be d3 f3 9a 29 e6 c3 48 4d // 94 37 e1 5d 24 39 f2 a5 4b 2a 1a c7 e6 3e 6c 43 66 58 ab c3 f1 dd 52 // d9 84 f6 c6 90 17 68 a8 cf 2e c9 8e bf 44 e9 0e 0f c0 c2 4f 89 57 c6 // 2e 05 d8 ea ce ca f2 5b 17 8f d7 10 af 60 9a 8a 1b c4 d7 95 5b 5f 0c // b4 f4 8a 37 68 5e 63 04 ea 58 43 57 3a 1a bf f3 7b 51 06 91 6c 83 c8 // f2 3f 93 9a 0d c4 3a ea 8d 19 61 91 ed 6e 18 dd 79 39 90 d1 f3 7d 7d // e0 bf 8f ac 6f 46 98 43 72 4e aa b8 6b e8 a4 83 be 28 1b 8e cf 4a a2 // 9d 9c 57 19 51 cd e8 cd 8c 2a af 4d 59 7a c2 cb 48 f2 3f ad 14 59 16 // 92 0a 55 d6 55 92 49 40 57 3b 64 db d4 2a 28 0c dd c4 81 04 34 f9 30 // 18 3f db bd c7 2d b1 49 1a 4c 9d 44 da f9 b1 bc 2f ec d8 55 50 86 48 // 06 30 40 fa eb 12 5d a0 e6 8e 6c d2 00 21 81 11 8e ec ff 0b e1 dd 8e // ae 72 6a f5 d4 51 63 0c d6 51 19 c5 2a bd 6d de d9 7f 93 12 02 f1 86 // a1 8c 4b a3 4b c2 c3 f6 d7 65 e2 d8 f4 45 e9 59 f2 6f fb 55 82 7c f3 // ff 2c c0 28 9f 17 b8 2c 8c aa 5a 2d 3d 54 30 6a 30 0f 0e f4 2b be 4e // a9 e3 2c 5d 4b 11 73 94 27 45 cd cf e4 f5 d1 61 9e ef af 8d c6 00 af // bc 91 71 d5 16 f7 f4 b3 53 31 d0 b9 be 00 51 32 ff ad 5e 9d f5 97 10 // 27 8b 84 2a fb 62 6a 78 b8 b8 b3 7f c3 a8 94 dc 70 5b 2d 4e 09 40 cb // 26 4e 9d c8 7e aa 14 8e 6f af 78 12 54 62 f2 8a 0f 1d 7b 3c 65 a2 91 // b8 57 13 fa 71 ff c4 78 f6 60 1e 87 16 c3 54 89 f4 a5 4e d0 c7 0b cf // d5 50 2c c9 13 74 dc 3c 98 20 75 c5 18 03 98 bc 6b 19 5b 36 e7 9d cc // 40 87 cb 99 0c c9 d9 64 a1 50 e0 dc c8 87 d4 96 bd d2 7c 3f 29 87 36 // b9 ad 83 45 ba 2d f4 60 21 96 4c f4 3c 38 f9 d2 e9 4b 77 be e2 b7 bf // 05 9e 08 70 ff 9f 17 b9 ef 13 20 c0 aa 88 a2 fa 97 81 e9 01 7a b6 46 // 43 de 9a 3d f9 ed 4b 8c fd 8f a0 80 a2 e4 94 40 95 20 b7 95 eb 15 17 // d2 24 a0 5e 45 0c 4c 8a e0 e9 fd 29 c0 e7 2d 3a 59 2c ce 55 f6 dd 51 // 07 f2 12 14 e1 a3 f9 a5 44 83 84 de 06 14 9f 95 9e c0 c9 27 90 f0 ff // 22 9a b4 97 11 71 f1 c5 28 ae 6d 09 5e c0 07 bf 5e 7f 55 d6 23 a6 81 // 94 e9 ea 8e dc 3a f4 18 07 53 38 32 8f 24 e7 50 43 41 c2 2b ef 72 c2 // 96 3f c9 c3 23 7b a9 90 d2 9c 2c 8a a3 00 73 95 f6 d9 6e 95 b4 0e e1 // b1 8d ba d5 50 bf 39 d0 d9 82 68 cb 74 dd e7 6d 98 7c 31 69 c9 06 74 // 95 fb 1b 88 50 8b bb 7e 94 cb b7 df c1 5c 03 b1 d5 b1 63 13 2c 8a 46 // 89 06 f0 2d 42 2a 8c f9 8d 0b 43 2b 57 79 dd 96 20 74 b7 2d d2 74 39 // b2 e9 43 12 f5 73 43 5e 5a a8 46 64 43 2c 19 14 83 9c d6 e1 72 18 6c // e9 3e eb 1d 7c b0 65 96 96 d9 d5 50 eb 3b 18 5f 8c 6e e1 6e 53 f7 82 // 33 cb e7 09 f9 9d 28 79 d6 3d 93 f7 d0 ed 13 32 41 d2 f1 ab 1e b2 c5 // 66 05 ca 0f 0e 01 c3 9a b0 ba 23 70 fe 5c 4e 68 de 05 61 b5 17 ff 9a // 10 02 3c 38 62 36 39 83 72 c7 17 6e 35 44 3e 2c f5 dd 6c be d9 f2 33 // 95 f2 31 e6 a5 4f 65 62 6c b5 86 0a 8b 72 12 2c 34 66 41 19 e7 c4 72 // 04 ef 4a 70 58 3a 00} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: ptr[in, syz_fuse_req_out] { // syz_fuse_req_out { // init: nil // lseek: nil // bmap: nil // poll: nil // getxattr: nil // lk: nil // statfs: nil // write: nil // read: nil // open: nil // attr: nil // entry: ptr[in, fuse_out_t[int64, fuse_entry_out]] { // fuse_out_t[int64, fuse_entry_out] { // len: len = 0x99 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x8001 (8 bytes) // payload: fuse_entry_out { // nodeid: int64 = 0x4 (8 bytes) // generation: int64 = 0x20000000000 (8 bytes) // entry_valid: int64 = 0x0 (8 bytes) // attr_valid: int64 = 0x4 (8 bytes) // entry_valid_nsec: int32 = 0x0 (4 bytes) // attr_valid_nsec: int32 = 0xfd (4 bytes) // attr: fuse_attr { // ino: int64 = 0x5 (8 bytes) // size: int64 = 0x0 (8 bytes) // blocks: int64 = 0x4 (8 bytes) // atime: int64 = 0x3 (8 bytes) // mtime: int64 = 0x0 (8 bytes) // ctime: int64 = 0x0 (8 bytes) // atimensec: int32 = 0x1 (4 bytes) // mtimensec: int32 = 0x1 (4 bytes) // ctimensec: int32 = 0x8 (4 bytes) // mode: fuse_mode = 0x4000 (4 bytes) // nlink: int32 = 0x7 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x0 (4 bytes) // blksize: int32 = 0xfffffffe (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x20000000c280, "\x89\x7c\x65\x00\xff\x30\x35\x46\x5c\x7a\xcb\x4e\x06\x98\x0b\x05\x68" "\x7c\x14\x80\xc7\xaa\xfe\x63\x1c\x05\x43\xdb\x2b\xf0\xd6\xf5\x39\x50" "\x6e\x87\x82\xda\x06\xc1\xca\x01\x87\x74\xd7\x2e\x9e\x5a\x34\x18\xab" "\x66\xee\x78\xda\xd6\x84\x57\xb1\x7e\xc9\xd4\x7b\xf7\xd8\x27\x2d\x60" "\x7c\x1c\x0a\x4b\xd9\x06\xf0\xce\xe7\xf8\x45\x18\x28\xd2\x45\x85\x96" "\xbd\xd6\xa4\x59\xba\x18\xeb\xaf\x61\xb3\x8f\x5d\x66\xc2\x7f\xa8\xa0" "\x24\xad\x78\x32\xa8\x5e\x58\x68\x9a\x4c\x25\x4c\x94\xcb\xcf\x72\x08" "\xfc\xe6\xe6\x1d\x95\x66\x45\x97\x89\xd1\x5a\x6f\x91\xdd\x7d\xb7\xc5" "\x4c\xc3\xa9\x4d\xa9\x56\xfb\x29\x0a\x8a\x15\xf8\x49\x27\x0b\xc4\x59" "\xd9\xd9\xf4\x78\x01\xbe\x86\xdd\x5c\x9d\x18\x38\x20\x81\xa9\x93\xb7" "\xbf\xde\x5c\x28\xad\xca\x4c\x71\x32\xfd\x6b\xe7\x43\xb0\x76\x03\x3b" "\x58\x59\x89\x17\x03\xeb\x65\xfa\x25\x6d\x6f\x47\x45\x0b\x6e\xda\xcb" "\xd0\x5a\x9b\xd8\xb3\x72\xe9\x0c\xfc\x30\xf3\x28\x26\x56\x6d\xac\x6c" "\x48\xe6\xef\x00\x18\x81\xcb\xc3\x04\x82\xf9\xec\x46\x9e\x47\x6a\x10" "\x1d\xa4\x96\xb8\xc0\x78\x5e\xaf\x87\x5d\x36\x08\xb0\xc4\x9e\x9d\x39" "\xba\xaa\x10\x41\xf9\x03\xa8\x05\xf0\xf2\x4a\xa6\x37\x22\xfa\x2d\x87" "\xb9\x85\x95\xfa\x5c\xfa\xf8\xb7\x9c\x45\x8d\xe4\x3e\xe3\x99\x04\xe7" "\xca\xc7\x54\x0a\x93\x4b\x41\x08\x95\x77\x85\xd5\x88\x07\xab\xff\x18" "\x69\x49\xf1\xb9\x4c\xd2\x1b\x72\x4a\xff\x34\xac\x45\xc7\x06\x6d\xcd" "\xbd\x68\xea\x7b\x76\x6a\xf9\xd0\x45\xcd\x7f\xaf\xea\xfc\x5c\x5a\x0c" "\x34\x00\xef\x4e\x0c\x71\xa6\xfd\xd5\xb8\xd6\x8a\x6f\x31\x76\x44\xcd" "\xa9\xd2\xfd\x2c\x83\x9a\x82\xb9\x7b\x3d\x90\x9b\x54\xc6\x72\x22\x7b" "\xef\x57\x3c\x9d\xe1\x99\x1d\x65\xa6\x30\x17\xf7\x24\xd1\xf7\xf1\x57" "\x5e\x69\xdb\x53\x31\x8a\x7f\xd7\x06\x5b\x30\x3e\x75\x15\x18\xc8\xee" "\xf0\x4f\x64\x2d\xbd\x4d\xfa\x34\x90\x40\xa7\xb5\x40\x10\x50\xff\xc2" "\xb4\xef\x62\x80\x3a\x7c\x8e\xab\xa9\x9e\x01\x1d\xfa\xc2\x4d\x81\xb2" "\xb6\x1e\x0b\x05\x81\xe5\x3b\xf5\x20\xf6\x23\xec\xa1\x7f\x05\x45\xc5" "\xe5\x9f\xf1\x5b\x52\x74\x75\xf9\x70\xf5\x89\x89\x4a\xe5\x89\x14\x5f" "\xa4\x28\x3f\x72\x25\x08\x8c\xcf\xeb\xa1\xd7\x2e\x91\x28\xf8\xc2\x23" "\xae\x18\x40\xf2\xed\xae\x3d\xbc\xdf\x7e\x56\x0d\x5c\xdf\x4f\x71\xc9" "\xad\xa1\x93\x1c\x0f\x83\x12\xc0\x00\x10\x1b\x26\x4a\xad\xdb\x9f\xab" "\x16\x6b\xa8\xd8\x90\x3d\x60\x98\xec\xa2\x09\x35\xca\x60\x7e\xa7\x9e" "\x93\x67\x98\xb3\xdf\xb2\x2a\x7e\x15\x9a\xbb\x23\x4c\xf2\x1f\x37\x33" "\xdb\xf2\x63\xa8\xff\x11\x60\x92\xf2\x51\x65\x91\x08\x89\x2b\x2e\x21" "\xe1\xb4\x28\xfd\x22\x50\x96\xa5\x04\x02\x70\xb2\xd7\x03\x47\x01\x3e" "\xaa\x1f\xd8\xe4\x52\x94\x22\x00\x28\x3a\xab\x09\x2c\x4f\xfc\x5b\x8b" "\x42\x7b\x5d\x69\x1a\x5a\x77\x3e\x09\xda\x20\x53\x9f\xf0\xf8\x21\x43" "\x31\xc5\xd8\x41\x07\xae\x8a\x59\xae\xb5\x8e\xfe\x22\xd7\xa0\x79\xe4" "\x46\xf1\xdf\xb0\x75\x10\x37\x77\x99\xbf\xdc\x7e\xe5\x9c\xab\xcd\x76" "\xaf\x0f\xe8\xa4\x27\xac\x82\x58\xff\x33\xbb\xad\x5a\x80\x61\xf1\xcf" "\xdf\xbf\x37\x5d\x73\xd6\x76\xcc\x79\x16\xd6\x65\x8c\xe4\x6a\x0b\x17" "\xad\x63\x50\x15\x0f\x98\xe3\x51\x2b\x51\x3e\x25\xca\x73\xf5\xf5\xdf" "\x0a\x1f\xb9\x58\x2a\xce\x79\x06\xc4\x93\xfe\x1f\xd2\x88\x9d\x9a\xac" "\x0b\x7c\x29\xc2\xb6\xc2\x05\x53\x76\x27\xba\xd6\x4d\xf4\x33\x33\x6a" "\x5a\xce\x32\xca\x87\x1e\x51\xb4\xda\xb0\xfb\xb0\x08\x86\xa1\xfa\x81" "\xa9\x8b\x74\xde\x0a\x26\xce\xbf\x65\x72\x35\x15\xeb\xb8\x07\xfc\x3c" "\x16\x1e\xd4\x2d\x1a\x7b\x6b\x55\x71\x76\x13\x57\x7e\xa4\x37\xf3\xa2" "\x96\x7c\x66\xce\x45\xff\x85\xa6\xa3\x5b\x7c\xd4\x06\x25\xfc\x57\x5b" "\x10\x7d\x73\x94\xe3\xd2\xdb\x51\xd5\x83\x47\x27\x6c\x33\xe2\x1f\x50" "\xb5\xa6\xb5\x67\x2b\xf9\xfd\xa6\x31\x39\xbb\x75\xae\xad\x1f\xe4\xee" "\x9a\x40\x64\xaf\x5a\x59\x58\x46\x6a\xa3\x9f\xaa\x6d\x82\x14\x89\xfa" "\x41\x52\x24\xc8\xd6\x9d\x3b\x59\x22\x23\x68\x32\xc2\xb1\xe4\xf6\xb8" "\x86\x3b\x32\xf9\xae\xa8\x3f\xb5\x22\xa2\xde\x08\x1d\x67\x45\x02\xb4" "\x8f\x73\xce\x6d\xb9\x8d\x84\x13\x60\x59\xb4\xa6\x67\x6b\xc8\x5a\xc6" "\xb7\x62\x63\x29\xaf\xa9\xbc\x7d\x3f\x9f\x2c\xaa\x3c\x4d\x87\x27\x44" "\xe0\xa8\xe0\x2d\x72\xa7\x5c\x6c\x54\x5b\x8e\xc8\xe1\x5b\x6f\xb0\xfe" "\x41\x85\xbd\x0d\x15\x49\x60\xe6\xfe\xf0\x5b\xa4\x0e\x5f\xe2\x96\x8e" "\xb1\x30\x1d\xcc\x52\xa0\x33\x37\x17\x9e\x74\xba\x15\x22\xaf\x93\xd7" "\x78\x27\x84\x5f\x89\x41\xc6\x9e\xd8\xbb\x84\x56\x7e\x3c\x63\xf1\xcc" "\x37\x8a\x54\x2f\x1d\xe7\x00\x7b\x68\x8f\xf0\xa9\xc6\x9d\x58\x61\xf0" "\xb8\x54\x02\xc3\x0a\x2f\xd3\x91\xc5\x2b\xaf\xbe\x65\xf8\xe8\x21\x35" "\xfd\x38\x36\x1d\x7c\x0b\x43\xc9\x82\xb2\xf3\xe7\xcb\x09\xc4\x0c\x7e" "\x21\x51\x14\xf4\x24\x3d\x67\x0c\xd5\x76\xbc\xd9\x3c\x1e\x95\x93\x45" "\x17\x0c\x75\xd6\xc3\xcf\x89\xcf\x8c\x2c\x70\xdc\x79\x2e\x64\x6e\x7c" "\x64\x9d\x4c\x5f\x36\xbb\x01\x6c\x7a\xcd\x46\x6a\xd5\x84\x73\xd4\x0d" "\xfe\xf3\x63\x94\xe5\x81\x06\x5a\x85\x81\xab\x85\x22\x50\x40\x3c\xf3" "\x72\xac\x00\x65\xbf\x75\x7f\xa3\xf4\x45\x42\x4a\xc0\xd8\x2a\xec\x19" "\x38\xa2\xea\x11\x6b\xdf\xd3\x06\xba\xa1\xcb\x06\xc6\x2a\x4a\x97\xd6" "\x6a\xb1\xb9\x48\x94\x69\xcb\x8b\xa8\x42\xda\x12\xe3\x10\xca\xed\x02" "\xc5\xef\x05\xc0\xbe\x1e\x1e\x8c\x9c\x8b\x87\xd6\x87\x1c\x94\xc5\x7d" "\x16\x4d\x08\x67\x2b\x20\x5c\x94\x80\x86\xa0\x6a\x54\x5b\x26\x6b\x7a" "\xd9\x02\xa9\x08\x68\x1e\xb1\x88\xbc\x51\xb6\x19\x0b\x5c\xb9\xd8\xca" "\x59\xb8\xc4\xc6\xe7\x36\x9c\x00\xd6\xf6\x11\x9f\xd5\xd4\x37\x23\x9e" "\x3d\x3c\x89\xcb\x81\xe0\x9e\x56\x0f\xb8\x17\x59\x01\x06\x01\x5f\x08" "\xe7\xb0\x9f\x1e\x1e\x65\xbf\xab\x3b\x84\x89\xfa\x05\x8e\x24\x08\x19" "\x78\xb9\xe2\x54\x63\xd9\x94\x5b\xfb\xca\x81\xc0\x88\x85\xd4\xb6\xd4" "\xc6\x2e\x21\x7b\xd9\xe1\x94\x60\x76\x2f\x36\xc6\x6b\xc9\x48\xfe\x31" "\xcd\xe0\x89\x62\x6f\xbb\x31\x0e\x3c\x78\xa8\xd3\xf2\xea\xc2\x1d\x37" "\x4d\x9b\x58\xd8\x87\x23\x5d\x3a\x95\x72\x11\x68\xe4\xb9\x47\x58\x49" "\x07\x1d\x60\xec\xfe\x7e\xa5\xd6\xc4\xbf\x60\xda\x37\x47\x61\x2e\xf5" "\x9b\xb6\x51\x27\x0f\x32\x6c\x0a\xf3\x1b\xc8\xc7\x13\x61\xf8\x51\xde" "\x34\xcc\xb3\xc8\x07\x1b\x96\xf1\x12\x8d\x7e\xe7\x9b\x41\x24\x6e\x56" "\x6e\xdd\x02\x72\xdb\xd3\xcc\xfe\x47\x2b\x38\xe5\xe0\x3d\x3e\xf8\x32" "\x18\xbd\x49\x8e\x6d\xe8\xb4\xd9\x2c\xb6\xf8\x27\x16\x44\x9e\xde\x7b" "\xa8\x45\x02\x8e\xcc\xdb\x91\x37\xbe\x8a\x62\x2a\xc8\x8a\xc5\x31\x18" "\xfb\xc3\x96\x37\xfa\x7a\x93\xcd\x3a\xbc\x6f\x76\x71\xc7\x80\x44\x20" "\xd6\x6e\x94\x72\x0a\xcb\xca\xc9\x16\x95\x0f\x9b\xac\xa7\x7f\xef\x42" "\x17\x15\x5c\xcc\x2c\xd0\x50\x73\x39\xa0\x48\x6f\x9f\x46\x8e\xb2\x87" "\x72\x98\x6e\xe7\x68\xc6\x3e\xba\x67\x1b\xf8\xc5\x2e\x48\xa2\xa5\xdc" "\x2c\xc2\x4f\xe9\x25\x36\x87\x06\xc2\xd7\x12\xdd\x10\x64\x69\x2b\x0f" "\xb2\xa3\x2d\xdf\xbd\x4a\x0f\xfc\xf9\xc2\xab\xce\xda\xae\x6e\x52\x7b" "\xc1\xd4\x26\x37\xaf\xf2\xa2\x75\xb7\x6a\x7a\x7f\x01\x0e\x42\xe1\xcc" "\x1d\x27\x14\x1f\x6c\x35\x85\xa2\xbf\x58\xc6\xc5\x78\x9c\xe6\x15\x51" "\xd1\x01\x18\xa0\x00\xe3\x76\x46\x31\xec\x0b\x7f\x4b\x1a\x6f\x22\xa6" "\x78\x13\x3a\x30\x94\x0b\x79\xdc\x76\xf8\x63\xdd\x9f\x6e\x0d\x77\x76" "\x30\x08\x98\xc9\x7c\xef\x28\x6c\x73\x1c\x20\x50\x92\x8c\x49\x24\x39" "\x25\x6e\x48\x16\x52\xbf\xf0\xd2\x02\xdb\x3c\xfd\xc5\x4c\x98\x16\xce" "\xea\x78\x95\x35\x7b\xfa\x03\x62\xfa\xd7\x9a\xfd\x09\xed\x55\x18\x92" "\x94\xd6\xea\xd7\xe8\x98\xac\x09\x1c\xdd\xbe\x7e\xfc\xed\xb3\x14\xbc" "\x02\xa1\x8d\xd5\xbb\xdd\xc4\x2e\x08\x91\x24\x75\x8b\xb4\x91\xfd\x15" "\x36\xaa\xb2\x7c\x5c\x12\x45\x67\xbc\x32\x5e\x70\x28\xbc\xed\x5a\x17" "\x9a\x01\x1d\x1c\xb9\xa5\xff\xb6\x1d\x7a\xf8\x63\xe9\x1e\xc8\xe6\x04" "\x95\x56\x11\x88\xb7\x4d\x15\x8b\xa1\x41\x82\x28\xd4\x4e\x92\x91\x5a" "\x22\xeb\x1c\x16\x6e\xf7\xd6\x17\x9e\x84\x38\x1e\xd9\x50\xff\xd7\x47" "\xf1\x3e\x24\x17\x29\x42\xd9\x22\xca\x31\x09\xfb\x8b\x1e\x4e\x62\x64" "\xfa\x4a\x4e\xec\x75\xad\x0d\x0e\x22\x57\x9d\x90\xf4\x5d\x6c\xd1\x57" "\x30\x0e\x38\xae\x66\x5e\xb5\x64\x57\x20\x2e\x25\xa8\xdd\x58\x77\xba" "\x99\x72\x5d\xe2\x88\x66\x0b\xad\xd2\x70\x43\x45\xd9\xba\xd2\x08\xc9" "\x03\xba\x27\xea\x16\x7d\xd4\x5a\x77\xf7\x7b\x65\x02\xb5\x25\xb2\x97" "\x32\x70\x58\x28\x58\x18\x3c\x78\x4c\x32\x4c\x13\x66\xfb\xba\x8d\x41" "\x0c\x38\xbf\x75\xb4\x1e\x06\x7f\x6a\x9a\x01\x7c\x56\x59\x51\x61\xdb" "\x4f\xc5\x63\x93\x93\xfd\xaf\xb1\xf1\x48\xd3\xf4\x16\xc1\xad\xc5\xfe" "\x1a\xb9\xce\xbe\x46\x89\x85\x5c\x9b\x4b\xda\x6d\xcb\xa5\xd5\xfa\x85" "\x8a\x1b\x87\xd2\xad\x23\xcd\xf5\x4d\xbd\xf4\xd1\x4a\xa4\x46\x2d\xa0" "\xb6\xf1\x10\x7f\x4a\xfa\x00\x91\xc2\x64\x35\x08\x86\x1a\x4d\x9f\x13" "\x3b\xa7\x77\x51\x94\x1b\xb8\xfb\x75\x6a\xbf\x1a\x10\x42\x05\xb8\x0d" "\x47\xa3\xb4\xa5\x97\x24\xd9\x59\xc8\xb5\x83\x3d\xa4\xf5\x6f\xb6\x61" "\x32\x31\xf2\x30\xa9\x37\x8c\x9a\xf7\x41\xe9\x4f\xd2\xc7\x21\x3a\xc1" "\xd7\x62\x55\x59\xb3\xf0\x32\xf6\xc8\xdf\x3a\xb4\x41\x92\x97\x20\xfe" "\x43\xd7\xc5\x48\xcc\x66\x1e\xed\x5b\x3c\x62\xb3\xc6\x1f\x53\x8e\xa3" "\x22\x83\x76\xe2\xa1\x8c\x6d\xa2\xad\x90\x63\x22\xf6\x4f\xb4\x86\x5c" "\xde\x8e\x18\x89\xa8\xe5\x23\x7f\xd6\xa3\x9b\xbd\x66\x62\xf1\xde\xdc" "\x22\xfb\xd7\x4e\x43\x76\xfa\x61\x0c\xd7\x10\x70\x3d\xbd\x39\x24\xa3" "\x8b\xea\xe6\x97\x83\xd1\xd5\xab\xf3\x61\x22\xcb\xb8\x71\x29\xba\x71" "\x90\x42\x74\x8f\x06\x0f\x43\x03\xa3\x19\x9c\x58\x91\xc5\x04\x0f\xd8" "\xcd\xb9\x76\x1b\x00\x6b\xf6\x4c\xdc\xb6\x5e\x5c\xc5\x0a\x29\x99\x4b" "\x8c\x1c\x34\xb8\x37\x60\xec\xe1\x2e\xd9\xed\x7c\x3d\x2a\x7f\x89\x11" "\xcd\xf2\x3a\x1a\xfe\x0d\x7d\xb1\xbf\x34\x2a\xa0\x12\x3d\xd5\xcd\x31" "\x33\x9f\x5c\x8e\x16\x0c\x4e\xfe\xf8\x82\x60\x2b\x3e\xcc\xbe\x76\xfb" "\x69\x01\x62\xb8\xbf\xb8\xa3\x19\x10\xbc\xdf\x9a\x4a\x5d\xde\x76\xc2" "\xac\x2f\xcd\x86\x78\xad\xd7\xa0\x00\xcf\xdc\xab\x39\x8e\xb2\x17\x1c" "\x02\x63\x13\xeb\x6e\xb5\x6b\x4b\x87\xbf\x8e\xf9\x3f\x7f\x8a\x1c\x0b" "\xcc\x37\x75\xb6\x81\xd4\x22\x9e\xa5\x61\xcb\x52\x28\x1d\x8b\xa4\x31" "\x5c\x36\x94\xed\x08\x43\x35\x96\x88\x4d\x5a\x7c\xe3\xa8\xb1\xf8\x23" "\x59\x84\x6b\x71\x36\x72\x6e\x2f\xe3\x7b\xf4\xf7\xb7\xe2\x20\x6c\xdc" "\xdb\x07\x05\xce\xd9\xf0\xdc\xaa\xa2\xed\x3a\x78\xea\x70\xd2\xcf\xea" "\xb6\x68\xeb\x32\x14\x00\xfc\x95\x5e\x9a\xeb\x7b\xbc\xf8\x6c\xd0\x3f" "\x02\xdd\x44\x35\x03\xa1\x48\x0d\x9d\x9f\x89\x9f\x53\xbd\x74\x7a\x95" "\x29\x37\x86\x79\x8f\xc5\x9f\xce\xb0\x9e\x68\x6a\x93\x28\xda\x4f\x92" "\x9b\x62\x01\x84\x1b\xbb\xef\xaf\xfc\xf3\x38\x6a\xbd\xf6\x95\x40\xe3" "\xb4\x6a\x64\x3e\xc1\x0f\x0a\xcf\x21\xf2\x7c\x00\x53\xdc\x13\xf1\x84" "\x85\xdb\xc8\x98\x72\x9d\xfb\xea\xaa\x48\x87\xb5\x8c\xd4\x42\xd7\xff" "\xa9\x41\x80\x8c\xd9\x65\x85\x95\xbe\x86\x50\xa8\x15\xb0\x88\x62\x12" "\x78\xd8\x9f\x0d\x8a\x42\x52\x56\x6b\x92\x3d\xf3\xa3\xcd\x65\xc0\xe4" "\xaf\x08\xfa\xd3\x85\x92\x72\x51\xb3\x1d\x35\xf7\x5e\xaf\x25\xe6\xcf" "\x13\xa5\x79\xae\xeb\x0b\xcc\x0a\x14\xca\x4a\x20\xa6\x83\x1d\x53\x2b" "\xe0\xb2\xaf\x38\x21\x79\x2a\x2d\xf9\x51\x31\xb7\xfa\xfe\xf2\x45\xaa" "\x19\xb2\x14\x05\x33\x42\xaa\x82\x0c\x35\x85\x8d\x13\xf8\x4e\x49\x62" "\x94\x52\x94\x11\x01\x5c\x41\xed\x44\x7b\x5b\x51\xdc\x44\xa4\x5d\x52" "\x55\x2a\x2b\xe1\xab\xfc\x15\x7f\x3a\xce\x7b\xfa\x32\xd5\xb9\x31\x42" "\x1d\x5a\x15\x2d\xd6\x6b\x7b\xf5\x49\x31\x1b\x08\x32\x5e\x5a\x72\x01" "\xf7\x93\x03\x7b\x38\x99\x0b\xed\xec\xa8\xa6\x47\xc0\x8d\x24\x78\x67" "\x0f\x8f\xc2\xb4\xe8\x98\x3e\xa1\x8b\xcd\x51\x4d\xae\xee\xeb\x9d\x7a" "\x77\x8f\x78\x3c\x76\xed\xf0\x1b\xd4\xbe\xda\x4b\x77\xb6\x12\xcd\x2e" "\x86\x5c\x2e\x4f\x58\xca\x7a\xe0\x61\x47\xbf\x66\xae\x6a\xee\x22\x1c" "\xf9\xb9\x50\x5d\xc0\x7e\x6f\xb6\xcf\x4f\x82\xdc\x8c\x40\x6c\x78\xe2" "\x70\x21\x0c\x11\xcf\x25\x31\x01\x1e\xd6\x78\xd9\xdf\xe1\xf4\x9c\x9a" "\x69\xa9\x5a\x9f\x3b\x0e\x5b\x62\x4d\x9c\x26\x64\xd7\x87\xab\x91\x1b" "\x75\xa4\xa3\x8d\x63\xe9\xd6\xc3\x53\xf8\xaa\xf4\x33\xff\x96\x1f\xe5" "\xe3\x4d\x84\x93\x6e\xad\x0d\x0b\xc7\x95\x4c\xaf\x84\xe5\x41\xf5\xc6" "\xf3\xf2\x0c\x9e\xed\x21\xeb\x03\x16\xb8\x2c\x0d\xc5\x18\x25\x40\xe6" "\x3a\x0a\xf2\x55\x65\x49\x67\x92\x15\x3d\x63\x95\xad\xc2\xb8\xd6\x8b" "\x8b\xcd\x93\xdd\x11\x0f\xf5\x68\x58\x79\xdb\x43\x84\xec\x39\x0d\x44" "\xb8\x96\x63\xd4\x3a\x5d\xe3\xbd\xc0\xe1\x03\xb7\xc1\xb3\x55\xdc\x5f" "\x6f\xe3\x51\x8c\x93\x62\x87\x80\xba\x03\xf1\x56\xba\xde\xa6\x5d\x1d" "\x0a\xf8\x43\x3c\x9e\x8a\x97\x5f\xdd\x19\x45\x3d\xa6\x62\xa3\x3f\xa9" "\xf0\xf5\xfa\x15\xfd\xb2\x16\xb4\x83\xfb\x48\x37\x0a\x96\x72\x46\xe0" "\xb7\x63\xdf\x8b\x3b\xc7\x92\x4a\x6c\x76\xc4\xb1\x14\xf8\x03\xdb\xfa" "\x3b\x31\x2e\x68\x15\xb4\xeb\x67\xbe\x16\x72\x83\xa9\xe4\x82\xd9\xa5" "\xbe\xac\x25\x00\x89\xd0\x69\xd4\xc3\x86\xb7\xfd\xa5\xfc\x22\x84\x04" "\xa0\xf5\x8b\x12\xca\x4d\xc1\x31\xc3\x81\xb4\x9b\x42\xb5\x70\xbc\xfc" "\x0d\xd6\x63\xf2\x4a\xfa\xf6\x5a\x26\xa2\x1f\x6d\x92\xf5\x2c\x9f\x8d" "\xe3\x6c\xb7\x6b\xac\xba\xa0\xee\xf9\x8b\xa6\xb7\xdb\xbc\x26\x29\xa0" "\x3b\xb2\xb6\xf8\x3f\xc5\xad\xaf\x20\xc2\x17\xbc\x8d\x0f\x0d\x24\x21" "\xe0\x14\x72\x53\x2b\xcb\x54\x6a\xeb\x2d\x48\x3c\x8f\x95\x01\x1a\x3b" "\xa1\xd2\xfd\x80\x86\xa7\x17\xcb\x01\x5d\xd5\x30\x64\xef\x4a\x80\xb6" "\xd6\xfd\xc1\x2d\x90\x69\x22\x3f\xdf\x2a\xa9\xb1\x92\xa0\xe0\xbd\xb3" "\x84\x36\xf4\x9d\x9e\xed\xfe\xf3\x66\x58\x15\x63\x3f\xee\x43\x44\xaf" "\xf1\x11\x62\x52\x63\x62\xb7\x0b\x18\xe1\xdb\xed\xbb\x5d\x8c\x46\x98" "\x86\x0b\xec\xcf\x66\x78\x51\x87\x8a\x25\xa1\xe7\x66\xca\xae\x28\x61" "\xf2\xe2\x34\x04\xaa\xc8\x59\xe6\x2f\xdf\xea\xc0\x6a\x60\x57\x55\x48" "\x28\xd7\x03\x58\x06\xe8\xab\x3e\xe2\xfa\x6d\x71\x1e\x58\x11\xdb\x61" "\x23\x1a\x22\xf4\x67\x2f\x6a\x11\xb2\x76\x41\xf3\x50\xbc\xab\x78\x79" "\x23\x62\xe6\xeb\xc1\xc0\x54\xa6\x43\xbb\xbf\x27\x46\x67\x8c\x14\xdc" "\x56\x7d\x1f\x73\xe3\x70\x05\xc8\xab\x63\x74\xc4\xd8\xd3\x10\x63\x84" "\xa2\xd3\x2c\x5f\xcf\x05\xcb\x9b\xa9\x7c\xb7\xfa\x1a\xff\x11\x50\x5a" "\x70\x1b\xea\xd5\x43\xe5\x55\xf3\x90\x1e\xf3\xb6\x93\xd5\xb9\xeb\xf4" "\x95\x18\xc3\x50\x9a\xf0\x42\xb7\xe8\x4b\x1b\x86\x7c\x22\xb7\xe0\x87" "\x25\x22\x0e\x43\x38\xfd\x07\x4e\xdc\xe4\x28\x21\x2e\x6a\x35\x63\xa0" "\x8e\x2c\xcd\x8a\xb7\x19\x10\x25\x65\x32\x90\x45\x42\xe9\x3d\x5c\x7d" "\xeb\x5b\xf5\xd4\x9b\xeb\x32\x02\xd4\xda\x4f\x64\x36\x49\xe5\x5e\xdb" "\xb9\x11\x88\xcd\xcf\x08\x83\xa4\x0c\x6e\xd6\xb8\xa0\x86\xfb\x5c\x50" "\xdc\x08\xfe\xe0\x03\x08\x42\x01\x21\xd4\xc7\x43\x1b\x3c\xfb\x80\xf9" "\xc1\xe0\x99\x42\x3a\xc4\x51\xd6\x7b\x12\xe9\x30\xd9\xe3\x91\xd0\xa7" "\x99\xc7\xd4\xb5\x4a\x0d\x56\xea\x0a\xae\x00\xc1\xd0\x09\xe2\x1f\xb5" "\x45\x94\x16\xb4\x64\xb2\x27\xd6\x6c\xcc\x1a\x68\xda\x59\xd6\x4c\x15" "\x83\xde\xe5\x4b\xbc\xd7\xd6\x1f\xfe\x54\x1f\xd0\xfb\x74\x52\xad\xba" "\x91\x90\x69\x18\x96\x6a\x7d\x58\x01\x9a\xd1\xf8\xfd\xeb\xec\xee\xed" "\x70\x18\x83\x7b\x6e\x42\x72\xee\xfe\xec\x83\x85\xab\xe7\x20\x7f\xb2" "\xd7\x06\x1f\xa6\xcd\xc4\x78\x16\x5a\x98\x97\x1f\x97\x29\xb8\x18\xa7" "\x3e\xde\xfe\xd9\x76\xd5\xc7\xc0\xa6\x51\xc0\x91\xcf\xd1\x17\x4c\x02" "\x0e\x39\x33\x0a\x79\x14\x42\x71\xfe\x4c\xbc\x61\xea\x0f\xfa\x27\x4d" "\x0d\x87\xd0\x6d\xd0\x8c\x1d\x5f\x8a\x03\x64\xd4\x6e\xf7\xb5\x44\x26" "\xbc\x28\x63\x30\xc7\x5f\xa2\x57\xaf\xeb\x27\x15\xc2\xae\x51\x1f\xf5" "\x3b\x11\x89\xcc\x59\xab\x80\xb1\x32\x5f\xbd\xce\xdf\xdb\x8f\x36\xed" "\x71\xf7\x00\x91\x11\x6e\x16\xb5\x21\x88\xb7\x94\xe6\x37\x75\x50\x27" "\xca\xac\x8d\xb8\x55\x4f\x86\x74\xb8\x44\x96\x4c\x71\x0c\xac\xd7\xa9" "\xd6\xb0\x6b\xaf\x6f\xef\x76\x15\x9a\x38\x0e\x63\x9b\x0d\x3e\x66\x08" "\x0a\x7c\xf7\xf8\x6b\xaa\xc0\x1d\xbe\x47\xfe\x68\x7f\xce\xf2\xf3\xbf" "\xbf\x6f\x8f\xba\x04\x51\x81\xde\xe6\x88\x36\x0a\x11\xee\x56\xe5\xfc" "\x73\xed\x31\xc0\xe2\x92\x4a\xe5\x7f\x0c\xc9\x3c\x63\xa3\x06\x62\xa6" "\x5c\x5d\x5f\x17\x12\x3a\xe2\x8c\xc5\xb7\x4d\xd1\x3e\xd8\x1b\x03\xdc" "\x7f\xa6\x1d\xc5\x75\x66\x88\x68\xc0\xdf\x12\xd3\x55\x32\x69\xf0\x4b" "\xa7\x90\x84\xd0\x70\xab\xcd\xbd\x47\x45\xde\x80\xe9\x0e\x4e\x3e\x52" "\x4f\x27\x24\x9b\x5c\x4a\x2f\x2d\x4c\x8b\x33\x1b\x0c\xb6\xd4\xef\xe6" "\x2a\x29\x8d\xaa\xcc\x6e\xac\xdf\xe0\x08\xc1\xf9\x12\x79\x5d\xbd\xc3" "\x70\x98\xc4\x2d\xb8\x60\x95\x31\x20\xfd\xa7\x09\xba\xa6\xd4\x6f\x52" "\xea\xba\x78\x15\x05\xe6\x85\x61\xca\x0f\x28\x1e\x85\x05\x32\xef\x8e" "\x7c\x77\x98\x83\xe3\x12\x80\x6e\x1c\x35\x7b\xde\xf8\xd0\xdd\xa0\x05" "\xe7\x10\xcf\xa6\xeb\x86\x86\xe8\xbf\x3b\xff\x03\x6b\x3f\xcd\xc4\x03" "\x65\x41\xd9\x35\x30\xce\x6f\x59\x84\x42\xc2\x41\x70\xb3\x07\xef\x05" "\xf2\x3c\x93\xaa\x0e\xc9\x68\x31\xb5\x32\xd8\x12\x04\x02\x21\x4a\x94" "\x0d\x1f\xa0\x1e\xd6\x49\x06\x1a\x4a\x71\x30\x8b\xe1\x89\xcf\xfd\x72" "\x9a\x19\x67\x54\xfb\x8a\x75\xf2\x38\x51\x18\x95\x89\xbe\x1b\x81\x9f" "\x06\x12\xca\xd3\xdc\x94\xcc\xee\x88\xf4\xab\x9e\xf6\xac\x9c\x7d\xaa" "\xd8\xcf\x94\xf5\xed\x94\x96\xc4\xc8\x24\xe5\xb4\xf6\x6c\xe3\x2a\x80" "\xe7\xa6\xef\x06\x9a\x32\xf6\x81\x2e\x65\x6a\xa5\xf5\x74\x2b\xd4\x32" "\xaf\xdf\x02\x6c\x86\xe8\xf2\x82\x12\xc1\x13\x9d\xad\x47\xd7\xfc\x07" "\xe5\xc1\xa8\x3e\x99\x3d\xaa\xa4\xa4\xbb\x5f\x0c\x94\x35\xcc\xab\x2a" "\x10\xf8\x67\xff\xe2\x59\xdb\xa7\xa1\xd9\x16\x86\x19\xb1\xe3\x04\x88" "\x60\xa5\x12\x2e\x4a\x5d\x0b\x00\x37\x2e\xaa\xe8\x61\xa0\xcc\x88\x54" "\x98\x52\xff\xfa\x76\xe6\xd7\x87\x39\xb6\x54\xd6\x7d\xf1\x5e\xa9\x7a" "\x9a\x46\xb7\xc3\x82\xd8\x31\x91\xa6\x73\xaa\x61\x9b\x4a\x10\xec\x05" "\xbc\x68\x13\x79\xb0\xd6\xdf\x82\x4c\xb6\xfe\x15\x8e\x9d\x89\xae\x5d" "\xd1\xef\x66\x97\x6f\x67\x97\x2b\x55\x3d\xb5\x2e\xb6\xfe\xef\x83\x6d" "\xca\x60\x26\x29\x3f\x83\xa6\x1e\x11\x77\x54\xa7\x42\x4a\x3d\xa6\x3b" "\xd8\x2d\x01\x7f\x87\xf0\x60\x3e\x2a\x9b\x8f\xc5\x50\xaa\xe6\x11\x68" "\x19\x35\xae\x91\xf7\xca\x2b\x53\x41\xb0\x5a\x25\x20\x8b\xd2\x8f\x1a" "\x20\x2a\x7f\x2a\x21\x3b\x1d\x74\x11\xff\xb5\x57\x47\x0a\xec\x00\xc4" "\xd1\x3c\x70\x16\x3f\x22\xa0\x38\xa1\x89\x71\x0d\xd1\x9a\x47\xe8\xdb" "\x4a\x87\xc3\xfd\x32\x9a\x63\xab\xca\x17\x2a\x98\x10\xed\xad\x2d\x8e" "\x19\xef\x85\xb5\x7e\xa4\x28\x7c\xfb\x3d\x74\x0d\x7e\xa3\xfa\x9c\x80" "\xd0\x6e\x1a\xa8\x4b\x31\x7f\x67\x8d\xdb\x3c\x14\x7b\xa5\xe0\xdb\x43" "\x21\x25\xf5\x9c\xa4\x94\x4c\x8e\x90\x50\x28\x1c\xa8\x2a\x3e\xcf\x67" "\xb2\xa5\xdf\x67\x86\x97\xa5\x2a\x72\x97\xaf\x1e\xcb\x03\xc5\x86\xaf" "\x7b\x91\xd7\x4e\x88\x19\x64\xed\x95\xf7\xbe\x12\xfa\x07\xe2\xa4\xe7" "\x1a\xab\x8b\x91\x3a\x13\x99\x6f\xa3\x3e\x91\x51\x44\xbf\x00\xe4\x9b" "\x8e\x7a\xde\xc5\xb2\xc4\xb8\x16\x5f\x54\xba\x31\x55\x23\x0e\x24\x1e" "\xe0\x23\xaf\x77\xa2\x95\xab\x87\xc4\x0f\x63\xf6\x09\x2c\xce\xe0\x5c" "\xb0\x8a\x26\x5a\xbe\x8f\x57\xc9\x91\x9b\xf4\x50\x64\xb6\xc2\x24\x0b" "\xa8\x01\x1d\xb2\x23\xa2\x83\xa4\xe2\x29\x2d\x9b\x59\xdf\x8c\x9a\x4f" "\xdc\x76\x3f\x06\x31\x00\x7d\xb9\x97\x6f\x35\x17\x17\xdb\x0e\x6b\x5f" "\x9c\x6e\x5f\x22\x7c\x2e\xfa\x1a\xe5\xfe\x0b\xe1\xaf\x0b\x22\xfc\x16" "\x4f\x9f\x96\x78\xa0\x1f\xe8\xb0\x59\x74\x9f\xe8\xa2\x97\x24\x55\x73" "\x2d\xa1\x98\x9c\x60\x9d\x19\x15\x44\xef\x9f\xbb\x3e\x58\xda\x93\xec" "\x4a\x58\x24\x30\x52\x3f\x26\x0b\x77\x6e\x4d\x74\x73\x12\x74\x7d\x18" "\xa9\xba\xe1\x47\x40\xf5\xdc\xd3\x5f\xd1\x07\x2f\x8a\x4d\x81\x57\x3b" "\x58\x82\x20\x3b\xe8\x56\xb6\x2d\x7e\x1d\x87\x08\x1a\x9e\x43\x18\x72" "\xc9\xd6\x88\x64\x19\x7b\xbc\x61\xf1\x5d\xd8\xae\xae\x95\x0d\x34\xd6" "\xce\x97\x18\x2d\xee\xbd\x2a\xd6\x4c\xab\xd1\xc7\x23\xba\xf5\x12\xac" "\xfc\x7e\x94\x67\x5b\x31\x36\x9b\xd6\x0e\x15\x5a\xf7\x9b\x97\xbb\x73" "\x43\x12\x56\x9f\x73\x6d\xcd\x5b\x5a\x78\x22\x3f\xfa\xa0\xf7\xe9\x3e" "\x1a\x11\x2c\xb9\xf6\xa5\xb8\x8f\xe3\xcf\x12\xc3\x00\x24\xc1\x6c\x6b" "\x83\x80\xfd\xf0\x86\xc6\x62\x66\x5d\x37\x51\xc1\x16\x17\xcc\x4d\xbd" "\x5b\x8b\xc7\x54\x33\x01\xa2\x3f\xbc\x90\xba\x8d\x06\x01\x93\xcd\xc2" "\xb6\x8c\x31\xc7\x34\xd5\x16\x70\x7b\x75\x9f\x7d\xb0\x09\xc8\xf0\x6e" "\x69\xb4\x01\x54\xe1\xcd\x8a\xe4\x44\xaf\xb2\x81\x34\xac\xdf\x87\x11" "\x36\xb4\xfd\x78\xbd\x86\xd7\xfa\xaa\xf6\x18\xaf\xb2\x5e\x92\xd1\xee" "\x37\xcd\xff\x05\x95\x27\x8f\x95\x65\xf5\xeb\x10\x9e\x18\x1e\x9c\xac" "\xec\x2f\x22\xe3\x2e\x9f\x34\x77\x4e\xe2\x23\xfd\xb9\x92\xfe\xbc\xc5" "\xdb\xc5\xcc\xee\xda\x16\xcb\xcf\x14\x34\x73\x0d\x85\x9e\x7e\x03\xd3" "\x6f\xf1\x76\x36\xa7\xa7\xe6\x69\x56\xb5\x15\x89\x4d\xa1\x14\xf3\x04" "\x09\x09\xf9\x0c\xe3\xcf\xbb\x2d\x7d\x46\xe3\x70\x49\xc0\xfb\x12\x4e" "\x06\x83\xd6\x62\xeb\x42\x7c\xd7\xb8\x51\xad\xa2\x29\x45\x1e\x6e\x3a" "\xae\xe6\x4b\x99\x64\xce\xd3\x03\x6b\xde\x5d\x9d\x80\xeb\x06\x24\x74" "\xf9\x6e\xcf\xb9\xb6\x5f\xca\xfc\x71\x94\x94\xac\x12\xab\x7d\xf2\x45" "\x47\x5f\x2a\x5e\x7f\x85\xca\x47\x89\x83\x3c\xa3\x73\xe6\x21\x4d\x39" "\x17\x6c\x8f\x51\xdd\xe8\x7a\x4c\xfe\x54\x14\xa2\x0f\x68\xbb\x9f\x34" "\x70\x99\x79\xb9\x95\x33\xba\x34\x35\xc4\xaa\x56\xe5\x25\x19\x5e\x10" "\xff\xd0\x0f\x8e\x41\xae\xe3\x0a\x90\x9c\x07\xb9\x73\xbb\xf7\x33\xd4" "\x55\x00\xb5\x39\xeb\xe2\x20\x6d\x43\x82\x16\x69\x09\x98\xd9\xe2\x56" "\xdb\x1b\x7a\xc6\xbe\xf3\xe8\x10\x78\x5e\x19\x86\x98\x5c\x94\x5a\x2b" "\x82\x03\x23\xa5\x92\x72\x1f\xcf\xa4\x44\x93\x4d\x0f\xaf\x8a\xa4\x39" "\xd5\xef\xca\x5d\xcd\x77\xb7\x2d\x1e\xb9\x1b\x37\x90\xd5\x0d\x0a\x74" "\x83\xe3\x54\xc4\x15\xf8\x1d\x99\xc1\x33\xd6\x48\xc1\x29\x3e\x79\x5b" "\x3c\x43\xf9\xb4\x7e\x23\xef\x98\x2e\x10\x07\x2e\xa5\xba\xaf\xb0\xdf" "\x67\x5e\x69\xaf\x18\x07\xb2\x25\xaf\xa0\xce\xc3\xea\xfb\xde\x85\x35" "\xd3\xec\xaa\x0e\xa6\xdd\xbf\xfe\x44\x65\x20\x74\x25\xbb\x00\x36\x70" "\x32\x03\x24\xdf\x0a\xee\xb1\x6b\x38\xa0\x43\xf9\xc0\xe8\x56\x73\xb3" "\x6d\xef\x33\x2f\xd6\x8b\x2b\x1e\x6e\xdd\xa6\x21\xd0\xca\xde\xbb\xce" "\xd8\xc7\xfc\x8f\x89\x04\x89\x11\x5b\x45\x72\x49\xe8\xd8\x10\x36\x76" "\xb3\x20\x7a\x47\x28\x04\xd3\x3e\x0f\xe5\x11\xac\x56\xcd\x8d\xc5\x33" "\x3b\x23\x33\x89\x2f\x87\xb4\x55\x94\x0a\xda\x78\xfc\xf5\x07\x5c\x35" "\x8f\xce\x99\x0e\x6f\x65\xf0\x95\xeb\x41\x6d\x87\x6c\xe6\xf1\x20\xb8" "\xb0\x2c\xfa\x6b\x17\x6e\xe2\x69\xc9\x42\xf8\x81\x24\x7c\x3e\x46\x4c" "\xce\x2a\xa6\x5c\x39\x13\x76\x07\xc5\x85\xae\xb4\xb5\xf2\x4f\x5f\x8e" "\x05\x8c\x9c\x8b\x48\x00\x3c\x18\x09\xda\x3e\x8a\xad\x1b\xee\x79\x55" "\xc3\xa9\x76\xd4\x3f\xe1\x32\xe2\xb1\x6f\x47\x58\xa0\xa9\x88\x4e\x51" "\xd1\x3b\x93\x06\x75\xa4\x36\x1f\xf3\x66\xb0\xfe\xd1\x90\xad\x7b\x2a" "\x00\x38\x55\x28\x95\x1e\x39\xcd\x44\xea\x06\xd8\x92\x1b\x9d\x61\x3d" "\x76\x26\x22\x11\x54\xcf\x86\x24\x9a\x55\x01\x98\xfe\x4e\x5b\x05\xad" "\x30\x52\xb4\x74\x29\x1d\xa0\xa0\xa2\xf7\x01\x75\x98\x59\xbc\x03\x92" "\xad\xf2\x43\xad\x5e\xca\x89\xe6\xd1\x8e\x28\xdf\xf9\x9e\xf9\x57\x43" "\xbc\xab\xe7\x55\x04\xbe\x8c\x71\x5c\xd6\x36\x0f\xac\xf3\xbb\x06\xcb" "\x97\xc2\x99\x89\xd4\xf6\xff\x50\x83\x57\x3c\xef\xe6\xef\x0b\x39\xa2" "\x52\xa2\x67\x81\x12\xfa\x88\xe5\xb0\x6c\x9a\x6b\xfc\x95\x97\xcc\x96" "\xe5\xa4\x97\x10\xc4\xfc\x12\x0f\xb0\xda\x49\x45\xb9\xd9\x4e\x46\xde" "\x1e\x99\x89\xd0\xfc\x3d\x8d\x20\xdf\x23\xd8\x15\xb6\x60\xc7\x99\xa9" "\x03\xf6\x51\xb0\xd0\x13\xf7\xfe\x15\x8f\x1d\x29\x7f\x7f\xcb\x6a\x48" "\x78\x0c\xa5\x52\x5f\x1d\x08\x1a\xda\x0a\xaf\xa8\x35\x52\x31\x8b\x84" "\x87\x83\x30\x65\x49\x75\x0b\x62\x54\xcf\x67\x6c\x7b\x93\x4c\xf7\xfd" "\xab\x99\x27\x17\xf0\xcd\xc0\x89\xb3\x42\x78\xf3\xfb\x15\x1c\xad\xde" "\x14\xd0\xd3\x25\x0e\x85\xa4\xb0\xff\x2a\x27\x78\xa2\x19\xaa\x40\x56" "\x3d\x3e\xf5\x75\x28\x54\x84\x42\x4b\x6d\x0e\x7c\xc8\x39\x23\x42\xe4" "\x84\x8c\x6f\xc8\xcb\x20\xfa\x1b\x45\x0c\xc4\xc1\xfe\xa1\x9f\x3b\xbd" "\xd9\xe3\x42\xe6\xc4\x9c\xd7\xac\x89\x3b\x1e\xda\x2e\x93\xd1\xd7\x4d" "\x20\x96\x94\x65\x94\x6b\x39\x8f\xbc\x73\x37\x57\x74\x1a\xc8\x22\xc4" "\xa1\x18\x63\x2c\xd2\x42\xa4\x39\xfc\x37\x51\x2c\xf7\x9b\x7c\x62\x95" "\x04\xcc\xc1\xe7\xf2\xf1\x17\x98\x95\x5c\x32\x62\xb5\xe9\x69\x56\x25" "\xba\x74\xd8\x05\x0e\x20\xf5\x1d\x47\x69\xe1\xab\x93\x8f\x48\x7f\x1b" "\xc4\xb5\x5b\x5a\xbc\xaa\x3e\xc0\x79\xc2\xd0\x97\x2b\x2a\xe9\xbf\xb7" "\xc5\x42\x3b\x95\x91\x19\x29\x2e\xa0\x5f\x1d\x79\xd3\x5a\xfe\x47\xe4" "\x9d\x97\xc9\x46\xb1\x93\xbf\xfc\x0a\x8f\x60\x7f\x18\xa6\x84\x5c\xec" "\xbb\xdd\x98\xcd\x35\x1d\xb2\xb2\xdc\xe0\x5a\x48\x48\xba\x84\xa6\xa4" "\x97\xb4\x61\x89\x50\x13\x0c\xb7\xe7\x6c\x03\xd0\x97\x6e\xb2\xfb\x41" "\xd3\xa4\x2a\x14\x30\x06\x3e\xd8\xe5\xb8\xc6\x7e\x80\xfd\x4f\xc1\x14" "\x89\x11\x95\x8b\xab\xbc\xbf\xf3\x3a\x65\x05\xde\x20\x9b\x0d\x93\x20" "\x01\x7f\xd7\x36\xfd\x02\x7a\x16\x56\x40\x08\xab\x2e\x1f\x48\xa6\xdd" "\x66\xc9\x25\x67\x30\xe9\xfd\xa0\xa6\x06\x87\x5d\x08\x71\xb2\xb9\xb0" "\xbc\x2e\xd4\xe1\xb6\x96\xdb\xf0\x28\x3c\x8d\xc7\x2c\xf4\x33\x8e\x59" "\x52\x66\xf5\x39\x0b\xc3\xa2\x1f\x98\x83\x53\x11\x8f\x29\x48\xfc\x75" "\xd0\x50\xea\x07\x6b\x73\x50\x8d\x9e\xd8\x9b\xad\xe0\xba\x30\x5c\x1f" "\x4e\x5d\xaf\x9d\x40\xd2\xf5\xe7\xab\xab\xed\x8d\x1b\x1d\x91\x9c\x61" "\xa6\xd3\xfb\x14\x9c\x1a\x9b\x44\xe3\x85\x85\xa2\xfe\x32\x2f\x83\xd7" "\x3a\x3a\xec\xb4\x4d\xa3\xf0\xe8\x29\x42\xd7\x5d\x62\xed\x3f\x91\xeb" "\x44\xf3\x41\x1d\xf0\x14\xf8\x88\x39\xe4\xcb\x1e\x21\xb9\xb2\x59\xd4" "\xeb\x4a\xda\xf6\xb0\xbe\x43\x3d\x0e\xd4\xc8\x7e\xc7\x7d\xde\x5e\xe9" "\xd5\x66\xe3\xdd\x8d\x92\x8f\xc1\x87\x5c\x63\xaf\x26\xc5\x9d\xab\xa5" "\xae\x26\x7d\x9b\xd5\xda\x72\xb9\x9a\x03\xe6\xa3\x3c\xc4\x8e\xd9\x61" "\xab\x48\x4f\xf4\xa4\x6c\x2d\x5f\xa5\x97\xe6\x26\xe0\x0b\x53\x0d\x7b" "\x9a\x97\x05\xe4\xe0\x8d\x03\xf3\xa7\xf2\xa5\xa5\x23\x3a\xd6\x34\x0e" "\x3b\x5c\x89\xdb\x81\xca\x71\x3b\x6d\x7d\x85\x5c\x63\x24\x95\x5f\x85" "\x10\x9b\x20\x45\x66\xf5\x01\x78\xcd\x88\xab\xe3\xfc\xba\x25\xde\x90" "\x5e\x8e\xa0\xb7\x5a\xd5\x18\x31\x76\x1e\xd9\xb1\xaf\x24\x70\xf9\x76" "\xf0\x5e\xc7\x3b\xf7\x4d\x13\x7c\x20\x72\x70\xcf\xd6\x14\x17\x05\x18" "\xcd\xc4\x49\xae\xeb\x66\x3e\x11\x43\x59\xc8\x12\x4e\xaf\x24\x99\xd8" "\xcf\x5d\xc8\x4a\x08\x72\x30\x1d\xb2\xe5\x7b\x50\xbd\x28\x50\x60\xec" "\x43\x90\xd9\x9d\x4a\xe3\x67\x4c\xa3\xbb\x86\x79\xc1\xb0\x8e\x56\x6b" "\xa4\xf3\x0d\xae\xc8\x68\x4a\x98\x00\x55\xeb\x43\xcb\x5a\x13\x06\xc4" "\xb5\x2a\x15\x46\x82\xaa\x96\x63\x7e\x06\xc8\x69\x27\x8a\xa2\xf7\x4e" "\xf7\x34\x56\x32\xc1\x12\x65\xef\x8a\xc9\x7e\x95\x37\x45\x30\x25\x56" "\x88\x1b\xa0\xcb\x59\x0f\xef\x27\x1c\x0a\xbb\x19\x3f\xb8\x4d\x18\xee" "\x3f\x24\xd9\x97\x6a\xe8\x16\xb8\x57\xd6\xf6\x8d\x1f\xdf\xe1\x0b\x31" "\x2c\x79\x9f\xe0\x14\xde\xbf\x87\x5d\x04\xbf\xf8\xb4\xf3\x87\x85\x9e" "\x97\xc6\xbf\x13\xf7\x08\x3c\x28\xa2\x04\x5a\x0b\x5e\xb0\x9c\x94\xe7" "\x81\xa1\x65\x96\x5e\x86\x17\xc0\xef\xed\x17\x01\xea\x96\x67\xae\xca" "\x26\xd9\x57\x7e\xa7\xb1\x24\x2e\x1d\x91\xb2\x5d\x6a\x66\x75\x6c\xc6" "\x27\x64\x8a\x29\x3b\x9f\x43\x45\x96\x6b\xc4\x69\xfa\xfa\xed\xdc\x11" "\x18\xd0\x97\x2b\xd5\xc7\x75\x1a\x1f\x51\xe5\x98\x9f\xd9\x52\xf3\x14" "\xae\x10\x41\x7c\x97\xb4\x1e\x60\xeb\xfb\xc4\x7e\x49\x64\x86\xfa\x4a" "\x89\xfd\x16\xae\xa7\xfa\x1e\xab\xeb\xd2\x6e\xb2\xa3\x7a\x3e\x2b\x35" "\x1e\x0c\x9d\x2f\x67\xb2\xe5\xbe\x0f\x92\x1a\xdc\x9b\x60\x45\xb0\x45" "\x94\x8e\x51\x03\xaf\x0e\x50\x50\xb9\xc0\x79\x9b\x51\x3c\x00\x86\x5d" "\xee\xbd\xa7\x30\xde\x53\x8f\x95\x6c\xeb\x61\x64\xe0\x8b\xd6\xf5\x86" "\x55\xa2\x94\xb4\xb4\x4f\xc6\x53\x09\xb3\x0f\x9c\x00\xf9\x2e\xf5\xbd" "\x5b\x91\x1a\x3d\x83\x0f\x72\xc2\x58\xb1\x95\x21\xbb\x8e\x80\xdb\x02" "\x12\x99\x54\xef\xb6\x14\x23\xf5\x18\xd2\xc5\xf3\x65\x87\x30\x38\x90" "\xca\xd9\xa9\x3f\xa4\xf4\xbc\xd0\xe2\x4c\x67\xdb\x67\x9c\x67\xea\x59" "\xc1\x35\x0b\x84\x42\x57\x76\x32\xd5\xe8\x73\x58\x33\xf3\xda\xf5\xa7" "\x4b\xc7\xbd\x82\x65\x9a\x81\xbe\xba\x8c\x88\x96\x32\xef\xe0\x3c\xd2" "\x41\x87\xae\xe8\x56\xcf\x65\x9e\x16\xe1\x95\x46\x4f\x52\xf2\xb9\x84" "\xfc\x7a\x29\x9e\x7b\x2a\xa5\x39\x79\xa1\x47\xeb\xed\x35\x70\x5d\x5e" "\x89\x69\x16\x66\x53\x6f\x2f\xeb\xac\xfc\xef\x9b\x32\xd1\x49\x52\xf9" "\x58\xb7\x25\x12\x86\x9e\x4f\x6a\x0a\x34\x17\x69\x18\x21\x78\x88\xb1" "\xeb\x8b\x89\x32\x2e\xbb\x6b\xb1\xde\xad\x2b\x47\x44\xe7\x28\x47\x98" "\x80\xdb\x70\xe6\x14\x7e\xda\xff\x6c\x3f\x08\x3f\x18\xe0\x69\x6b\xdb" "\xd7\x8c\xf0\xbd\xa1\x4d\x9f\x42\xe5\xc1\x07\x7c\xed\x00\x04\x1a\xad" "\xff\x90\x47\x0a\xac\xec\x0e\x48\xe2\xa5\xf2\xa0\xed\x37\x81\x8a\x17" "\x3b\x96\x06\x1e\x8c\x5b\xf2\x4c\x0b\xde\x9e\x09\xf9\xe0\xdd\xb8\xe1" "\x33\x06\xef\x1d\x4e\xb8\x04\x3e\xba\xdd\xe5\xd7\x55\x3e\x52\x12\xec" "\xd4\x69\x1e\xb4\x26\x25\x1f\x9d\x67\x20\xb8\x27\x6a\xc5\x43\xdd\xe0" "\x23\x99\xa3\x5d\x97\x4b\x22\xc1\x72\x7d\x4b\x6d\xf0\x19\x57\xca\xe4" "\x74\x43\xb7\x06\xd4\x31\x65\xe0\x1d\x69\x32\xb1\x36\xf5\x61\xce\x83" "\x74\x31\x25\x4c\xfb\x2a\x6e\x7d\x80\x70\xa2\xd3\x80\x5a\xaa\x15\xb3" "\xc1\x0c\xcd\x0c\xda\x2e\x9b\x41\x8c\xe9\xef\x38\x0e\x5d\x08\x21\x77" "\x52\xe1\x2b\x3b\x89\x2d\x03\xa9\x49\x5c\x83\xd7\x8d\x67\x46\x12\xfd" "\xe5\xa6\x77\x38\xb2\xd4\x64\x9c\xe4\x46\x06\xec\xce\x6b\xf3\xbd\x12" "\x93\xec\xa2\x46\xa8\x36\x43\xe4\xf1\xc7\xba\x36\x2b\x11\x0e\x07\xc8" "\x47\x9f\x21\x6e\x3d\x4a\xfc\x4f\xcb\x8d\x08\x20\xc8\xab\x70\x2a\x66" "\xd8\x18\x3e\x83\x17\x45\x97\x03\x5e\x92\xb9\xb5\x00\xde\xe0\x8c\x80" "\xb9\x27\xb4\x2c\x36\x89\xc7\xc9\x61\x7b\x41\x12\xc9\xe5\x4c\xbf\xa5" "\x1e\x98\x9b\x5f\xd4\x2b\x80\xc5\x95\xd3\xed\xd2\x65\xf1\x38\xe8\x12" "\x8c\xfb\xbb\x0e\x4f\x53\xaa\x0a\xa9\x5a\x2e\xcd\xa4\x51\x8b\x2e\x56" "\x4c\x42\xd5\xde\x76\x71\x56\x08\x43\xd0\x81\x03\xb9\xbd\xce\xac\x5f" "\xde\xb0\xb1\x26\x6f\x72\xf4\x91\x26\x5d\xd2\xb2\xb8\x0a\x22\x5a\x50" "\x95\x51\x67\xda\x18\x12\x36\x4e\xa3\x40\xd8\x2f\x61\x53\x54\x01\xba" "\xe6\xf3\x14\x0a\x87\x95\xd7\xc3\x18\xa6\x4c\xee\x46\x76\x62\x72\x44" "\x93\x09\x57\xb2\xf0\xb2\x27\xbe\x21\xb7\x2d\x90\x02\x7e\x6a\x5a\x7a" "\xf3\xc5\x94\x70\xc7\x4d\xcd\xb7\x1d\x1e\xf0\x90\xa0\xf4\x9c\x91\xac" "\xd6\x04\xc7\x92\x38\x5c\x8f\x4e\x08\x57\x65\x29\x28\x22\xee\x5e\xca" "\x03\x88\x5f\xd6\xbf\xea\xca\x9b\x3b\xbb\xde\xac\x93\x9f\x78\x46\xa4" "\x87\xc5\xa4\x83\xed\x1e\x4f\xbf\x37\xc9\x38\x86\xea\x27\xbb\x35\xc8" "\x12\x08\x9b\x90\x0b\x77\xc7\xc9\x24\x14\x7e\x97\xb6\xa7\x15\x33\x61" "\x07\x50\xbc\x84\x92\x10\x12\xaa\x81\x58\xb2\x13\xf7\x60\x1d\x93\x4a" "\x20\xbd\xd1\xf7\x57\xb0\xa3\x30\x42\xa6\x83\xaf\x6b\x90\x69\xf3\x90" "\x00\x59\xd7\xf8\x0f\x9f\xdc\xc9\xf3\x3e\xce\x8c\xf7\x88\x8d\xc9\xe2" "\x4f\x1f\xc6\xca\x0e\xcc\xcf\x16\x1c\x53\x34\xc6\x0f\x44\x0f\xeb\x3a" "\xcf\xc3\xd1\x15\x01\x1c\x17\x6d\xfa\x05\x31\x4c\x5b\xcf\x08\x9e\x3c" "\x82\xbb\xe7\x68\x0a\x3e\xef\xdc\xdb\xf3\xac\x27\x26\x5b\x77\x9d\xb4" "\xf4\x9b\xad\xe0\x12\x8e\xda\x6e\x29\xbc\x59\x33\xef\x45\x46\x01\xdb" "\x1b\x49\x62\x8f\xd3\x9a\xb9\x38\x79\x4f\xa4\x6a\x33\x93\x7a\x08\x6e" "\xce\x70\x50\xd3\x1a\x21\x52\x4e\x2f\x0c\xac\xb3\x07\xed\x44\x12\xa2" "\x07\x86\x36\xf9\xcc\x8e\x11\xc5\xc3\x1c\xc0\xf9\xed\xd7\xbe\x6d\x1e" "\x31\xa1\x51\x3a\x58\xe2\x52\x15\xf5\xa2\x42\x45\xcb\x98\x85\x89\xe6" "\xd5\xe5\x11\x9f\x4f\x65\x57\xc6\x97\xfa\xd7\xd1\xc3\xa7\xe3\xba\xe0" "\x64\xdb\x43\x82\x70\x1e\x33\xe4\x8c\x5b\x6a\x52\xfe\x91\x41\xa3\x85" "\xef\x23\x25\xc6\xf7\x78\x11\x34\x60\x7e\x98\xbf\xd0\x2c\x43\xd6\xde" "\xef\xaa\x86\x17\x00\x38\x8b\x40\xd9\x8e\x94\x1c\xfb\x2d\xde\xc2\x09" "\xf9\x77\xe8\xb9\xf9\x3d\x29\xfd\xbf\x85\xe3\x01\x0c\xe7\xcd\x62\x2e" "\x8c\x75\xce\x3d\xf5\x35\xe3\x92\x05\x2b\x6d\x65\xd5\x04\x2d\x2a\x6e" "\x78\xbb\xfe\x5e\xe1\x46\xe8\xb1\x8d\x4b\xc7\xfb\x02\x4d\xbb\xa5\x7c" "\xbe\x04\x02\x20\x55\x93\x76\x6a\x31\x39\x50\xcb\x71\x9d\x00\xc6\x7b" "\xb6\xb3\xbc\xaa\x10\x15\xb8\x9e\x82\x0f\x11\x47\x5a\xfc\xe6\x55\x94" "\x71\x13\xa7\xc3\xdc\xbb\x52\x42\x7f\x09\x0d\xf9\x94\xfb\xf0\x76\xdb" "\x86\x7e\x0a\xb3\xf6\x12\x5f\xb8\x88\x4c\x1d\x13\xff\x3e\x99\xfa\xb5" "\xfa\x8b\x9f\x0b\x72\xcb\x44\xdb\x4d\x0a\x48\xd9\xec\x17\xf9\x73\x37" "\x64\xe2\x13\xc4\x0a\x15\xad\x82\x1e\xc6\x0e\x4a\x88\xcb\x2f\xd9\xdd" "\x9a\x4f\x35\xe6\xa7\x08\xf4\xb7\x40\x67\xf4\xbe\x3f\x03\xa9\x52\x61" "\xf6\xb1\x91\xdf\x53\xfa\x5b\xb5\x16\x4e\x4a\x16\x46\x30\xad\x9c\xe3" "\x90\x87\xaa\x95\x0a\xd9\xe6\x0c\xd2\xc4\x4f\xa2\x23\x7c\x49\xab\xf8" "\x58\xc9\x77\x37\xfd\x21\x18\x0f\xd0\xb9\x54\x27\x67\x15\x0f\xbe\xd3" "\xf3\x9a\x29\xe6\xc3\x48\x4d\x94\x37\xe1\x5d\x24\x39\xf2\xa5\x4b\x2a" "\x1a\xc7\xe6\x3e\x6c\x43\x66\x58\xab\xc3\xf1\xdd\x52\xd9\x84\xf6\xc6" "\x90\x17\x68\xa8\xcf\x2e\xc9\x8e\xbf\x44\xe9\x0e\x0f\xc0\xc2\x4f\x89" "\x57\xc6\x2e\x05\xd8\xea\xce\xca\xf2\x5b\x17\x8f\xd7\x10\xaf\x60\x9a" "\x8a\x1b\xc4\xd7\x95\x5b\x5f\x0c\xb4\xf4\x8a\x37\x68\x5e\x63\x04\xea" "\x58\x43\x57\x3a\x1a\xbf\xf3\x7b\x51\x06\x91\x6c\x83\xc8\xf2\x3f\x93" "\x9a\x0d\xc4\x3a\xea\x8d\x19\x61\x91\xed\x6e\x18\xdd\x79\x39\x90\xd1" "\xf3\x7d\x7d\xe0\xbf\x8f\xac\x6f\x46\x98\x43\x72\x4e\xaa\xb8\x6b\xe8" "\xa4\x83\xbe\x28\x1b\x8e\xcf\x4a\xa2\x9d\x9c\x57\x19\x51\xcd\xe8\xcd" "\x8c\x2a\xaf\x4d\x59\x7a\xc2\xcb\x48\xf2\x3f\xad\x14\x59\x16\x92\x0a" "\x55\xd6\x55\x92\x49\x40\x57\x3b\x64\xdb\xd4\x2a\x28\x0c\xdd\xc4\x81" "\x04\x34\xf9\x30\x18\x3f\xdb\xbd\xc7\x2d\xb1\x49\x1a\x4c\x9d\x44\xda" "\xf9\xb1\xbc\x2f\xec\xd8\x55\x50\x86\x48\x06\x30\x40\xfa\xeb\x12\x5d" "\xa0\xe6\x8e\x6c\xd2\x00\x21\x81\x11\x8e\xec\xff\x0b\xe1\xdd\x8e\xae" "\x72\x6a\xf5\xd4\x51\x63\x0c\xd6\x51\x19\xc5\x2a\xbd\x6d\xde\xd9\x7f" "\x93\x12\x02\xf1\x86\xa1\x8c\x4b\xa3\x4b\xc2\xc3\xf6\xd7\x65\xe2\xd8" "\xf4\x45\xe9\x59\xf2\x6f\xfb\x55\x82\x7c\xf3\xff\x2c\xc0\x28\x9f\x17" "\xb8\x2c\x8c\xaa\x5a\x2d\x3d\x54\x30\x6a\x30\x0f\x0e\xf4\x2b\xbe\x4e" "\xa9\xe3\x2c\x5d\x4b\x11\x73\x94\x27\x45\xcd\xcf\xe4\xf5\xd1\x61\x9e" "\xef\xaf\x8d\xc6\x00\xaf\xbc\x91\x71\xd5\x16\xf7\xf4\xb3\x53\x31\xd0" "\xb9\xbe\x00\x51\x32\xff\xad\x5e\x9d\xf5\x97\x10\x27\x8b\x84\x2a\xfb" "\x62\x6a\x78\xb8\xb8\xb3\x7f\xc3\xa8\x94\xdc\x70\x5b\x2d\x4e\x09\x40" "\xcb\x26\x4e\x9d\xc8\x7e\xaa\x14\x8e\x6f\xaf\x78\x12\x54\x62\xf2\x8a" "\x0f\x1d\x7b\x3c\x65\xa2\x91\xb8\x57\x13\xfa\x71\xff\xc4\x78\xf6\x60" "\x1e\x87\x16\xc3\x54\x89\xf4\xa5\x4e\xd0\xc7\x0b\xcf\xd5\x50\x2c\xc9" "\x13\x74\xdc\x3c\x98\x20\x75\xc5\x18\x03\x98\xbc\x6b\x19\x5b\x36\xe7" "\x9d\xcc\x40\x87\xcb\x99\x0c\xc9\xd9\x64\xa1\x50\xe0\xdc\xc8\x87\xd4" "\x96\xbd\xd2\x7c\x3f\x29\x87\x36\xb9\xad\x83\x45\xba\x2d\xf4\x60\x21" "\x96\x4c\xf4\x3c\x38\xf9\xd2\xe9\x4b\x77\xbe\xe2\xb7\xbf\x05\x9e\x08" "\x70\xff\x9f\x17\xb9\xef\x13\x20\xc0\xaa\x88\xa2\xfa\x97\x81\xe9\x01" "\x7a\xb6\x46\x43\xde\x9a\x3d\xf9\xed\x4b\x8c\xfd\x8f\xa0\x80\xa2\xe4" "\x94\x40\x95\x20\xb7\x95\xeb\x15\x17\xd2\x24\xa0\x5e\x45\x0c\x4c\x8a" "\xe0\xe9\xfd\x29\xc0\xe7\x2d\x3a\x59\x2c\xce\x55\xf6\xdd\x51\x07\xf2" "\x12\x14\xe1\xa3\xf9\xa5\x44\x83\x84\xde\x06\x14\x9f\x95\x9e\xc0\xc9" "\x27\x90\xf0\xff\x22\x9a\xb4\x97\x11\x71\xf1\xc5\x28\xae\x6d\x09\x5e" "\xc0\x07\xbf\x5e\x7f\x55\xd6\x23\xa6\x81\x94\xe9\xea\x8e\xdc\x3a\xf4" "\x18\x07\x53\x38\x32\x8f\x24\xe7\x50\x43\x41\xc2\x2b\xef\x72\xc2\x96" "\x3f\xc9\xc3\x23\x7b\xa9\x90\xd2\x9c\x2c\x8a\xa3\x00\x73\x95\xf6\xd9" "\x6e\x95\xb4\x0e\xe1\xb1\x8d\xba\xd5\x50\xbf\x39\xd0\xd9\x82\x68\xcb" "\x74\xdd\xe7\x6d\x98\x7c\x31\x69\xc9\x06\x74\x95\xfb\x1b\x88\x50\x8b" "\xbb\x7e\x94\xcb\xb7\xdf\xc1\x5c\x03\xb1\xd5\xb1\x63\x13\x2c\x8a\x46" "\x89\x06\xf0\x2d\x42\x2a\x8c\xf9\x8d\x0b\x43\x2b\x57\x79\xdd\x96\x20" "\x74\xb7\x2d\xd2\x74\x39\xb2\xe9\x43\x12\xf5\x73\x43\x5e\x5a\xa8\x46" "\x64\x43\x2c\x19\x14\x83\x9c\xd6\xe1\x72\x18\x6c\xe9\x3e\xeb\x1d\x7c" "\xb0\x65\x96\x96\xd9\xd5\x50\xeb\x3b\x18\x5f\x8c\x6e\xe1\x6e\x53\xf7" "\x82\x33\xcb\xe7\x09\xf9\x9d\x28\x79\xd6\x3d\x93\xf7\xd0\xed\x13\x32" "\x41\xd2\xf1\xab\x1e\xb2\xc5\x66\x05\xca\x0f\x0e\x01\xc3\x9a\xb0\xba" "\x23\x70\xfe\x5c\x4e\x68\xde\x05\x61\xb5\x17\xff\x9a\x10\x02\x3c\x38" "\x62\x36\x39\x83\x72\xc7\x17\x6e\x35\x44\x3e\x2c\xf5\xdd\x6c\xbe\xd9" "\xf2\x33\x95\xf2\x31\xe6\xa5\x4f\x65\x62\x6c\xb5\x86\x0a\x8b\x72\x12" "\x2c\x34\x66\x41\x19\xe7\xc4\x72\x04\xef\x4a\x70\x58\x3a\x00", 8192); *(uint64_t*)0x200000000400 = 0; *(uint64_t*)0x200000000408 = 0; *(uint64_t*)0x200000000410 = 0; *(uint64_t*)0x200000000418 = 0; *(uint64_t*)0x200000000420 = 0; *(uint64_t*)0x200000000428 = 0; *(uint64_t*)0x200000000430 = 0; *(uint64_t*)0x200000000438 = 0; *(uint64_t*)0x200000000440 = 0; *(uint64_t*)0x200000000448 = 0; *(uint64_t*)0x200000000450 = 0; *(uint64_t*)0x200000000458 = 0x200000000780; *(uint32_t*)0x200000000780 = 0x99; *(uint32_t*)0x200000000784 = 0; *(uint64_t*)0x200000000788 = 0x8001; *(uint64_t*)0x200000000790 = 4; *(uint64_t*)0x200000000798 = 0x20000000000; *(uint64_t*)0x2000000007a0 = 0; *(uint64_t*)0x2000000007a8 = 4; *(uint32_t*)0x2000000007b0 = 0; *(uint32_t*)0x2000000007b4 = 0xfd; *(uint64_t*)0x2000000007b8 = 5; *(uint64_t*)0x2000000007c0 = 0; *(uint64_t*)0x2000000007c8 = 4; *(uint64_t*)0x2000000007d0 = 3; *(uint64_t*)0x2000000007d8 = 0; *(uint64_t*)0x2000000007e0 = 0; *(uint32_t*)0x2000000007e8 = 1; *(uint32_t*)0x2000000007ec = 1; *(uint32_t*)0x2000000007f0 = 8; *(uint32_t*)0x2000000007f4 = 0x4000; *(uint32_t*)0x2000000007f8 = 7; *(uint32_t*)0x2000000007fc = 0; *(uint32_t*)0x200000000800 = 0; *(uint32_t*)0x200000000804 = 0; *(uint32_t*)0x200000000808 = 0xfffffffe; *(uint32_t*)0x20000000080c = 0; *(uint64_t*)0x200000000460 = 0; *(uint64_t*)0x200000000468 = 0; *(uint64_t*)0x200000000470 = 0; *(uint64_t*)0x200000000478 = 0; *(uint64_t*)0x200000000480 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x20000000c280, /*len=*/0x2000, /*res=*/0x200000000400); 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; loop(); return 0; }