// https://syzkaller.appspot.com/bug?id=92562d75911aa205315d8ca816ab805888c6e989 // 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[4] = {0xffffffffffffffff, 0x0, 0x0, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // mkdir arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: open_mode = 0x0 (8 bytes) // ] memcpy((void*)0x2000000020c0, "./file0\000", 8); syscall(__NR_mkdir, /*path=*/0x2000000020c0ul, /*mode=*/0ul); 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 { // ANYRESOCT: 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, "%023llo", (long long)r[0]); memcpy((void*)0x20000000009a, ",rootmode=0000000000000000040000,user_id=", 41); sprintf((char*)0x2000000000c3, "%020llu", (long long)0); memcpy((void*)0x2000000000d7, ",group_id=", 10); sprintf((char*)0x2000000000e1, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200000000000ul, /*type=*/0x200000002100ul, /*flags=*/0ul, /*opts=*/0x200000000080ul); break; case 3: // 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=*/0x200000004140ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint64_t*)0x200000004148; r[2] = *(uint32_t*)0x200000004150; r[3] = *(uint32_t*)0x200000004154; } break; case 4: // write$FUSE_WRITE arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_write_out]] { // fuse_out_t[fuse_unique, fuse_write_out] { // len: len = 0x18 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_write_out { // size: int32 = 0x7 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // len: bytesize = 0x18 (8 bytes) // ] *(uint32_t*)0x200000000240 = 0x18; *(uint32_t*)0x200000000244 = 0; *(uint64_t*)0x200000000248 = r[1]; *(uint32_t*)0x200000000250 = 7; *(uint32_t*)0x200000000254 = 0; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000240ul, /*len=*/0x18ul); break; case 5: // rename arguments: [ // old: 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) // } // new: 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*)0x200000000100, "./file0/../file0/file0\000", 23); memcpy((void*)0x2000000000c0, "./file0/../file0/file0\000", 23); syscall(__NR_rename, /*old=*/0x200000000100ul, /*new=*/0x2000000000c0ul); break; case 6: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {73 93 bf e0 30 28 d5 b5 52 5b 9e b8 e9 ec da 21 19 eb 04 8b // bd d1 a3 4e 1a a5 06 c5 34 1e 64 01 8b 1e 92 58 21 c6 ba 37 8e b8 43 // c3 17 28 71 02 30 49 36 0a 51 46 02 fc e5 4f ee 00 e0 40 84 91 42 ed // fd 9b 86 c8 e9 65 50 f5 d3 4f ed 20 5c bc f8 07 f6 bc 71 bd 8c 4d ce // 58 c5 3d 2b 77 7f 80 89 d5 44 43 9b b7 be ed 38 45 1b f6 8b 4e 9d 8c // 2c 81 7f d2 85 44 97 b3 18 0b ec 65 79 af c4 67 c5 37 3d bb 0c a3 b8 // 18 94 ac 2c 03 54 92 eb 7f d7 3e 40 42 eb fc 00 b9 9a 07 8f 61 29 4b // 6d e5 e0 d3 88 54 8b ed ae 03 14 f9 6a 0b 53 23 53 fb 23 88 b8 16 aa // 41 2d a2 3e 87 db b7 51 c8 56 5c d7 a8 23 a0 f9 90 83 ee 14 f5 6f b4 // 71 1c 8a 7f e9 fd a1 98 9c 44 0e bb 21 7c 8a 0f fd cb d6 3c ab f0 83 // 10 5c f9 15 ea 4e e7 de 1d 14 3a 56 ed a0 92 91 99 2e 07 63 91 fa e9 // 78 12 f8 52 d7 d8 fe 4d 93 92 4b d9 79 08 49 e1 ce 50 28 4c 69 0c e8 // 4b 38 c1 1f 3f e3 51 d9 b3 49 3b 1e a3 9a 49 ad 63 d5 16 00 a2 a5 ad // 49 1f 7f 36 76 40 ab 10 2c 4e 51 ac de 3b 18 9b 56 7f 4b 1e b2 d6 99 // a8 cd ae 5a 01 ec 22 08 32 9c ea 05 25 1d 19 4e e9 31 f9 a7 91 ec be // fc a1 8e 41 18 27 d4 f4 b8 1b ad c6 45 c6 a2 2a d0 77 ed 21 19 50 41 // 6f 77 32 95 0b 7a 03 dd 34 59 4e c7 a5 c6 8f d8 1f 8a 20 cb f6 fd 71 // e4 31 d5 ee ce 65 e0 73 2a 5b 03 19 fa e9 9a fe d0 0c 40 52 4d b4 3d // dd 67 2e 79 57 af 1f 5a bc 26 8c 0a 01 f8 6b ac 16 eb 2e ac ce 67 92 // 38 47 8f b9 07 d2 02 d0 bc f0 40 ef ce 81 50 a6 67 3c 05 34 da 30 f8 // 28 65 94 15 38 36 36 ea ba a6 c5 73 4c 9a 8e 0d 6e 8b 5e 16 05 82 bb // e5 0b 49 4c 05 db ec 8a 32 f5 5d 17 eb 78 fa 76 8b 45 fd a5 ee 94 2c // 46 f3 65 9a b4 49 9b 57 d1 ea 44 d3 38 2f 68 c9 fe e4 b9 47 ef fa 62 // 72 1a 5f a0 83 22 e5 0c 0a 10 4a 86 d9 b7 df 19 bc 42 55 fe 9b a3 92 // 72 c8 09 19 7c c8 7c f3 8f d7 64 40 f3 bd 8c 8f a9 b9 19 c0 cb 98 f5 // 5f bc c1 06 c1 bf b0 57 bd 8c 8a 15 32 be 0d b6 0c 74 2f 18 01 b6 0f // b9 ea 07 2d ea 85 8d 89 7b 93 c2 76 c2 7d f1 d9 d7 ba c2 73 4f fc 2c // fa 01 13 ae 16 d1 07 b1 51 03 98 46 79 ea 1d f3 e7 4d 6e a5 71 02 50 // 28 63 9b c9 98 6b e8 06 0a 68 dd b8 49 22 ba 6a 02 00 4e b7 e7 2d ba // 3e bc 66 c1 b4 ae ed 46 07 f8 84 21 c7 b9 71 91 47 20 04 2b fe c4 eb // 72 5f a5 db cc 7a b3 d9 d8 5a be a9 d8 8d 6a ae 36 a4 ab d6 d3 fe 4d // a7 3f 18 1e c7 47 3f de 7c fa 02 cf 79 ec 81 9c e7 f3 3c e4 8e de 43 // da a0 fb 6e 28 76 b2 68 2b 64 2f 3b 39 72 e0 f1 02 85 5a f9 26 4e 35 // 49 06 95 86 91 c1 56 87 62 58 5d db 4a 14 9a 89 93 9d 97 40 3f 5e 71 // ee d7 9d 96 7a 5a a2 5b 7d 79 5c 0a 08 85 c0 70 98 b7 50 be 49 c2 83 // 40 7c b2 68 fb 1e 06 b9 3a 4a d4 69 98 a6 40 f7 97 38 e7 a0 2d ea 86 // a4 8c c6 47 ca cc 83 55 c3 03 19 85 a4 93 07 00 9e e8 ad 30 b5 a9 61 // 99 53 58 de 5e 21 1d 85 ff ab d0 06 09 e4 4d 2d 65 94 49 5b 92 63 0f // 77 cb 53 de b2 c8 fc cf 5e 0e b5 b2 f9 17 9d 14 4c 02 46 67 18 a5 ae // f8 c4 35 dd c7 52 a5 3d f4 c2 09 9d 2a 5d 8e 1a b6 9d 51 a2 d5 42 d6 // e1 34 c2 67 52 29 1a b4 52 f2 f0 69 c4 04 ed 71 c0 1a ca a4 43 e2 84 // da 03 98 1e 3f ae 89 71 df c4 5a 00 d3 60 48 d9 1f b6 df 98 38 a4 6b // 7e f7 4a 2b c7 fa 73 0e ea 47 05 9c 44 41 1f ae b4 08 58 9b 6e e5 df // ae 9f 67 c9 ff 48 f0 ff 40 5d 1e 56 8b b5 59 1c 58 b8 3a 47 f3 9a e4 // 09 27 46 be a9 7d b2 e4 79 17 da 0e 6a 59 34 79 54 e2 75 c1 54 07 8e // f2 3e d8 42 b5 0f 27 c5 6d 82 5b 29 43 9b 6f 9a 11 fb 4f b1 dd a5 1f // e7 20 c1 df 60 b1 54 8d 03 31 eb 54 85 d1 ed 87 a8 03 68 48 b4 c9 4d // f7 08 8d 91 18 51 50 57 24 7e b1 8a 44 9c 13 d4 2b 5f df e3 bb 77 3f // 42 41 58 c9 52 69 f2 ae b2 eb 87 6d 9b 52 32 48 87 87 94 a6 6c 8b 88 // 47 28 20 01 3e 46 9b cb 68 7b fe ac cd e8 b7 2e 67 9d 73 59 fd a4 0b // bd cb 84 3f 25 5c a9 58 44 6b df a7 2d c9 cb c3 5b a8 7c 13 38 b7 f2 // 69 56 fb 5e 57 b4 8e a2 93 89 1a 4f 20 77 5c 01 f9 93 ce 61 f7 67 80 // 74 09 35 8f e3 6a f3 a6 79 7d ef f4 9e aa a0 57 2e bf 75 47 51 c5 15 // 10 19 85 43 34 52 13 57 2c cd 61 5c 87 36 88 e7 4a 8a a8 03 c5 70 34 // 48 ba e1 c1 7d 90 b8 08 ed 6d a5 bb 78 4c 74 40 a2 79 4e bd 66 e9 89 // 84 69 4b f1 4e f8 45 4b 10 c9 72 c0 dd 0c 67 28 8d fb 93 68 2a ee 00 // 30 3b c5 d3 e8 a4 16 9e fa dd b8 d9 55 20 5c 28 9a 2d 61 4c 9b 16 65 // ac 64 45 cc 71 44 56 5a 77 ea db 88 b9 d8 43 8e 90 5a a0 21 b7 99 ae // 61 fd 99 47 ca e7 bf ca 97 5f 71 e9 f5 d1 7a 1b b1 df 2d 7c 33 41 ff // 71 09 53 d6 b1 1e a4 00 bf 8e a2 a9 5b bc 21 36 6a 1e d0 9d 1d 8b 6c // 63 dc fd 8f 45 f2 2b e6 de 89 2a d0 df 02 e1 37 01 ea 04 e4 51 30 a6 // c1 ae df 53 1c 26 c4 c0 2f 0e 65 69 97 62 bc 79 13 38 ef e0 26 64 2a // 80 1c f4 e1 40 e5 98 c9 2d d2 55 92 0b 26 74 00 68 fc bb 0c ee fb 8e // 66 58 53 77 4f c3 3f c4 b1 ba ca b5 e0 58 b5 eb e6 f6 12 51 7b 12 19 // dc 10 cf 87 f0 d4 10 52 04 15 75 f3 36 e0 88 72 17 af d3 ca c2 12 9c // e1 48 9f 15 9d 94 e6 07 0a 7f fa be c4 12 dd 4d 41 b9 32 3e e6 e5 3f // 50 97 46 56 59 90 42 e7 91 59 81 36 a8 f4 a2 68 71 b9 db 7a ed 2d 4f // de c0 b8 60 16 b5 0d 54 44 b8 10 ff 47 cc a9 1c da 0a b2 5b 30 0e 25 // 1b c1 c4 cd 7e 93 16 5d 45 d4 17 a7 53 62 27 d5 5b 86 5e 6a 49 a8 86 // eb 20 f9 5f b2 12 59 c0 67 68 78 aa 58 8f a2 91 20 f8 f7 cc b7 88 4f // a0 e7 40 78 04 de 53 0c cd ff f8 c1 d9 5b 5d e0 60 ac 59 d9 80 74 ac // 0a 2b 72 87 75 80 e2 aa 37 4d fa f9 78 20 2d f8 62 8b 0d c7 8c 1f 98 // ff e0 04 27 35 90 67 d0 ef c6 22 a3 16 61 9c 58 72 54 62 91 16 34 b0 // 41 a3 cf c8 29 78 c2 2e b7 8f 6a 49 0b 2c 89 40 37 4b e2 dc 0a 61 90 // f5 15 10 f7 a8 11 8d cd d1 4d 67 cc c9 bb 66 ad ba a0 e7 16 d3 f4 a6 // aa 97 4a c6 58 57 26 56 3d 27 80 d5 ed 24 3d ae 1c e3 8e 18 89 de b8 // 3e 1e 3b ae c6 5e 13 1a ff f3 ac 0c b2 3c 0c 7d 23 07 7d 7c 88 76 69 // e1 60 ef 8e 83 1e b8 b1 b1 2e 69 d8 ac 99 6e c1 e0 79 6f 5a 9f b8 be // b2 5b 89 d6 b5 f3 51 e8 b7 1c fd d8 f8 54 23 ce 21 66 ab 3e d3 5f 62 // 00 6e e3 cd ca 8c 09 d6 15 57 e5 2f 60 0e 5c c5 b2 5d dc 87 77 49 fa // 55 65 dd a1 05 49 9a 87 db 9c 1d 09 97 d8 16 16 72 37 15 2c a6 98 46 // d4 f3 b4 d2 0e 24 ce 61 34 dc f8 ed 83 6f f0 3d 18 c8 51 c1 60 c4 4c // df 2c 6b 4e 9f 36 29 e7 c1 0a 97 22 b3 49 50 6f 77 7a 52 65 e4 81 92 // e4 9e 1b 0f 0c 84 e9 11 5e 24 84 72 c5 d3 cf 64 21 03 09 73 87 9a dc // 6a c4 21 c1 70 11 7d bc 51 78 5e 35 a0 3c 3c 21 5b ad 93 22 2a 99 a0 // 43 44 2a a2 5c 33 c2 ac 49 7d 36 dd 16 e9 69 87 dd c9 ef 33 9e 70 cd // 19 de 7c ac 9e 6e 6a f2 38 2c 97 63 3c 00 93 13 fc b2 7d d0 7a 76 4c // a7 8f 58 11 5b 22 78 b1 7b ae d2 1c 01 38 09 53 d8 b9 ed 1d a8 b6 9d // 6a 40 71 4b 09 df 1a 10 37 32 59 00 5e 64 ec 15 45 b5 48 be 73 6b 16 // 03 84 86 b5 6c be 1c 65 67 12 f2 c2 38 30 3c ae 1e 51 73 88 68 3b e2 // 8b a1 d9 47 fa 09 97 10 f2 d5 65 f2 56 11 3a bc 91 d7 74 d8 f4 a4 c4 // 55 3d a3 b9 aa e0 19 f8 cc 41 57 fc db 50 f1 c3 8e 82 c9 f4 14 2a f0 // 7e 52 8b 54 ba 1a 83 02 49 e7 70 5d 6d cc c7 58 13 38 f1 c7 0a 9b a9 // 75 77 95 87 3c ae ca 26 3d 61 2f a8 9d 2e 7e 5f 15 a5 7d 5d df 74 38 // f8 bc 11 33 9a 1d 3b a6 48 ce 0b 15 3d f5 0e 69 c2 29 56 aa 8b f2 7d // 37 e2 df 6f 6f c9 6d 2d f9 b0 f3 c8 c3 d4 16 62 34 ee 02 54 15 1c b0 // 64 02 32 75 b3 1d 2f e6 84 40 23 7c 9a 60 8c e7 2e f8 98 99 04 1d 86 // ff 3c 94 6f 05 22 fd aa 8a 20 15 dc 0e 53 4a d1 de d6 bd c8 12 56 9c // d9 97 d0 f5 00 00 b9 b6 fc 3b e1 98 3a 32 43 e4 a0 6a 3d 6f 4b a6 ba // ad b4 94 cd 13 0d c4 06 cd 42 dc d9 1b 01 31 b0 4c 5f 45 07 b4 4c 9e // d5 49 17 66 f3 14 3c ba 91 54 79 fd 0d ee c7 d6 8c 45 b9 7d cf 4e 42 // 1b 19 79 bd 4c 7d e6 e6 68 e2 c8 87 75 77 a9 99 de a5 62 62 60 8e fd // 85 a8 26 7b 9e 0a 5e 44 ab 95 30 76 6b 58 35 88 f2 f3 98 70 62 ef df // c5 27 04 20 75 48 ca cd 65 bd b1 e1 51 12 a0 81 a5 c5 58 59 57 ff 25 // c3 7b fa fd 71 a3 87 29 1b 1f 27 51 2e c9 2b 42 af c2 b7 a7 4d 6f e9 // ab 0b d0 30 d2 7c 35 8e 0b 9e 9c 62 2c e0 31 87 33 f4 cb 1e 27 1d 1f // 90 60 d0 98 82 cf 46 54 0f 93 5b eb 0a c7 73 f1 32 66 8e 9a 40 79 b7 // 86 86 3c a5 42 26 57 8b 0f 97 c7 cb 35 42 12 d1 b5 49 f8 a9 52 85 a1 // 66 f1 35 f8 38 45 a1 e8 c9 79 8d f8 36 ce 2f c2 81 c6 28 1d 22 ef de // c0 75 9a 78 fd ef 04 97 6f f3 f1 65 e1 ea 5a a6 da 71 7b 20 4c 5c a4 // c5 64 22 bd c0 70 c2 7b 74 a5 f7 64 a6 11 7b bb 2b 9c 1e 18 e2 54 d0 // 09 35 69 72 9a ef 6d 76 79 5f 46 5c 52 a8 93 07 b4 fd c9 d4 b2 5f 00 // cf 7a f2 06 a9 c4 f2 ea cb 26 cd 43 82 2a b3 23 70 08 7a d9 7f 56 7a // 51 60 7a 98 64 39 5d 3e d4 1d 07 01 ab 3a c7 db 14 dc 3d d0 a1 aa 5f // 84 f1 e3 17 31 c8 3d e6 13 d5 98 a7 d4 fb d2 b2 81 9a 22 38 c6 86 68 // 0d 8b 8e 80 16 24 31 1c f7 54 96 27 36 12 83 75 be be 12 17 85 b4 2b // 3a 20 c2 d8 9c a4 88 62 33 b9 6a 04 8a aa cb 4f b7 40 44 4f 9e 62 e1 // 6b 8e 0e 0c 03 e3 92 41 26 81 1d d4 40 dd d4 e4 16 f4 5e 76 8d 3c 20 // 89 45 5d c8 1d 03 a7 86 db 89 1a fe 45 ec 80 12 9d 8a 60 28 e3 f3 08 // 6c 9b 39 8f 7d d6 a2 62 74 aa ba a8 59 f2 f8 c2 cf 90 e7 d1 0e 8e 64 // 76 97 5b 46 66 26 59 01 31 2f 8a 40 f6 1b e3 63 c3 6a bd e9 d5 b2 90 // 86 66 b1 2e ee 19 7e e3 e3 18 cc 39 16 49 3b e9 4e 46 0d 97 8e 28 f6 // d3 23 a4 b1 7d c9 ba 13 14 0a 14 ae 31 df ba 4e ff 67 94 f4 85 cf c9 // ff 82 1e 65 0e 13 63 64 e2 52 e4 28 77 b9 1f c7 7f 3c 80 16 ac 89 45 // 50 7b a2 c9 a7 94 39 23 df 5c c1 84 18 70 09 34 90 7c 91 5b e9 9a ac // db 48 da c7 7c 43 68 ae bc 58 ee 5c a8 27 e9 02 d7 6f ed 3b 5d 0d e5 // 49 e2 14 9d 2b 1b 89 e4 45 a9 45 ea 19 74 ae 5f f3 57 da e2 0b 98 7c // 47 ed b0 76 d6 74 24 e4 69 52 2b fd 32 0b 3c f8 fd ee 96 f3 c1 96 3a // 81 36 83 2d c5 96 1a f9 02 0f 52 f2 cb 56 4a a3 93 49 f7 11 e1 fa 66 // 41 8c d5 85 d9 97 e3 0d b4 06 04 d8 05 8b 3c 29 44 f2 f9 d1 6a 97 6f // 68 9f a9 6d de 35 e0 19 23 08 68 7b 0f 0f 2d e7 51 fe 13 2f be c9 03 // bb c0 85 65 1a 1b f8 29 91 04 fe c8 f3 a1 0c 1c 5f 1a 2c 01 d8 c3 3b // 77 ed 59 4d cc 4f 56 a7 60 87 7c b3 fb 46 39 03 3e e4 45 ec 72 70 79 // a2 df 4b e5 72 7e 58 45 f1 9c cf 77 8e 90 6c 64 23 9d c0 bd 9e 58 e7 // c4 4e 7e 04 0c bd 5c 99 4f 97 d0 ef 47 37 ac 35 dd 4f 49 56 f8 b8 ec // 95 d1 94 29 8c 00 74 d4 06 37 2f ba 3f 7c 2b 85 ad 1b 7c 37 b6 5c 8d // 23 4e 6e ab 9f 00 a9 1e 28 de d5 2b f1 50 ec 54 d7 5e 40 a3 3f ef eb // 43 37 6f 05 cd d4 3a 42 2c b2 5c 53 75 71 5e 5a b1 d7 6c 2b a5 34 bd // 31 33 cf 87 ae 19 5c a4 ea e9 ef a1 65 9c 1c cc cc d7 bf 49 8a 6f da // 2a f9 e5 2d 5f 42 d1 81 77 84 6b b6 90 61 27 f3 31 96 b3 41 83 e1 bd // f5 a0 aa f7 37 d2 b1 fd 51 4f 48 2e ba c4 11 35 f7 f5 cf ff e9 60 d0 // 58 8c 18 7d 2f ed cc 8a 41 13 16 ca a9 5a 16 2a ee 61 ec 06 90 d5 bb // f1 53 f3 9f 2b 3b 8e 1c a6 4a 30 f0 bf ee a2 9b 92 f1 83 6d c0 4a 2f // 31 6a d3 38 6e e1 a2 60 a9 5f 30 1b 28 63 fd bf 42 ff 44 58 4c 2e 36 // 22 b1 65 4b 06 d7 14 b8 d4 84 8c 97 cc 5c e7 ed 72 4e fa 93 a0 24 38 // 66 85 1c e3 a5 1a 7f c3 80 fb 2c a6 f4 a0 73 62 1f 13 03 a2 6c a7 71 // fc cf 8d ed 81 20 a6 5f 53 be ce 07 7c 43 75 a2 58 29 e7 77 d5 c8 b0 // 0d ef c4 de 92 f0 0c e2 4a c6 e2 dd b3 9b 34 fb 1b 9a 74 5a 5d 64 b7 // e6 88 4e f0 2b c0 6c fd 21 c5 74 91 05 55 27 fa b7 54 fa 00 f2 69 4e // bf 1b d4 a1 d7 21 38 2c 1c 75 f3 7d c0 c0 eb d0 8f 88 86 a2 59 aa 89 // a6 75 98 98 25 00 95 79 e6 b6 18 bf 95 74 6b f9 6d 6a cc 9c ae 12 55 // 36 94 d3 4d 13 d3 6e 06 63 6c aa 01 bb ae da 1c ef 3f 39 ab 51 49 d2 // e0 3a a9 20 ea 8c ad 56 13 04 a7 26 d3 23 11 59 e4 2e 0a 16 42 a5 8d // 2c 8e e0 24 64 24 1f af 47 f0 47 c6 a1 c4 d6 11 eb f9 28 e6 ee 86 ff // db 24 38 7c b2 99 0c c6 2a 41 24 25 c9 57 88 9e 67 c2 5a 82 23 35 2a // 83 11 74 eb 58 bb 41 2a 82 6a ef d3 44 1c 96 28 65 00 35 3b fb b7 f1 // 87 30 1b 06 b2 a6 ef 24 07 35 fb 90 5a 50 83 da ad c4 2d a0 e1 95 2b // 10 8c 6b 7e d6 af b9 f6 a9 af 60 f9 c8 39 2f fc cc fe ac 70 c4 c3 2e // fa 9d 80 c0 8b 55 97 92 43 f3 31 cf f0 24 78 3e 1f 35 4f 2c c0 eb 0a // 18 95 2f f0 28 36 39 53 57 56 7a 80 e0 8d 18 cd 9f 4e 00 87 5d 16 df // 5d 90 e3 09 bd de 64 cc 79 ca a4 a6 fe c4 12 56 99 41 00 1f ae 63 0b // 4e 0d fe 87 75 73 6d ac 69 55 92 7f f9 1c 88 fb 76 60 e1 b9 61 b5 15 // c4 aa ad b0 f6 1e 6d 74 4c b9 c2 da a4 0c 6b 76 ba d7 f0 2a 61 85 24 // 3a 67 aa cc 46 07 ac 9a ed ff e6 49 21 bc 14 74 ed 7e fb 2e 33 b0 1b // 7f 44 3e 85 c2 3f a9 db e4 04 57 e1 e0 92 48 66 ba 2d 8e 7d cd f4 7d // 40 31 f1 f7 6f 90 7b b7 a1 cb be bb 3e 4a 3c f9 68 65 0b 6a 91 b5 9a // a3 a6 cb a2 7a 6b c4 05 e2 be f8 32 95 9f 95 0c 7f 74 85 72 b1 cc 39 // fd 8d b3 37 fa 81 53 4f a3 9d a8 af a5 94 ee 01 c5 3d cb 08 52 d9 76 // 1d dd 95 51 10 0d c5 d1 4c 4b a4 77 79 d9 ff bb bc 88 df 5b 01 4c 5a // 21 71 42 aa 7a 17 70 ab 28 f9 a3 02 35 3a df 4e d0 6e 22 5f 15 c6 e3 // be 4a 97 96 d6 9b 40 5f 05 12 d6 de 89 25 0c 63 e4 95 70 97 af 62 8b // d8 15 a9 88 4d eb f6 9f b8 46 13 35 b0 45 68 80 4a dd 11 0c 04 84 84 // 7d 20 fd 77 d0 1b 36 4c 17 fb 93 9f 44 1b 62 a7 7e 02 21 da 56 89 42 // fd 17 cb 96 94 e1 2a 5a 2f 06 0b 4d da 08 51 ee 9b ab 7b f7 a2 5e 49 // e5 f1 39 07 e9 a6 16 27 91 8a 95 ba 66 e6 97 5c 28 82 4b 98 cb 6d ff // f3 41 be 01 94 ed f1 4f 98 e0 d8 e8 16 c4 a0 34 5a 50 25 0f fc 04 ff // 70 93 ce 32 62 86 5e 01 6b 87 07 e1 ff e0 2e 24 f6 b4 aa 95 ff c7 65 // 62 68 fe e5 84 3e 79 d0 11 74 de 0f 47 7b 38 79 71 f5 21 45 a5 62 7a // 7c 97 5b 04 3f 8e 10 41 04 76 da 3f 2d 69 01 33 c8 c5 d0 e0 24 60 d6 // 48 54 66 82 59 b9 e0 4e 3c d2 23 ce 26 2a 61 eb b8 99 ca be e4 7e 59 // 27 21 f8 be f9 32 39 2b 77 55 fe 38 38 6f 22 eb 22 2b 8d 7e 46 3a 99 // 32 18 7f 32 05 aa 1c d8 2d b8 4c 53 3a 28 29 64 8a 97 31 d3 91 8f b3 // 2d ff 01 41 94 41 0e 8d cf 11 55 28 6a 96 3b 5f bb b7 97 86 69 6f f9 // 0c 28 99 bb cd 59 28 a8 60 c1 d2 d4 fe 20 8d cb 02 ad 34 e4 76 e8 37 // a6 cc e7 34 f8 88 bf 56 cd 3e b9 e3 67 0a 57 b8 6c 99 7d 73 cc 07 f0 // 0e d3 00 60 a9 5b c7 f7 58 f2 9e 80 de c3 e2 b5 4b f9 b4 c4 65 d1 c7 // 20 b6 46 64 28 19 e8 ab 9a c4 76 7b 66 e6 61 af 64 44 37 a4 99 40 82 // 13 eb 87 33 4f b7 8f 3b f4 65 d2 9e bc d0 c4 92 bc 66 5a 92 f0 8c ea // bb 5d fc bf e3 24 e8 bc f6 c4 8a db d4 ec d2 17 0a 4c 80 28 3c 0d 0a // 51 fa f8 51 c0 3c d6 64 34 81 e3 e3 45 b7 fc ce df 92 62 60 c6 b8 17 // 19 b4 7b 8e 3d 33 aa 8a 5a ac ae 40 b8 8b 04 7a bb 08 65 2d 2a 34 f8 // ca c0 74 0d dd b9 9f 17 4c 66 5c 52 e2 27 2a 45 76 85 49 18 e3 60 43 // fb f3 9b 9f 36 e2 e7 b3 d3 dc 16 ee 8d 9d 97 52 84 29 f9 91 65 ae 1e // c8 11 2a 91 5d 9f 6a 19 8c 37 b6 dc 9b 85 19 84 23 35 2d 5c dc a4 96 // 2f 96 07 4b 59 d8 63 2f 9e 88 73 d0 b0 cc c4 5d 58 b5 bb 9e 83 a2 72 // bb 88 16 b0 87 bc c2 1f 2e 1f 92 cf 75 7c c5 a4 90 9e e1 da a9 01 22 // 14 47 59 2d 79 2d 53 80 c6 26 55 ef 4e 43 35 bd d2 d2 1a c7 ec 5c 26 // 6d 0d 40 5d 67 ef a2 00 0b b6 d9 8c 3d 98 e4 ab 63 1e 18 da 55 67 8c // cd a8 63 c6 bd a6 c8 fa ff e3 06 5f 27 35 60 6e f0 b1 3b 16 b2 2f a2 // 96 f7 36 92 5c cf bb 5b e0 b9 e7 90 28 50 48 85 ec 1f 93 f6 08 38 04 // 10 d1 c0 94 38 ee 66 e9 25 b9 dd 0b 1f f3 f3 97 4f ce 98 a0 0b 61 df // e8 1d 64 59 b0 cc 4d 51 e3 39 f9 bb cf 73 7f 54 af 5e 99 f0 02 cb 40 // 2e 71 8e fb af 69 a9 b3 40 29 1e d3 ac 1e 8f c3 2f 95 bc 00 ac bf 54 // 3b 01 af 53 c2 e2 66 23 b8 45 90 29 2b fa c3 c3 e8 f4 d5 21 0b 3a 17 // d8 af 53 dc d5 19 81 79 68 0a 34 f2 57 c4 b8 09 d3 69 24 f8 07 3e 94 // 92 91 68 30 e9 6d 5c 16 b2 e4 d9 80 07 7c ef 0e ab 19 77 b9 fe bc 31 // ac 44 90 fd f9 5d 6c f2 2a d8 ee bd 1c 51 e8 f5 c9 fa f7 70 f4 c1 86 // d2 72 df ee ad ad 66 cd 69 a8 95 44 d7 95 49 fe b3 d6 ba 6e 67 81 82 // 57 dd b8 eb b1 9a b7 e5 a3 7c 42 36 fe 67 13 28 55 bc 6e 7c 95 78 d6 // 98 c7 ab 59 98 92 20 48 86 49 c1 7d 67 30 77 40 82 b5 29 5e a2 a7 84 // 53 88 a8 75 2f e4 59 ef 96 ce 01 47 a3 e8 39 fa 6d 80 6d 5b 79 5e 40 // ea 15 3b 55 d8 53 85 ef 81 37 23 48 e5 96 7b 5b ee 60 2b a2 90 b0 84 // 77 ee 39 60 9d e9 1f af d2 3f aa 39 fc 77 e7 80 4b a6 25 55 64 83 4b // ba 60 31 91 88 87 d2 39 3d e3 5e 07 87 ff 16 28 2b f6 30 12 cd 2d 5e // bf 42 25 10 0d d2 19 ab be 68 7c 8b 82 12 ba a4 bd a2 83 df 17 d6 9c // 26 da ec b2 a4 e0 82 9e 34 7c f5 bc 14 a9 30 ab 86 3f bc fa bb f5 0b // d8 a3 f8 14 db c8 d0 ec 0a 70 78 33 98 10 9d ce 83 61 eb 42 d3 49 f4 // 34 64 28 65 7b e0 0e 0e 78 d1 3d 64 1c 88 d2 16 d1 4a 23 8d ff 26 b8 // 28 3f d3 f2 3c 42 bb 4e 00 17 45 83 95 00 dd de 24 c7 9d 9c c1 00 7c // 85 ff 31 90 c6 fb 0e 43 63 9f a7 73 90 11 76 25 87 f4 b9 38 33 79 3d // 05 36 bd ec 12 ff 58 e7 cc 2d fd 1a 73 ae 94 d2 ab 34 00 4a 69 77 77 // 1e f5 eb d5 04 24 cd 63 f0 22 b9 8d f0 09 72 ec 7d d0 c7 16 23 fe 25 // 3b d3 74 f8 d1 71 78 03 6a b7 30 93 28 e6 ad c0 dc 40 84 96 d9 64 7f // 8a 96 26 58 09 48 24 80 6f 52 a4 bb b9 55 4f cd a3 9c 67 5d 03 2b d2 // 45 49 4d 3d c7 ac 95 12 c5 c9 20 4b 47 09 4c ed 50 64 67 52 1a 87 66 // f2 f7 77 84 74 54 95 8d a9 1e f6 4d bb 88 c6 ec 6e ae e7 45 4f 6a 76 // 58 92 bf 38 3f b5 70 b4 90 92 e4 7a 39 f6 91 ea c8 3d 90 79 31 f9 e0 // a5 3b 30 50 36 d4 88 57 9b fd c7 95 05 36 0b 09 4b 9e 2e 04 93 73 6c // 93 30 78 2f 86 fa 72 43 74 c7 82 2b c9 33 cb 95 f5 13 73 12 07 11 47 // f4 3f 0f a4 ca 79 7e fc b8 58 8a 82 6a 94 2c 89 b1 b7 6c 48 51 6a ce // b6 00 2b af 23 22 22 7f 9a 6d b0 30 bb f9 e0 1f 16 29 0a b0 78 57 f5 // 48 d0 ce 77 67 5c a7 e6 07 23 a2 df 55 71 61 15 4f e6 5d 16 85 3d 3a // db 20 aa 71 5e 86 2b ba 4c 20 f3 24 cf a5 92 6d 3d 94 4f 65 db 11 3c // bd f9 ee c8 5a 61 16 7b 13 c3 7c 51 da 2a 7d 2e e4 8d a7 ba 7f ab 0a // 41 d0 25 4f bd d8 1f b1 15 80 c4 66 ac 8d da 3c 7b 7c e0 c1 c1 94 8d // 6c 31 9d e0 ef eb e8 1d 92 51 1c fa 27 3b 2e 87 a6 89 75 93 c3 b0 7e // b4 07 2f 4b 3b 24 6b c8 d0 9a 92 f5 63 7f 48 c0 41 b1 55 67 39 9a 60 // be 6f c1 15 fb 05 97 55 8e a5 9d 01 41 46 02 6d 35 d1 a2 9a a1 78 56 // b3 9a a3 d0 df 33 23 94 fe b1 e4 ca 4a 66 26 af 29 03 39 8b df 37 a7 // 38 b7 20 2f 7d f1 62 4b e1 bf 96 3d 9b d4 26 01 3d d1 56 cb 9b b8 77 // 45 af 26 69 74 87 95 b0 89 89 75 f1 a6 03 e5 8c be c6 79 c3 80 c1 22 // 5e 6f 36 21 7f 98 6f 61 1f 90 6e 19 3c 55 97 ee e7 85 e7 c4 73 14 d5 // e0 cf a8 62 3c 95 28 a6 3b 93 9d d9 33 f2 f2 da 9d 83 c7 6e 7c 69 df // 14 36 df 09 d2 4a f6 ec d3 89 d6 8a 7a cb c7 6c 25 fe 0f 77 3f 3c 33 // 44 75 58 76 dd da 1f 1a dd f8 e4 65 60 79 d7 0b b4 db 28 82 40 8e ef // a5 39 86 dd 19 b0 84 7c cd 60 2a af be ab 88 b5 fd e3 4b b2 b5 60 37 // c5 e2 60 14 6b 4d b4 3e a3 b1 c3 97 28 8e 7c 38 a9 8d c2 8b 86 a5 4c // 75 c1 97 1d 1d dd bb 94 72 45 31 19 5c aa ae 42 f6 b4 d2 37 41 f8 38 // bd 27 a1 3c 8f e6 be 91 1b 9e 52 bd b8 12 22 cd 6b a4 51 91 51 98 a8 // c3 bb e1 d8 da 24 7f 01 81 cc dc 28 c5 3e 19 c6 1b 10 cb fa 6f 53 f8 // 20 ad d7 bf fb 5c b4 10 9d 8f af 74 ec f0 b0 ce 9d a5 01 c8 84 fe 29 // 7b 6b 41 c6 b2 33 da 1d a3 8d cb 9e 85 b1 25 ec 59 44 d6 6e 93 6a ae // 2f 60 f5 43 97 cf d9 e0 67 fe 96 a4 c5 fd 7b ea 78 11 54 07 d9 a9 2c // b2 69 60 ad f1 99 c1 68 fa e2 91 c7 3f 1e 59 70 1c 0f 12 9c 76 d4 de // 6e 45 e0 c7 d4 40 27 11 46 c7 22 6a 0a 23 7e 3a b2 f1 31 62 40 00 13 // d4 67 40 09 5f e6 91 e8 d2 6f 0a d7 10 ef 77 8d 73 f8 94 be c7 df ec // a3 67 8b d7 86 26 49 4e 34 17 79 03 ba d8 fd 4b 02 db fc 9f d6 f4 7f // be 38 c6 ae 86 7e d9 82 a5 07 7c 57 2d 65 40 f2 99 bd 83 d9 a5 37 d2 // 75 80 9d 9a 9c ba 37 01 d1 04 af 27 aa 07 14 ee 46 d3 c5 3f 9a 91 3c // af 8b 1a 50 e4 d8 21 42 56 19 a4 9d 0b 51 15 e8 b2 55 bc b4 0f 02 cc // ba bd cb 4b 38 d5 1e fe c8 f9 e2 48 1c 28 7c 70 42 66 18 6d 29 68 6f // b2 16 a0 fb e1 42 8d 71 b6 31 70 b7 a7 0a fb b3 17 01 a5 15 1b d4 13 // ee 82 02 3e 85 30 52 5f f2 a0 f8 df 19 d9 c9 6d 90 54 99 bc 71 ce c0 // 0f 72 74 8b 73 0b c7 65 fe 43 21 e7 01 54 4a 6e c4 21 0f 4b 31 a2 3c // 46 04 04 aa 82 02 a0 0e fb 79 98 1e ba 57 45 77 9b d8 5a 11 7d b4 c7 // d4 a0 c2 c5 a2 86 c1 c9 6f 78 d5 79 9f 99 00 74 e7 57 94 75 ab e0 b5 // ed d6 7d f9 68 11 62 da e2 50 d2 a4 a4 27 78 c6 12 c9 89 88 c6 0e 44 // ef ec a5 57 61 95 f0 cc f9 6f 5e ae ae f3 91 04 1f e6 70 5b bc a3 e1 // 6f 74 0d cf 36 f9 8a 8e d8 9b a8 a6 ae 3e 70 24 45 11 88 1d 98 6c b9 // a0 61 1b 5c 49 13 84 e5 37 42 9c 20 fb 6b 07 79 c6 79 c1 a8 00 fb 68 // 62 08 df 35 10 48 44 ec 5b ee 7c 6c 64 24 ad e5 59 77 89 20 15 eb 94 // 27 ef 8c fd 6b d9 5a 32 8c b0 8b 9b c6 cb 05 40 31 dc 62 f7 69 7c 76 // d3 ee d3 02 49 7b af 42 7f e2 0b dd 84 ad b4 cc ab cc 19 33 4a 3f 2e // 78 1a ec 1b 34 42 b8 15 03 1d cb 93 d1 35 de 61 a9 8d 1a 44 08 df ac // ed c8 27 07 31 29 e2 f0 18 d7 01 6b aa 20 3b 58 4d 8c 6d 13 cd 2b 87 // ad 41 76 6b b7 8f 94 b9 8f c5 10 2c 46 9f 46 8f 4d b3 6e 19 6f ca 42 // c4 49 1d b0 d9 f5 e8 ec 16 db 04 1c 36 96 34 0f 21 1a 43 76 48 8c b3 // 76 71 23 66 cb 38 fc d4 a3 1b 04 41 3b 99 8a 6e 93 4f 6e 80 8b 5c 2f // 1f 54 6b a7 b1 51 e3 3d 53 d4 87 6e 0a aa 99 63 68 2e 0d da 93 b1 a2 // d2 4b 0d 01 20 00 48 07 da 61 5d f1 b2 11 7f 31 c3 b7 85 72 37 b3 2b // 28 a6 15 99 a1 75 11 7c 84 1c 83 50 ec 1a 52 b0 2e de 33 db 0a 6b 3f // da 84 c6 75 17 99 82 9c 33 d0 d3 48 82 25 60 52 90 d2 6b 73 39 19 ce // ac 9e bc 3c 81 1a b5 5c 59 08 8b 38 bd df 9d d3 6f 4a 02 0e 2a a9 65 // fa b7 db 35 2e 2c 86 80 1b 85 04 cc ee b8 5b 3b 79 0f 84 f2 2b 1b 39 // 42 3b 14 6c c6 58 88 42 af fa 2e 51 67 47 87 51 34 1c 44 de a0 c4 f3 // 2f 22 89 8b da 42 b7 5d cf 80 c1 f8 b1 8d 65 3b 86 5e f9 50 8a d3 79 // 1c 1a dc 37 ac cd e6 03 38 64 de 06 a3 86 62 8c 11 95 25 6a f6 5e 9f // e8 28 d2 fb d1 fd ee 78 9b f9 b5 e6 8b 2e f6 fc 8a 26 fb b3 7b f0 28 // ac 8d 0d e9 92 2c f6 d9 2f 25 19 36 4d a7 4b 96 d5 3a 2d ab 55 8a fd // 30 38 c9 51 6e 5f 8d d3 01 4a 0c fe f9 07 5a 35 e6 8a 9f 51 06 56 bf // f1 1f 15 04 4d 9e 06 2a aa 51 af 9d 0d eb 30 ad e8 8f 2b 3a f1 06 65 // 46 98 9c 20 62 ec de 11 b9 86 b1 41 f7 66 3d 47 3b a7 2c 01 a2 46 ae // 9a 16 5d 68 11 fa c8 64 06 da f1 d0 a9 96 f0 96 b6 ec bc 12 7f 28 ed // ee de ac 4c 26 bb 96 e1 8c 71 12 05 aa f2 68 5b 3f 32 88 2d 5a 4d af // ce 86 3a 9c cc b4 c5 2f 19 2c 54 ab a2 a6 43 8d 9d 03 45 0d a0 65 19 // a6 53 71 98 08 38 1d 70 85 8f 19 77 98 c3 23 08 d8 62 5e d5 62 36 7f // 74 3f 1e 02 04 58 fb 2a b9 c9 50 66 86 45 65 88 ca fb b3 70 9c 87 ad // 39 c0 9c 2f e6 f0 95 ad 8c d9 7c f2 38 f1 37 53 83 16 83 04 b8 e1 a8 // 3c ed fe c3 65 2f ce 5a 7d 77 74 35 8f 5a 10 d4 ad 75 41 aa c5 ad 80 // af 9e a8 bb 92 ce 44 f5 15 03 48 e2 17 bf 68 b3 c8 7f 0e f3 3f 5e 43 // c8 f3 d5 84 f3 73 2d f8 e3 3b 6f 72 9d 07 64 0f 9b 6e 62 fe 9b e3 e9 // 8c c6 ad 19 41 15 17 37 86 a7 48 d1 a1 9d 1a 34 0a 96 1b cf 1e 66 b4 // 4b dc eb b9 99 c4 c0 79 e0 d2 34 4d 5d c2 84 14 27 07 e1 69 62 cf 33 // 55 71 0e f9 55 2f cf 3e f4 6e d7 61 ae 06 df 28 d5 45 61 b3 db 51 f7 // f2 7f 8d 17 d2 86 66 4d 00 c8 ea 5b 3d 67 3e 9f 4f d2 fd 75 5c e9 57 // e5 89 24 c4 ee 66 05 c3 a7 7d 3e 76 5d 60 33 d1 35 35 ae 0c c0 38 4b // 1b fe 78 7c b5 8c 64 07 d6 ca 4c 58 27 3e 79 56 89 25 82 9c f7 40 8c // ea b8 66 fc a4 61 99 85 b6 73 47 e9 7e f0 fc e0 71 96 07 53 bc c2 44 // 62 56 e8 ce 95 2c 02 69 35 33 e3 21 c5 4b 15 69 cd f5 8f 39 72 7d 7b // cd b9 60 df af 9b 04 26 57 33 a8 12 89 b2 42 0a 84 d4 67 ad 09 dc b6 // 1e a1 a9 de de 70 a2 90 6e d1 95 25 40 73 ce ca ec 74 a7 af 00 05 f0 // 43 e3 03 60 39 f3 a3 0d d6 47 e1 f1 3f a2 c2 c5 51 0f df 04 c0 a5 62 // ea 2f f9 8b f1 33 c5 43 ec ba 22 41 46 48 3b 48 01 d4 48 c7 93 69 33 // 7c ce 26 ad 5c f0 9d a7 70 89 c5 ed 2f dc 93 0a 47 b9 5f 6a 31 67 1a // af 95 4e e6 74 93 4e 25 75 0a 50 92 fd b9 34 d8 43 92 f4 4c 8b bf b5 // 45 eb 05 0a 6b a0 c4 62 5e de 3f a9 79 44 a5 ee 86 dd 9c 03 f1 79 94 // 72 07 6d f0 ed 51 cf 41 1a 2f 87 53 a4 9d 71 03 9f 07 3a 06 82 97 0f // f4 9b 4f 94 ef e2 6e 44 db a3 f8 d0 f1 97 22 8d 1d 79 bf fd 5d f6 de // ba fc c8 0b 34 d7 6d 93 07 c1 55 d6 bf 9a 20 4a 00 fd 1a 7e ba 62 fd // ed 3a 18 86 41 c9 f2 70 d6 6c ce a8 2d 98 51 9d 34 49 34 56 67 01 db // 37 f1 6c 35 f2 63 8e 30 d1 93 d2 4f 05 99 aa 55 68 8c aa cf 78 5c 06 // 23 3d 38 07 6b 64 d4 0e 2c 30 06 b4 a2 8d 0d 85 1d 8f 6b d0 95 39 6c // 01 e7 49 05 ee 43 34 cc a4 b5 b2 ec cc f0 cc a3 d9 ba ce 41 a9 69 48 // c5 c1 be 9f c0 47 e3 69 9f 79 63 5e f5 37 ff 74 b1 4d 7f df dc 68 eb // c3 45 b7 dc c7 f0 73 04 ea 83 35 39 0b 67 03 16 22 10 e1 a8 b1 5d 80 // be 31 9d 13 e9 1b 4e 72 6e de 7a 3c c6 da 88 a3 60 46 6b 63 91 ad 0d // 4e 28 5b cd 33 69 4a ae d5 c6 ad 09 5d 36 05 21 45 6e fa 25 b8 89 0d // 6e 7a 3b 32 c4 5d 7a 23 92 06 0a 53 08 c8 f3 b3 3b 78 21 dd 43 a8 0a // 0b 21 5b 66 5c ea 4e ed 08 ef 79 5d bc 39 cb fa 80 63 6a 43 42 f9 12 // 19 03 09 76 26 45 06 c7 03 47 09 30 87 72 a8 8e 3b 52 64 b6 1b aa cf // eb 5c ad b3 f4 bb 9d a6 cd b2 1a ad 61 d2 84 80 cb ba 2b e8 48 78 7f // c4 e1 19 c5 6e 4b c9 b8 ff 12 22 75 61 23 af 3a 1a 0f 7e 19 ad 4e cc // 69 c3 98 c4 df dd 53 0a 9a 20 98 23 d1 1e 18 0e d7 4e 26 53 7b 64 76 // 81 c2 ee fa 90 c8 27 46 41 8d 46 73 81 c1 f1 05 55 4c ad b4 ea 65 39 // 01 cf b5 cb d3 f8 72 75 31 2f 47 b5 71 6f e7 d1 aa df 9d 2c e7 87 0a // b4 29 14 d9 f9 d8 eb e0 d9 c2 f1 5f 54 61 e8 83 05 34 9c 94 d6 cf 69 // 1e d1 75 47 6b 97 8c 12 f0 29 08 ad f4 01 81 84 38 20 2f 16 e3 72 10 // e1 b3 07 c3 1a 1d df 7f 2d 09 bd 8b 04 99 3a 0f 70 67 f4 ef 40 68 fe // 8f f8 bb 59 8d da 86 52 6c 47 66 ff ad 37 a2 c0 68 a4 44 2f b0 c0 84 // 6d 0c 5e 4e 6b 5a 99 74 86 84 96 19 61 97 68 bf 85 b4 31 d0 f9 51 37 // fa 67 32 07 4d 73 21 e1 78 6c cf 1a e0 f4 f6 b8 68 b8 04 62 ac 01 c3 // aa ff 88 99 bc 50 d2 c8 e6 cc 5e ad 98 a7 f2 28 18 7a 89 0e 94 d6 f2 // 58 e3 42 7b 43 d1 a4 94 41 d3 da f1 71 b8 0c fa 29 63 a8 06 18 85 b6 // 37 71 eb d1 f2 06 95 b9 85 56 bf ff cf 0a f2 ec 5d 89 f2 c4 39 b5 30 // e6 6c fb cc ca 98 7e 8e 01 8b 1b e0 19 0b 26 94 e6 83 25 cb 57 81 89 // 1a da c9 24 60 bf 48 a8 71 6e fc 09 8b 97 16 a0 25 c1 d2 08 a9 fc 4e // 1c 71 2c bb a9 88 96 49 90 a9 61 53 06 9c 42 2b 5c b8 1a dc 04 2e ae // 84 4e 41 77 8a a9 3a 4d 65 77 9e 20 8b 71 98 71 a2 02 ff 6f d3 74 03 // 55 f0 b5 1c 7d c0 bf 42 1a f5 e9 ca 89 27 64 64 e3 88 27 c3 ce 80 f8 // 90 bd f7 99 4e 6e b3 27 d4 c9 5b f8 ae 31 af d8 59 df e1 61 ed ee f2 // 59 02 8c d4 d1 4b 24 cf ea 71 7d 5a 9c 30 95 b8 33 9b 44 ba a7 17 c5 // 51 81 7d aa 56 2f 36 f3 9a 1f c8 05 d2 6e cf 80 42 67 30 b1 36 2d 0c // 90 f0 d3 68 4d db fe 7c 28 2f 1d 52 85 9b 22 4e 11 82 c7 70 b3 5c bf // 9e dd 96 41 c3 0b 84 e8 ba 07 21 2e 5a dc d7 03 32 27 dd fc ab eb 0a // 6e f6 0c 1c b6 1f 17 83 fb 7c da 67 61 85 4d f6 f4 21 75 30 94 2e 25 // 9c ed 86 f8 23 c8 99 b8 11 e9 0d fc 62 84 cf f9 8c 3c fc 3a 16 f3 6e // 74 58 d3 d0 f2 b8 a7} (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 = 0x90 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x4 (8 bytes) // payload: fuse_entry_out { // nodeid: int64 = 0x1 (8 bytes) // generation: int64 = 0x2 (8 bytes) // entry_valid: int64 = 0x5 (8 bytes) // attr_valid: int64 = 0x0 (8 bytes) // entry_valid_nsec: int32 = 0x80 (4 bytes) // attr_valid_nsec: int32 = 0x0 (4 bytes) // attr: fuse_attr { // ino: int64 = 0x4 (8 bytes) // size: int64 = 0xe (8 bytes) // blocks: int64 = 0x8000000000000001 (8 bytes) // atime: int64 = 0x7 (8 bytes) // mtime: int64 = 0x1a (8 bytes) // ctime: int64 = 0x800 (8 bytes) // atimensec: int32 = 0xfffffffa (4 bytes) // mtimensec: int32 = 0xfffffe01 (4 bytes) // ctimensec: int32 = 0x400 (4 bytes) // mode: fuse_mode = 0x1000 (4 bytes) // nlink: int32 = 0x4 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x6 (4 bytes) // blksize: int32 = 0xda5c (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000002140, "\x73\x93\xbf\xe0\x30\x28\xd5\xb5\x52\x5b\x9e\xb8\xe9\xec\xda\x21\x19" "\xeb\x04\x8b\xbd\xd1\xa3\x4e\x1a\xa5\x06\xc5\x34\x1e\x64\x01\x8b\x1e" "\x92\x58\x21\xc6\xba\x37\x8e\xb8\x43\xc3\x17\x28\x71\x02\x30\x49\x36" "\x0a\x51\x46\x02\xfc\xe5\x4f\xee\x00\xe0\x40\x84\x91\x42\xed\xfd\x9b" "\x86\xc8\xe9\x65\x50\xf5\xd3\x4f\xed\x20\x5c\xbc\xf8\x07\xf6\xbc\x71" "\xbd\x8c\x4d\xce\x58\xc5\x3d\x2b\x77\x7f\x80\x89\xd5\x44\x43\x9b\xb7" "\xbe\xed\x38\x45\x1b\xf6\x8b\x4e\x9d\x8c\x2c\x81\x7f\xd2\x85\x44\x97" "\xb3\x18\x0b\xec\x65\x79\xaf\xc4\x67\xc5\x37\x3d\xbb\x0c\xa3\xb8\x18" "\x94\xac\x2c\x03\x54\x92\xeb\x7f\xd7\x3e\x40\x42\xeb\xfc\x00\xb9\x9a" "\x07\x8f\x61\x29\x4b\x6d\xe5\xe0\xd3\x88\x54\x8b\xed\xae\x03\x14\xf9" "\x6a\x0b\x53\x23\x53\xfb\x23\x88\xb8\x16\xaa\x41\x2d\xa2\x3e\x87\xdb" "\xb7\x51\xc8\x56\x5c\xd7\xa8\x23\xa0\xf9\x90\x83\xee\x14\xf5\x6f\xb4" "\x71\x1c\x8a\x7f\xe9\xfd\xa1\x98\x9c\x44\x0e\xbb\x21\x7c\x8a\x0f\xfd" "\xcb\xd6\x3c\xab\xf0\x83\x10\x5c\xf9\x15\xea\x4e\xe7\xde\x1d\x14\x3a" "\x56\xed\xa0\x92\x91\x99\x2e\x07\x63\x91\xfa\xe9\x78\x12\xf8\x52\xd7" "\xd8\xfe\x4d\x93\x92\x4b\xd9\x79\x08\x49\xe1\xce\x50\x28\x4c\x69\x0c" "\xe8\x4b\x38\xc1\x1f\x3f\xe3\x51\xd9\xb3\x49\x3b\x1e\xa3\x9a\x49\xad" "\x63\xd5\x16\x00\xa2\xa5\xad\x49\x1f\x7f\x36\x76\x40\xab\x10\x2c\x4e" "\x51\xac\xde\x3b\x18\x9b\x56\x7f\x4b\x1e\xb2\xd6\x99\xa8\xcd\xae\x5a" "\x01\xec\x22\x08\x32\x9c\xea\x05\x25\x1d\x19\x4e\xe9\x31\xf9\xa7\x91" "\xec\xbe\xfc\xa1\x8e\x41\x18\x27\xd4\xf4\xb8\x1b\xad\xc6\x45\xc6\xa2" "\x2a\xd0\x77\xed\x21\x19\x50\x41\x6f\x77\x32\x95\x0b\x7a\x03\xdd\x34" "\x59\x4e\xc7\xa5\xc6\x8f\xd8\x1f\x8a\x20\xcb\xf6\xfd\x71\xe4\x31\xd5" "\xee\xce\x65\xe0\x73\x2a\x5b\x03\x19\xfa\xe9\x9a\xfe\xd0\x0c\x40\x52" "\x4d\xb4\x3d\xdd\x67\x2e\x79\x57\xaf\x1f\x5a\xbc\x26\x8c\x0a\x01\xf8" "\x6b\xac\x16\xeb\x2e\xac\xce\x67\x92\x38\x47\x8f\xb9\x07\xd2\x02\xd0" "\xbc\xf0\x40\xef\xce\x81\x50\xa6\x67\x3c\x05\x34\xda\x30\xf8\x28\x65" "\x94\x15\x38\x36\x36\xea\xba\xa6\xc5\x73\x4c\x9a\x8e\x0d\x6e\x8b\x5e" "\x16\x05\x82\xbb\xe5\x0b\x49\x4c\x05\xdb\xec\x8a\x32\xf5\x5d\x17\xeb" "\x78\xfa\x76\x8b\x45\xfd\xa5\xee\x94\x2c\x46\xf3\x65\x9a\xb4\x49\x9b" "\x57\xd1\xea\x44\xd3\x38\x2f\x68\xc9\xfe\xe4\xb9\x47\xef\xfa\x62\x72" "\x1a\x5f\xa0\x83\x22\xe5\x0c\x0a\x10\x4a\x86\xd9\xb7\xdf\x19\xbc\x42" "\x55\xfe\x9b\xa3\x92\x72\xc8\x09\x19\x7c\xc8\x7c\xf3\x8f\xd7\x64\x40" "\xf3\xbd\x8c\x8f\xa9\xb9\x19\xc0\xcb\x98\xf5\x5f\xbc\xc1\x06\xc1\xbf" "\xb0\x57\xbd\x8c\x8a\x15\x32\xbe\x0d\xb6\x0c\x74\x2f\x18\x01\xb6\x0f" "\xb9\xea\x07\x2d\xea\x85\x8d\x89\x7b\x93\xc2\x76\xc2\x7d\xf1\xd9\xd7" "\xba\xc2\x73\x4f\xfc\x2c\xfa\x01\x13\xae\x16\xd1\x07\xb1\x51\x03\x98" "\x46\x79\xea\x1d\xf3\xe7\x4d\x6e\xa5\x71\x02\x50\x28\x63\x9b\xc9\x98" "\x6b\xe8\x06\x0a\x68\xdd\xb8\x49\x22\xba\x6a\x02\x00\x4e\xb7\xe7\x2d" "\xba\x3e\xbc\x66\xc1\xb4\xae\xed\x46\x07\xf8\x84\x21\xc7\xb9\x71\x91" "\x47\x20\x04\x2b\xfe\xc4\xeb\x72\x5f\xa5\xdb\xcc\x7a\xb3\xd9\xd8\x5a" "\xbe\xa9\xd8\x8d\x6a\xae\x36\xa4\xab\xd6\xd3\xfe\x4d\xa7\x3f\x18\x1e" "\xc7\x47\x3f\xde\x7c\xfa\x02\xcf\x79\xec\x81\x9c\xe7\xf3\x3c\xe4\x8e" "\xde\x43\xda\xa0\xfb\x6e\x28\x76\xb2\x68\x2b\x64\x2f\x3b\x39\x72\xe0" "\xf1\x02\x85\x5a\xf9\x26\x4e\x35\x49\x06\x95\x86\x91\xc1\x56\x87\x62" "\x58\x5d\xdb\x4a\x14\x9a\x89\x93\x9d\x97\x40\x3f\x5e\x71\xee\xd7\x9d" "\x96\x7a\x5a\xa2\x5b\x7d\x79\x5c\x0a\x08\x85\xc0\x70\x98\xb7\x50\xbe" "\x49\xc2\x83\x40\x7c\xb2\x68\xfb\x1e\x06\xb9\x3a\x4a\xd4\x69\x98\xa6" "\x40\xf7\x97\x38\xe7\xa0\x2d\xea\x86\xa4\x8c\xc6\x47\xca\xcc\x83\x55" "\xc3\x03\x19\x85\xa4\x93\x07\x00\x9e\xe8\xad\x30\xb5\xa9\x61\x99\x53" "\x58\xde\x5e\x21\x1d\x85\xff\xab\xd0\x06\x09\xe4\x4d\x2d\x65\x94\x49" "\x5b\x92\x63\x0f\x77\xcb\x53\xde\xb2\xc8\xfc\xcf\x5e\x0e\xb5\xb2\xf9" "\x17\x9d\x14\x4c\x02\x46\x67\x18\xa5\xae\xf8\xc4\x35\xdd\xc7\x52\xa5" "\x3d\xf4\xc2\x09\x9d\x2a\x5d\x8e\x1a\xb6\x9d\x51\xa2\xd5\x42\xd6\xe1" "\x34\xc2\x67\x52\x29\x1a\xb4\x52\xf2\xf0\x69\xc4\x04\xed\x71\xc0\x1a" "\xca\xa4\x43\xe2\x84\xda\x03\x98\x1e\x3f\xae\x89\x71\xdf\xc4\x5a\x00" "\xd3\x60\x48\xd9\x1f\xb6\xdf\x98\x38\xa4\x6b\x7e\xf7\x4a\x2b\xc7\xfa" "\x73\x0e\xea\x47\x05\x9c\x44\x41\x1f\xae\xb4\x08\x58\x9b\x6e\xe5\xdf" "\xae\x9f\x67\xc9\xff\x48\xf0\xff\x40\x5d\x1e\x56\x8b\xb5\x59\x1c\x58" "\xb8\x3a\x47\xf3\x9a\xe4\x09\x27\x46\xbe\xa9\x7d\xb2\xe4\x79\x17\xda" "\x0e\x6a\x59\x34\x79\x54\xe2\x75\xc1\x54\x07\x8e\xf2\x3e\xd8\x42\xb5" "\x0f\x27\xc5\x6d\x82\x5b\x29\x43\x9b\x6f\x9a\x11\xfb\x4f\xb1\xdd\xa5" "\x1f\xe7\x20\xc1\xdf\x60\xb1\x54\x8d\x03\x31\xeb\x54\x85\xd1\xed\x87" "\xa8\x03\x68\x48\xb4\xc9\x4d\xf7\x08\x8d\x91\x18\x51\x50\x57\x24\x7e" "\xb1\x8a\x44\x9c\x13\xd4\x2b\x5f\xdf\xe3\xbb\x77\x3f\x42\x41\x58\xc9" "\x52\x69\xf2\xae\xb2\xeb\x87\x6d\x9b\x52\x32\x48\x87\x87\x94\xa6\x6c" "\x8b\x88\x47\x28\x20\x01\x3e\x46\x9b\xcb\x68\x7b\xfe\xac\xcd\xe8\xb7" "\x2e\x67\x9d\x73\x59\xfd\xa4\x0b\xbd\xcb\x84\x3f\x25\x5c\xa9\x58\x44" "\x6b\xdf\xa7\x2d\xc9\xcb\xc3\x5b\xa8\x7c\x13\x38\xb7\xf2\x69\x56\xfb" "\x5e\x57\xb4\x8e\xa2\x93\x89\x1a\x4f\x20\x77\x5c\x01\xf9\x93\xce\x61" "\xf7\x67\x80\x74\x09\x35\x8f\xe3\x6a\xf3\xa6\x79\x7d\xef\xf4\x9e\xaa" "\xa0\x57\x2e\xbf\x75\x47\x51\xc5\x15\x10\x19\x85\x43\x34\x52\x13\x57" "\x2c\xcd\x61\x5c\x87\x36\x88\xe7\x4a\x8a\xa8\x03\xc5\x70\x34\x48\xba" "\xe1\xc1\x7d\x90\xb8\x08\xed\x6d\xa5\xbb\x78\x4c\x74\x40\xa2\x79\x4e" "\xbd\x66\xe9\x89\x84\x69\x4b\xf1\x4e\xf8\x45\x4b\x10\xc9\x72\xc0\xdd" "\x0c\x67\x28\x8d\xfb\x93\x68\x2a\xee\x00\x30\x3b\xc5\xd3\xe8\xa4\x16" "\x9e\xfa\xdd\xb8\xd9\x55\x20\x5c\x28\x9a\x2d\x61\x4c\x9b\x16\x65\xac" "\x64\x45\xcc\x71\x44\x56\x5a\x77\xea\xdb\x88\xb9\xd8\x43\x8e\x90\x5a" "\xa0\x21\xb7\x99\xae\x61\xfd\x99\x47\xca\xe7\xbf\xca\x97\x5f\x71\xe9" "\xf5\xd1\x7a\x1b\xb1\xdf\x2d\x7c\x33\x41\xff\x71\x09\x53\xd6\xb1\x1e" "\xa4\x00\xbf\x8e\xa2\xa9\x5b\xbc\x21\x36\x6a\x1e\xd0\x9d\x1d\x8b\x6c" "\x63\xdc\xfd\x8f\x45\xf2\x2b\xe6\xde\x89\x2a\xd0\xdf\x02\xe1\x37\x01" "\xea\x04\xe4\x51\x30\xa6\xc1\xae\xdf\x53\x1c\x26\xc4\xc0\x2f\x0e\x65" "\x69\x97\x62\xbc\x79\x13\x38\xef\xe0\x26\x64\x2a\x80\x1c\xf4\xe1\x40" "\xe5\x98\xc9\x2d\xd2\x55\x92\x0b\x26\x74\x00\x68\xfc\xbb\x0c\xee\xfb" "\x8e\x66\x58\x53\x77\x4f\xc3\x3f\xc4\xb1\xba\xca\xb5\xe0\x58\xb5\xeb" "\xe6\xf6\x12\x51\x7b\x12\x19\xdc\x10\xcf\x87\xf0\xd4\x10\x52\x04\x15" "\x75\xf3\x36\xe0\x88\x72\x17\xaf\xd3\xca\xc2\x12\x9c\xe1\x48\x9f\x15" "\x9d\x94\xe6\x07\x0a\x7f\xfa\xbe\xc4\x12\xdd\x4d\x41\xb9\x32\x3e\xe6" "\xe5\x3f\x50\x97\x46\x56\x59\x90\x42\xe7\x91\x59\x81\x36\xa8\xf4\xa2" "\x68\x71\xb9\xdb\x7a\xed\x2d\x4f\xde\xc0\xb8\x60\x16\xb5\x0d\x54\x44" "\xb8\x10\xff\x47\xcc\xa9\x1c\xda\x0a\xb2\x5b\x30\x0e\x25\x1b\xc1\xc4" "\xcd\x7e\x93\x16\x5d\x45\xd4\x17\xa7\x53\x62\x27\xd5\x5b\x86\x5e\x6a" "\x49\xa8\x86\xeb\x20\xf9\x5f\xb2\x12\x59\xc0\x67\x68\x78\xaa\x58\x8f" "\xa2\x91\x20\xf8\xf7\xcc\xb7\x88\x4f\xa0\xe7\x40\x78\x04\xde\x53\x0c" "\xcd\xff\xf8\xc1\xd9\x5b\x5d\xe0\x60\xac\x59\xd9\x80\x74\xac\x0a\x2b" "\x72\x87\x75\x80\xe2\xaa\x37\x4d\xfa\xf9\x78\x20\x2d\xf8\x62\x8b\x0d" "\xc7\x8c\x1f\x98\xff\xe0\x04\x27\x35\x90\x67\xd0\xef\xc6\x22\xa3\x16" "\x61\x9c\x58\x72\x54\x62\x91\x16\x34\xb0\x41\xa3\xcf\xc8\x29\x78\xc2" "\x2e\xb7\x8f\x6a\x49\x0b\x2c\x89\x40\x37\x4b\xe2\xdc\x0a\x61\x90\xf5" "\x15\x10\xf7\xa8\x11\x8d\xcd\xd1\x4d\x67\xcc\xc9\xbb\x66\xad\xba\xa0" "\xe7\x16\xd3\xf4\xa6\xaa\x97\x4a\xc6\x58\x57\x26\x56\x3d\x27\x80\xd5" "\xed\x24\x3d\xae\x1c\xe3\x8e\x18\x89\xde\xb8\x3e\x1e\x3b\xae\xc6\x5e" "\x13\x1a\xff\xf3\xac\x0c\xb2\x3c\x0c\x7d\x23\x07\x7d\x7c\x88\x76\x69" "\xe1\x60\xef\x8e\x83\x1e\xb8\xb1\xb1\x2e\x69\xd8\xac\x99\x6e\xc1\xe0" "\x79\x6f\x5a\x9f\xb8\xbe\xb2\x5b\x89\xd6\xb5\xf3\x51\xe8\xb7\x1c\xfd" "\xd8\xf8\x54\x23\xce\x21\x66\xab\x3e\xd3\x5f\x62\x00\x6e\xe3\xcd\xca" "\x8c\x09\xd6\x15\x57\xe5\x2f\x60\x0e\x5c\xc5\xb2\x5d\xdc\x87\x77\x49" "\xfa\x55\x65\xdd\xa1\x05\x49\x9a\x87\xdb\x9c\x1d\x09\x97\xd8\x16\x16" "\x72\x37\x15\x2c\xa6\x98\x46\xd4\xf3\xb4\xd2\x0e\x24\xce\x61\x34\xdc" "\xf8\xed\x83\x6f\xf0\x3d\x18\xc8\x51\xc1\x60\xc4\x4c\xdf\x2c\x6b\x4e" "\x9f\x36\x29\xe7\xc1\x0a\x97\x22\xb3\x49\x50\x6f\x77\x7a\x52\x65\xe4" "\x81\x92\xe4\x9e\x1b\x0f\x0c\x84\xe9\x11\x5e\x24\x84\x72\xc5\xd3\xcf" "\x64\x21\x03\x09\x73\x87\x9a\xdc\x6a\xc4\x21\xc1\x70\x11\x7d\xbc\x51" "\x78\x5e\x35\xa0\x3c\x3c\x21\x5b\xad\x93\x22\x2a\x99\xa0\x43\x44\x2a" "\xa2\x5c\x33\xc2\xac\x49\x7d\x36\xdd\x16\xe9\x69\x87\xdd\xc9\xef\x33" "\x9e\x70\xcd\x19\xde\x7c\xac\x9e\x6e\x6a\xf2\x38\x2c\x97\x63\x3c\x00" "\x93\x13\xfc\xb2\x7d\xd0\x7a\x76\x4c\xa7\x8f\x58\x11\x5b\x22\x78\xb1" "\x7b\xae\xd2\x1c\x01\x38\x09\x53\xd8\xb9\xed\x1d\xa8\xb6\x9d\x6a\x40" "\x71\x4b\x09\xdf\x1a\x10\x37\x32\x59\x00\x5e\x64\xec\x15\x45\xb5\x48" "\xbe\x73\x6b\x16\x03\x84\x86\xb5\x6c\xbe\x1c\x65\x67\x12\xf2\xc2\x38" "\x30\x3c\xae\x1e\x51\x73\x88\x68\x3b\xe2\x8b\xa1\xd9\x47\xfa\x09\x97" "\x10\xf2\xd5\x65\xf2\x56\x11\x3a\xbc\x91\xd7\x74\xd8\xf4\xa4\xc4\x55" "\x3d\xa3\xb9\xaa\xe0\x19\xf8\xcc\x41\x57\xfc\xdb\x50\xf1\xc3\x8e\x82" "\xc9\xf4\x14\x2a\xf0\x7e\x52\x8b\x54\xba\x1a\x83\x02\x49\xe7\x70\x5d" "\x6d\xcc\xc7\x58\x13\x38\xf1\xc7\x0a\x9b\xa9\x75\x77\x95\x87\x3c\xae" "\xca\x26\x3d\x61\x2f\xa8\x9d\x2e\x7e\x5f\x15\xa5\x7d\x5d\xdf\x74\x38" "\xf8\xbc\x11\x33\x9a\x1d\x3b\xa6\x48\xce\x0b\x15\x3d\xf5\x0e\x69\xc2" "\x29\x56\xaa\x8b\xf2\x7d\x37\xe2\xdf\x6f\x6f\xc9\x6d\x2d\xf9\xb0\xf3" "\xc8\xc3\xd4\x16\x62\x34\xee\x02\x54\x15\x1c\xb0\x64\x02\x32\x75\xb3" "\x1d\x2f\xe6\x84\x40\x23\x7c\x9a\x60\x8c\xe7\x2e\xf8\x98\x99\x04\x1d" "\x86\xff\x3c\x94\x6f\x05\x22\xfd\xaa\x8a\x20\x15\xdc\x0e\x53\x4a\xd1" "\xde\xd6\xbd\xc8\x12\x56\x9c\xd9\x97\xd0\xf5\x00\x00\xb9\xb6\xfc\x3b" "\xe1\x98\x3a\x32\x43\xe4\xa0\x6a\x3d\x6f\x4b\xa6\xba\xad\xb4\x94\xcd" "\x13\x0d\xc4\x06\xcd\x42\xdc\xd9\x1b\x01\x31\xb0\x4c\x5f\x45\x07\xb4" "\x4c\x9e\xd5\x49\x17\x66\xf3\x14\x3c\xba\x91\x54\x79\xfd\x0d\xee\xc7" "\xd6\x8c\x45\xb9\x7d\xcf\x4e\x42\x1b\x19\x79\xbd\x4c\x7d\xe6\xe6\x68" "\xe2\xc8\x87\x75\x77\xa9\x99\xde\xa5\x62\x62\x60\x8e\xfd\x85\xa8\x26" "\x7b\x9e\x0a\x5e\x44\xab\x95\x30\x76\x6b\x58\x35\x88\xf2\xf3\x98\x70" "\x62\xef\xdf\xc5\x27\x04\x20\x75\x48\xca\xcd\x65\xbd\xb1\xe1\x51\x12" "\xa0\x81\xa5\xc5\x58\x59\x57\xff\x25\xc3\x7b\xfa\xfd\x71\xa3\x87\x29" "\x1b\x1f\x27\x51\x2e\xc9\x2b\x42\xaf\xc2\xb7\xa7\x4d\x6f\xe9\xab\x0b" "\xd0\x30\xd2\x7c\x35\x8e\x0b\x9e\x9c\x62\x2c\xe0\x31\x87\x33\xf4\xcb" "\x1e\x27\x1d\x1f\x90\x60\xd0\x98\x82\xcf\x46\x54\x0f\x93\x5b\xeb\x0a" "\xc7\x73\xf1\x32\x66\x8e\x9a\x40\x79\xb7\x86\x86\x3c\xa5\x42\x26\x57" "\x8b\x0f\x97\xc7\xcb\x35\x42\x12\xd1\xb5\x49\xf8\xa9\x52\x85\xa1\x66" "\xf1\x35\xf8\x38\x45\xa1\xe8\xc9\x79\x8d\xf8\x36\xce\x2f\xc2\x81\xc6" "\x28\x1d\x22\xef\xde\xc0\x75\x9a\x78\xfd\xef\x04\x97\x6f\xf3\xf1\x65" "\xe1\xea\x5a\xa6\xda\x71\x7b\x20\x4c\x5c\xa4\xc5\x64\x22\xbd\xc0\x70" "\xc2\x7b\x74\xa5\xf7\x64\xa6\x11\x7b\xbb\x2b\x9c\x1e\x18\xe2\x54\xd0" "\x09\x35\x69\x72\x9a\xef\x6d\x76\x79\x5f\x46\x5c\x52\xa8\x93\x07\xb4" "\xfd\xc9\xd4\xb2\x5f\x00\xcf\x7a\xf2\x06\xa9\xc4\xf2\xea\xcb\x26\xcd" "\x43\x82\x2a\xb3\x23\x70\x08\x7a\xd9\x7f\x56\x7a\x51\x60\x7a\x98\x64" "\x39\x5d\x3e\xd4\x1d\x07\x01\xab\x3a\xc7\xdb\x14\xdc\x3d\xd0\xa1\xaa" "\x5f\x84\xf1\xe3\x17\x31\xc8\x3d\xe6\x13\xd5\x98\xa7\xd4\xfb\xd2\xb2" "\x81\x9a\x22\x38\xc6\x86\x68\x0d\x8b\x8e\x80\x16\x24\x31\x1c\xf7\x54" "\x96\x27\x36\x12\x83\x75\xbe\xbe\x12\x17\x85\xb4\x2b\x3a\x20\xc2\xd8" "\x9c\xa4\x88\x62\x33\xb9\x6a\x04\x8a\xaa\xcb\x4f\xb7\x40\x44\x4f\x9e" "\x62\xe1\x6b\x8e\x0e\x0c\x03\xe3\x92\x41\x26\x81\x1d\xd4\x40\xdd\xd4" "\xe4\x16\xf4\x5e\x76\x8d\x3c\x20\x89\x45\x5d\xc8\x1d\x03\xa7\x86\xdb" "\x89\x1a\xfe\x45\xec\x80\x12\x9d\x8a\x60\x28\xe3\xf3\x08\x6c\x9b\x39" "\x8f\x7d\xd6\xa2\x62\x74\xaa\xba\xa8\x59\xf2\xf8\xc2\xcf\x90\xe7\xd1" "\x0e\x8e\x64\x76\x97\x5b\x46\x66\x26\x59\x01\x31\x2f\x8a\x40\xf6\x1b" "\xe3\x63\xc3\x6a\xbd\xe9\xd5\xb2\x90\x86\x66\xb1\x2e\xee\x19\x7e\xe3" "\xe3\x18\xcc\x39\x16\x49\x3b\xe9\x4e\x46\x0d\x97\x8e\x28\xf6\xd3\x23" "\xa4\xb1\x7d\xc9\xba\x13\x14\x0a\x14\xae\x31\xdf\xba\x4e\xff\x67\x94" "\xf4\x85\xcf\xc9\xff\x82\x1e\x65\x0e\x13\x63\x64\xe2\x52\xe4\x28\x77" "\xb9\x1f\xc7\x7f\x3c\x80\x16\xac\x89\x45\x50\x7b\xa2\xc9\xa7\x94\x39" "\x23\xdf\x5c\xc1\x84\x18\x70\x09\x34\x90\x7c\x91\x5b\xe9\x9a\xac\xdb" "\x48\xda\xc7\x7c\x43\x68\xae\xbc\x58\xee\x5c\xa8\x27\xe9\x02\xd7\x6f" "\xed\x3b\x5d\x0d\xe5\x49\xe2\x14\x9d\x2b\x1b\x89\xe4\x45\xa9\x45\xea" "\x19\x74\xae\x5f\xf3\x57\xda\xe2\x0b\x98\x7c\x47\xed\xb0\x76\xd6\x74" "\x24\xe4\x69\x52\x2b\xfd\x32\x0b\x3c\xf8\xfd\xee\x96\xf3\xc1\x96\x3a" "\x81\x36\x83\x2d\xc5\x96\x1a\xf9\x02\x0f\x52\xf2\xcb\x56\x4a\xa3\x93" "\x49\xf7\x11\xe1\xfa\x66\x41\x8c\xd5\x85\xd9\x97\xe3\x0d\xb4\x06\x04" "\xd8\x05\x8b\x3c\x29\x44\xf2\xf9\xd1\x6a\x97\x6f\x68\x9f\xa9\x6d\xde" "\x35\xe0\x19\x23\x08\x68\x7b\x0f\x0f\x2d\xe7\x51\xfe\x13\x2f\xbe\xc9" "\x03\xbb\xc0\x85\x65\x1a\x1b\xf8\x29\x91\x04\xfe\xc8\xf3\xa1\x0c\x1c" "\x5f\x1a\x2c\x01\xd8\xc3\x3b\x77\xed\x59\x4d\xcc\x4f\x56\xa7\x60\x87" "\x7c\xb3\xfb\x46\x39\x03\x3e\xe4\x45\xec\x72\x70\x79\xa2\xdf\x4b\xe5" "\x72\x7e\x58\x45\xf1\x9c\xcf\x77\x8e\x90\x6c\x64\x23\x9d\xc0\xbd\x9e" "\x58\xe7\xc4\x4e\x7e\x04\x0c\xbd\x5c\x99\x4f\x97\xd0\xef\x47\x37\xac" "\x35\xdd\x4f\x49\x56\xf8\xb8\xec\x95\xd1\x94\x29\x8c\x00\x74\xd4\x06" "\x37\x2f\xba\x3f\x7c\x2b\x85\xad\x1b\x7c\x37\xb6\x5c\x8d\x23\x4e\x6e" "\xab\x9f\x00\xa9\x1e\x28\xde\xd5\x2b\xf1\x50\xec\x54\xd7\x5e\x40\xa3" "\x3f\xef\xeb\x43\x37\x6f\x05\xcd\xd4\x3a\x42\x2c\xb2\x5c\x53\x75\x71" "\x5e\x5a\xb1\xd7\x6c\x2b\xa5\x34\xbd\x31\x33\xcf\x87\xae\x19\x5c\xa4" "\xea\xe9\xef\xa1\x65\x9c\x1c\xcc\xcc\xd7\xbf\x49\x8a\x6f\xda\x2a\xf9" "\xe5\x2d\x5f\x42\xd1\x81\x77\x84\x6b\xb6\x90\x61\x27\xf3\x31\x96\xb3" "\x41\x83\xe1\xbd\xf5\xa0\xaa\xf7\x37\xd2\xb1\xfd\x51\x4f\x48\x2e\xba" "\xc4\x11\x35\xf7\xf5\xcf\xff\xe9\x60\xd0\x58\x8c\x18\x7d\x2f\xed\xcc" "\x8a\x41\x13\x16\xca\xa9\x5a\x16\x2a\xee\x61\xec\x06\x90\xd5\xbb\xf1" "\x53\xf3\x9f\x2b\x3b\x8e\x1c\xa6\x4a\x30\xf0\xbf\xee\xa2\x9b\x92\xf1" "\x83\x6d\xc0\x4a\x2f\x31\x6a\xd3\x38\x6e\xe1\xa2\x60\xa9\x5f\x30\x1b" "\x28\x63\xfd\xbf\x42\xff\x44\x58\x4c\x2e\x36\x22\xb1\x65\x4b\x06\xd7" "\x14\xb8\xd4\x84\x8c\x97\xcc\x5c\xe7\xed\x72\x4e\xfa\x93\xa0\x24\x38" "\x66\x85\x1c\xe3\xa5\x1a\x7f\xc3\x80\xfb\x2c\xa6\xf4\xa0\x73\x62\x1f" "\x13\x03\xa2\x6c\xa7\x71\xfc\xcf\x8d\xed\x81\x20\xa6\x5f\x53\xbe\xce" "\x07\x7c\x43\x75\xa2\x58\x29\xe7\x77\xd5\xc8\xb0\x0d\xef\xc4\xde\x92" "\xf0\x0c\xe2\x4a\xc6\xe2\xdd\xb3\x9b\x34\xfb\x1b\x9a\x74\x5a\x5d\x64" "\xb7\xe6\x88\x4e\xf0\x2b\xc0\x6c\xfd\x21\xc5\x74\x91\x05\x55\x27\xfa" "\xb7\x54\xfa\x00\xf2\x69\x4e\xbf\x1b\xd4\xa1\xd7\x21\x38\x2c\x1c\x75" "\xf3\x7d\xc0\xc0\xeb\xd0\x8f\x88\x86\xa2\x59\xaa\x89\xa6\x75\x98\x98" "\x25\x00\x95\x79\xe6\xb6\x18\xbf\x95\x74\x6b\xf9\x6d\x6a\xcc\x9c\xae" "\x12\x55\x36\x94\xd3\x4d\x13\xd3\x6e\x06\x63\x6c\xaa\x01\xbb\xae\xda" "\x1c\xef\x3f\x39\xab\x51\x49\xd2\xe0\x3a\xa9\x20\xea\x8c\xad\x56\x13" "\x04\xa7\x26\xd3\x23\x11\x59\xe4\x2e\x0a\x16\x42\xa5\x8d\x2c\x8e\xe0" "\x24\x64\x24\x1f\xaf\x47\xf0\x47\xc6\xa1\xc4\xd6\x11\xeb\xf9\x28\xe6" "\xee\x86\xff\xdb\x24\x38\x7c\xb2\x99\x0c\xc6\x2a\x41\x24\x25\xc9\x57" "\x88\x9e\x67\xc2\x5a\x82\x23\x35\x2a\x83\x11\x74\xeb\x58\xbb\x41\x2a" "\x82\x6a\xef\xd3\x44\x1c\x96\x28\x65\x00\x35\x3b\xfb\xb7\xf1\x87\x30" "\x1b\x06\xb2\xa6\xef\x24\x07\x35\xfb\x90\x5a\x50\x83\xda\xad\xc4\x2d" "\xa0\xe1\x95\x2b\x10\x8c\x6b\x7e\xd6\xaf\xb9\xf6\xa9\xaf\x60\xf9\xc8" "\x39\x2f\xfc\xcc\xfe\xac\x70\xc4\xc3\x2e\xfa\x9d\x80\xc0\x8b\x55\x97" "\x92\x43\xf3\x31\xcf\xf0\x24\x78\x3e\x1f\x35\x4f\x2c\xc0\xeb\x0a\x18" "\x95\x2f\xf0\x28\x36\x39\x53\x57\x56\x7a\x80\xe0\x8d\x18\xcd\x9f\x4e" "\x00\x87\x5d\x16\xdf\x5d\x90\xe3\x09\xbd\xde\x64\xcc\x79\xca\xa4\xa6" "\xfe\xc4\x12\x56\x99\x41\x00\x1f\xae\x63\x0b\x4e\x0d\xfe\x87\x75\x73" "\x6d\xac\x69\x55\x92\x7f\xf9\x1c\x88\xfb\x76\x60\xe1\xb9\x61\xb5\x15" "\xc4\xaa\xad\xb0\xf6\x1e\x6d\x74\x4c\xb9\xc2\xda\xa4\x0c\x6b\x76\xba" "\xd7\xf0\x2a\x61\x85\x24\x3a\x67\xaa\xcc\x46\x07\xac\x9a\xed\xff\xe6" "\x49\x21\xbc\x14\x74\xed\x7e\xfb\x2e\x33\xb0\x1b\x7f\x44\x3e\x85\xc2" "\x3f\xa9\xdb\xe4\x04\x57\xe1\xe0\x92\x48\x66\xba\x2d\x8e\x7d\xcd\xf4" "\x7d\x40\x31\xf1\xf7\x6f\x90\x7b\xb7\xa1\xcb\xbe\xbb\x3e\x4a\x3c\xf9" "\x68\x65\x0b\x6a\x91\xb5\x9a\xa3\xa6\xcb\xa2\x7a\x6b\xc4\x05\xe2\xbe" "\xf8\x32\x95\x9f\x95\x0c\x7f\x74\x85\x72\xb1\xcc\x39\xfd\x8d\xb3\x37" "\xfa\x81\x53\x4f\xa3\x9d\xa8\xaf\xa5\x94\xee\x01\xc5\x3d\xcb\x08\x52" "\xd9\x76\x1d\xdd\x95\x51\x10\x0d\xc5\xd1\x4c\x4b\xa4\x77\x79\xd9\xff" "\xbb\xbc\x88\xdf\x5b\x01\x4c\x5a\x21\x71\x42\xaa\x7a\x17\x70\xab\x28" "\xf9\xa3\x02\x35\x3a\xdf\x4e\xd0\x6e\x22\x5f\x15\xc6\xe3\xbe\x4a\x97" "\x96\xd6\x9b\x40\x5f\x05\x12\xd6\xde\x89\x25\x0c\x63\xe4\x95\x70\x97" "\xaf\x62\x8b\xd8\x15\xa9\x88\x4d\xeb\xf6\x9f\xb8\x46\x13\x35\xb0\x45" "\x68\x80\x4a\xdd\x11\x0c\x04\x84\x84\x7d\x20\xfd\x77\xd0\x1b\x36\x4c" "\x17\xfb\x93\x9f\x44\x1b\x62\xa7\x7e\x02\x21\xda\x56\x89\x42\xfd\x17" "\xcb\x96\x94\xe1\x2a\x5a\x2f\x06\x0b\x4d\xda\x08\x51\xee\x9b\xab\x7b" "\xf7\xa2\x5e\x49\xe5\xf1\x39\x07\xe9\xa6\x16\x27\x91\x8a\x95\xba\x66" "\xe6\x97\x5c\x28\x82\x4b\x98\xcb\x6d\xff\xf3\x41\xbe\x01\x94\xed\xf1" "\x4f\x98\xe0\xd8\xe8\x16\xc4\xa0\x34\x5a\x50\x25\x0f\xfc\x04\xff\x70" "\x93\xce\x32\x62\x86\x5e\x01\x6b\x87\x07\xe1\xff\xe0\x2e\x24\xf6\xb4" "\xaa\x95\xff\xc7\x65\x62\x68\xfe\xe5\x84\x3e\x79\xd0\x11\x74\xde\x0f" "\x47\x7b\x38\x79\x71\xf5\x21\x45\xa5\x62\x7a\x7c\x97\x5b\x04\x3f\x8e" "\x10\x41\x04\x76\xda\x3f\x2d\x69\x01\x33\xc8\xc5\xd0\xe0\x24\x60\xd6" "\x48\x54\x66\x82\x59\xb9\xe0\x4e\x3c\xd2\x23\xce\x26\x2a\x61\xeb\xb8" "\x99\xca\xbe\xe4\x7e\x59\x27\x21\xf8\xbe\xf9\x32\x39\x2b\x77\x55\xfe" "\x38\x38\x6f\x22\xeb\x22\x2b\x8d\x7e\x46\x3a\x99\x32\x18\x7f\x32\x05" "\xaa\x1c\xd8\x2d\xb8\x4c\x53\x3a\x28\x29\x64\x8a\x97\x31\xd3\x91\x8f" "\xb3\x2d\xff\x01\x41\x94\x41\x0e\x8d\xcf\x11\x55\x28\x6a\x96\x3b\x5f" "\xbb\xb7\x97\x86\x69\x6f\xf9\x0c\x28\x99\xbb\xcd\x59\x28\xa8\x60\xc1" "\xd2\xd4\xfe\x20\x8d\xcb\x02\xad\x34\xe4\x76\xe8\x37\xa6\xcc\xe7\x34" "\xf8\x88\xbf\x56\xcd\x3e\xb9\xe3\x67\x0a\x57\xb8\x6c\x99\x7d\x73\xcc" "\x07\xf0\x0e\xd3\x00\x60\xa9\x5b\xc7\xf7\x58\xf2\x9e\x80\xde\xc3\xe2" "\xb5\x4b\xf9\xb4\xc4\x65\xd1\xc7\x20\xb6\x46\x64\x28\x19\xe8\xab\x9a" "\xc4\x76\x7b\x66\xe6\x61\xaf\x64\x44\x37\xa4\x99\x40\x82\x13\xeb\x87" "\x33\x4f\xb7\x8f\x3b\xf4\x65\xd2\x9e\xbc\xd0\xc4\x92\xbc\x66\x5a\x92" "\xf0\x8c\xea\xbb\x5d\xfc\xbf\xe3\x24\xe8\xbc\xf6\xc4\x8a\xdb\xd4\xec" "\xd2\x17\x0a\x4c\x80\x28\x3c\x0d\x0a\x51\xfa\xf8\x51\xc0\x3c\xd6\x64" "\x34\x81\xe3\xe3\x45\xb7\xfc\xce\xdf\x92\x62\x60\xc6\xb8\x17\x19\xb4" "\x7b\x8e\x3d\x33\xaa\x8a\x5a\xac\xae\x40\xb8\x8b\x04\x7a\xbb\x08\x65" "\x2d\x2a\x34\xf8\xca\xc0\x74\x0d\xdd\xb9\x9f\x17\x4c\x66\x5c\x52\xe2" "\x27\x2a\x45\x76\x85\x49\x18\xe3\x60\x43\xfb\xf3\x9b\x9f\x36\xe2\xe7" "\xb3\xd3\xdc\x16\xee\x8d\x9d\x97\x52\x84\x29\xf9\x91\x65\xae\x1e\xc8" "\x11\x2a\x91\x5d\x9f\x6a\x19\x8c\x37\xb6\xdc\x9b\x85\x19\x84\x23\x35" "\x2d\x5c\xdc\xa4\x96\x2f\x96\x07\x4b\x59\xd8\x63\x2f\x9e\x88\x73\xd0" "\xb0\xcc\xc4\x5d\x58\xb5\xbb\x9e\x83\xa2\x72\xbb\x88\x16\xb0\x87\xbc" "\xc2\x1f\x2e\x1f\x92\xcf\x75\x7c\xc5\xa4\x90\x9e\xe1\xda\xa9\x01\x22" "\x14\x47\x59\x2d\x79\x2d\x53\x80\xc6\x26\x55\xef\x4e\x43\x35\xbd\xd2" "\xd2\x1a\xc7\xec\x5c\x26\x6d\x0d\x40\x5d\x67\xef\xa2\x00\x0b\xb6\xd9" "\x8c\x3d\x98\xe4\xab\x63\x1e\x18\xda\x55\x67\x8c\xcd\xa8\x63\xc6\xbd" "\xa6\xc8\xfa\xff\xe3\x06\x5f\x27\x35\x60\x6e\xf0\xb1\x3b\x16\xb2\x2f" "\xa2\x96\xf7\x36\x92\x5c\xcf\xbb\x5b\xe0\xb9\xe7\x90\x28\x50\x48\x85" "\xec\x1f\x93\xf6\x08\x38\x04\x10\xd1\xc0\x94\x38\xee\x66\xe9\x25\xb9" "\xdd\x0b\x1f\xf3\xf3\x97\x4f\xce\x98\xa0\x0b\x61\xdf\xe8\x1d\x64\x59" "\xb0\xcc\x4d\x51\xe3\x39\xf9\xbb\xcf\x73\x7f\x54\xaf\x5e\x99\xf0\x02" "\xcb\x40\x2e\x71\x8e\xfb\xaf\x69\xa9\xb3\x40\x29\x1e\xd3\xac\x1e\x8f" "\xc3\x2f\x95\xbc\x00\xac\xbf\x54\x3b\x01\xaf\x53\xc2\xe2\x66\x23\xb8" "\x45\x90\x29\x2b\xfa\xc3\xc3\xe8\xf4\xd5\x21\x0b\x3a\x17\xd8\xaf\x53" "\xdc\xd5\x19\x81\x79\x68\x0a\x34\xf2\x57\xc4\xb8\x09\xd3\x69\x24\xf8" "\x07\x3e\x94\x92\x91\x68\x30\xe9\x6d\x5c\x16\xb2\xe4\xd9\x80\x07\x7c" "\xef\x0e\xab\x19\x77\xb9\xfe\xbc\x31\xac\x44\x90\xfd\xf9\x5d\x6c\xf2" "\x2a\xd8\xee\xbd\x1c\x51\xe8\xf5\xc9\xfa\xf7\x70\xf4\xc1\x86\xd2\x72" "\xdf\xee\xad\xad\x66\xcd\x69\xa8\x95\x44\xd7\x95\x49\xfe\xb3\xd6\xba" "\x6e\x67\x81\x82\x57\xdd\xb8\xeb\xb1\x9a\xb7\xe5\xa3\x7c\x42\x36\xfe" "\x67\x13\x28\x55\xbc\x6e\x7c\x95\x78\xd6\x98\xc7\xab\x59\x98\x92\x20" "\x48\x86\x49\xc1\x7d\x67\x30\x77\x40\x82\xb5\x29\x5e\xa2\xa7\x84\x53" "\x88\xa8\x75\x2f\xe4\x59\xef\x96\xce\x01\x47\xa3\xe8\x39\xfa\x6d\x80" "\x6d\x5b\x79\x5e\x40\xea\x15\x3b\x55\xd8\x53\x85\xef\x81\x37\x23\x48" "\xe5\x96\x7b\x5b\xee\x60\x2b\xa2\x90\xb0\x84\x77\xee\x39\x60\x9d\xe9" "\x1f\xaf\xd2\x3f\xaa\x39\xfc\x77\xe7\x80\x4b\xa6\x25\x55\x64\x83\x4b" "\xba\x60\x31\x91\x88\x87\xd2\x39\x3d\xe3\x5e\x07\x87\xff\x16\x28\x2b" "\xf6\x30\x12\xcd\x2d\x5e\xbf\x42\x25\x10\x0d\xd2\x19\xab\xbe\x68\x7c" "\x8b\x82\x12\xba\xa4\xbd\xa2\x83\xdf\x17\xd6\x9c\x26\xda\xec\xb2\xa4" "\xe0\x82\x9e\x34\x7c\xf5\xbc\x14\xa9\x30\xab\x86\x3f\xbc\xfa\xbb\xf5" "\x0b\xd8\xa3\xf8\x14\xdb\xc8\xd0\xec\x0a\x70\x78\x33\x98\x10\x9d\xce" "\x83\x61\xeb\x42\xd3\x49\xf4\x34\x64\x28\x65\x7b\xe0\x0e\x0e\x78\xd1" "\x3d\x64\x1c\x88\xd2\x16\xd1\x4a\x23\x8d\xff\x26\xb8\x28\x3f\xd3\xf2" "\x3c\x42\xbb\x4e\x00\x17\x45\x83\x95\x00\xdd\xde\x24\xc7\x9d\x9c\xc1" "\x00\x7c\x85\xff\x31\x90\xc6\xfb\x0e\x43\x63\x9f\xa7\x73\x90\x11\x76" "\x25\x87\xf4\xb9\x38\x33\x79\x3d\x05\x36\xbd\xec\x12\xff\x58\xe7\xcc" "\x2d\xfd\x1a\x73\xae\x94\xd2\xab\x34\x00\x4a\x69\x77\x77\x1e\xf5\xeb" "\xd5\x04\x24\xcd\x63\xf0\x22\xb9\x8d\xf0\x09\x72\xec\x7d\xd0\xc7\x16" "\x23\xfe\x25\x3b\xd3\x74\xf8\xd1\x71\x78\x03\x6a\xb7\x30\x93\x28\xe6" "\xad\xc0\xdc\x40\x84\x96\xd9\x64\x7f\x8a\x96\x26\x58\x09\x48\x24\x80" "\x6f\x52\xa4\xbb\xb9\x55\x4f\xcd\xa3\x9c\x67\x5d\x03\x2b\xd2\x45\x49" "\x4d\x3d\xc7\xac\x95\x12\xc5\xc9\x20\x4b\x47\x09\x4c\xed\x50\x64\x67" "\x52\x1a\x87\x66\xf2\xf7\x77\x84\x74\x54\x95\x8d\xa9\x1e\xf6\x4d\xbb" "\x88\xc6\xec\x6e\xae\xe7\x45\x4f\x6a\x76\x58\x92\xbf\x38\x3f\xb5\x70" "\xb4\x90\x92\xe4\x7a\x39\xf6\x91\xea\xc8\x3d\x90\x79\x31\xf9\xe0\xa5" "\x3b\x30\x50\x36\xd4\x88\x57\x9b\xfd\xc7\x95\x05\x36\x0b\x09\x4b\x9e" "\x2e\x04\x93\x73\x6c\x93\x30\x78\x2f\x86\xfa\x72\x43\x74\xc7\x82\x2b" "\xc9\x33\xcb\x95\xf5\x13\x73\x12\x07\x11\x47\xf4\x3f\x0f\xa4\xca\x79" "\x7e\xfc\xb8\x58\x8a\x82\x6a\x94\x2c\x89\xb1\xb7\x6c\x48\x51\x6a\xce" "\xb6\x00\x2b\xaf\x23\x22\x22\x7f\x9a\x6d\xb0\x30\xbb\xf9\xe0\x1f\x16" "\x29\x0a\xb0\x78\x57\xf5\x48\xd0\xce\x77\x67\x5c\xa7\xe6\x07\x23\xa2" "\xdf\x55\x71\x61\x15\x4f\xe6\x5d\x16\x85\x3d\x3a\xdb\x20\xaa\x71\x5e" "\x86\x2b\xba\x4c\x20\xf3\x24\xcf\xa5\x92\x6d\x3d\x94\x4f\x65\xdb\x11" "\x3c\xbd\xf9\xee\xc8\x5a\x61\x16\x7b\x13\xc3\x7c\x51\xda\x2a\x7d\x2e" "\xe4\x8d\xa7\xba\x7f\xab\x0a\x41\xd0\x25\x4f\xbd\xd8\x1f\xb1\x15\x80" "\xc4\x66\xac\x8d\xda\x3c\x7b\x7c\xe0\xc1\xc1\x94\x8d\x6c\x31\x9d\xe0" "\xef\xeb\xe8\x1d\x92\x51\x1c\xfa\x27\x3b\x2e\x87\xa6\x89\x75\x93\xc3" "\xb0\x7e\xb4\x07\x2f\x4b\x3b\x24\x6b\xc8\xd0\x9a\x92\xf5\x63\x7f\x48" "\xc0\x41\xb1\x55\x67\x39\x9a\x60\xbe\x6f\xc1\x15\xfb\x05\x97\x55\x8e" "\xa5\x9d\x01\x41\x46\x02\x6d\x35\xd1\xa2\x9a\xa1\x78\x56\xb3\x9a\xa3" "\xd0\xdf\x33\x23\x94\xfe\xb1\xe4\xca\x4a\x66\x26\xaf\x29\x03\x39\x8b" "\xdf\x37\xa7\x38\xb7\x20\x2f\x7d\xf1\x62\x4b\xe1\xbf\x96\x3d\x9b\xd4" "\x26\x01\x3d\xd1\x56\xcb\x9b\xb8\x77\x45\xaf\x26\x69\x74\x87\x95\xb0" "\x89\x89\x75\xf1\xa6\x03\xe5\x8c\xbe\xc6\x79\xc3\x80\xc1\x22\x5e\x6f" "\x36\x21\x7f\x98\x6f\x61\x1f\x90\x6e\x19\x3c\x55\x97\xee\xe7\x85\xe7" "\xc4\x73\x14\xd5\xe0\xcf\xa8\x62\x3c\x95\x28\xa6\x3b\x93\x9d\xd9\x33" "\xf2\xf2\xda\x9d\x83\xc7\x6e\x7c\x69\xdf\x14\x36\xdf\x09\xd2\x4a\xf6" "\xec\xd3\x89\xd6\x8a\x7a\xcb\xc7\x6c\x25\xfe\x0f\x77\x3f\x3c\x33\x44" "\x75\x58\x76\xdd\xda\x1f\x1a\xdd\xf8\xe4\x65\x60\x79\xd7\x0b\xb4\xdb" "\x28\x82\x40\x8e\xef\xa5\x39\x86\xdd\x19\xb0\x84\x7c\xcd\x60\x2a\xaf" "\xbe\xab\x88\xb5\xfd\xe3\x4b\xb2\xb5\x60\x37\xc5\xe2\x60\x14\x6b\x4d" "\xb4\x3e\xa3\xb1\xc3\x97\x28\x8e\x7c\x38\xa9\x8d\xc2\x8b\x86\xa5\x4c" "\x75\xc1\x97\x1d\x1d\xdd\xbb\x94\x72\x45\x31\x19\x5c\xaa\xae\x42\xf6" "\xb4\xd2\x37\x41\xf8\x38\xbd\x27\xa1\x3c\x8f\xe6\xbe\x91\x1b\x9e\x52" "\xbd\xb8\x12\x22\xcd\x6b\xa4\x51\x91\x51\x98\xa8\xc3\xbb\xe1\xd8\xda" "\x24\x7f\x01\x81\xcc\xdc\x28\xc5\x3e\x19\xc6\x1b\x10\xcb\xfa\x6f\x53" "\xf8\x20\xad\xd7\xbf\xfb\x5c\xb4\x10\x9d\x8f\xaf\x74\xec\xf0\xb0\xce" "\x9d\xa5\x01\xc8\x84\xfe\x29\x7b\x6b\x41\xc6\xb2\x33\xda\x1d\xa3\x8d" "\xcb\x9e\x85\xb1\x25\xec\x59\x44\xd6\x6e\x93\x6a\xae\x2f\x60\xf5\x43" "\x97\xcf\xd9\xe0\x67\xfe\x96\xa4\xc5\xfd\x7b\xea\x78\x11\x54\x07\xd9" "\xa9\x2c\xb2\x69\x60\xad\xf1\x99\xc1\x68\xfa\xe2\x91\xc7\x3f\x1e\x59" "\x70\x1c\x0f\x12\x9c\x76\xd4\xde\x6e\x45\xe0\xc7\xd4\x40\x27\x11\x46" "\xc7\x22\x6a\x0a\x23\x7e\x3a\xb2\xf1\x31\x62\x40\x00\x13\xd4\x67\x40" "\x09\x5f\xe6\x91\xe8\xd2\x6f\x0a\xd7\x10\xef\x77\x8d\x73\xf8\x94\xbe" "\xc7\xdf\xec\xa3\x67\x8b\xd7\x86\x26\x49\x4e\x34\x17\x79\x03\xba\xd8" "\xfd\x4b\x02\xdb\xfc\x9f\xd6\xf4\x7f\xbe\x38\xc6\xae\x86\x7e\xd9\x82" "\xa5\x07\x7c\x57\x2d\x65\x40\xf2\x99\xbd\x83\xd9\xa5\x37\xd2\x75\x80" "\x9d\x9a\x9c\xba\x37\x01\xd1\x04\xaf\x27\xaa\x07\x14\xee\x46\xd3\xc5" "\x3f\x9a\x91\x3c\xaf\x8b\x1a\x50\xe4\xd8\x21\x42\x56\x19\xa4\x9d\x0b" "\x51\x15\xe8\xb2\x55\xbc\xb4\x0f\x02\xcc\xba\xbd\xcb\x4b\x38\xd5\x1e" "\xfe\xc8\xf9\xe2\x48\x1c\x28\x7c\x70\x42\x66\x18\x6d\x29\x68\x6f\xb2" "\x16\xa0\xfb\xe1\x42\x8d\x71\xb6\x31\x70\xb7\xa7\x0a\xfb\xb3\x17\x01" "\xa5\x15\x1b\xd4\x13\xee\x82\x02\x3e\x85\x30\x52\x5f\xf2\xa0\xf8\xdf" "\x19\xd9\xc9\x6d\x90\x54\x99\xbc\x71\xce\xc0\x0f\x72\x74\x8b\x73\x0b" "\xc7\x65\xfe\x43\x21\xe7\x01\x54\x4a\x6e\xc4\x21\x0f\x4b\x31\xa2\x3c" "\x46\x04\x04\xaa\x82\x02\xa0\x0e\xfb\x79\x98\x1e\xba\x57\x45\x77\x9b" "\xd8\x5a\x11\x7d\xb4\xc7\xd4\xa0\xc2\xc5\xa2\x86\xc1\xc9\x6f\x78\xd5" "\x79\x9f\x99\x00\x74\xe7\x57\x94\x75\xab\xe0\xb5\xed\xd6\x7d\xf9\x68" "\x11\x62\xda\xe2\x50\xd2\xa4\xa4\x27\x78\xc6\x12\xc9\x89\x88\xc6\x0e" "\x44\xef\xec\xa5\x57\x61\x95\xf0\xcc\xf9\x6f\x5e\xae\xae\xf3\x91\x04" "\x1f\xe6\x70\x5b\xbc\xa3\xe1\x6f\x74\x0d\xcf\x36\xf9\x8a\x8e\xd8\x9b" "\xa8\xa6\xae\x3e\x70\x24\x45\x11\x88\x1d\x98\x6c\xb9\xa0\x61\x1b\x5c" "\x49\x13\x84\xe5\x37\x42\x9c\x20\xfb\x6b\x07\x79\xc6\x79\xc1\xa8\x00" "\xfb\x68\x62\x08\xdf\x35\x10\x48\x44\xec\x5b\xee\x7c\x6c\x64\x24\xad" "\xe5\x59\x77\x89\x20\x15\xeb\x94\x27\xef\x8c\xfd\x6b\xd9\x5a\x32\x8c" "\xb0\x8b\x9b\xc6\xcb\x05\x40\x31\xdc\x62\xf7\x69\x7c\x76\xd3\xee\xd3" "\x02\x49\x7b\xaf\x42\x7f\xe2\x0b\xdd\x84\xad\xb4\xcc\xab\xcc\x19\x33" "\x4a\x3f\x2e\x78\x1a\xec\x1b\x34\x42\xb8\x15\x03\x1d\xcb\x93\xd1\x35" "\xde\x61\xa9\x8d\x1a\x44\x08\xdf\xac\xed\xc8\x27\x07\x31\x29\xe2\xf0" "\x18\xd7\x01\x6b\xaa\x20\x3b\x58\x4d\x8c\x6d\x13\xcd\x2b\x87\xad\x41" "\x76\x6b\xb7\x8f\x94\xb9\x8f\xc5\x10\x2c\x46\x9f\x46\x8f\x4d\xb3\x6e" "\x19\x6f\xca\x42\xc4\x49\x1d\xb0\xd9\xf5\xe8\xec\x16\xdb\x04\x1c\x36" "\x96\x34\x0f\x21\x1a\x43\x76\x48\x8c\xb3\x76\x71\x23\x66\xcb\x38\xfc" "\xd4\xa3\x1b\x04\x41\x3b\x99\x8a\x6e\x93\x4f\x6e\x80\x8b\x5c\x2f\x1f" "\x54\x6b\xa7\xb1\x51\xe3\x3d\x53\xd4\x87\x6e\x0a\xaa\x99\x63\x68\x2e" "\x0d\xda\x93\xb1\xa2\xd2\x4b\x0d\x01\x20\x00\x48\x07\xda\x61\x5d\xf1" "\xb2\x11\x7f\x31\xc3\xb7\x85\x72\x37\xb3\x2b\x28\xa6\x15\x99\xa1\x75" "\x11\x7c\x84\x1c\x83\x50\xec\x1a\x52\xb0\x2e\xde\x33\xdb\x0a\x6b\x3f" "\xda\x84\xc6\x75\x17\x99\x82\x9c\x33\xd0\xd3\x48\x82\x25\x60\x52\x90" "\xd2\x6b\x73\x39\x19\xce\xac\x9e\xbc\x3c\x81\x1a\xb5\x5c\x59\x08\x8b" "\x38\xbd\xdf\x9d\xd3\x6f\x4a\x02\x0e\x2a\xa9\x65\xfa\xb7\xdb\x35\x2e" "\x2c\x86\x80\x1b\x85\x04\xcc\xee\xb8\x5b\x3b\x79\x0f\x84\xf2\x2b\x1b" "\x39\x42\x3b\x14\x6c\xc6\x58\x88\x42\xaf\xfa\x2e\x51\x67\x47\x87\x51" "\x34\x1c\x44\xde\xa0\xc4\xf3\x2f\x22\x89\x8b\xda\x42\xb7\x5d\xcf\x80" "\xc1\xf8\xb1\x8d\x65\x3b\x86\x5e\xf9\x50\x8a\xd3\x79\x1c\x1a\xdc\x37" "\xac\xcd\xe6\x03\x38\x64\xde\x06\xa3\x86\x62\x8c\x11\x95\x25\x6a\xf6" "\x5e\x9f\xe8\x28\xd2\xfb\xd1\xfd\xee\x78\x9b\xf9\xb5\xe6\x8b\x2e\xf6" "\xfc\x8a\x26\xfb\xb3\x7b\xf0\x28\xac\x8d\x0d\xe9\x92\x2c\xf6\xd9\x2f" "\x25\x19\x36\x4d\xa7\x4b\x96\xd5\x3a\x2d\xab\x55\x8a\xfd\x30\x38\xc9" "\x51\x6e\x5f\x8d\xd3\x01\x4a\x0c\xfe\xf9\x07\x5a\x35\xe6\x8a\x9f\x51" "\x06\x56\xbf\xf1\x1f\x15\x04\x4d\x9e\x06\x2a\xaa\x51\xaf\x9d\x0d\xeb" "\x30\xad\xe8\x8f\x2b\x3a\xf1\x06\x65\x46\x98\x9c\x20\x62\xec\xde\x11" "\xb9\x86\xb1\x41\xf7\x66\x3d\x47\x3b\xa7\x2c\x01\xa2\x46\xae\x9a\x16" "\x5d\x68\x11\xfa\xc8\x64\x06\xda\xf1\xd0\xa9\x96\xf0\x96\xb6\xec\xbc" "\x12\x7f\x28\xed\xee\xde\xac\x4c\x26\xbb\x96\xe1\x8c\x71\x12\x05\xaa" "\xf2\x68\x5b\x3f\x32\x88\x2d\x5a\x4d\xaf\xce\x86\x3a\x9c\xcc\xb4\xc5" "\x2f\x19\x2c\x54\xab\xa2\xa6\x43\x8d\x9d\x03\x45\x0d\xa0\x65\x19\xa6" "\x53\x71\x98\x08\x38\x1d\x70\x85\x8f\x19\x77\x98\xc3\x23\x08\xd8\x62" "\x5e\xd5\x62\x36\x7f\x74\x3f\x1e\x02\x04\x58\xfb\x2a\xb9\xc9\x50\x66" "\x86\x45\x65\x88\xca\xfb\xb3\x70\x9c\x87\xad\x39\xc0\x9c\x2f\xe6\xf0" "\x95\xad\x8c\xd9\x7c\xf2\x38\xf1\x37\x53\x83\x16\x83\x04\xb8\xe1\xa8" "\x3c\xed\xfe\xc3\x65\x2f\xce\x5a\x7d\x77\x74\x35\x8f\x5a\x10\xd4\xad" "\x75\x41\xaa\xc5\xad\x80\xaf\x9e\xa8\xbb\x92\xce\x44\xf5\x15\x03\x48" "\xe2\x17\xbf\x68\xb3\xc8\x7f\x0e\xf3\x3f\x5e\x43\xc8\xf3\xd5\x84\xf3" "\x73\x2d\xf8\xe3\x3b\x6f\x72\x9d\x07\x64\x0f\x9b\x6e\x62\xfe\x9b\xe3" "\xe9\x8c\xc6\xad\x19\x41\x15\x17\x37\x86\xa7\x48\xd1\xa1\x9d\x1a\x34" "\x0a\x96\x1b\xcf\x1e\x66\xb4\x4b\xdc\xeb\xb9\x99\xc4\xc0\x79\xe0\xd2" "\x34\x4d\x5d\xc2\x84\x14\x27\x07\xe1\x69\x62\xcf\x33\x55\x71\x0e\xf9" "\x55\x2f\xcf\x3e\xf4\x6e\xd7\x61\xae\x06\xdf\x28\xd5\x45\x61\xb3\xdb" "\x51\xf7\xf2\x7f\x8d\x17\xd2\x86\x66\x4d\x00\xc8\xea\x5b\x3d\x67\x3e" "\x9f\x4f\xd2\xfd\x75\x5c\xe9\x57\xe5\x89\x24\xc4\xee\x66\x05\xc3\xa7" "\x7d\x3e\x76\x5d\x60\x33\xd1\x35\x35\xae\x0c\xc0\x38\x4b\x1b\xfe\x78" "\x7c\xb5\x8c\x64\x07\xd6\xca\x4c\x58\x27\x3e\x79\x56\x89\x25\x82\x9c" "\xf7\x40\x8c\xea\xb8\x66\xfc\xa4\x61\x99\x85\xb6\x73\x47\xe9\x7e\xf0" "\xfc\xe0\x71\x96\x07\x53\xbc\xc2\x44\x62\x56\xe8\xce\x95\x2c\x02\x69" "\x35\x33\xe3\x21\xc5\x4b\x15\x69\xcd\xf5\x8f\x39\x72\x7d\x7b\xcd\xb9" "\x60\xdf\xaf\x9b\x04\x26\x57\x33\xa8\x12\x89\xb2\x42\x0a\x84\xd4\x67" "\xad\x09\xdc\xb6\x1e\xa1\xa9\xde\xde\x70\xa2\x90\x6e\xd1\x95\x25\x40" "\x73\xce\xca\xec\x74\xa7\xaf\x00\x05\xf0\x43\xe3\x03\x60\x39\xf3\xa3" "\x0d\xd6\x47\xe1\xf1\x3f\xa2\xc2\xc5\x51\x0f\xdf\x04\xc0\xa5\x62\xea" "\x2f\xf9\x8b\xf1\x33\xc5\x43\xec\xba\x22\x41\x46\x48\x3b\x48\x01\xd4" "\x48\xc7\x93\x69\x33\x7c\xce\x26\xad\x5c\xf0\x9d\xa7\x70\x89\xc5\xed" "\x2f\xdc\x93\x0a\x47\xb9\x5f\x6a\x31\x67\x1a\xaf\x95\x4e\xe6\x74\x93" "\x4e\x25\x75\x0a\x50\x92\xfd\xb9\x34\xd8\x43\x92\xf4\x4c\x8b\xbf\xb5" "\x45\xeb\x05\x0a\x6b\xa0\xc4\x62\x5e\xde\x3f\xa9\x79\x44\xa5\xee\x86" "\xdd\x9c\x03\xf1\x79\x94\x72\x07\x6d\xf0\xed\x51\xcf\x41\x1a\x2f\x87" "\x53\xa4\x9d\x71\x03\x9f\x07\x3a\x06\x82\x97\x0f\xf4\x9b\x4f\x94\xef" "\xe2\x6e\x44\xdb\xa3\xf8\xd0\xf1\x97\x22\x8d\x1d\x79\xbf\xfd\x5d\xf6" "\xde\xba\xfc\xc8\x0b\x34\xd7\x6d\x93\x07\xc1\x55\xd6\xbf\x9a\x20\x4a" "\x00\xfd\x1a\x7e\xba\x62\xfd\xed\x3a\x18\x86\x41\xc9\xf2\x70\xd6\x6c" "\xce\xa8\x2d\x98\x51\x9d\x34\x49\x34\x56\x67\x01\xdb\x37\xf1\x6c\x35" "\xf2\x63\x8e\x30\xd1\x93\xd2\x4f\x05\x99\xaa\x55\x68\x8c\xaa\xcf\x78" "\x5c\x06\x23\x3d\x38\x07\x6b\x64\xd4\x0e\x2c\x30\x06\xb4\xa2\x8d\x0d" "\x85\x1d\x8f\x6b\xd0\x95\x39\x6c\x01\xe7\x49\x05\xee\x43\x34\xcc\xa4" "\xb5\xb2\xec\xcc\xf0\xcc\xa3\xd9\xba\xce\x41\xa9\x69\x48\xc5\xc1\xbe" "\x9f\xc0\x47\xe3\x69\x9f\x79\x63\x5e\xf5\x37\xff\x74\xb1\x4d\x7f\xdf" "\xdc\x68\xeb\xc3\x45\xb7\xdc\xc7\xf0\x73\x04\xea\x83\x35\x39\x0b\x67" "\x03\x16\x22\x10\xe1\xa8\xb1\x5d\x80\xbe\x31\x9d\x13\xe9\x1b\x4e\x72" "\x6e\xde\x7a\x3c\xc6\xda\x88\xa3\x60\x46\x6b\x63\x91\xad\x0d\x4e\x28" "\x5b\xcd\x33\x69\x4a\xae\xd5\xc6\xad\x09\x5d\x36\x05\x21\x45\x6e\xfa" "\x25\xb8\x89\x0d\x6e\x7a\x3b\x32\xc4\x5d\x7a\x23\x92\x06\x0a\x53\x08" "\xc8\xf3\xb3\x3b\x78\x21\xdd\x43\xa8\x0a\x0b\x21\x5b\x66\x5c\xea\x4e" "\xed\x08\xef\x79\x5d\xbc\x39\xcb\xfa\x80\x63\x6a\x43\x42\xf9\x12\x19" "\x03\x09\x76\x26\x45\x06\xc7\x03\x47\x09\x30\x87\x72\xa8\x8e\x3b\x52" "\x64\xb6\x1b\xaa\xcf\xeb\x5c\xad\xb3\xf4\xbb\x9d\xa6\xcd\xb2\x1a\xad" "\x61\xd2\x84\x80\xcb\xba\x2b\xe8\x48\x78\x7f\xc4\xe1\x19\xc5\x6e\x4b" "\xc9\xb8\xff\x12\x22\x75\x61\x23\xaf\x3a\x1a\x0f\x7e\x19\xad\x4e\xcc" "\x69\xc3\x98\xc4\xdf\xdd\x53\x0a\x9a\x20\x98\x23\xd1\x1e\x18\x0e\xd7" "\x4e\x26\x53\x7b\x64\x76\x81\xc2\xee\xfa\x90\xc8\x27\x46\x41\x8d\x46" "\x73\x81\xc1\xf1\x05\x55\x4c\xad\xb4\xea\x65\x39\x01\xcf\xb5\xcb\xd3" "\xf8\x72\x75\x31\x2f\x47\xb5\x71\x6f\xe7\xd1\xaa\xdf\x9d\x2c\xe7\x87" "\x0a\xb4\x29\x14\xd9\xf9\xd8\xeb\xe0\xd9\xc2\xf1\x5f\x54\x61\xe8\x83" "\x05\x34\x9c\x94\xd6\xcf\x69\x1e\xd1\x75\x47\x6b\x97\x8c\x12\xf0\x29" "\x08\xad\xf4\x01\x81\x84\x38\x20\x2f\x16\xe3\x72\x10\xe1\xb3\x07\xc3" "\x1a\x1d\xdf\x7f\x2d\x09\xbd\x8b\x04\x99\x3a\x0f\x70\x67\xf4\xef\x40" "\x68\xfe\x8f\xf8\xbb\x59\x8d\xda\x86\x52\x6c\x47\x66\xff\xad\x37\xa2" "\xc0\x68\xa4\x44\x2f\xb0\xc0\x84\x6d\x0c\x5e\x4e\x6b\x5a\x99\x74\x86" "\x84\x96\x19\x61\x97\x68\xbf\x85\xb4\x31\xd0\xf9\x51\x37\xfa\x67\x32" "\x07\x4d\x73\x21\xe1\x78\x6c\xcf\x1a\xe0\xf4\xf6\xb8\x68\xb8\x04\x62" "\xac\x01\xc3\xaa\xff\x88\x99\xbc\x50\xd2\xc8\xe6\xcc\x5e\xad\x98\xa7" "\xf2\x28\x18\x7a\x89\x0e\x94\xd6\xf2\x58\xe3\x42\x7b\x43\xd1\xa4\x94" "\x41\xd3\xda\xf1\x71\xb8\x0c\xfa\x29\x63\xa8\x06\x18\x85\xb6\x37\x71" "\xeb\xd1\xf2\x06\x95\xb9\x85\x56\xbf\xff\xcf\x0a\xf2\xec\x5d\x89\xf2" "\xc4\x39\xb5\x30\xe6\x6c\xfb\xcc\xca\x98\x7e\x8e\x01\x8b\x1b\xe0\x19" "\x0b\x26\x94\xe6\x83\x25\xcb\x57\x81\x89\x1a\xda\xc9\x24\x60\xbf\x48" "\xa8\x71\x6e\xfc\x09\x8b\x97\x16\xa0\x25\xc1\xd2\x08\xa9\xfc\x4e\x1c" "\x71\x2c\xbb\xa9\x88\x96\x49\x90\xa9\x61\x53\x06\x9c\x42\x2b\x5c\xb8" "\x1a\xdc\x04\x2e\xae\x84\x4e\x41\x77\x8a\xa9\x3a\x4d\x65\x77\x9e\x20" "\x8b\x71\x98\x71\xa2\x02\xff\x6f\xd3\x74\x03\x55\xf0\xb5\x1c\x7d\xc0" "\xbf\x42\x1a\xf5\xe9\xca\x89\x27\x64\x64\xe3\x88\x27\xc3\xce\x80\xf8" "\x90\xbd\xf7\x99\x4e\x6e\xb3\x27\xd4\xc9\x5b\xf8\xae\x31\xaf\xd8\x59" "\xdf\xe1\x61\xed\xee\xf2\x59\x02\x8c\xd4\xd1\x4b\x24\xcf\xea\x71\x7d" "\x5a\x9c\x30\x95\xb8\x33\x9b\x44\xba\xa7\x17\xc5\x51\x81\x7d\xaa\x56" "\x2f\x36\xf3\x9a\x1f\xc8\x05\xd2\x6e\xcf\x80\x42\x67\x30\xb1\x36\x2d" "\x0c\x90\xf0\xd3\x68\x4d\xdb\xfe\x7c\x28\x2f\x1d\x52\x85\x9b\x22\x4e" "\x11\x82\xc7\x70\xb3\x5c\xbf\x9e\xdd\x96\x41\xc3\x0b\x84\xe8\xba\x07" "\x21\x2e\x5a\xdc\xd7\x03\x32\x27\xdd\xfc\xab\xeb\x0a\x6e\xf6\x0c\x1c" "\xb6\x1f\x17\x83\xfb\x7c\xda\x67\x61\x85\x4d\xf6\xf4\x21\x75\x30\x94" "\x2e\x25\x9c\xed\x86\xf8\x23\xc8\x99\xb8\x11\xe9\x0d\xfc\x62\x84\xcf" "\xf9\x8c\x3c\xfc\x3a\x16\xf3\x6e\x74\x58\xd3\xd0\xf2\xb8\xa7", 8192); *(uint64_t*)0x200000000c40 = 0; *(uint64_t*)0x200000000c48 = 0; *(uint64_t*)0x200000000c50 = 0; *(uint64_t*)0x200000000c58 = 0; *(uint64_t*)0x200000000c60 = 0; *(uint64_t*)0x200000000c68 = 0; *(uint64_t*)0x200000000c70 = 0; *(uint64_t*)0x200000000c78 = 0; *(uint64_t*)0x200000000c80 = 0; *(uint64_t*)0x200000000c88 = 0; *(uint64_t*)0x200000000c90 = 0; *(uint64_t*)0x200000000c98 = 0x200000000780; *(uint32_t*)0x200000000780 = 0x90; *(uint32_t*)0x200000000784 = 0; *(uint64_t*)0x200000000788 = 4; *(uint64_t*)0x200000000790 = 1; *(uint64_t*)0x200000000798 = 2; *(uint64_t*)0x2000000007a0 = 5; *(uint64_t*)0x2000000007a8 = 0; *(uint32_t*)0x2000000007b0 = 0x80; *(uint32_t*)0x2000000007b4 = 0; *(uint64_t*)0x2000000007b8 = 4; *(uint64_t*)0x2000000007c0 = 0xe; *(uint64_t*)0x2000000007c8 = 0x8000000000000001; *(uint64_t*)0x2000000007d0 = 7; *(uint64_t*)0x2000000007d8 = 0x1a; *(uint64_t*)0x2000000007e0 = 0x800; *(uint32_t*)0x2000000007e8 = 0xfffffffa; *(uint32_t*)0x2000000007ec = 0xfffffe01; *(uint32_t*)0x2000000007f0 = 0x400; *(uint32_t*)0x2000000007f4 = 0x1000; *(uint32_t*)0x2000000007f8 = 4; *(uint32_t*)0x2000000007fc = r[2]; *(uint32_t*)0x200000000800 = r[3]; *(uint32_t*)0x200000000804 = 6; *(uint32_t*)0x200000000808 = 0xda5c; *(uint32_t*)0x20000000080c = 0; *(uint64_t*)0x200000000ca0 = 0; *(uint64_t*)0x200000000ca8 = 0; *(uint64_t*)0x200000000cb0 = 0; *(uint64_t*)0x200000000cb8 = 0; *(uint64_t*)0x200000000cc0 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000002140, /*len=*/0x2000, /*res=*/0x200000000c40); 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; }