// https://syzkaller.appspot.com/bug?id=768cdd063a055688486902391bed3840da0feccf // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include 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*)0x200000000040, "./file0\000", 8); syscall(__NR_mkdir, /*path=*/0x200000000040ul, /*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 = 0x2 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_fuse memcpy((void*)0x200000002080, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000002080ul, /*flags=*/2, /*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 30 34 30 30 30 30 2c 75 73 // 65 72 5f 69 64 3d} (length 0x2a) // } // 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*)0x2000000020c0, "./file0\000", 8); memcpy((void*)0x200000002100, "fuse\000", 5); memcpy((void*)0x200000002140, "fd=", 3); sprintf((char*)0x200000002143, "0x%016llx", (long long)r[0]); memcpy((void*)0x200000002155, ",rootmode=00000000000000000040000,user_id=", 42); sprintf((char*)0x20000000217f, "%020llu", (long long)0); memcpy((void*)0x200000002193, ",group_id=", 10); sprintf((char*)0x20000000219d, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x2000000020c0ul, /*type=*/0x200000002100ul, /*flags=*/0ul, /*opts=*/0x200000002140ul); 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=*/0x200000002600ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint64_t*)0x200000002608; r[2] = *(uint32_t*)0x200000002610; r[3] = *(uint32_t*)0x200000002614; } break; case 4: // write$FUSE_IOCTL arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_ioctl_out]] { // fuse_out_t[fuse_unique, fuse_ioctl_out] { // len: len = 0x20 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_ioctl_out { // res: int32 = 0x7 (4 bytes) // flags: fuse_ioctl_flags = 0x0 (4 bytes) // in_iovs: int32 = 0x100 (4 bytes) // out_iovs: int32 = 0x1c80 (4 bytes) // } // } // } // len: bytesize = 0x20 (8 bytes) // ] *(uint32_t*)0x200000004640 = 0x20; *(uint32_t*)0x200000004644 = 0; *(uint64_t*)0x200000004648 = r[1]; *(uint32_t*)0x200000004650 = 7; *(uint32_t*)0x200000004654 = 0; *(uint32_t*)0x200000004658 = 0x100; *(uint32_t*)0x20000000465c = 0x1c80; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000004640ul, /*len=*/0x20ul); break; case 5: // mount$incfs arguments: [ // src: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {69 6e 63 72 65 6d 65 6e 74 61 6c 2d 66 73 00} (length 0xf) // } // flags: mount_flags = 0x82 (8 bytes) // opts: nil // ] memcpy((void*)0x200000000000, "./file0\000", 8); memcpy((void*)0x200000000140, "./file0\000", 8); memcpy((void*)0x200000000200, "incremental-fs\000", 15); syscall(__NR_mount, /*src=*/0x200000000000ul, /*dst=*/0x200000000140ul, /*type=*/0x200000000200ul, /*flags=MS_NOSUID|MS_DIRSYNC*/ 0x82ul, /*opts=*/0ul); break; case 6: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {71 70 da 85 8e 84 58 c9 0c 70 ba aa 67 fc bc 8f cb 50 c8 46 // a7 6e 6b 1b 86 6c 34 32 80 6a f6 21 5e 14 c6 9c 4f dc 5c 9d 40 9f b6 // 7a 15 30 1a 3f 4f d6 8f 2e e2 33 ee e4 8e 7c 86 04 3c 9b 2e c0 43 f6 // 2f 43 ac c3 41 ce 87 93 2b d5 c8 06 88 ba 04 7f ab 9c 6b c5 03 e1 10 // 97 05 40 a2 fa 9a f3 75 c0 7a cd 01 00 97 b2 8d 64 cb 81 a6 15 e8 f7 // d5 c9 6c d9 72 d1 3c 5e 5c 07 0b ea 4e 3b 1b 4c 7e 82 bb 0a 25 88 44 // 78 d0 7f d0 a1 88 46 7f 3b de fe 9a 8e bd 7a 29 2b a2 b2 d3 fb 06 07 // 5e 36 db 31 7c bf 7b e9 9e 50 01 cd 98 d1 f2 e6 8a cd 91 75 49 63 ee // 4c 80 61 d1 85 a3 e5 ef a9 67 9b 0a de 6f 8d b0 8d df 81 2d 85 a4 cf // a7 dd c9 9d 34 8b e6 24 8a 1a 83 ca fa 31 80 7b af ca 1e 70 81 f4 bc // 11 0b ce 20 f9 8e cc a4 7c 40 89 7b 4e 77 84 6a 5c f6 5c b3 2f 23 be // 34 e4 a8 4b df 3e c7 a9 40 66 a1 c7 e5 f6 cc f2 f5 57 f6 cb 1b 0f a8 // 0e 8f 24 f8 49 3c de f7 e8 37 f1 33 7a 27 46 29 72 8b 6f 69 12 fb 45 // d1 b3 81 b2 18 4d 7f 27 ae 40 b5 81 6f ea 41 d2 05 a3 8b 96 25 61 83 // 72 a7 be d9 46 47 14 19 9c ed 46 d3 de f8 75 40 5a aa 1a 04 aa 35 ef // 1e 24 d0 95 d1 18 92 24 5a 1a 16 da 29 05 78 6e 86 34 3e 6d ec d9 96 // 83 a1 61 99 ff 8a 7e 99 11 e9 41 2b 45 cd e5 20 0c f8 62 b3 09 6d bb // ff 76 6d 05 8f 07 b0 eb 72 dd d8 35 5b c1 91 5c aa 6e 0f 1f 3f fe b8 // 4b 20 c1 76 12 e5 61 d8 39 a7 f0 89 a1 c3 fa a1 45 41 6a ff 5e 08 57 // b9 be 5d a2 89 d7 a1 78 c2 78 06 95 d0 fe 87 0d de 4d 45 1d ff de 01 // 11 7e 9a 27 4a cd a9 02 e1 9c f3 b2 d8 82 07 57 fe 3e 62 15 17 84 4f // dd a6 b6 42 4d 5a b6 ec f1 7f 23 90 74 af 77 64 76 62 3a 4a 5c cd 9b // f3 e0 49 3f b8 8f 43 3b b5 3c 54 de 68 de 7a cc a2 d6 fd 53 6e f4 f3 // 13 23 b5 a4 5d b4 aa f9 ee 80 04 46 12 99 78 c0 3b 25 a7 55 9e 5a ea // 05 80 5b 9c d2 d9 e3 68 b5 cd 6b 96 11 3e ef ed 23 75 78 ed 2c 71 d1 // 71 c0 4e 3c a4 a2 af 2b ad 4c d9 60 41 c8 13 ef f1 19 2b e4 e0 c5 f1 // 37 7f 32 56 d9 d2 72 5e 10 32 ec 7a b2 ca 85 a0 93 2e 8d b8 2b 95 8b // 3f 39 15 4f b4 26 6b de 20 d1 74 e4 89 0d a0 73 a0 6d 44 8d a5 ff 76 // 60 9c d9 5a f5 af 2a e0 e2 bf e3 15 3b 4c 47 39 42 38 4f ef ee 5a fc // 81 16 0b ed 86 a0 9e 1c 2b 8a 05 3d 20 eb 3d 97 b3 6b d3 81 52 a9 7b // 7a 91 90 fe 43 ff ab d1 99 38 c8 3a 44 3f db 5d 74 1f 83 25 bb be f5 // 55 16 3b 6c f9 68 8d ee 8c a5 c7 f3 e7 50 1e 82 7c 5b e6 0d fc cc d5 // 43 97 4b 2c bd eb c2 7b f6 50 52 86 28 9f c7 a8 95 52 63 4d 77 35 73 // bd 76 86 59 9f c4 7b 29 97 d2 e5 52 95 f3 21 b6 33 fa 1e 9d c1 79 1b // 31 9e 19 10 cc 2a 86 b7 cd b4 5f dc 9e 27 7a e3 42 17 5b 8e 1d 02 25 // 32 0e 42 89 7a 1c 05 a8 16 b9 77 42 5d 70 b0 8e 7a 28 75 6d cf 7b 8c // 1d 4d 89 ae 86 25 4f 5f 53 23 4a bd 0e 1c 03 44 91 a9 b2 5b ec 0e c6 // c1 0f ff a5 88 60 7b fd 1f 76 ad bc 3b d1 57 f2 8d 20 2b 93 ff 64 29 // 22 cb c8 c9 54 dc 4e fc 22 c0 5a aa 98 dc 6a 6c b0 14 cc 7d 72 b4 3c // 95 de 99 f7 4e 89 e3 6f 29 5b c1 22 25 b8 bb c3 b4 54 40 2b e1 0c c4 // 9b c8 b5 ce 6c 79 e4 45 99 ad f3 06 13 89 7f 63 08 8b 48 42 54 f4 03 // 63 c7 fa 49 37 30 34 3a 2c 3f 10 0e 2c 84 84 66 a5 ad c4 91 54 bb 95 // 77 b2 86 df 10 07 25 a2 d1 c8 e1 3d f6 74 a9 01 be cc a8 37 81 5c 09 // 51 1a 75 86 51 40 af 34 af e7 c6 8c 87 0b 63 97 f8 6e aa ae 78 f2 0c // bd 1a 96 30 8a 16 90 50 3f 73 c0 88 1f a8 37 c5 26 b1 dd 63 47 17 49 // 53 41 09 bc 93 97 31 ee aa 4f b1 7f 59 bd d1 bf 15 84 f2 21 c6 6e 18 // 98 da 09 d4 fd ea b3 3d de af a6 14 0a 8d e5 05 91 ff 9e 18 e4 e6 c5 // 90 d2 1a 44 0b 2b d1 fc 91 3b 16 66 d1 c7 83 2b 5a c0 fa b0 ad c2 39 // 25 ea 9c b1 9a 9d 7f 18 59 01 fd 4d 83 49 38 f5 96 a2 4b 1b 9f 77 de // 20 55 02 52 fa 72 e4 a1 af 4e f4 0d 96 ea d5 d6 8c ed e4 2d 68 de 62 // 41 15 17 73 a3 77 5e b4 94 9d 5c c6 08 82 ee b0 e5 28 82 a7 2c f0 d7 // e6 3b ac 59 e7 16 88 33 f4 97 79 09 00 59 f6 ef 56 8e 58 9d fc 0a 7d // e2 5b 6b fd 70 7d 8d b8 f7 4a 08 b2 b9 e1 5e ba a0 65 27 f0 dd 79 c4 // cf d7 c3 63 c8 e5 6a a6 9a 6c be 99 b6 59 d3 30 70 74 8c 0a 5b 3c 93 // 80 83 a8 92 e6 5e 6d e1 b3 56 10 83 5c b3 7c d3 17 64 1b ec 66 55 c2 // ce 8a 83 e7 84 9e d6 21 88 09 21 6e 84 7f 0e 49 ca a4 7d 11 fb 3a 82 // 6d 21 c9 fb 24 c0 c6 69 04 99 3a c8 c3 6a b1 88 35 e1 50 12 8e 86 49 // 98 f1 0b 50 71 cf 0b 70 74 ae d4 0c 2b 0f ed 7f 10 53 14 df 8b c2 5a // f2 80 66 0f 24 eb ac 73 ea 4d 25 31 31 4f ea 61 94 db 37 17 17 fa ba // 0b b4 c1 23 5f de b3 4c da 8f 3e 09 85 fa 85 75 da 45 95 1e 78 80 8f // d3 51 d1 7a 36 f7 c3 76 68 b4 e8 52 06 63 cd d2 d3 6c 2b 3d fc f3 2a // cc dd b5 fc fd 3e 6c f6 33 c9 f9 17 5f 07 0a ea d6 7f 98 d9 83 73 88 // 23 32 f2 87 29 02 6d d8 52 25 d0 77 5e 6b 4e d2 07 7f 13 22 a4 49 c9 // 5c 2b a8 31 e5 4f 84 88 cf c1 68 f6 95 de ef d4 9b 1c 80 2a 9e 97 3c // 55 62 0a ae e4 8b 49 6c dc dc ac 27 83 f5 41 76 ec 00 3a 1f 79 6f a0 // ce 34 95 7f 73 17 df 72 d5 4c 37 6c 27 be fe 70 7a 85 97 54 a3 a9 61 // 4d a9 13 c1 22 de 38 1d 47 f7 7c 31 a2 83 dd 00 31 ff 02 b5 d4 9d 0c // 67 e8 a6 61 69 ca 5d 16 72 e7 46 08 93 02 d5 b2 4b 28 79 93 7b 4e 4e // 7f 8b 65 73 2e 95 ee f5 5e 3a 1c 37 68 45 e9 75 b4 5f 4e 2b d5 e8 7f // fa 72 8d d8 19 ac 30 30 16 7d 29 62 06 61 94 c3 14 3b a9 21 7e 07 72 // 72 bb e3 1a 1e 98 c6 18 3d ef 69 81 91 1e f2 c7 68 56 6d 7a 94 d3 69 // 5b 24 04 64 29 3d d6 56 53 d8 3c 8e 31 6e dc c6 0d 23 cf 41 53 aa 8e // 4b f5 0d 48 68 89 7b 56 6a 9e 3e d6 a6 d0 57 df 7b da a3 d0 e1 e8 43 // e1 02 cf 6b 95 4b ae e0 dd f0 d9 24 2e e2 ab 69 d6 15 ae 9f 8a 03 ba // 0a 55 5d 2e d2 03 d3 93 b0 84 56 ea 84 a1 1d 93 3a fe 4b c6 a9 ae f2 // 69 da e6 26 d4 eb 61 e0 d4 b5 33 f2 26 95 8e 64 cc 4d e6 31 63 f8 f5 // 83 ba 18 37 51 0a 45 8b 89 c5 0a 59 e9 90 78 98 d3 0e 0d fd 94 3c 18 // 6d 24 fd 07 f5 7d 78 27 44 0e fa ab c9 61 9c 1f 87 97 40 db 56 a9 6c // b8 12 35 c6 75 e5 f4 86 ae 84 df 49 fe a1 7c 90 6e cc e8 14 1a a2 88 // c0 24 6a c3 3e 62 c5 c0 cd 62 d9 99 15 14 0e e4 39 15 ba 0c 19 41 bf // 46 5e 06 63 82 68 96 58 cb e8 c9 91 07 9b bd bb 0c 88 3f 90 7e ce 41 // 54 ec c3 94 4c 02 e4 7f 24 d4 ec 17 aa 99 d9 7f 42 07 10 93 e1 3f 63 // 28 67 63 6b 95 4f eb a4 03 ff 40 bc c3 8d 16 33 e4 98 6d a3 23 e8 6f // 16 b2 73 b8 a7 65 67 c2 d8 c9 5f e7 17 7e f2 da b1 c8 59 63 58 21 1d // 35 e8 99 cf 6a 4a 2a 00 30 99 50 bd ef 9f c6 4f 43 cc 36 68 12 33 1e // 56 f6 df 89 17 f4 08 d3 df 3a 96 6c 8d 35 f3 61 eb 64 93 f9 14 da 58 // b3 48 dd 18 28 cf fd d6 7a 57 f2 ee 0d 70 f5 0f 3d 12 63 da bb e0 49 // f3 a6 be ce 0b 12 b2 27 1c f2 73 44 60 c9 8b 52 27 96 c1 ee 9b 1a 20 // 41 3b e1 c4 23 63 49 7e e1 0d c3 6a 1f fc 10 7a d5 e7 62 e8 e4 82 68 // 55 c7 84 f8 3b 67 b3 43 74 26 8d 44 50 6d e6 c5 63 26 6b d5 af a7 14 // b6 49 81 10 06 d9 23 77 86 54 03 87 3e 52 58 31 81 f6 7e 35 e7 a7 60 // 04 b4 4f c5 fa ec db 49 39 e4 48 a3 63 ad 2d 99 7f ef 8e f7 b3 85 c5 // 61 f2 e2 1b f0 20 8b 72 f3 55 44 d0 7c 2f 67 77 ad c6 c6 be 85 8f 47 // 72 4c 34 e4 81 da a8 8a 23 12 81 80 e1 ac d1 6e aa 53 27 aa 31 fb 65 // 41 48 9b 13 1e 96 7b 8f 0a 43 18 7c a6 13 2e 5b 99 81 23 8b 4d 1a b8 // a1 1c 1a c6 10 03 9f 47 67 12 f1 80 b2 ca 74 89 93 6e 9e 47 98 ef fb // 63 2e 5f 65 aa 52 18 58 30 62 5a a9 69 62 64 fc 81 50 23 88 d7 88 fe // 7c de 5d 5e 41 5a ce 6a d5 e9 5a f8 c6 15 a2 69 4f 67 b3 94 42 79 4b // f5 ef dc 20 a5 bb aa 9d 7d 59 66 03 57 a6 9b df 31 25 7f 88 ca 4d 8e // 25 eb 8d 8d ca ed d4 5b 87 42 cb 5b be bc e2 6f ce 78 0a f9 66 6a c3 // 6f 8d 39 5e 2c 81 98 c6 24 2a 52 6e a8 a7 ea 35 7b 95 07 be 40 4b 25 // 16 cf a1 b1 8e 3b d0 3c 36 ba 48 cc eb 38 11 cd b5 84 5d 48 a8 6f 16 // 9f 6b a5 71 5d b7 b7 fc 7c c1 0d 70 69 d3 00 c3 c0 71 6c 6a 5d 9e e0 // 3d 93 c0 e9 56 36 78 85 bc d1 d1 2a a0 75 6c 07 1f f8 94 bf 0c bc 44 // b7 0f a7 22 b3 ce ac ee 3d 35 41 9c 3e 22 ac bb 44 34 13 27 bb 4a d5 // 61 12 49 75 72 38 2c 23 08 a2 d0 3c 31 e8 b6 ec 6a ff 5e 3f da 5e af // 21 03 d0 91 49 17 5c 5a 3c ed 71 34 be 1b ea b9 e3 18 02 82 32 24 b5 // 84 cb 10 27 86 f7 90 c0 c1 06 b7 37 1d df 71 83 c6 bd c3 e7 7a d9 f8 // 3f 2a 95 1f 69 c3 43 9a 0d 92 c9 c8 68 17 a0 0e 2d db 88 3f 38 a1 ea // 75 75 3f 66 d7 79 0c 43 67 dc c7 15 22 f7 cd 1a 56 1a 43 aa dc 07 5b // 12 80 6d 73 f6 e0 b1 88 20 8c 8f 35 ae 9b 70 a9 88 fb e6 df e3 db 2d // 53 19 31 a0 91 f0 54 ff 7a 15 b3 c2 f9 e5 6d 13 cd 45 a4 5a db 1a 6f // 52 8e 6c fc 5a 1d 3f 2c c7 5c ef c7 4e a4 64 05 95 bb a3 18 04 dd 12 // a7 9d 79 e2 9f 11 76 29 16 df df cf 9b c1 96 10 6f c5 62 8a e3 cc 6e // fd b0 de 4e be 6a 5c 27 90 aa 0f e2 88 e3 d4 b6 e8 3f ab a3 a7 b2 bd // fa d1 0c 5f e7 a5 b6 54 93 f6 3c f1 ff 5b 5f 47 02 81 e2 d1 fc 60 15 // 09 78 31 d3 5a 13 e4 e9 b1 f4 6c 2d cc 4b 0d 37 9e 41 9e d9 e8 50 9c // cd a4 ba 22 a2 3d 8a 78 9c 36 9c 05 b1 64 eb 39 88 14 42 f8 c5 67 7d // be e3 97 4c e8 33 a1 f7 f9 1f 0e cc d5 d4 38 8d f5 26 79 fa 55 48 3f // 8f fd a5 57 87 7f 8c 46 7f 90 2b a5 67 48 98 6c 71 9e eb 7a bf 0c 42 // f1 d8 6d 96 c2 b7 c3 c5 2e a9 5f 3c 22 4b 71 03 ce 43 e4 02 f1 1b 52 // 95 32 12 8e 67 f3 2a e1 ce c3 13 e7 e1 67 1e e2 f2 44 19 4d 93 33 37 // e7 7f 74 20 26 67 25 7e 31 11 ca cf 0e 33 4d ff 38 13 3d 88 fd 83 93 // 05 8e 71 a5 22 02 ed 3c c1 76 c4 ca 71 0e a0 72 c4 b1 03 ca 4a 54 81 // 9e c4 6d a6 e0 5b 9e 69 13 43 93 41 25 3b 76 4e b5 82 36 79 aa f5 20 // 7e 7f 42 9b a8 9e a9 2c 5e c0 ad 24 9d 3a b2 37 e6 6b 0e 39 58 6f 9b // 30 2e 39 d5 32 8a 11 79 a5 f7 70 0d 14 15 c0 43 6a cb dd 0f 69 79 b3 // 4a 1d 20 4b 5b 52 37 88 17 15 2a 01 f9 91 bc b3 0d 33 1b 5d d6 64 69 // e5 27 c9 68 46 fa 9c dc 44 6b b7 b2 a8 fb f9 56 d6 64 12 a9 3e 0d 8d // 23 66 fe fb e5 07 94 3b e6 ee f7 ac 23 df 4b bb 7d 82 38 4e e8 84 0c // b8 ef 52 99 8c b9 2c cb 10 8d e3 e0 b0 a9 f4 26 e8 93 7d 81 2c 3c c8 // 03 42 c4 c0 5a a6 4b 76 7b c8 5a e1 e1 e4 d7 18 9e c8 ae 12 2d 0a 56 // 4c ae 21 c2 23 6d 84 be ec 44 4f 42 94 18 5b 41 5d 2e 09 c4 c9 f1 2e // 78 21 d7 43 e3 50 f6 38 9c 66 32 2e 0a 78 3c aa 0d 54 3a ef 1e 9d 54 // 91 aa 2d e3 42 19 8c a3 c7 4d 5d e2 1e a2 d7 80 22 0a 16 5d ce f7 89 // 45 30 2f c8 c4 00 af 66 b4 e7 83 df d9 9c 2a 10 0e b2 31 48 b4 e6 64 // 73 fb b2 b9 ac be 20 9a 9c 38 bb e4 c1 ac 63 e8 01 ca 82 b0 b4 2d de // 0c 51 27 a4 13 3e a4 88 51 f1 54 e4 d8 78 5c 63 39 d2 84 4f f3 28 1f // 42 45 57 56 1e 00 d3 8b 7d 66 a3 2d 40 c4 e9 1c 3c 30 d5 a3 12 6b c5 // b0 60 e7 f2 2c 2f 1a 08 13 a1 2f 36 95 ad 44 91 86 ec 43 49 b4 c2 8b // fe 57 69 61 3f ce 4f 83 20 a5 ab d8 a4 94 cf 6f d1 ce b8 9c 05 ee e1 // cf 9b f0 d3 e7 89 96 aa 69 1e b0 57 1b 64 27 ee a2 7b 7a 49 aa ef ae // f8 d3 bb ad ae e2 8a 44 f6 ba 21 26 f9 43 a7 62 6a dd 30 34 30 0e 10 // cd 91 44 8d 15 55 b0 ab 7d af 88 91 3b 40 06 39 8b ca 40 f3 52 60 86 // ae 5d f6 99 00 e4 0a b6 bf 53 fb f3 8d 45 61 aa bb c3 11 3c 45 f6 ab // 7b 71 45 1c b2 96 bb 7b 6e 99 76 e1 01 94 d4 c6 35 9e 2d 80 37 11 75 // 7b ae 8b 2b 8f 41 0d 69 24 10 7a 45 17 e4 c1 d9 22 fc a0 e8 81 53 7b // 39 c8 cf f3 4b b7 d9 9f 32 6e cf 3d 9f 75 a5 5b 2a 82 a9 78 5a dc 19 // d7 8f b0 64 b4 e9 cb ee 1c a8 2c d8 08 28 31 a7 2e e5 3f a8 db 60 5b // f2 12 77 b8 c6 d9 ee d8 77 dd 06 ce 08 5b d5 71 8b b4 9e e4 0c b7 66 // f7 91 c5 84 8f 47 b1 f8 af df 88 56 c3 1c 8c 74 0d 25 af 58 f2 86 22 // 69 7b e5 9d 3e 8d 4b 24 56 13 2c 86 2c 2e 8b ed 75 13 83 38 23 f4 a4 // 14 76 b4 bb 92 5a fd 1a 73 d5 c2 09 44 03 58 c9 16 ab e6 52 dd af 05 // 94 2a f3 61 88 78 87 2a 0b 65 82 48 3a fe cd b2 d2 c1 05 d8 f9 cd 4d // 6a 61 ef bd 5f 53 90 86 90 de 6b 70 ca b0 d7 cd 11 75 7a c7 7f 39 40 // 86 6b 2b 15 bd 27 ed 96 1f 5e a7 04 34 70 d1 d4 2e 39 4e 7e 5a 81 d5 // e4 bc 61 8c ee 0e 3c 7f 00 46 35 b4 44 47 7c 3d 07 56 84 8f 5c 22 ee // 10 d8 7f 4f f9 ef c5 b2 a9 05 d7 99 86 8f 44 79 f6 b2 d9 d0 5c 90 6f // 02 a7 df d5 18 37 3d 85 9b 64 93 e3 9c 46 6a 25 a7 6d 97 ca 7c 5d e8 // 4e 8c 14 07 a9 f6 38 c0 6b 17 96 7d 9e 0d d2 9f b0 f7 42 4c 06 99 29 // a1 5e f7 20 28 0b c7 ca 2c 9a d2 5f 8a 71 ff cc 4c a3 ae b8 d4 31 19 // 8f 46 fc f8 ee d5 ab fd 57 4e 8c 05 39 50 b5 4d 4a c1 9e ea d6 6a 61 // af a0 55 64 2a f8 93 6e bb 37 17 3e 2d ba e4 cf f3 8f be dd 4d 3c 92 // 00 27 8e 16 a6 06 c7 5a 65 39 80 b3 91 89 52 28 c1 74 e5 f9 f8 4e 2c // 17 f6 93 d0 9f c3 c8 ea 28 86 49 b0 20 34 ac b9 de 5b 16 a9 c2 6b b8 // 4b a5 b4 b8 00 af 77 ed 0d eb 5e b5 a4 fe f0 1f e0 0d 6e 7c a1 f6 9d // 02 f0 d9 7d c9 d9 93 2e fb c9 07 41 2e 50 43 c9 4b a0 de eb 5e 0f bf // e4 2c f8 bb 4e bc 64 95 e6 04 0b c1 a8 15 c2 e4 29 c4 9f 85 3b d7 c6 // b3 dd b1 b7 fa 4a f0 24 62 3c 1b 38 eb b6 38 0e d3 52 dc 10 36 d1 c2 // f6 5b 59 a3 e2 de 36 e6 a9 54 21 89 06 0b 07 8a 7b da 3f f8 94 e2 20 // dc 51 c2 08 c5 8e b7 f3 6a 4b a3 60 be a7 52 a1 81 3b b0 e4 42 1a 5a // 69 54 b1 fc d1 a8 5d 8d 28 1a 7f 18 bb 63 8d fe c8 75 32 9f 83 60 8c // f5 ef 41 65 f7 ac d1 e3 d5 06 1f 8a f7 db e4 bb 22 f9 41 94 d4 5e e1 // ba c8 f8 a8 9e 40 d0 df 80 73 18 85 40 95 78 78 8a 09 d9 30 ed 3f cb // 0a 85 22 15 18 33 92 f4 57 05 49 94 34 a7 79 8a cc 69 e5 be d9 30 b6 // 48 4e 35 ad 9a 0d 14 e1 0f 83 9b c9 e0 87 4d d4 d1 70 2c 33 e5 ff ef // a5 10 4f 7d 88 0c 93 01 16 17 c5 71 3e 6d a3 c7 a2 71 4a 41 a1 68 d1 // 44 74 bc 9d 9d 65 dd e5 d7 0e 79 d6 bd 1f 9a ba a0 f7 09 ca 89 1d 08 // 08 b7 4f a6 b1 34 ec fc e6 43 c7 f8 84 dd fb dc 06 d2 e5 82 ed 70 fc // 14 17 d3 10 7c 38 e2 bb c7 3d 40 b6 46 b2 3c 27 af 47 3c 48 fb 17 af // 85 ac 1c b1 29 3b 36 e8 85 56 17 28 cb 33 a6 6c 96 c7 af 2d 66 26 0a // 7b af ef ab 60 70 d4 5a ca 8d 77 32 9f 38 01 2d 8e b4 41 c7 e0 86 33 // d9 9a bc f0 42 e9 a6 24 35 a2 64 b3 2d 6f 49 ec 63 42 61 8f 1d 98 f9 // 79 0f b0 b3 11 b7 77 a1 07 cc 3b 0c 4d c1 64 f8 52 2c 66 64 8e 75 d1 // aa 71 a3 84 bc a5 62 af fa fa 82 c4 91 3b 31 7f 19 70 c2 74 9e 64 3e // 12 c3 e7 3d 77 4b ef 75 6d 8f 22 8d 7f 33 ff 11 f1 59 57 61 87 24 30 // e8 b8 e4 89 37 a4 0b e2 be d6 06 70 aa f5 75 ad 88 05 ca 89 a7 d9 a6 // ac 67 59 b7 8f c7 58 cd e3 70 ce 4a cc bf 46 d8 31 3c 4d 7c aa 4a 9f // 32 d6 57 54 a0 01 ee 30 d3 ee 0d f9 2c cc 69 dd b0 5c 9f e9 82 a2 76 // 82 6c 59 6c a3 b5 5b b6 69 be 46 29 d0 47 fe d1 24 ee 56 89 bc 48 d8 // f9 da f5 60 e2 df 3b 16 25 9c d4 8f ac a5 96 ad 6c 16 f7 45 c4 37 07 // bc 35 17 3e d2 71 ff ab 6e 91 57 f1 df b0 f6 b4 36 08 02 0e 3b 51 1b // a2 49 1b 43 56 02 f7 0e c5 ce 23 80 e9 60 a0 42 5b 62 ef 12 bc de 40 // ee 2a bb 75 39 b6 ec 87 f2 84 65 f9 e9 dc 71 a6 5d c6 8b 3f 9b 42 d1 // b2 26 13 6a c4 bb de 3b 79 e0 4d fa a4 5e 8c 51 b4 80 d5 15 b2 fb 66 // eb 1f 8b ca 7e 17 03 0d cf 44 1d be 9b 35 0b 9c 4a 38 ca f2 34 78 ae // 8c 47 20 3d ef f2 8f 65 e5 6e 8d f3 87 df fe 79 68 09 b0 e2 72 81 8f // 8f 18 cc 2b 26 51 d2 3d e8 e8 88 b1 0e c2 01 b4 ee af 3f af 00 74 47 // 16 35 6c 80 15 5e 59 67 fd a0 e4 b6 13 80 b2 9b 6c 7d df c6 36 5f 35 // 9c 4b ea 52 0f 78 45 2c 2b 87 87 3e 80 cf 7c 1d 5c 2b be b8 b8 17 ed // cd 18 8b f7 09 04 db 4d c4 36 51 8b f2 c8 90 31 dd da a7 bf 17 a1 00 // e5 2d 82 c5 9c 27 97 77 df 19 95 33 7e bf fb 6b 6a cb cc 74 c2 bb 7c // ae b6 b0 ac 42 58 81 d3 7e 51 b6 e5 2b f5 22 8a 46 db 4e cd 2e 74 84 // e1 9a 13 71 f5 af 33 bf c3 24 24 b2 52 d3 6e e0 f3 12 5f 95 79 06 3b // de 11 a3 ef 17 8f 57 41 89 f2 17 ef e9 0d 96 dc 0f a3 21 07 e7 af 99 // 70 15 bc bf 6c 74 71 d6 f5 fd f4 44 b6 d9 ff 6d fb 63 80 11 69 6d c5 // a6 ec 6b 25 78 c1 dc 64 aa 2a 0a a9 03 de bb 0b fd 37 51 7e 14 eb be // 70 eb ae ca bd fd aa 44 c9 16 e5 fa 47 ab a9 9e 4d fe 05 26 be e6 58 // 3e 1c 81 43 a6 ad 4e 14 27 61 79 bb 6a aa f3 56 07 a8 24 f3 43 46 3c // 75 12 b5 15 9e 78 06 20 ab 87 d2 b1 68 ff 67 b6 51 07 40 83 23 83 2d // e5 0d b0 85 cd 61 2f 5a 88 bd f1 55 20 29 22 42 75 31 59 b8 61 dd 26 // 83 8e 92 b5 ef a0 26 ec 7d 92 93 64 5b d3 76 ae 2d 25 a7 10 5a 97 be // f6 1b f5 34 a4 25 bd 76 bb da 80 74 bb 14 7e b2 a1 d5 77 07 56 d8 77 // 3b 49 b0 9c 41 69 c1 6f da 2b 26 55 23 fa 93 24 41 a6 2b 4a f9 83 6f // f2 1b 8a be 20 fb fb 01 84 5d cc 7a de e7 dc 3d fd 01 62 92 da c6 df // db d3 5f 90 5f ac a6 c6 28 d4 40 c7 4c 97 c8 bb 4b e2 c4 82 07 e1 ea // ed e9 b4 45 98 12 af 60 c7 e3 e8 8b 3d f1 82 5d 1e 0c 4b 6d ff c1 62 // 55 1a e1 88 cd 3b c2 2b 4c 73 0f 17 ab cd d4 80 bd d7 ff 1c 98 cb 1b // 1b 2c f7 e5 67 b8 65 5c c4 a5 28 d7 4f 54 3a 49 8c d9 b9 e2 f1 d4 0f // 6b ff 58 0d 34 dc d3 c3 3b 36 d5 64 13 86 b5 f2 ad b1 6a be 37 06 5e // b4 4d 0b 15 9f 66 fd bc 8c 1c d1 06 c0 cb 64 02 2e bc 27 89 70 b6 14 // a1 f0 2c 86 f5 c0 39 cd 18 54 1f f3 80 d0 1f 44 90 f3 c7 4b a3 a9 e6 // 91 69 ab 67 24 7a f2 69 04 ac 70 42 7f 65 23 e8 1d 47 4b b3 77 16 71 // b4 69 08 30 9c 5f 05 14 f3 eb eb 43 d9 53 77 79 4d 43 80 46 a8 29 b8 // 36 59 13 6d b5 6b db f4 bc d2 4a ea 33 b7 33 d0 6e 53 79 5c f2 5c 31 // 4e dd d5 3e 4e a0 61 86 8a bf 46 7e 77 50 1e 70 77 24 0b f7 30 9b 5a // 3b 3e 57 26 bf 3c 15 e4 67 ac ff 68 34 07 05 3e df 9e fc 31 67 c5 28 // 20 90 89 81 6e e8 eb e2 c8 32 c5 4a 81 e7 0a 5c f9 e7 fb 80 21 67 73 // 40 03 7d 7b 2d 3c a5 a3 08 ec a8 32 0a 61 65 cd 40 7e 13 19 3a 45 d6 // ab 58 82 9e 7a 19 a1 83 9b 8d 67 e7 f1 b2 87 33 dc 5b ef 40 cd 7f cb // 53 47 ab 78 bb 59 1f 2f 13 2d 65 dd 39 a4 68 10 24 7a c7 27 5a e9 66 // a3 10 eb 77 e5 42 1d 85 fe 83 9b 71 b1 19 25 dc 94 2c 03 52 f8 04 e4 // 15 0d 61 61 3c 9e 85 3e cc 67 b7 cf 27 a7 7e 03 ee 1a e1 1f 4b f3 0b // 41 01 bd 71 1f 96 68 0a b2 f1 bb cd 0f 4d f0 72 8f 6d bf cb 8b b1 57 // 11 c3 c7 f1 6f 2a 6b 56 9b bd 82 a5 2c c4 f4 9a c7 9e 78 eb 6f d3 b3 // 23 f2 67 ae 38 e6 2e 31 80 4e 66 2d 8f ec bb 86 67 53 b0 8a e8 c1 13 // d4 6c bd e2 35 3f f5 cd 18 18 c4 e4 56 3b b4 a9 b7 7a 1a 23 a4 fd ff // 60 91 16 92 df 42 21 23 a4 fa df b0 25 66 c5 31 e3 ad 2e ed 9f 99 2a // 9d 6d 6a 3b 8b 77 06 97 27 2b 22 fa 72 83 c4 ba a7 23 a0 a8 95 4c 9e // ff 20 8a c1 59 cf 88 9d c2 bc 31 bb f8 3b 50 bc ef fb 93 9a 96 26 78 // 0e 51 7d 4c ce 53 e5 2b a2 fc 7c ef 8b 61 79 0f 1a bf a3 a3 25 37 69 // 7b b7 17 a2 e5 2e 67 2e c7 cd 85 e7 c3 3b 07 96 07 f6 53 0b 1b 94 42 // 40 76 a5 01 f3 95 35 47 c7 26 8d 1c 55 bc 8d 77 88 22 cc 4e 2f 4d dd // f9 43 61 29 d0 6b 83 5d d4 06 33 06 64 61 68 c6 7e 45 77 f4 2c b9 2f // 35 bc 5b 5d 3e e9 ff 83 eb 43 d4 76 e8 56 d2 46 7b 0f 99 33 19 50 12 // ab 68 23 41 c4 94 e2 90 dd 7a 4d 49 7f c3 49 93 8f c7 e7 2d 75 d6 4e // a6 62 d7 1c c1 59 f5 88 03 e0 11 ff b0 67 05 75 a7 fc f0 84 2a b3 33 // 13 3b 15 eb 58 0a bf 1d 42 30 dc e8 0c 5d 13 ea 58 00 15 32 c7 ed 8d // 02 79 d0 e9 95 64 bc 6d ca e7 a5 60 10 dc f5 0d 8d a8 a9 6f a3 10 7b // b6 c8 60 68 6f 58 71 f5 22 d9 d0 cd 62 80 0d 33 02 92 84 15 e1 47 be // b3 05 c5 49 17 6e d3 4b b2 a9 dd d8 27 5d 8f 7b 9d 51 1e e8 ea 53 41 // f4 2a 3e db 17 1f af 8d ed 47 18 26 fa 3e 9c f4 20 20 e6 be 8d c8 ce // 6a 3f ca 09 37 9a 2d 17 49 c6 9f d0 36 d9 fb b8 87 8c e3 68 e3 ec 1e // a8 23 0e 06 2a f8 34 4b 0f e4 cc 91 18 75 de 3f ee e4 c6 07 8b f8 8d // 0c 4f 8f 1c 42 48 48 f5 90 96 c0 0b f2 b5 5e 72 f1 37 3a 85 2c 4d c2 // 8e 9e ac 02 71 ed 41 79 dd 0f ba ea 64 f9 5e 19 77 c8 46 97 1d ae 0e // e5 71 c5 5b 73 2b 11 53 41 3c 9d 7e be 37 69 b8 62 2c 7e 78 88 a1 c7 // aa d4 b9 5d 57 04 d5 37 af 23 d4 35 0a 75 0a 04 b2 74 5a e9 18 13 f1 // 42 9d ee 22 8c 56 d9 15 e4 c6 74 67 d6 e3 9a 76 c3 f7 1a ea e3 62 bc // 6a 5c f8 d9 fe 61 7b d0 f3 4e 5e d1 5b 77 97 7d 3d 79 de 48 cf 88 1e // d9 07 f3 29 2d 96 73 56 b7 22 9f bd fe fd d3 14 c6 3e ce fe 5c f4 24 // 5d 09 20 0f 6d 0d 49 a3 81 86 72 74 e2 3b 79 b3 47 61 96 24 e1 94 b1 // 05 9e d5 26 fc 3d 91 9e eb fb c9 4c 5e d2 91 14 b6 03 6c 05 d9 81 7a // 90 c0 d6 29 a7 10 ec 15 25 5a cf b2 87 00 63 07 e1 32 c3 ae 1b 65 31 // cf 68 7d db 46 36 65 38 fb d4 47 65 f4 12 04 e9 ff 0a 17 40 a2 96 91 // ca e4 a0 58 eb b8 7a 18 2f 17 95 69 00 47 b4 4f a5 4d b4 bf c7 48 ca // 6d fe 37 44 88 2a 2c e6 83 01 07 dc be c0 8a 1f b1 cf 4a 3f 7e 29 0d // 7c 80 07 00 1c 80 35 f1 53 df b1 76 bc 5d f6 ae c5 e4 7b 93 cc 34 00 // 62 0a 32 07 a7 4d 57 32 c1 ff ae 0f ba 56 c1 b3 c0 50 c8 54 c6 2a 75 // ea ce 8c f8 04 fe 52 22 12 04 b8 6b 2e 83 df de 47 ed 1a 25 49 02 50 // 8a 52 d5 1e 8d d9 f2 2d 96 0c 9f f6 d4 01 e0 1a 6e ce a6 90 e0 44 4f // ac 45 dc 8b 6a 27 67 ae e3 07 df ba bf 01 0e c1 d8 ad 03 6c 23 87 b7 // 73 c0 25 3a 3d e4 97 76 0b a5 5f ab 31 88 98 c3 87 5f d4 36 5c b9 87 // 14 e3 b4 45 94 05 b0 25 a7 f5 76 8e 9e a0 6b 55 41 23 c5 8e ed aa 32 // 39 e7 95 92 b3 1e c3 b7 d9 60 4c 62 fd 4c 67 28 73 a4 68 1f f0 d1 b2 // 1e b4 9d 95 bf 95 fd df 2e 3e c8 c3 6f 50 8a 34 a3 3d 3f 01 9c cb fd // e8 7a 38 f8 bd 10 b5 8f 24 a7 18 c9 33 17 78 ea 8c 55 40 6f a3 0b fe // e7 67 55 cb 36 18 02 e9 aa f5 72 f2 2b bd 6c 63 4c b4 90 e2 94 f9 75 // e0 7d 4b 4d cc 41 8e d0 ab 29 ff 55 29 e8 69 77 57 c7 ef ac 4c b7 e1 // fb d5 07 c2 d4 bc c2 9d 94 64 81 04 b4 ef dd b0 df db 19 cc f4 22 a7 // e6 e6 3b 3c f9 c9 8a a6 9d c6 a6 51 d0 02 98 11 4a 56 c1 35 f6 c1 42 // 57 77 f0 8a 5c 98 30 06 2e bd 21 8b e0 b8 db 5b 9e 26 12 0a 74 b7 ce // 7d a7 51 bb 73 2d 29 4d 04 b9 72 a5 75 e2 fa b7 e3 22 81 ec 2a 04 13 // f5 23 89 94 2d 5c 90 80 82 69 d6 c7 1f 30 b2 d8 a4 d2 aa 8b a8 cb 9a // 44 42 97 0b d0 f4 be 72 9c 73 26 86 e5 13 b6 ae 4c 41 80 fc 7c ba 98 // df 0a c9 a8 40 92 d8 d9 4b 08 fc 64 2f 40 84 41 5f e0 f9 91 0b 43 0c // 2a 31 5c 3d 95 21 30 d5 81 d7 54 5b 52 a0 3a dc 75 a8 f3 52 db b3 9a // 68 d3 5b 3c ad 2d 9a bc e8 cd 5a ab 44 11 4a 88 a5 1e 51 70 5d 5c 74 // 71 70 58 16 26 48 89 ad 7b 38 b5 4d 11 89 93 d1 0d 8e 07 c8 33 c6 28 // 5d 4b cf 05 55 b0 ce f3 6c bb 7d 43 8d f4 c5 7c f8 b9 53 44 93 05 4b // b0 d4 23 c1 93 59 44 64 87 f8 51 e7 52 9d fe 55 e5 48 8b 29 61 ca 1a // c6 be bb cd b4 d5 07 18 96 7f d4 7e 08 cb 94 93 e5 23 3a 3d 50 e7 83 // f0 48 6f d8 5b 5c 8e ef 1b 3e 01 cf 55 d2 81 ed 1c 79 c2 49 33 35 b0 // 14 7b 49 ff 50 6d 3b 4a 99 5c 39 e3 5c bb a7 47 fb c8 96 7f f3 64 af // b2 22 f3 0e c9 98 85 a7 a5 d7 ed 2c bf 8b 70 d9 1f ec 03 c1 05 dd e0 // 56 e0 1c e0 49 d6 2f 01 3d 0a fe 3f d0 a8 d1 fc ae bb d0 53 b0 71 1b // eb ae 3c ab 8d c1 bc 28 d6 6f 65 8b cc da 1a 72 29 12 c6 37 d5 de ca // 88 5a 01 a7 7f db e9 41 b3 db 85 61 cd c9 07 61 3f ee 4a ec e5 f1 5e // 4b 57 f9 de d8 ed fa db 13 c5 61 5f 17 b3 8d 8b c8 e6 59 fa 13 05 e3 // d5 71 b4 fa 91 1e 29 14 33 59 f5 ff cd 39 23 02 96 05 52 ea ff 0f f8 // 81 7c 8a ac 72 0a 26 60 80 4b 70 28 64 c1 ad cb 7f 0c 27 75 c0 48 1b // 6d 7e 23 72 5c 8c ac 4f f5 ac a9 63 12 b7 4e 51 24 c2 44 14 74 44 74 // 4b c7 fd 82 a4 88 95 1c e4 3b 17 37 4d a2 59 40 b9 86 72 33 90 f1 d2 // 45 9f 62 5d 58 05 22 e0 7c f0 33 e9 5f 1b 3c 3c 27 fa dc f6 e3 73 2c // 44 be a9 42 80 fe d2 fa 45 36 50 cd 3b e9 bb 51 19 df 5f b0 6a a5 32 // 69 c7 c4 03 3a 45 a9 f0 c4 57 91 af 09 cf 84 59 1d 88 c8 30 b7 d6 e2 // ec 79 77 61 c0 72 cb 0f d4 a6 71 ac 15 18 b5 8e 68 a2 a4 86 a7 b1 1e // 79 5a 20 86 c2 73 00 c0 81 27 1f c1 86 0a 54 00 59 de 2f 3c 77 8f f4 // 86 e8 60 e3 3a e1 e4 1c 5a 4a 81 6c 2e 9d 40 f0 85 da 97 3d 2d cf e4 // a1 37 bf 0c c2 a0 06 89 74 c2 ed 91 f5 6c 4a db 6d 67 5a 35 13 76 29 // 90 b1 92 cd 85 9f 6e 2d fa 5c f6 24 97 98 db 17 6c af 78 09 5c 56 c7 // b0 3f 6a 6b 94 2f d5 af 97 ad 43 ec aa d6 97 2b c4 4a 18 f5 e6 ab ca // 30 b4 6a 06 59 11 56 b3 35 8e f3 09 08 15 2e 58 4a 41 1f 6f c9 d0 c3 // ad 39 02 55 42 48 88 5d fd 7a 8b aa 8e d2 ef df d0 5c 11 ce f7 0b 0f // cd 2c 2d b3 6e 55 99 73 ab be 13 b1 57 df ce fb e0 0c 2a 88 93 b1 eb // f0 2a 13 b1 e8 44 23 f9 12 bd 66 0b 42 7d aa ab e9 50 2e aa 88 4c 9d // 07 fd f6 8b 4e 89 ca 55 18 ec bd de 12 ac 38 a4 15 f1 9d 83 50 1a 61 // 01 8f 2a f1 7b ee b9 5b c9 d0 8d 40 26 d2 5e d0 49 4e 56 b7 6a 82 43 // f5 54 57 ef 4a 12 f6 59 30 05 60 25 66 c3 ff 32 76 c2 ef 20 49 b0 f3 // 08 b0 90 7a 83 ca 5b 55 72 9b 86 9d 00 a9 4b 6a 87 10 ec 2d 69 44 1c // 8b 82 dc ac b3 d9 3e e5 1b e0 bf 33 ff 4e 72 1d e4 d3 a7 d1 ce f6 4a // 7c 9b bf f2 8c 36 c8 ca 71 4c 4d 66 bc b6 3d 8a 36 51 81 28 cf 81 3b // 9e 82 4d 29 fd 4d 0c 68 3f 82 47 17 c2 fa 71 35 32 33 c6 2d 3c 0c 44 // 86 07 59 e8 75 cf 83 22 b7 33 30 99 d2 43 26 01 36 99 86 50 91 81 34 // 0e bb 51 45 fe 21 73 e4 67 53 6c 28 36 22 2f 19 4b dc 95 25 0c 50 b6 // e2 ce 10 6e b6 f8 8d 90 8e 63 43 a3 d9 62 7b 3b e2 2a 65 04 cc fa 67 // d7 70 eb 9e c6 95 be 22 aa d9 5c 59 a7 53 17 50 e8 13 fc 5c 19 8e d4 // 5e b3 c3 30 21 87 7d af 27 b0 fb cd 1d 46 dc db f9 7d f8 47 6a 0f ae // da 9f ae 8c 99 2d 60 01 52 5e 73 36 26 b9 7a 32 9f 34 56 78 38 dd cd // 4a bc a8 3f cd fc 60 7f 13 6c 71 c0 2d a2 54 78 98 e6 72 76 df b3 73 // 2b 87 39 f0 35 26 e9 d3 52 ab 82 a8 75 f6 c1 c1 1b 8e e6 43 d5 ec 79 // 35 d4 e3 3b b5 23 05 2b cf 69 71 0f 6e c2 55 96 1e 2e 9c ad 3a 8c ab // 31 0d f6 c6 ae 4c 97 96 16 eb c8 ea 7e a5 46 72 e0 a3 9c bc 29 b0 d7 // a8 1b 9e 6a 6e f8 f3 fe 85 35 10 5e 11 f9 c4 81 e9 50 a9 5a 60 09 58 // 7e fd a6 ea 97 7c f9 d7 0c 49 e2 d2 18 6d 14 ab 49 96 57 c6 f2 35 f6 // 28 65 54 5d ba f4 60 ff 7d 73 7a e6 0e f8 39 8c d9 06 44 21 a0 b1 be // 90 da 8f da 3e 9c 67 e3 52 c6 d3 c1 e6 d1 7c 03 52 07 ac ad 07 65 a9 // 4a cd 65 3d 09 97 c0 9a 6a 8a a2 e5 a6 76 59 3a b3 64 a7 aa c3 1b c1 // 36 f1 59 09 3b 9f bf 07 24 d8 07 81 57 42 25 53 10 4f 1c c7 67 bb d8 // 5f 79 d1 be cf 97 7a cb 91 cb 7f df 30 3c c5 80 a4 68 89 39 84 2e 80 // 7b 78 fd bd 12 21 56 7f 45 f4 e6 a7 e5 0e 89 ef ec e3 9b e0 fc 13 88 // 0e c8 dd 6d a9 9b ff 23 ac 1e cd 67 29 80 2b 95 70 f1 70 da 37 ca b7 // 9b e0 0f 39 02 fc 33 ce 46 7d f3 b7 4d 69 18 b1 98 ee d8 36 13 e7 8f // 73 59 38 f7 c8 53 b9 8b 71 6f 51 80 88 99 1d 56 08 04 5c 38 72 34 c8 // 25 7e 95 e6 ec ce 55 4a 2d 73 f9 9d 62 2b b5 93 15 59 b6 38 cd 81 61 // 69 a1 6f b6 ed a6 7f c1 51 19 aa 55 fb 6c 1a 05 b0 d3 a4 de 1b fe 50 // 35 02 03 0a c4 3a b3 27 ee a4 ef f0 58 fd 70 95 ab 0d 16 b6 5c 65 a3 // d0 d7 d9 34 a6 4e 42 71 31 8b 93 f9 7f 66 3d 0c ec 11 fd 0c f7 96 45 // 18 c9 d3 b8 64 7b 96 55 fc 85 53 c9 2d 4f 54 b8 15 47 e7 f1 62 90 5f // af 3e ca f3 60 97 c6 af 2a 2d 7e b2 22 28 33 2b cd 7b 4e f1 cf c4 9d // 2f 3c d6 58 8e 74 6a 89 b6 66 fd 77 99 0f 71 90 ab cf 0f 45 87 b0 f4 // ee e8 e2 57 61 b6 d7 cf 95 13 0a d6 ef 5a 61 17 ca 12 91 c3 1f 52 60 // 38 4d 03 80 e4 49 c1 e0 0f bd 7e 75 8e b2 79 5a 03 a6 ec e4 67 70 30 // 84 fa 83 13 20 08 37 5b 3c 88 33 ef c6 91 79 ed 89 5e 7a b2 69 fe 55 // 16 de f6 b1 c7 8d e8 02 66 27 09 c7 3d 32 1b 39 37 66 46 03 aa 80 f2 // 71 fb f3 ee e2 e9 a7 2f 4e d3 56 c5 96 d5 00 bd b8 85 a0 3a e5 ac 38 // 3a 65 66 3c bc a4 53} (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 = 0xe (8 bytes) // payload: fuse_entry_out { // nodeid: int64 = 0x0 (8 bytes) // generation: int64 = 0x1 (8 bytes) // entry_valid: int64 = 0x3 (8 bytes) // attr_valid: int64 = 0x0 (8 bytes) // entry_valid_nsec: int32 = 0x9 (4 bytes) // attr_valid_nsec: int32 = 0x1 (4 bytes) // attr: fuse_attr { // ino: int64 = 0x1 (8 bytes) // size: int64 = 0x0 (8 bytes) // blocks: int64 = 0x8 (8 bytes) // atime: int64 = 0xffff (8 bytes) // mtime: int64 = 0x4f (8 bytes) // ctime: int64 = 0x6 (8 bytes) // atimensec: int32 = 0x2 (4 bytes) // mtimensec: int32 = 0x6 (4 bytes) // ctimensec: int32 = 0x2 (4 bytes) // mode: fuse_mode = 0x1000 (4 bytes) // nlink: int32 = 0x3 (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x0 (4 bytes) // blksize: int32 = 0x3258d534 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000004680, "\x71\x70\xda\x85\x8e\x84\x58\xc9\x0c\x70\xba\xaa\x67\xfc\xbc\x8f\xcb" "\x50\xc8\x46\xa7\x6e\x6b\x1b\x86\x6c\x34\x32\x80\x6a\xf6\x21\x5e\x14" "\xc6\x9c\x4f\xdc\x5c\x9d\x40\x9f\xb6\x7a\x15\x30\x1a\x3f\x4f\xd6\x8f" "\x2e\xe2\x33\xee\xe4\x8e\x7c\x86\x04\x3c\x9b\x2e\xc0\x43\xf6\x2f\x43" "\xac\xc3\x41\xce\x87\x93\x2b\xd5\xc8\x06\x88\xba\x04\x7f\xab\x9c\x6b" "\xc5\x03\xe1\x10\x97\x05\x40\xa2\xfa\x9a\xf3\x75\xc0\x7a\xcd\x01\x00" "\x97\xb2\x8d\x64\xcb\x81\xa6\x15\xe8\xf7\xd5\xc9\x6c\xd9\x72\xd1\x3c" "\x5e\x5c\x07\x0b\xea\x4e\x3b\x1b\x4c\x7e\x82\xbb\x0a\x25\x88\x44\x78" "\xd0\x7f\xd0\xa1\x88\x46\x7f\x3b\xde\xfe\x9a\x8e\xbd\x7a\x29\x2b\xa2" "\xb2\xd3\xfb\x06\x07\x5e\x36\xdb\x31\x7c\xbf\x7b\xe9\x9e\x50\x01\xcd" "\x98\xd1\xf2\xe6\x8a\xcd\x91\x75\x49\x63\xee\x4c\x80\x61\xd1\x85\xa3" "\xe5\xef\xa9\x67\x9b\x0a\xde\x6f\x8d\xb0\x8d\xdf\x81\x2d\x85\xa4\xcf" "\xa7\xdd\xc9\x9d\x34\x8b\xe6\x24\x8a\x1a\x83\xca\xfa\x31\x80\x7b\xaf" "\xca\x1e\x70\x81\xf4\xbc\x11\x0b\xce\x20\xf9\x8e\xcc\xa4\x7c\x40\x89" "\x7b\x4e\x77\x84\x6a\x5c\xf6\x5c\xb3\x2f\x23\xbe\x34\xe4\xa8\x4b\xdf" "\x3e\xc7\xa9\x40\x66\xa1\xc7\xe5\xf6\xcc\xf2\xf5\x57\xf6\xcb\x1b\x0f" "\xa8\x0e\x8f\x24\xf8\x49\x3c\xde\xf7\xe8\x37\xf1\x33\x7a\x27\x46\x29" "\x72\x8b\x6f\x69\x12\xfb\x45\xd1\xb3\x81\xb2\x18\x4d\x7f\x27\xae\x40" "\xb5\x81\x6f\xea\x41\xd2\x05\xa3\x8b\x96\x25\x61\x83\x72\xa7\xbe\xd9" "\x46\x47\x14\x19\x9c\xed\x46\xd3\xde\xf8\x75\x40\x5a\xaa\x1a\x04\xaa" "\x35\xef\x1e\x24\xd0\x95\xd1\x18\x92\x24\x5a\x1a\x16\xda\x29\x05\x78" "\x6e\x86\x34\x3e\x6d\xec\xd9\x96\x83\xa1\x61\x99\xff\x8a\x7e\x99\x11" "\xe9\x41\x2b\x45\xcd\xe5\x20\x0c\xf8\x62\xb3\x09\x6d\xbb\xff\x76\x6d" "\x05\x8f\x07\xb0\xeb\x72\xdd\xd8\x35\x5b\xc1\x91\x5c\xaa\x6e\x0f\x1f" "\x3f\xfe\xb8\x4b\x20\xc1\x76\x12\xe5\x61\xd8\x39\xa7\xf0\x89\xa1\xc3" "\xfa\xa1\x45\x41\x6a\xff\x5e\x08\x57\xb9\xbe\x5d\xa2\x89\xd7\xa1\x78" "\xc2\x78\x06\x95\xd0\xfe\x87\x0d\xde\x4d\x45\x1d\xff\xde\x01\x11\x7e" "\x9a\x27\x4a\xcd\xa9\x02\xe1\x9c\xf3\xb2\xd8\x82\x07\x57\xfe\x3e\x62" "\x15\x17\x84\x4f\xdd\xa6\xb6\x42\x4d\x5a\xb6\xec\xf1\x7f\x23\x90\x74" "\xaf\x77\x64\x76\x62\x3a\x4a\x5c\xcd\x9b\xf3\xe0\x49\x3f\xb8\x8f\x43" "\x3b\xb5\x3c\x54\xde\x68\xde\x7a\xcc\xa2\xd6\xfd\x53\x6e\xf4\xf3\x13" "\x23\xb5\xa4\x5d\xb4\xaa\xf9\xee\x80\x04\x46\x12\x99\x78\xc0\x3b\x25" "\xa7\x55\x9e\x5a\xea\x05\x80\x5b\x9c\xd2\xd9\xe3\x68\xb5\xcd\x6b\x96" "\x11\x3e\xef\xed\x23\x75\x78\xed\x2c\x71\xd1\x71\xc0\x4e\x3c\xa4\xa2" "\xaf\x2b\xad\x4c\xd9\x60\x41\xc8\x13\xef\xf1\x19\x2b\xe4\xe0\xc5\xf1" "\x37\x7f\x32\x56\xd9\xd2\x72\x5e\x10\x32\xec\x7a\xb2\xca\x85\xa0\x93" "\x2e\x8d\xb8\x2b\x95\x8b\x3f\x39\x15\x4f\xb4\x26\x6b\xde\x20\xd1\x74" "\xe4\x89\x0d\xa0\x73\xa0\x6d\x44\x8d\xa5\xff\x76\x60\x9c\xd9\x5a\xf5" "\xaf\x2a\xe0\xe2\xbf\xe3\x15\x3b\x4c\x47\x39\x42\x38\x4f\xef\xee\x5a" "\xfc\x81\x16\x0b\xed\x86\xa0\x9e\x1c\x2b\x8a\x05\x3d\x20\xeb\x3d\x97" "\xb3\x6b\xd3\x81\x52\xa9\x7b\x7a\x91\x90\xfe\x43\xff\xab\xd1\x99\x38" "\xc8\x3a\x44\x3f\xdb\x5d\x74\x1f\x83\x25\xbb\xbe\xf5\x55\x16\x3b\x6c" "\xf9\x68\x8d\xee\x8c\xa5\xc7\xf3\xe7\x50\x1e\x82\x7c\x5b\xe6\x0d\xfc" "\xcc\xd5\x43\x97\x4b\x2c\xbd\xeb\xc2\x7b\xf6\x50\x52\x86\x28\x9f\xc7" "\xa8\x95\x52\x63\x4d\x77\x35\x73\xbd\x76\x86\x59\x9f\xc4\x7b\x29\x97" "\xd2\xe5\x52\x95\xf3\x21\xb6\x33\xfa\x1e\x9d\xc1\x79\x1b\x31\x9e\x19" "\x10\xcc\x2a\x86\xb7\xcd\xb4\x5f\xdc\x9e\x27\x7a\xe3\x42\x17\x5b\x8e" "\x1d\x02\x25\x32\x0e\x42\x89\x7a\x1c\x05\xa8\x16\xb9\x77\x42\x5d\x70" "\xb0\x8e\x7a\x28\x75\x6d\xcf\x7b\x8c\x1d\x4d\x89\xae\x86\x25\x4f\x5f" "\x53\x23\x4a\xbd\x0e\x1c\x03\x44\x91\xa9\xb2\x5b\xec\x0e\xc6\xc1\x0f" "\xff\xa5\x88\x60\x7b\xfd\x1f\x76\xad\xbc\x3b\xd1\x57\xf2\x8d\x20\x2b" "\x93\xff\x64\x29\x22\xcb\xc8\xc9\x54\xdc\x4e\xfc\x22\xc0\x5a\xaa\x98" "\xdc\x6a\x6c\xb0\x14\xcc\x7d\x72\xb4\x3c\x95\xde\x99\xf7\x4e\x89\xe3" "\x6f\x29\x5b\xc1\x22\x25\xb8\xbb\xc3\xb4\x54\x40\x2b\xe1\x0c\xc4\x9b" "\xc8\xb5\xce\x6c\x79\xe4\x45\x99\xad\xf3\x06\x13\x89\x7f\x63\x08\x8b" "\x48\x42\x54\xf4\x03\x63\xc7\xfa\x49\x37\x30\x34\x3a\x2c\x3f\x10\x0e" "\x2c\x84\x84\x66\xa5\xad\xc4\x91\x54\xbb\x95\x77\xb2\x86\xdf\x10\x07" "\x25\xa2\xd1\xc8\xe1\x3d\xf6\x74\xa9\x01\xbe\xcc\xa8\x37\x81\x5c\x09" "\x51\x1a\x75\x86\x51\x40\xaf\x34\xaf\xe7\xc6\x8c\x87\x0b\x63\x97\xf8" "\x6e\xaa\xae\x78\xf2\x0c\xbd\x1a\x96\x30\x8a\x16\x90\x50\x3f\x73\xc0" "\x88\x1f\xa8\x37\xc5\x26\xb1\xdd\x63\x47\x17\x49\x53\x41\x09\xbc\x93" "\x97\x31\xee\xaa\x4f\xb1\x7f\x59\xbd\xd1\xbf\x15\x84\xf2\x21\xc6\x6e" "\x18\x98\xda\x09\xd4\xfd\xea\xb3\x3d\xde\xaf\xa6\x14\x0a\x8d\xe5\x05" "\x91\xff\x9e\x18\xe4\xe6\xc5\x90\xd2\x1a\x44\x0b\x2b\xd1\xfc\x91\x3b" "\x16\x66\xd1\xc7\x83\x2b\x5a\xc0\xfa\xb0\xad\xc2\x39\x25\xea\x9c\xb1" "\x9a\x9d\x7f\x18\x59\x01\xfd\x4d\x83\x49\x38\xf5\x96\xa2\x4b\x1b\x9f" "\x77\xde\x20\x55\x02\x52\xfa\x72\xe4\xa1\xaf\x4e\xf4\x0d\x96\xea\xd5" "\xd6\x8c\xed\xe4\x2d\x68\xde\x62\x41\x15\x17\x73\xa3\x77\x5e\xb4\x94" "\x9d\x5c\xc6\x08\x82\xee\xb0\xe5\x28\x82\xa7\x2c\xf0\xd7\xe6\x3b\xac" "\x59\xe7\x16\x88\x33\xf4\x97\x79\x09\x00\x59\xf6\xef\x56\x8e\x58\x9d" "\xfc\x0a\x7d\xe2\x5b\x6b\xfd\x70\x7d\x8d\xb8\xf7\x4a\x08\xb2\xb9\xe1" "\x5e\xba\xa0\x65\x27\xf0\xdd\x79\xc4\xcf\xd7\xc3\x63\xc8\xe5\x6a\xa6" "\x9a\x6c\xbe\x99\xb6\x59\xd3\x30\x70\x74\x8c\x0a\x5b\x3c\x93\x80\x83" "\xa8\x92\xe6\x5e\x6d\xe1\xb3\x56\x10\x83\x5c\xb3\x7c\xd3\x17\x64\x1b" "\xec\x66\x55\xc2\xce\x8a\x83\xe7\x84\x9e\xd6\x21\x88\x09\x21\x6e\x84" "\x7f\x0e\x49\xca\xa4\x7d\x11\xfb\x3a\x82\x6d\x21\xc9\xfb\x24\xc0\xc6" "\x69\x04\x99\x3a\xc8\xc3\x6a\xb1\x88\x35\xe1\x50\x12\x8e\x86\x49\x98" "\xf1\x0b\x50\x71\xcf\x0b\x70\x74\xae\xd4\x0c\x2b\x0f\xed\x7f\x10\x53" "\x14\xdf\x8b\xc2\x5a\xf2\x80\x66\x0f\x24\xeb\xac\x73\xea\x4d\x25\x31" "\x31\x4f\xea\x61\x94\xdb\x37\x17\x17\xfa\xba\x0b\xb4\xc1\x23\x5f\xde" "\xb3\x4c\xda\x8f\x3e\x09\x85\xfa\x85\x75\xda\x45\x95\x1e\x78\x80\x8f" "\xd3\x51\xd1\x7a\x36\xf7\xc3\x76\x68\xb4\xe8\x52\x06\x63\xcd\xd2\xd3" "\x6c\x2b\x3d\xfc\xf3\x2a\xcc\xdd\xb5\xfc\xfd\x3e\x6c\xf6\x33\xc9\xf9" "\x17\x5f\x07\x0a\xea\xd6\x7f\x98\xd9\x83\x73\x88\x23\x32\xf2\x87\x29" "\x02\x6d\xd8\x52\x25\xd0\x77\x5e\x6b\x4e\xd2\x07\x7f\x13\x22\xa4\x49" "\xc9\x5c\x2b\xa8\x31\xe5\x4f\x84\x88\xcf\xc1\x68\xf6\x95\xde\xef\xd4" "\x9b\x1c\x80\x2a\x9e\x97\x3c\x55\x62\x0a\xae\xe4\x8b\x49\x6c\xdc\xdc" "\xac\x27\x83\xf5\x41\x76\xec\x00\x3a\x1f\x79\x6f\xa0\xce\x34\x95\x7f" "\x73\x17\xdf\x72\xd5\x4c\x37\x6c\x27\xbe\xfe\x70\x7a\x85\x97\x54\xa3" "\xa9\x61\x4d\xa9\x13\xc1\x22\xde\x38\x1d\x47\xf7\x7c\x31\xa2\x83\xdd" "\x00\x31\xff\x02\xb5\xd4\x9d\x0c\x67\xe8\xa6\x61\x69\xca\x5d\x16\x72" "\xe7\x46\x08\x93\x02\xd5\xb2\x4b\x28\x79\x93\x7b\x4e\x4e\x7f\x8b\x65" "\x73\x2e\x95\xee\xf5\x5e\x3a\x1c\x37\x68\x45\xe9\x75\xb4\x5f\x4e\x2b" "\xd5\xe8\x7f\xfa\x72\x8d\xd8\x19\xac\x30\x30\x16\x7d\x29\x62\x06\x61" "\x94\xc3\x14\x3b\xa9\x21\x7e\x07\x72\x72\xbb\xe3\x1a\x1e\x98\xc6\x18" "\x3d\xef\x69\x81\x91\x1e\xf2\xc7\x68\x56\x6d\x7a\x94\xd3\x69\x5b\x24" "\x04\x64\x29\x3d\xd6\x56\x53\xd8\x3c\x8e\x31\x6e\xdc\xc6\x0d\x23\xcf" "\x41\x53\xaa\x8e\x4b\xf5\x0d\x48\x68\x89\x7b\x56\x6a\x9e\x3e\xd6\xa6" "\xd0\x57\xdf\x7b\xda\xa3\xd0\xe1\xe8\x43\xe1\x02\xcf\x6b\x95\x4b\xae" "\xe0\xdd\xf0\xd9\x24\x2e\xe2\xab\x69\xd6\x15\xae\x9f\x8a\x03\xba\x0a" "\x55\x5d\x2e\xd2\x03\xd3\x93\xb0\x84\x56\xea\x84\xa1\x1d\x93\x3a\xfe" "\x4b\xc6\xa9\xae\xf2\x69\xda\xe6\x26\xd4\xeb\x61\xe0\xd4\xb5\x33\xf2" "\x26\x95\x8e\x64\xcc\x4d\xe6\x31\x63\xf8\xf5\x83\xba\x18\x37\x51\x0a" "\x45\x8b\x89\xc5\x0a\x59\xe9\x90\x78\x98\xd3\x0e\x0d\xfd\x94\x3c\x18" "\x6d\x24\xfd\x07\xf5\x7d\x78\x27\x44\x0e\xfa\xab\xc9\x61\x9c\x1f\x87" "\x97\x40\xdb\x56\xa9\x6c\xb8\x12\x35\xc6\x75\xe5\xf4\x86\xae\x84\xdf" "\x49\xfe\xa1\x7c\x90\x6e\xcc\xe8\x14\x1a\xa2\x88\xc0\x24\x6a\xc3\x3e" "\x62\xc5\xc0\xcd\x62\xd9\x99\x15\x14\x0e\xe4\x39\x15\xba\x0c\x19\x41" "\xbf\x46\x5e\x06\x63\x82\x68\x96\x58\xcb\xe8\xc9\x91\x07\x9b\xbd\xbb" "\x0c\x88\x3f\x90\x7e\xce\x41\x54\xec\xc3\x94\x4c\x02\xe4\x7f\x24\xd4" "\xec\x17\xaa\x99\xd9\x7f\x42\x07\x10\x93\xe1\x3f\x63\x28\x67\x63\x6b" "\x95\x4f\xeb\xa4\x03\xff\x40\xbc\xc3\x8d\x16\x33\xe4\x98\x6d\xa3\x23" "\xe8\x6f\x16\xb2\x73\xb8\xa7\x65\x67\xc2\xd8\xc9\x5f\xe7\x17\x7e\xf2" "\xda\xb1\xc8\x59\x63\x58\x21\x1d\x35\xe8\x99\xcf\x6a\x4a\x2a\x00\x30" "\x99\x50\xbd\xef\x9f\xc6\x4f\x43\xcc\x36\x68\x12\x33\x1e\x56\xf6\xdf" "\x89\x17\xf4\x08\xd3\xdf\x3a\x96\x6c\x8d\x35\xf3\x61\xeb\x64\x93\xf9" "\x14\xda\x58\xb3\x48\xdd\x18\x28\xcf\xfd\xd6\x7a\x57\xf2\xee\x0d\x70" "\xf5\x0f\x3d\x12\x63\xda\xbb\xe0\x49\xf3\xa6\xbe\xce\x0b\x12\xb2\x27" "\x1c\xf2\x73\x44\x60\xc9\x8b\x52\x27\x96\xc1\xee\x9b\x1a\x20\x41\x3b" "\xe1\xc4\x23\x63\x49\x7e\xe1\x0d\xc3\x6a\x1f\xfc\x10\x7a\xd5\xe7\x62" "\xe8\xe4\x82\x68\x55\xc7\x84\xf8\x3b\x67\xb3\x43\x74\x26\x8d\x44\x50" "\x6d\xe6\xc5\x63\x26\x6b\xd5\xaf\xa7\x14\xb6\x49\x81\x10\x06\xd9\x23" "\x77\x86\x54\x03\x87\x3e\x52\x58\x31\x81\xf6\x7e\x35\xe7\xa7\x60\x04" "\xb4\x4f\xc5\xfa\xec\xdb\x49\x39\xe4\x48\xa3\x63\xad\x2d\x99\x7f\xef" "\x8e\xf7\xb3\x85\xc5\x61\xf2\xe2\x1b\xf0\x20\x8b\x72\xf3\x55\x44\xd0" "\x7c\x2f\x67\x77\xad\xc6\xc6\xbe\x85\x8f\x47\x72\x4c\x34\xe4\x81\xda" "\xa8\x8a\x23\x12\x81\x80\xe1\xac\xd1\x6e\xaa\x53\x27\xaa\x31\xfb\x65" "\x41\x48\x9b\x13\x1e\x96\x7b\x8f\x0a\x43\x18\x7c\xa6\x13\x2e\x5b\x99" "\x81\x23\x8b\x4d\x1a\xb8\xa1\x1c\x1a\xc6\x10\x03\x9f\x47\x67\x12\xf1" "\x80\xb2\xca\x74\x89\x93\x6e\x9e\x47\x98\xef\xfb\x63\x2e\x5f\x65\xaa" "\x52\x18\x58\x30\x62\x5a\xa9\x69\x62\x64\xfc\x81\x50\x23\x88\xd7\x88" "\xfe\x7c\xde\x5d\x5e\x41\x5a\xce\x6a\xd5\xe9\x5a\xf8\xc6\x15\xa2\x69" "\x4f\x67\xb3\x94\x42\x79\x4b\xf5\xef\xdc\x20\xa5\xbb\xaa\x9d\x7d\x59" "\x66\x03\x57\xa6\x9b\xdf\x31\x25\x7f\x88\xca\x4d\x8e\x25\xeb\x8d\x8d" "\xca\xed\xd4\x5b\x87\x42\xcb\x5b\xbe\xbc\xe2\x6f\xce\x78\x0a\xf9\x66" "\x6a\xc3\x6f\x8d\x39\x5e\x2c\x81\x98\xc6\x24\x2a\x52\x6e\xa8\xa7\xea" "\x35\x7b\x95\x07\xbe\x40\x4b\x25\x16\xcf\xa1\xb1\x8e\x3b\xd0\x3c\x36" "\xba\x48\xcc\xeb\x38\x11\xcd\xb5\x84\x5d\x48\xa8\x6f\x16\x9f\x6b\xa5" "\x71\x5d\xb7\xb7\xfc\x7c\xc1\x0d\x70\x69\xd3\x00\xc3\xc0\x71\x6c\x6a" "\x5d\x9e\xe0\x3d\x93\xc0\xe9\x56\x36\x78\x85\xbc\xd1\xd1\x2a\xa0\x75" "\x6c\x07\x1f\xf8\x94\xbf\x0c\xbc\x44\xb7\x0f\xa7\x22\xb3\xce\xac\xee" "\x3d\x35\x41\x9c\x3e\x22\xac\xbb\x44\x34\x13\x27\xbb\x4a\xd5\x61\x12" "\x49\x75\x72\x38\x2c\x23\x08\xa2\xd0\x3c\x31\xe8\xb6\xec\x6a\xff\x5e" "\x3f\xda\x5e\xaf\x21\x03\xd0\x91\x49\x17\x5c\x5a\x3c\xed\x71\x34\xbe" "\x1b\xea\xb9\xe3\x18\x02\x82\x32\x24\xb5\x84\xcb\x10\x27\x86\xf7\x90" "\xc0\xc1\x06\xb7\x37\x1d\xdf\x71\x83\xc6\xbd\xc3\xe7\x7a\xd9\xf8\x3f" "\x2a\x95\x1f\x69\xc3\x43\x9a\x0d\x92\xc9\xc8\x68\x17\xa0\x0e\x2d\xdb" "\x88\x3f\x38\xa1\xea\x75\x75\x3f\x66\xd7\x79\x0c\x43\x67\xdc\xc7\x15" "\x22\xf7\xcd\x1a\x56\x1a\x43\xaa\xdc\x07\x5b\x12\x80\x6d\x73\xf6\xe0" "\xb1\x88\x20\x8c\x8f\x35\xae\x9b\x70\xa9\x88\xfb\xe6\xdf\xe3\xdb\x2d" "\x53\x19\x31\xa0\x91\xf0\x54\xff\x7a\x15\xb3\xc2\xf9\xe5\x6d\x13\xcd" "\x45\xa4\x5a\xdb\x1a\x6f\x52\x8e\x6c\xfc\x5a\x1d\x3f\x2c\xc7\x5c\xef" "\xc7\x4e\xa4\x64\x05\x95\xbb\xa3\x18\x04\xdd\x12\xa7\x9d\x79\xe2\x9f" "\x11\x76\x29\x16\xdf\xdf\xcf\x9b\xc1\x96\x10\x6f\xc5\x62\x8a\xe3\xcc" "\x6e\xfd\xb0\xde\x4e\xbe\x6a\x5c\x27\x90\xaa\x0f\xe2\x88\xe3\xd4\xb6" "\xe8\x3f\xab\xa3\xa7\xb2\xbd\xfa\xd1\x0c\x5f\xe7\xa5\xb6\x54\x93\xf6" "\x3c\xf1\xff\x5b\x5f\x47\x02\x81\xe2\xd1\xfc\x60\x15\x09\x78\x31\xd3" "\x5a\x13\xe4\xe9\xb1\xf4\x6c\x2d\xcc\x4b\x0d\x37\x9e\x41\x9e\xd9\xe8" "\x50\x9c\xcd\xa4\xba\x22\xa2\x3d\x8a\x78\x9c\x36\x9c\x05\xb1\x64\xeb" "\x39\x88\x14\x42\xf8\xc5\x67\x7d\xbe\xe3\x97\x4c\xe8\x33\xa1\xf7\xf9" "\x1f\x0e\xcc\xd5\xd4\x38\x8d\xf5\x26\x79\xfa\x55\x48\x3f\x8f\xfd\xa5" "\x57\x87\x7f\x8c\x46\x7f\x90\x2b\xa5\x67\x48\x98\x6c\x71\x9e\xeb\x7a" "\xbf\x0c\x42\xf1\xd8\x6d\x96\xc2\xb7\xc3\xc5\x2e\xa9\x5f\x3c\x22\x4b" "\x71\x03\xce\x43\xe4\x02\xf1\x1b\x52\x95\x32\x12\x8e\x67\xf3\x2a\xe1" "\xce\xc3\x13\xe7\xe1\x67\x1e\xe2\xf2\x44\x19\x4d\x93\x33\x37\xe7\x7f" "\x74\x20\x26\x67\x25\x7e\x31\x11\xca\xcf\x0e\x33\x4d\xff\x38\x13\x3d" "\x88\xfd\x83\x93\x05\x8e\x71\xa5\x22\x02\xed\x3c\xc1\x76\xc4\xca\x71" "\x0e\xa0\x72\xc4\xb1\x03\xca\x4a\x54\x81\x9e\xc4\x6d\xa6\xe0\x5b\x9e" "\x69\x13\x43\x93\x41\x25\x3b\x76\x4e\xb5\x82\x36\x79\xaa\xf5\x20\x7e" "\x7f\x42\x9b\xa8\x9e\xa9\x2c\x5e\xc0\xad\x24\x9d\x3a\xb2\x37\xe6\x6b" "\x0e\x39\x58\x6f\x9b\x30\x2e\x39\xd5\x32\x8a\x11\x79\xa5\xf7\x70\x0d" "\x14\x15\xc0\x43\x6a\xcb\xdd\x0f\x69\x79\xb3\x4a\x1d\x20\x4b\x5b\x52" "\x37\x88\x17\x15\x2a\x01\xf9\x91\xbc\xb3\x0d\x33\x1b\x5d\xd6\x64\x69" "\xe5\x27\xc9\x68\x46\xfa\x9c\xdc\x44\x6b\xb7\xb2\xa8\xfb\xf9\x56\xd6" "\x64\x12\xa9\x3e\x0d\x8d\x23\x66\xfe\xfb\xe5\x07\x94\x3b\xe6\xee\xf7" "\xac\x23\xdf\x4b\xbb\x7d\x82\x38\x4e\xe8\x84\x0c\xb8\xef\x52\x99\x8c" "\xb9\x2c\xcb\x10\x8d\xe3\xe0\xb0\xa9\xf4\x26\xe8\x93\x7d\x81\x2c\x3c" "\xc8\x03\x42\xc4\xc0\x5a\xa6\x4b\x76\x7b\xc8\x5a\xe1\xe1\xe4\xd7\x18" "\x9e\xc8\xae\x12\x2d\x0a\x56\x4c\xae\x21\xc2\x23\x6d\x84\xbe\xec\x44" "\x4f\x42\x94\x18\x5b\x41\x5d\x2e\x09\xc4\xc9\xf1\x2e\x78\x21\xd7\x43" "\xe3\x50\xf6\x38\x9c\x66\x32\x2e\x0a\x78\x3c\xaa\x0d\x54\x3a\xef\x1e" "\x9d\x54\x91\xaa\x2d\xe3\x42\x19\x8c\xa3\xc7\x4d\x5d\xe2\x1e\xa2\xd7" "\x80\x22\x0a\x16\x5d\xce\xf7\x89\x45\x30\x2f\xc8\xc4\x00\xaf\x66\xb4" "\xe7\x83\xdf\xd9\x9c\x2a\x10\x0e\xb2\x31\x48\xb4\xe6\x64\x73\xfb\xb2" "\xb9\xac\xbe\x20\x9a\x9c\x38\xbb\xe4\xc1\xac\x63\xe8\x01\xca\x82\xb0" "\xb4\x2d\xde\x0c\x51\x27\xa4\x13\x3e\xa4\x88\x51\xf1\x54\xe4\xd8\x78" "\x5c\x63\x39\xd2\x84\x4f\xf3\x28\x1f\x42\x45\x57\x56\x1e\x00\xd3\x8b" "\x7d\x66\xa3\x2d\x40\xc4\xe9\x1c\x3c\x30\xd5\xa3\x12\x6b\xc5\xb0\x60" "\xe7\xf2\x2c\x2f\x1a\x08\x13\xa1\x2f\x36\x95\xad\x44\x91\x86\xec\x43" "\x49\xb4\xc2\x8b\xfe\x57\x69\x61\x3f\xce\x4f\x83\x20\xa5\xab\xd8\xa4" "\x94\xcf\x6f\xd1\xce\xb8\x9c\x05\xee\xe1\xcf\x9b\xf0\xd3\xe7\x89\x96" "\xaa\x69\x1e\xb0\x57\x1b\x64\x27\xee\xa2\x7b\x7a\x49\xaa\xef\xae\xf8" "\xd3\xbb\xad\xae\xe2\x8a\x44\xf6\xba\x21\x26\xf9\x43\xa7\x62\x6a\xdd" "\x30\x34\x30\x0e\x10\xcd\x91\x44\x8d\x15\x55\xb0\xab\x7d\xaf\x88\x91" "\x3b\x40\x06\x39\x8b\xca\x40\xf3\x52\x60\x86\xae\x5d\xf6\x99\x00\xe4" "\x0a\xb6\xbf\x53\xfb\xf3\x8d\x45\x61\xaa\xbb\xc3\x11\x3c\x45\xf6\xab" "\x7b\x71\x45\x1c\xb2\x96\xbb\x7b\x6e\x99\x76\xe1\x01\x94\xd4\xc6\x35" "\x9e\x2d\x80\x37\x11\x75\x7b\xae\x8b\x2b\x8f\x41\x0d\x69\x24\x10\x7a" "\x45\x17\xe4\xc1\xd9\x22\xfc\xa0\xe8\x81\x53\x7b\x39\xc8\xcf\xf3\x4b" "\xb7\xd9\x9f\x32\x6e\xcf\x3d\x9f\x75\xa5\x5b\x2a\x82\xa9\x78\x5a\xdc" "\x19\xd7\x8f\xb0\x64\xb4\xe9\xcb\xee\x1c\xa8\x2c\xd8\x08\x28\x31\xa7" "\x2e\xe5\x3f\xa8\xdb\x60\x5b\xf2\x12\x77\xb8\xc6\xd9\xee\xd8\x77\xdd" "\x06\xce\x08\x5b\xd5\x71\x8b\xb4\x9e\xe4\x0c\xb7\x66\xf7\x91\xc5\x84" "\x8f\x47\xb1\xf8\xaf\xdf\x88\x56\xc3\x1c\x8c\x74\x0d\x25\xaf\x58\xf2" "\x86\x22\x69\x7b\xe5\x9d\x3e\x8d\x4b\x24\x56\x13\x2c\x86\x2c\x2e\x8b" "\xed\x75\x13\x83\x38\x23\xf4\xa4\x14\x76\xb4\xbb\x92\x5a\xfd\x1a\x73" "\xd5\xc2\x09\x44\x03\x58\xc9\x16\xab\xe6\x52\xdd\xaf\x05\x94\x2a\xf3" "\x61\x88\x78\x87\x2a\x0b\x65\x82\x48\x3a\xfe\xcd\xb2\xd2\xc1\x05\xd8" "\xf9\xcd\x4d\x6a\x61\xef\xbd\x5f\x53\x90\x86\x90\xde\x6b\x70\xca\xb0" "\xd7\xcd\x11\x75\x7a\xc7\x7f\x39\x40\x86\x6b\x2b\x15\xbd\x27\xed\x96" "\x1f\x5e\xa7\x04\x34\x70\xd1\xd4\x2e\x39\x4e\x7e\x5a\x81\xd5\xe4\xbc" "\x61\x8c\xee\x0e\x3c\x7f\x00\x46\x35\xb4\x44\x47\x7c\x3d\x07\x56\x84" "\x8f\x5c\x22\xee\x10\xd8\x7f\x4f\xf9\xef\xc5\xb2\xa9\x05\xd7\x99\x86" "\x8f\x44\x79\xf6\xb2\xd9\xd0\x5c\x90\x6f\x02\xa7\xdf\xd5\x18\x37\x3d" "\x85\x9b\x64\x93\xe3\x9c\x46\x6a\x25\xa7\x6d\x97\xca\x7c\x5d\xe8\x4e" "\x8c\x14\x07\xa9\xf6\x38\xc0\x6b\x17\x96\x7d\x9e\x0d\xd2\x9f\xb0\xf7" "\x42\x4c\x06\x99\x29\xa1\x5e\xf7\x20\x28\x0b\xc7\xca\x2c\x9a\xd2\x5f" "\x8a\x71\xff\xcc\x4c\xa3\xae\xb8\xd4\x31\x19\x8f\x46\xfc\xf8\xee\xd5" "\xab\xfd\x57\x4e\x8c\x05\x39\x50\xb5\x4d\x4a\xc1\x9e\xea\xd6\x6a\x61" "\xaf\xa0\x55\x64\x2a\xf8\x93\x6e\xbb\x37\x17\x3e\x2d\xba\xe4\xcf\xf3" "\x8f\xbe\xdd\x4d\x3c\x92\x00\x27\x8e\x16\xa6\x06\xc7\x5a\x65\x39\x80" "\xb3\x91\x89\x52\x28\xc1\x74\xe5\xf9\xf8\x4e\x2c\x17\xf6\x93\xd0\x9f" "\xc3\xc8\xea\x28\x86\x49\xb0\x20\x34\xac\xb9\xde\x5b\x16\xa9\xc2\x6b" "\xb8\x4b\xa5\xb4\xb8\x00\xaf\x77\xed\x0d\xeb\x5e\xb5\xa4\xfe\xf0\x1f" "\xe0\x0d\x6e\x7c\xa1\xf6\x9d\x02\xf0\xd9\x7d\xc9\xd9\x93\x2e\xfb\xc9" "\x07\x41\x2e\x50\x43\xc9\x4b\xa0\xde\xeb\x5e\x0f\xbf\xe4\x2c\xf8\xbb" "\x4e\xbc\x64\x95\xe6\x04\x0b\xc1\xa8\x15\xc2\xe4\x29\xc4\x9f\x85\x3b" "\xd7\xc6\xb3\xdd\xb1\xb7\xfa\x4a\xf0\x24\x62\x3c\x1b\x38\xeb\xb6\x38" "\x0e\xd3\x52\xdc\x10\x36\xd1\xc2\xf6\x5b\x59\xa3\xe2\xde\x36\xe6\xa9" "\x54\x21\x89\x06\x0b\x07\x8a\x7b\xda\x3f\xf8\x94\xe2\x20\xdc\x51\xc2" "\x08\xc5\x8e\xb7\xf3\x6a\x4b\xa3\x60\xbe\xa7\x52\xa1\x81\x3b\xb0\xe4" "\x42\x1a\x5a\x69\x54\xb1\xfc\xd1\xa8\x5d\x8d\x28\x1a\x7f\x18\xbb\x63" "\x8d\xfe\xc8\x75\x32\x9f\x83\x60\x8c\xf5\xef\x41\x65\xf7\xac\xd1\xe3" "\xd5\x06\x1f\x8a\xf7\xdb\xe4\xbb\x22\xf9\x41\x94\xd4\x5e\xe1\xba\xc8" "\xf8\xa8\x9e\x40\xd0\xdf\x80\x73\x18\x85\x40\x95\x78\x78\x8a\x09\xd9" "\x30\xed\x3f\xcb\x0a\x85\x22\x15\x18\x33\x92\xf4\x57\x05\x49\x94\x34" "\xa7\x79\x8a\xcc\x69\xe5\xbe\xd9\x30\xb6\x48\x4e\x35\xad\x9a\x0d\x14" "\xe1\x0f\x83\x9b\xc9\xe0\x87\x4d\xd4\xd1\x70\x2c\x33\xe5\xff\xef\xa5" "\x10\x4f\x7d\x88\x0c\x93\x01\x16\x17\xc5\x71\x3e\x6d\xa3\xc7\xa2\x71" "\x4a\x41\xa1\x68\xd1\x44\x74\xbc\x9d\x9d\x65\xdd\xe5\xd7\x0e\x79\xd6" "\xbd\x1f\x9a\xba\xa0\xf7\x09\xca\x89\x1d\x08\x08\xb7\x4f\xa6\xb1\x34" "\xec\xfc\xe6\x43\xc7\xf8\x84\xdd\xfb\xdc\x06\xd2\xe5\x82\xed\x70\xfc" "\x14\x17\xd3\x10\x7c\x38\xe2\xbb\xc7\x3d\x40\xb6\x46\xb2\x3c\x27\xaf" "\x47\x3c\x48\xfb\x17\xaf\x85\xac\x1c\xb1\x29\x3b\x36\xe8\x85\x56\x17" "\x28\xcb\x33\xa6\x6c\x96\xc7\xaf\x2d\x66\x26\x0a\x7b\xaf\xef\xab\x60" "\x70\xd4\x5a\xca\x8d\x77\x32\x9f\x38\x01\x2d\x8e\xb4\x41\xc7\xe0\x86" "\x33\xd9\x9a\xbc\xf0\x42\xe9\xa6\x24\x35\xa2\x64\xb3\x2d\x6f\x49\xec" "\x63\x42\x61\x8f\x1d\x98\xf9\x79\x0f\xb0\xb3\x11\xb7\x77\xa1\x07\xcc" "\x3b\x0c\x4d\xc1\x64\xf8\x52\x2c\x66\x64\x8e\x75\xd1\xaa\x71\xa3\x84" "\xbc\xa5\x62\xaf\xfa\xfa\x82\xc4\x91\x3b\x31\x7f\x19\x70\xc2\x74\x9e" "\x64\x3e\x12\xc3\xe7\x3d\x77\x4b\xef\x75\x6d\x8f\x22\x8d\x7f\x33\xff" "\x11\xf1\x59\x57\x61\x87\x24\x30\xe8\xb8\xe4\x89\x37\xa4\x0b\xe2\xbe" "\xd6\x06\x70\xaa\xf5\x75\xad\x88\x05\xca\x89\xa7\xd9\xa6\xac\x67\x59" "\xb7\x8f\xc7\x58\xcd\xe3\x70\xce\x4a\xcc\xbf\x46\xd8\x31\x3c\x4d\x7c" "\xaa\x4a\x9f\x32\xd6\x57\x54\xa0\x01\xee\x30\xd3\xee\x0d\xf9\x2c\xcc" "\x69\xdd\xb0\x5c\x9f\xe9\x82\xa2\x76\x82\x6c\x59\x6c\xa3\xb5\x5b\xb6" "\x69\xbe\x46\x29\xd0\x47\xfe\xd1\x24\xee\x56\x89\xbc\x48\xd8\xf9\xda" "\xf5\x60\xe2\xdf\x3b\x16\x25\x9c\xd4\x8f\xac\xa5\x96\xad\x6c\x16\xf7" "\x45\xc4\x37\x07\xbc\x35\x17\x3e\xd2\x71\xff\xab\x6e\x91\x57\xf1\xdf" "\xb0\xf6\xb4\x36\x08\x02\x0e\x3b\x51\x1b\xa2\x49\x1b\x43\x56\x02\xf7" "\x0e\xc5\xce\x23\x80\xe9\x60\xa0\x42\x5b\x62\xef\x12\xbc\xde\x40\xee" "\x2a\xbb\x75\x39\xb6\xec\x87\xf2\x84\x65\xf9\xe9\xdc\x71\xa6\x5d\xc6" "\x8b\x3f\x9b\x42\xd1\xb2\x26\x13\x6a\xc4\xbb\xde\x3b\x79\xe0\x4d\xfa" "\xa4\x5e\x8c\x51\xb4\x80\xd5\x15\xb2\xfb\x66\xeb\x1f\x8b\xca\x7e\x17" "\x03\x0d\xcf\x44\x1d\xbe\x9b\x35\x0b\x9c\x4a\x38\xca\xf2\x34\x78\xae" "\x8c\x47\x20\x3d\xef\xf2\x8f\x65\xe5\x6e\x8d\xf3\x87\xdf\xfe\x79\x68" "\x09\xb0\xe2\x72\x81\x8f\x8f\x18\xcc\x2b\x26\x51\xd2\x3d\xe8\xe8\x88" "\xb1\x0e\xc2\x01\xb4\xee\xaf\x3f\xaf\x00\x74\x47\x16\x35\x6c\x80\x15" "\x5e\x59\x67\xfd\xa0\xe4\xb6\x13\x80\xb2\x9b\x6c\x7d\xdf\xc6\x36\x5f" "\x35\x9c\x4b\xea\x52\x0f\x78\x45\x2c\x2b\x87\x87\x3e\x80\xcf\x7c\x1d" "\x5c\x2b\xbe\xb8\xb8\x17\xed\xcd\x18\x8b\xf7\x09\x04\xdb\x4d\xc4\x36" "\x51\x8b\xf2\xc8\x90\x31\xdd\xda\xa7\xbf\x17\xa1\x00\xe5\x2d\x82\xc5" "\x9c\x27\x97\x77\xdf\x19\x95\x33\x7e\xbf\xfb\x6b\x6a\xcb\xcc\x74\xc2" "\xbb\x7c\xae\xb6\xb0\xac\x42\x58\x81\xd3\x7e\x51\xb6\xe5\x2b\xf5\x22" "\x8a\x46\xdb\x4e\xcd\x2e\x74\x84\xe1\x9a\x13\x71\xf5\xaf\x33\xbf\xc3" "\x24\x24\xb2\x52\xd3\x6e\xe0\xf3\x12\x5f\x95\x79\x06\x3b\xde\x11\xa3" "\xef\x17\x8f\x57\x41\x89\xf2\x17\xef\xe9\x0d\x96\xdc\x0f\xa3\x21\x07" "\xe7\xaf\x99\x70\x15\xbc\xbf\x6c\x74\x71\xd6\xf5\xfd\xf4\x44\xb6\xd9" "\xff\x6d\xfb\x63\x80\x11\x69\x6d\xc5\xa6\xec\x6b\x25\x78\xc1\xdc\x64" "\xaa\x2a\x0a\xa9\x03\xde\xbb\x0b\xfd\x37\x51\x7e\x14\xeb\xbe\x70\xeb" "\xae\xca\xbd\xfd\xaa\x44\xc9\x16\xe5\xfa\x47\xab\xa9\x9e\x4d\xfe\x05" "\x26\xbe\xe6\x58\x3e\x1c\x81\x43\xa6\xad\x4e\x14\x27\x61\x79\xbb\x6a" "\xaa\xf3\x56\x07\xa8\x24\xf3\x43\x46\x3c\x75\x12\xb5\x15\x9e\x78\x06" "\x20\xab\x87\xd2\xb1\x68\xff\x67\xb6\x51\x07\x40\x83\x23\x83\x2d\xe5" "\x0d\xb0\x85\xcd\x61\x2f\x5a\x88\xbd\xf1\x55\x20\x29\x22\x42\x75\x31" "\x59\xb8\x61\xdd\x26\x83\x8e\x92\xb5\xef\xa0\x26\xec\x7d\x92\x93\x64" "\x5b\xd3\x76\xae\x2d\x25\xa7\x10\x5a\x97\xbe\xf6\x1b\xf5\x34\xa4\x25" "\xbd\x76\xbb\xda\x80\x74\xbb\x14\x7e\xb2\xa1\xd5\x77\x07\x56\xd8\x77" "\x3b\x49\xb0\x9c\x41\x69\xc1\x6f\xda\x2b\x26\x55\x23\xfa\x93\x24\x41" "\xa6\x2b\x4a\xf9\x83\x6f\xf2\x1b\x8a\xbe\x20\xfb\xfb\x01\x84\x5d\xcc" "\x7a\xde\xe7\xdc\x3d\xfd\x01\x62\x92\xda\xc6\xdf\xdb\xd3\x5f\x90\x5f" "\xac\xa6\xc6\x28\xd4\x40\xc7\x4c\x97\xc8\xbb\x4b\xe2\xc4\x82\x07\xe1" "\xea\xed\xe9\xb4\x45\x98\x12\xaf\x60\xc7\xe3\xe8\x8b\x3d\xf1\x82\x5d" "\x1e\x0c\x4b\x6d\xff\xc1\x62\x55\x1a\xe1\x88\xcd\x3b\xc2\x2b\x4c\x73" "\x0f\x17\xab\xcd\xd4\x80\xbd\xd7\xff\x1c\x98\xcb\x1b\x1b\x2c\xf7\xe5" "\x67\xb8\x65\x5c\xc4\xa5\x28\xd7\x4f\x54\x3a\x49\x8c\xd9\xb9\xe2\xf1" "\xd4\x0f\x6b\xff\x58\x0d\x34\xdc\xd3\xc3\x3b\x36\xd5\x64\x13\x86\xb5" "\xf2\xad\xb1\x6a\xbe\x37\x06\x5e\xb4\x4d\x0b\x15\x9f\x66\xfd\xbc\x8c" "\x1c\xd1\x06\xc0\xcb\x64\x02\x2e\xbc\x27\x89\x70\xb6\x14\xa1\xf0\x2c" "\x86\xf5\xc0\x39\xcd\x18\x54\x1f\xf3\x80\xd0\x1f\x44\x90\xf3\xc7\x4b" "\xa3\xa9\xe6\x91\x69\xab\x67\x24\x7a\xf2\x69\x04\xac\x70\x42\x7f\x65" "\x23\xe8\x1d\x47\x4b\xb3\x77\x16\x71\xb4\x69\x08\x30\x9c\x5f\x05\x14" "\xf3\xeb\xeb\x43\xd9\x53\x77\x79\x4d\x43\x80\x46\xa8\x29\xb8\x36\x59" "\x13\x6d\xb5\x6b\xdb\xf4\xbc\xd2\x4a\xea\x33\xb7\x33\xd0\x6e\x53\x79" "\x5c\xf2\x5c\x31\x4e\xdd\xd5\x3e\x4e\xa0\x61\x86\x8a\xbf\x46\x7e\x77" "\x50\x1e\x70\x77\x24\x0b\xf7\x30\x9b\x5a\x3b\x3e\x57\x26\xbf\x3c\x15" "\xe4\x67\xac\xff\x68\x34\x07\x05\x3e\xdf\x9e\xfc\x31\x67\xc5\x28\x20" "\x90\x89\x81\x6e\xe8\xeb\xe2\xc8\x32\xc5\x4a\x81\xe7\x0a\x5c\xf9\xe7" "\xfb\x80\x21\x67\x73\x40\x03\x7d\x7b\x2d\x3c\xa5\xa3\x08\xec\xa8\x32" "\x0a\x61\x65\xcd\x40\x7e\x13\x19\x3a\x45\xd6\xab\x58\x82\x9e\x7a\x19" "\xa1\x83\x9b\x8d\x67\xe7\xf1\xb2\x87\x33\xdc\x5b\xef\x40\xcd\x7f\xcb" "\x53\x47\xab\x78\xbb\x59\x1f\x2f\x13\x2d\x65\xdd\x39\xa4\x68\x10\x24" "\x7a\xc7\x27\x5a\xe9\x66\xa3\x10\xeb\x77\xe5\x42\x1d\x85\xfe\x83\x9b" "\x71\xb1\x19\x25\xdc\x94\x2c\x03\x52\xf8\x04\xe4\x15\x0d\x61\x61\x3c" "\x9e\x85\x3e\xcc\x67\xb7\xcf\x27\xa7\x7e\x03\xee\x1a\xe1\x1f\x4b\xf3" "\x0b\x41\x01\xbd\x71\x1f\x96\x68\x0a\xb2\xf1\xbb\xcd\x0f\x4d\xf0\x72" "\x8f\x6d\xbf\xcb\x8b\xb1\x57\x11\xc3\xc7\xf1\x6f\x2a\x6b\x56\x9b\xbd" "\x82\xa5\x2c\xc4\xf4\x9a\xc7\x9e\x78\xeb\x6f\xd3\xb3\x23\xf2\x67\xae" "\x38\xe6\x2e\x31\x80\x4e\x66\x2d\x8f\xec\xbb\x86\x67\x53\xb0\x8a\xe8" "\xc1\x13\xd4\x6c\xbd\xe2\x35\x3f\xf5\xcd\x18\x18\xc4\xe4\x56\x3b\xb4" "\xa9\xb7\x7a\x1a\x23\xa4\xfd\xff\x60\x91\x16\x92\xdf\x42\x21\x23\xa4" "\xfa\xdf\xb0\x25\x66\xc5\x31\xe3\xad\x2e\xed\x9f\x99\x2a\x9d\x6d\x6a" "\x3b\x8b\x77\x06\x97\x27\x2b\x22\xfa\x72\x83\xc4\xba\xa7\x23\xa0\xa8" "\x95\x4c\x9e\xff\x20\x8a\xc1\x59\xcf\x88\x9d\xc2\xbc\x31\xbb\xf8\x3b" "\x50\xbc\xef\xfb\x93\x9a\x96\x26\x78\x0e\x51\x7d\x4c\xce\x53\xe5\x2b" "\xa2\xfc\x7c\xef\x8b\x61\x79\x0f\x1a\xbf\xa3\xa3\x25\x37\x69\x7b\xb7" "\x17\xa2\xe5\x2e\x67\x2e\xc7\xcd\x85\xe7\xc3\x3b\x07\x96\x07\xf6\x53" "\x0b\x1b\x94\x42\x40\x76\xa5\x01\xf3\x95\x35\x47\xc7\x26\x8d\x1c\x55" "\xbc\x8d\x77\x88\x22\xcc\x4e\x2f\x4d\xdd\xf9\x43\x61\x29\xd0\x6b\x83" "\x5d\xd4\x06\x33\x06\x64\x61\x68\xc6\x7e\x45\x77\xf4\x2c\xb9\x2f\x35" "\xbc\x5b\x5d\x3e\xe9\xff\x83\xeb\x43\xd4\x76\xe8\x56\xd2\x46\x7b\x0f" "\x99\x33\x19\x50\x12\xab\x68\x23\x41\xc4\x94\xe2\x90\xdd\x7a\x4d\x49" "\x7f\xc3\x49\x93\x8f\xc7\xe7\x2d\x75\xd6\x4e\xa6\x62\xd7\x1c\xc1\x59" "\xf5\x88\x03\xe0\x11\xff\xb0\x67\x05\x75\xa7\xfc\xf0\x84\x2a\xb3\x33" "\x13\x3b\x15\xeb\x58\x0a\xbf\x1d\x42\x30\xdc\xe8\x0c\x5d\x13\xea\x58" "\x00\x15\x32\xc7\xed\x8d\x02\x79\xd0\xe9\x95\x64\xbc\x6d\xca\xe7\xa5" "\x60\x10\xdc\xf5\x0d\x8d\xa8\xa9\x6f\xa3\x10\x7b\xb6\xc8\x60\x68\x6f" "\x58\x71\xf5\x22\xd9\xd0\xcd\x62\x80\x0d\x33\x02\x92\x84\x15\xe1\x47" "\xbe\xb3\x05\xc5\x49\x17\x6e\xd3\x4b\xb2\xa9\xdd\xd8\x27\x5d\x8f\x7b" "\x9d\x51\x1e\xe8\xea\x53\x41\xf4\x2a\x3e\xdb\x17\x1f\xaf\x8d\xed\x47" "\x18\x26\xfa\x3e\x9c\xf4\x20\x20\xe6\xbe\x8d\xc8\xce\x6a\x3f\xca\x09" "\x37\x9a\x2d\x17\x49\xc6\x9f\xd0\x36\xd9\xfb\xb8\x87\x8c\xe3\x68\xe3" "\xec\x1e\xa8\x23\x0e\x06\x2a\xf8\x34\x4b\x0f\xe4\xcc\x91\x18\x75\xde" "\x3f\xee\xe4\xc6\x07\x8b\xf8\x8d\x0c\x4f\x8f\x1c\x42\x48\x48\xf5\x90" "\x96\xc0\x0b\xf2\xb5\x5e\x72\xf1\x37\x3a\x85\x2c\x4d\xc2\x8e\x9e\xac" "\x02\x71\xed\x41\x79\xdd\x0f\xba\xea\x64\xf9\x5e\x19\x77\xc8\x46\x97" "\x1d\xae\x0e\xe5\x71\xc5\x5b\x73\x2b\x11\x53\x41\x3c\x9d\x7e\xbe\x37" "\x69\xb8\x62\x2c\x7e\x78\x88\xa1\xc7\xaa\xd4\xb9\x5d\x57\x04\xd5\x37" "\xaf\x23\xd4\x35\x0a\x75\x0a\x04\xb2\x74\x5a\xe9\x18\x13\xf1\x42\x9d" "\xee\x22\x8c\x56\xd9\x15\xe4\xc6\x74\x67\xd6\xe3\x9a\x76\xc3\xf7\x1a" "\xea\xe3\x62\xbc\x6a\x5c\xf8\xd9\xfe\x61\x7b\xd0\xf3\x4e\x5e\xd1\x5b" "\x77\x97\x7d\x3d\x79\xde\x48\xcf\x88\x1e\xd9\x07\xf3\x29\x2d\x96\x73" "\x56\xb7\x22\x9f\xbd\xfe\xfd\xd3\x14\xc6\x3e\xce\xfe\x5c\xf4\x24\x5d" "\x09\x20\x0f\x6d\x0d\x49\xa3\x81\x86\x72\x74\xe2\x3b\x79\xb3\x47\x61" "\x96\x24\xe1\x94\xb1\x05\x9e\xd5\x26\xfc\x3d\x91\x9e\xeb\xfb\xc9\x4c" "\x5e\xd2\x91\x14\xb6\x03\x6c\x05\xd9\x81\x7a\x90\xc0\xd6\x29\xa7\x10" "\xec\x15\x25\x5a\xcf\xb2\x87\x00\x63\x07\xe1\x32\xc3\xae\x1b\x65\x31" "\xcf\x68\x7d\xdb\x46\x36\x65\x38\xfb\xd4\x47\x65\xf4\x12\x04\xe9\xff" "\x0a\x17\x40\xa2\x96\x91\xca\xe4\xa0\x58\xeb\xb8\x7a\x18\x2f\x17\x95" "\x69\x00\x47\xb4\x4f\xa5\x4d\xb4\xbf\xc7\x48\xca\x6d\xfe\x37\x44\x88" "\x2a\x2c\xe6\x83\x01\x07\xdc\xbe\xc0\x8a\x1f\xb1\xcf\x4a\x3f\x7e\x29" "\x0d\x7c\x80\x07\x00\x1c\x80\x35\xf1\x53\xdf\xb1\x76\xbc\x5d\xf6\xae" "\xc5\xe4\x7b\x93\xcc\x34\x00\x62\x0a\x32\x07\xa7\x4d\x57\x32\xc1\xff" "\xae\x0f\xba\x56\xc1\xb3\xc0\x50\xc8\x54\xc6\x2a\x75\xea\xce\x8c\xf8" "\x04\xfe\x52\x22\x12\x04\xb8\x6b\x2e\x83\xdf\xde\x47\xed\x1a\x25\x49" "\x02\x50\x8a\x52\xd5\x1e\x8d\xd9\xf2\x2d\x96\x0c\x9f\xf6\xd4\x01\xe0" "\x1a\x6e\xce\xa6\x90\xe0\x44\x4f\xac\x45\xdc\x8b\x6a\x27\x67\xae\xe3" "\x07\xdf\xba\xbf\x01\x0e\xc1\xd8\xad\x03\x6c\x23\x87\xb7\x73\xc0\x25" "\x3a\x3d\xe4\x97\x76\x0b\xa5\x5f\xab\x31\x88\x98\xc3\x87\x5f\xd4\x36" "\x5c\xb9\x87\x14\xe3\xb4\x45\x94\x05\xb0\x25\xa7\xf5\x76\x8e\x9e\xa0" "\x6b\x55\x41\x23\xc5\x8e\xed\xaa\x32\x39\xe7\x95\x92\xb3\x1e\xc3\xb7" "\xd9\x60\x4c\x62\xfd\x4c\x67\x28\x73\xa4\x68\x1f\xf0\xd1\xb2\x1e\xb4" "\x9d\x95\xbf\x95\xfd\xdf\x2e\x3e\xc8\xc3\x6f\x50\x8a\x34\xa3\x3d\x3f" "\x01\x9c\xcb\xfd\xe8\x7a\x38\xf8\xbd\x10\xb5\x8f\x24\xa7\x18\xc9\x33" "\x17\x78\xea\x8c\x55\x40\x6f\xa3\x0b\xfe\xe7\x67\x55\xcb\x36\x18\x02" "\xe9\xaa\xf5\x72\xf2\x2b\xbd\x6c\x63\x4c\xb4\x90\xe2\x94\xf9\x75\xe0" "\x7d\x4b\x4d\xcc\x41\x8e\xd0\xab\x29\xff\x55\x29\xe8\x69\x77\x57\xc7" "\xef\xac\x4c\xb7\xe1\xfb\xd5\x07\xc2\xd4\xbc\xc2\x9d\x94\x64\x81\x04" "\xb4\xef\xdd\xb0\xdf\xdb\x19\xcc\xf4\x22\xa7\xe6\xe6\x3b\x3c\xf9\xc9" "\x8a\xa6\x9d\xc6\xa6\x51\xd0\x02\x98\x11\x4a\x56\xc1\x35\xf6\xc1\x42" "\x57\x77\xf0\x8a\x5c\x98\x30\x06\x2e\xbd\x21\x8b\xe0\xb8\xdb\x5b\x9e" "\x26\x12\x0a\x74\xb7\xce\x7d\xa7\x51\xbb\x73\x2d\x29\x4d\x04\xb9\x72" "\xa5\x75\xe2\xfa\xb7\xe3\x22\x81\xec\x2a\x04\x13\xf5\x23\x89\x94\x2d" "\x5c\x90\x80\x82\x69\xd6\xc7\x1f\x30\xb2\xd8\xa4\xd2\xaa\x8b\xa8\xcb" "\x9a\x44\x42\x97\x0b\xd0\xf4\xbe\x72\x9c\x73\x26\x86\xe5\x13\xb6\xae" "\x4c\x41\x80\xfc\x7c\xba\x98\xdf\x0a\xc9\xa8\x40\x92\xd8\xd9\x4b\x08" "\xfc\x64\x2f\x40\x84\x41\x5f\xe0\xf9\x91\x0b\x43\x0c\x2a\x31\x5c\x3d" "\x95\x21\x30\xd5\x81\xd7\x54\x5b\x52\xa0\x3a\xdc\x75\xa8\xf3\x52\xdb" "\xb3\x9a\x68\xd3\x5b\x3c\xad\x2d\x9a\xbc\xe8\xcd\x5a\xab\x44\x11\x4a" "\x88\xa5\x1e\x51\x70\x5d\x5c\x74\x71\x70\x58\x16\x26\x48\x89\xad\x7b" "\x38\xb5\x4d\x11\x89\x93\xd1\x0d\x8e\x07\xc8\x33\xc6\x28\x5d\x4b\xcf" "\x05\x55\xb0\xce\xf3\x6c\xbb\x7d\x43\x8d\xf4\xc5\x7c\xf8\xb9\x53\x44" "\x93\x05\x4b\xb0\xd4\x23\xc1\x93\x59\x44\x64\x87\xf8\x51\xe7\x52\x9d" "\xfe\x55\xe5\x48\x8b\x29\x61\xca\x1a\xc6\xbe\xbb\xcd\xb4\xd5\x07\x18" "\x96\x7f\xd4\x7e\x08\xcb\x94\x93\xe5\x23\x3a\x3d\x50\xe7\x83\xf0\x48" "\x6f\xd8\x5b\x5c\x8e\xef\x1b\x3e\x01\xcf\x55\xd2\x81\xed\x1c\x79\xc2" "\x49\x33\x35\xb0\x14\x7b\x49\xff\x50\x6d\x3b\x4a\x99\x5c\x39\xe3\x5c" "\xbb\xa7\x47\xfb\xc8\x96\x7f\xf3\x64\xaf\xb2\x22\xf3\x0e\xc9\x98\x85" "\xa7\xa5\xd7\xed\x2c\xbf\x8b\x70\xd9\x1f\xec\x03\xc1\x05\xdd\xe0\x56" "\xe0\x1c\xe0\x49\xd6\x2f\x01\x3d\x0a\xfe\x3f\xd0\xa8\xd1\xfc\xae\xbb" "\xd0\x53\xb0\x71\x1b\xeb\xae\x3c\xab\x8d\xc1\xbc\x28\xd6\x6f\x65\x8b" "\xcc\xda\x1a\x72\x29\x12\xc6\x37\xd5\xde\xca\x88\x5a\x01\xa7\x7f\xdb" "\xe9\x41\xb3\xdb\x85\x61\xcd\xc9\x07\x61\x3f\xee\x4a\xec\xe5\xf1\x5e" "\x4b\x57\xf9\xde\xd8\xed\xfa\xdb\x13\xc5\x61\x5f\x17\xb3\x8d\x8b\xc8" "\xe6\x59\xfa\x13\x05\xe3\xd5\x71\xb4\xfa\x91\x1e\x29\x14\x33\x59\xf5" "\xff\xcd\x39\x23\x02\x96\x05\x52\xea\xff\x0f\xf8\x81\x7c\x8a\xac\x72" "\x0a\x26\x60\x80\x4b\x70\x28\x64\xc1\xad\xcb\x7f\x0c\x27\x75\xc0\x48" "\x1b\x6d\x7e\x23\x72\x5c\x8c\xac\x4f\xf5\xac\xa9\x63\x12\xb7\x4e\x51" "\x24\xc2\x44\x14\x74\x44\x74\x4b\xc7\xfd\x82\xa4\x88\x95\x1c\xe4\x3b" "\x17\x37\x4d\xa2\x59\x40\xb9\x86\x72\x33\x90\xf1\xd2\x45\x9f\x62\x5d" "\x58\x05\x22\xe0\x7c\xf0\x33\xe9\x5f\x1b\x3c\x3c\x27\xfa\xdc\xf6\xe3" "\x73\x2c\x44\xbe\xa9\x42\x80\xfe\xd2\xfa\x45\x36\x50\xcd\x3b\xe9\xbb" "\x51\x19\xdf\x5f\xb0\x6a\xa5\x32\x69\xc7\xc4\x03\x3a\x45\xa9\xf0\xc4" "\x57\x91\xaf\x09\xcf\x84\x59\x1d\x88\xc8\x30\xb7\xd6\xe2\xec\x79\x77" "\x61\xc0\x72\xcb\x0f\xd4\xa6\x71\xac\x15\x18\xb5\x8e\x68\xa2\xa4\x86" "\xa7\xb1\x1e\x79\x5a\x20\x86\xc2\x73\x00\xc0\x81\x27\x1f\xc1\x86\x0a" "\x54\x00\x59\xde\x2f\x3c\x77\x8f\xf4\x86\xe8\x60\xe3\x3a\xe1\xe4\x1c" "\x5a\x4a\x81\x6c\x2e\x9d\x40\xf0\x85\xda\x97\x3d\x2d\xcf\xe4\xa1\x37" "\xbf\x0c\xc2\xa0\x06\x89\x74\xc2\xed\x91\xf5\x6c\x4a\xdb\x6d\x67\x5a" "\x35\x13\x76\x29\x90\xb1\x92\xcd\x85\x9f\x6e\x2d\xfa\x5c\xf6\x24\x97" "\x98\xdb\x17\x6c\xaf\x78\x09\x5c\x56\xc7\xb0\x3f\x6a\x6b\x94\x2f\xd5" "\xaf\x97\xad\x43\xec\xaa\xd6\x97\x2b\xc4\x4a\x18\xf5\xe6\xab\xca\x30" "\xb4\x6a\x06\x59\x11\x56\xb3\x35\x8e\xf3\x09\x08\x15\x2e\x58\x4a\x41" "\x1f\x6f\xc9\xd0\xc3\xad\x39\x02\x55\x42\x48\x88\x5d\xfd\x7a\x8b\xaa" "\x8e\xd2\xef\xdf\xd0\x5c\x11\xce\xf7\x0b\x0f\xcd\x2c\x2d\xb3\x6e\x55" "\x99\x73\xab\xbe\x13\xb1\x57\xdf\xce\xfb\xe0\x0c\x2a\x88\x93\xb1\xeb" "\xf0\x2a\x13\xb1\xe8\x44\x23\xf9\x12\xbd\x66\x0b\x42\x7d\xaa\xab\xe9" "\x50\x2e\xaa\x88\x4c\x9d\x07\xfd\xf6\x8b\x4e\x89\xca\x55\x18\xec\xbd" "\xde\x12\xac\x38\xa4\x15\xf1\x9d\x83\x50\x1a\x61\x01\x8f\x2a\xf1\x7b" "\xee\xb9\x5b\xc9\xd0\x8d\x40\x26\xd2\x5e\xd0\x49\x4e\x56\xb7\x6a\x82" "\x43\xf5\x54\x57\xef\x4a\x12\xf6\x59\x30\x05\x60\x25\x66\xc3\xff\x32" "\x76\xc2\xef\x20\x49\xb0\xf3\x08\xb0\x90\x7a\x83\xca\x5b\x55\x72\x9b" "\x86\x9d\x00\xa9\x4b\x6a\x87\x10\xec\x2d\x69\x44\x1c\x8b\x82\xdc\xac" "\xb3\xd9\x3e\xe5\x1b\xe0\xbf\x33\xff\x4e\x72\x1d\xe4\xd3\xa7\xd1\xce" "\xf6\x4a\x7c\x9b\xbf\xf2\x8c\x36\xc8\xca\x71\x4c\x4d\x66\xbc\xb6\x3d" "\x8a\x36\x51\x81\x28\xcf\x81\x3b\x9e\x82\x4d\x29\xfd\x4d\x0c\x68\x3f" "\x82\x47\x17\xc2\xfa\x71\x35\x32\x33\xc6\x2d\x3c\x0c\x44\x86\x07\x59" "\xe8\x75\xcf\x83\x22\xb7\x33\x30\x99\xd2\x43\x26\x01\x36\x99\x86\x50" "\x91\x81\x34\x0e\xbb\x51\x45\xfe\x21\x73\xe4\x67\x53\x6c\x28\x36\x22" "\x2f\x19\x4b\xdc\x95\x25\x0c\x50\xb6\xe2\xce\x10\x6e\xb6\xf8\x8d\x90" "\x8e\x63\x43\xa3\xd9\x62\x7b\x3b\xe2\x2a\x65\x04\xcc\xfa\x67\xd7\x70" "\xeb\x9e\xc6\x95\xbe\x22\xaa\xd9\x5c\x59\xa7\x53\x17\x50\xe8\x13\xfc" "\x5c\x19\x8e\xd4\x5e\xb3\xc3\x30\x21\x87\x7d\xaf\x27\xb0\xfb\xcd\x1d" "\x46\xdc\xdb\xf9\x7d\xf8\x47\x6a\x0f\xae\xda\x9f\xae\x8c\x99\x2d\x60" "\x01\x52\x5e\x73\x36\x26\xb9\x7a\x32\x9f\x34\x56\x78\x38\xdd\xcd\x4a" "\xbc\xa8\x3f\xcd\xfc\x60\x7f\x13\x6c\x71\xc0\x2d\xa2\x54\x78\x98\xe6" "\x72\x76\xdf\xb3\x73\x2b\x87\x39\xf0\x35\x26\xe9\xd3\x52\xab\x82\xa8" "\x75\xf6\xc1\xc1\x1b\x8e\xe6\x43\xd5\xec\x79\x35\xd4\xe3\x3b\xb5\x23" "\x05\x2b\xcf\x69\x71\x0f\x6e\xc2\x55\x96\x1e\x2e\x9c\xad\x3a\x8c\xab" "\x31\x0d\xf6\xc6\xae\x4c\x97\x96\x16\xeb\xc8\xea\x7e\xa5\x46\x72\xe0" "\xa3\x9c\xbc\x29\xb0\xd7\xa8\x1b\x9e\x6a\x6e\xf8\xf3\xfe\x85\x35\x10" "\x5e\x11\xf9\xc4\x81\xe9\x50\xa9\x5a\x60\x09\x58\x7e\xfd\xa6\xea\x97" "\x7c\xf9\xd7\x0c\x49\xe2\xd2\x18\x6d\x14\xab\x49\x96\x57\xc6\xf2\x35" "\xf6\x28\x65\x54\x5d\xba\xf4\x60\xff\x7d\x73\x7a\xe6\x0e\xf8\x39\x8c" "\xd9\x06\x44\x21\xa0\xb1\xbe\x90\xda\x8f\xda\x3e\x9c\x67\xe3\x52\xc6" "\xd3\xc1\xe6\xd1\x7c\x03\x52\x07\xac\xad\x07\x65\xa9\x4a\xcd\x65\x3d" "\x09\x97\xc0\x9a\x6a\x8a\xa2\xe5\xa6\x76\x59\x3a\xb3\x64\xa7\xaa\xc3" "\x1b\xc1\x36\xf1\x59\x09\x3b\x9f\xbf\x07\x24\xd8\x07\x81\x57\x42\x25" "\x53\x10\x4f\x1c\xc7\x67\xbb\xd8\x5f\x79\xd1\xbe\xcf\x97\x7a\xcb\x91" "\xcb\x7f\xdf\x30\x3c\xc5\x80\xa4\x68\x89\x39\x84\x2e\x80\x7b\x78\xfd" "\xbd\x12\x21\x56\x7f\x45\xf4\xe6\xa7\xe5\x0e\x89\xef\xec\xe3\x9b\xe0" "\xfc\x13\x88\x0e\xc8\xdd\x6d\xa9\x9b\xff\x23\xac\x1e\xcd\x67\x29\x80" "\x2b\x95\x70\xf1\x70\xda\x37\xca\xb7\x9b\xe0\x0f\x39\x02\xfc\x33\xce" "\x46\x7d\xf3\xb7\x4d\x69\x18\xb1\x98\xee\xd8\x36\x13\xe7\x8f\x73\x59" "\x38\xf7\xc8\x53\xb9\x8b\x71\x6f\x51\x80\x88\x99\x1d\x56\x08\x04\x5c" "\x38\x72\x34\xc8\x25\x7e\x95\xe6\xec\xce\x55\x4a\x2d\x73\xf9\x9d\x62" "\x2b\xb5\x93\x15\x59\xb6\x38\xcd\x81\x61\x69\xa1\x6f\xb6\xed\xa6\x7f" "\xc1\x51\x19\xaa\x55\xfb\x6c\x1a\x05\xb0\xd3\xa4\xde\x1b\xfe\x50\x35" "\x02\x03\x0a\xc4\x3a\xb3\x27\xee\xa4\xef\xf0\x58\xfd\x70\x95\xab\x0d" "\x16\xb6\x5c\x65\xa3\xd0\xd7\xd9\x34\xa6\x4e\x42\x71\x31\x8b\x93\xf9" "\x7f\x66\x3d\x0c\xec\x11\xfd\x0c\xf7\x96\x45\x18\xc9\xd3\xb8\x64\x7b" "\x96\x55\xfc\x85\x53\xc9\x2d\x4f\x54\xb8\x15\x47\xe7\xf1\x62\x90\x5f" "\xaf\x3e\xca\xf3\x60\x97\xc6\xaf\x2a\x2d\x7e\xb2\x22\x28\x33\x2b\xcd" "\x7b\x4e\xf1\xcf\xc4\x9d\x2f\x3c\xd6\x58\x8e\x74\x6a\x89\xb6\x66\xfd" "\x77\x99\x0f\x71\x90\xab\xcf\x0f\x45\x87\xb0\xf4\xee\xe8\xe2\x57\x61" "\xb6\xd7\xcf\x95\x13\x0a\xd6\xef\x5a\x61\x17\xca\x12\x91\xc3\x1f\x52" "\x60\x38\x4d\x03\x80\xe4\x49\xc1\xe0\x0f\xbd\x7e\x75\x8e\xb2\x79\x5a" "\x03\xa6\xec\xe4\x67\x70\x30\x84\xfa\x83\x13\x20\x08\x37\x5b\x3c\x88" "\x33\xef\xc6\x91\x79\xed\x89\x5e\x7a\xb2\x69\xfe\x55\x16\xde\xf6\xb1" "\xc7\x8d\xe8\x02\x66\x27\x09\xc7\x3d\x32\x1b\x39\x37\x66\x46\x03\xaa" "\x80\xf2\x71\xfb\xf3\xee\xe2\xe9\xa7\x2f\x4e\xd3\x56\xc5\x96\xd5\x00" "\xbd\xb8\x85\xa0\x3a\xe5\xac\x38\x3a\x65\x66\x3c\xbc\xa4\x53", 8192); *(uint64_t*)0x200000007480 = 0; *(uint64_t*)0x200000007488 = 0; *(uint64_t*)0x200000007490 = 0; *(uint64_t*)0x200000007498 = 0; *(uint64_t*)0x2000000074a0 = 0; *(uint64_t*)0x2000000074a8 = 0; *(uint64_t*)0x2000000074b0 = 0; *(uint64_t*)0x2000000074b8 = 0; *(uint64_t*)0x2000000074c0 = 0; *(uint64_t*)0x2000000074c8 = 0; *(uint64_t*)0x2000000074d0 = 0; *(uint64_t*)0x2000000074d8 = 0x200000006a00; *(uint32_t*)0x200000006a00 = 0x90; *(uint32_t*)0x200000006a04 = 0; *(uint64_t*)0x200000006a08 = 0xe; *(uint64_t*)0x200000006a10 = 0; *(uint64_t*)0x200000006a18 = 1; *(uint64_t*)0x200000006a20 = 3; *(uint64_t*)0x200000006a28 = 0; *(uint32_t*)0x200000006a30 = 9; *(uint32_t*)0x200000006a34 = 1; *(uint64_t*)0x200000006a38 = 1; *(uint64_t*)0x200000006a40 = 0; *(uint64_t*)0x200000006a48 = 8; *(uint64_t*)0x200000006a50 = 0xffff; *(uint64_t*)0x200000006a58 = 0x4f; *(uint64_t*)0x200000006a60 = 6; *(uint32_t*)0x200000006a68 = 2; *(uint32_t*)0x200000006a6c = 6; *(uint32_t*)0x200000006a70 = 2; *(uint32_t*)0x200000006a74 = 0x1000; *(uint32_t*)0x200000006a78 = 3; *(uint32_t*)0x200000006a7c = r[2]; *(uint32_t*)0x200000006a80 = r[3]; *(uint32_t*)0x200000006a84 = 0; *(uint32_t*)0x200000006a88 = 0x3258d534; *(uint32_t*)0x200000006a8c = 0; *(uint64_t*)0x2000000074e0 = 0; *(uint64_t*)0x2000000074e8 = 0; *(uint64_t*)0x2000000074f0 = 0; *(uint64_t*)0x2000000074f8 = 0; *(uint64_t*)0x200000007500 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000004680, /*len=*/0x2000, /*res=*/0x200000007480); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*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=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }