// https://syzkaller.appspot.com/bug?id=777eaa009d91389cee95ff9f272217c20b9c6580
// autogenerated by syzkaller (https://github.com/google/syzkaller)

#define _GNU_SOURCE

#include <dirent.h>
#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>

#include <linux/loop.h>

#ifndef __NR_memfd_create
#define __NR_memfd_create 319
#endif
#ifndef __NR_pwritev2
#define __NR_pwritev2 328
#endif

static unsigned long long procid;

static void sleep_ms(uint64_t ms)
{
  usleep(ms * 1000);
}

static uint64_t current_time_ms(void)
{
  struct timespec ts;
  if (clock_gettime(CLOCK_MONOTONIC, &ts))
    exit(1);
  return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000;
}

static bool write_file(const char* file, const char* what, ...)
{
  char buf[1024];
  va_list args;
  va_start(args, what);
  vsnprintf(buf, sizeof(buf), what, args);
  va_end(args);
  buf[sizeof(buf) - 1] = 0;
  int len = strlen(buf);
  int fd = open(file, O_WRONLY | O_CLOEXEC);
  if (fd == -1)
    return false;
  if (write(fd, buf, len) != len) {
    int err = errno;
    close(fd);
    errno = err;
    return false;
  }
  close(fd);
  return true;
}

//% This code is derived from puff.{c,h}, found in the zlib development. The
//% original files come with the following copyright notice:

//% Copyright (C) 2002-2013 Mark Adler, all rights reserved
//% version 2.3, 21 Jan 2013
//% This software is provided 'as-is', without any express or implied
//% warranty.  In no event will the author be held liable for any damages
//% arising from the use of this software.
//% Permission is granted to anyone to use this software for any purpose,
//% including commercial applications, and to alter it and redistribute it
//% freely, subject to the following restrictions:
//% 1. The origin of this software must not be misrepresented; you must not
//%    claim that you wrote the original software. If you use this software
//%    in a product, an acknowledgment in the product documentation would be
//%    appreciated but is not required.
//% 2. Altered source versions must be plainly marked as such, and must not be
//%    misrepresented as being the original software.
//% 3. This notice may not be removed or altered from any source distribution.
//% Mark Adler    madler@alumni.caltech.edu

//% BEGIN CODE DERIVED FROM puff.{c,h}

#define MAXBITS 15
#define MAXLCODES 286
#define MAXDCODES 30
#define MAXCODES (MAXLCODES + MAXDCODES)
#define FIXLCODES 288

struct puff_state {
  unsigned char* out;
  unsigned long outlen;
  unsigned long outcnt;
  const unsigned char* in;
  unsigned long inlen;
  unsigned long incnt;
  int bitbuf;
  int bitcnt;
  jmp_buf env;
};
static int puff_bits(struct puff_state* s, int need)
{
  long val = s->bitbuf;
  while (s->bitcnt < need) {
    if (s->incnt == s->inlen)
      longjmp(s->env, 1);
    val |= (long)(s->in[s->incnt++]) << s->bitcnt;
    s->bitcnt += 8;
  }
  s->bitbuf = (int)(val >> need);
  s->bitcnt -= need;
  return (int)(val & ((1L << need) - 1));
}
static int puff_stored(struct puff_state* s)
{
  s->bitbuf = 0;
  s->bitcnt = 0;
  if (s->incnt + 4 > s->inlen)
    return 2;
  unsigned len = s->in[s->incnt++];
  len |= s->in[s->incnt++] << 8;
  if (s->in[s->incnt++] != (~len & 0xff) ||
      s->in[s->incnt++] != ((~len >> 8) & 0xff))
    return -2;
  if (s->incnt + len > s->inlen)
    return 2;
  if (s->outcnt + len > s->outlen)
    return 1;
  for (; len--; s->outcnt++, s->incnt++) {
    if (s->in[s->incnt])
      s->out[s->outcnt] = s->in[s->incnt];
  }
  return 0;
}
struct puff_huffman {
  short* count;
  short* symbol;
};
static int puff_decode(struct puff_state* s, const struct puff_huffman* h)
{
  int first = 0;
  int index = 0;
  int bitbuf = s->bitbuf;
  int left = s->bitcnt;
  int code = first = index = 0;
  int len = 1;
  short* next = h->count + 1;
  while (1) {
    while (left--) {
      code |= bitbuf & 1;
      bitbuf >>= 1;
      int count = *next++;
      if (code - count < first) {
        s->bitbuf = bitbuf;
        s->bitcnt = (s->bitcnt - len) & 7;
        return h->symbol[index + (code - first)];
      }
      index += count;
      first += count;
      first <<= 1;
      code <<= 1;
      len++;
    }
    left = (MAXBITS + 1) - len;
    if (left == 0)
      break;
    if (s->incnt == s->inlen)
      longjmp(s->env, 1);
    bitbuf = s->in[s->incnt++];
    if (left > 8)
      left = 8;
  }
  return -10;
}
static int puff_construct(struct puff_huffman* h, const short* length, int n)
{
  int len;
  for (len = 0; len <= MAXBITS; len++)
    h->count[len] = 0;
  int symbol;
  for (symbol = 0; symbol < n; symbol++)
    (h->count[length[symbol]])++;
  if (h->count[0] == n)
    return 0;
  int left = 1;
  for (len = 1; len <= MAXBITS; len++) {
    left <<= 1;
    left -= h->count[len];
    if (left < 0)
      return left;
  }
  short offs[MAXBITS + 1];
  offs[1] = 0;
  for (len = 1; len < MAXBITS; len++)
    offs[len + 1] = offs[len] + h->count[len];
  for (symbol = 0; symbol < n; symbol++)
    if (length[symbol] != 0)
      h->symbol[offs[length[symbol]]++] = symbol;
  return left;
}
static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode,
                      const struct puff_huffman* distcode)
{
  static const short lens[29] = {3,  4,  5,  6,   7,   8,   9,   10,  11, 13,
                                 15, 17, 19, 23,  27,  31,  35,  43,  51, 59,
                                 67, 83, 99, 115, 131, 163, 195, 227, 258};
  static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2,
                                 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0};
  static const short dists[30] = {
      1,    2,    3,    4,    5,    7,    9,    13,    17,    25,
      33,   49,   65,   97,   129,  193,  257,  385,   513,   769,
      1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577};
  static const short dext[30] = {0, 0, 0,  0,  1,  1,  2,  2,  3,  3,
                                 4, 4, 5,  5,  6,  6,  7,  7,  8,  8,
                                 9, 9, 10, 10, 11, 11, 12, 12, 13, 13};
  int symbol;
  do {
    symbol = puff_decode(s, lencode);
    if (symbol < 0)
      return symbol;
    if (symbol < 256) {
      if (s->outcnt == s->outlen)
        return 1;
      if (symbol)
        s->out[s->outcnt] = symbol;
      s->outcnt++;
    } else if (symbol > 256) {
      symbol -= 257;
      if (symbol >= 29)
        return -10;
      int len = lens[symbol] + puff_bits(s, lext[symbol]);
      symbol = puff_decode(s, distcode);
      if (symbol < 0)
        return symbol;
      unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]);
      if (dist > s->outcnt)
        return -11;
      if (s->outcnt + len > s->outlen)
        return 1;
      while (len--) {
        if (dist <= s->outcnt && s->out[s->outcnt - dist])
          s->out[s->outcnt] = s->out[s->outcnt - dist];
        s->outcnt++;
      }
    }
  } while (symbol != 256);
  return 0;
}
static int puff_fixed(struct puff_state* s)
{
  static int virgin = 1;
  static short lencnt[MAXBITS + 1], lensym[FIXLCODES];
  static short distcnt[MAXBITS + 1], distsym[MAXDCODES];
  static struct puff_huffman lencode, distcode;
  if (virgin) {
    lencode.count = lencnt;
    lencode.symbol = lensym;
    distcode.count = distcnt;
    distcode.symbol = distsym;
    short lengths[FIXLCODES];
    int symbol;
    for (symbol = 0; symbol < 144; symbol++)
      lengths[symbol] = 8;
    for (; symbol < 256; symbol++)
      lengths[symbol] = 9;
    for (; symbol < 280; symbol++)
      lengths[symbol] = 7;
    for (; symbol < FIXLCODES; symbol++)
      lengths[symbol] = 8;
    puff_construct(&lencode, lengths, FIXLCODES);
    for (symbol = 0; symbol < MAXDCODES; symbol++)
      lengths[symbol] = 5;
    puff_construct(&distcode, lengths, MAXDCODES);
    virgin = 0;
  }
  return puff_codes(s, &lencode, &distcode);
}
static int puff_dynamic(struct puff_state* s)
{
  static const short order[19] = {16, 17, 18, 0, 8,  7, 9,  6, 10, 5,
                                  11, 4,  12, 3, 13, 2, 14, 1, 15};
  int nlen = puff_bits(s, 5) + 257;
  int ndist = puff_bits(s, 5) + 1;
  int ncode = puff_bits(s, 4) + 4;
  if (nlen > MAXLCODES || ndist > MAXDCODES)
    return -3;
  short lengths[MAXCODES];
  int index;
  for (index = 0; index < ncode; index++)
    lengths[order[index]] = puff_bits(s, 3);
  for (; index < 19; index++)
    lengths[order[index]] = 0;
  short lencnt[MAXBITS + 1], lensym[MAXLCODES];
  struct puff_huffman lencode = {lencnt, lensym};
  int err = puff_construct(&lencode, lengths, 19);
  if (err != 0)
    return -4;
  index = 0;
  while (index < nlen + ndist) {
    int symbol;
    int len;
    symbol = puff_decode(s, &lencode);
    if (symbol < 0)
      return symbol;
    if (symbol < 16)
      lengths[index++] = symbol;
    else {
      len = 0;
      if (symbol == 16) {
        if (index == 0)
          return -5;
        len = lengths[index - 1];
        symbol = 3 + puff_bits(s, 2);
      } else if (symbol == 17)
        symbol = 3 + puff_bits(s, 3);
      else
        symbol = 11 + puff_bits(s, 7);
      if (index + symbol > nlen + ndist)
        return -6;
      while (symbol--)
        lengths[index++] = len;
    }
  }
  if (lengths[256] == 0)
    return -9;
  err = puff_construct(&lencode, lengths, nlen);
  if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1]))
    return -7;
  short distcnt[MAXBITS + 1], distsym[MAXDCODES];
  struct puff_huffman distcode = {distcnt, distsym};
  err = puff_construct(&distcode, lengths + nlen, ndist);
  if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1]))
    return -8;
  return puff_codes(s, &lencode, &distcode);
}
static int puff(unsigned char* dest, unsigned long* destlen,
                const unsigned char* source, unsigned long sourcelen)
{
  struct puff_state s = {
      .out = dest,
      .outlen = *destlen,
      .outcnt = 0,
      .in = source,
      .inlen = sourcelen,
      .incnt = 0,
      .bitbuf = 0,
      .bitcnt = 0,
  };
  int err;
  if (setjmp(s.env) != 0)
    err = 2;
  else {
    int last;
    do {
      last = puff_bits(&s, 1);
      int type = puff_bits(&s, 2);
      err = type == 0 ? puff_stored(&s)
                      : (type == 1 ? puff_fixed(&s)
                                   : (type == 2 ? puff_dynamic(&s) : -1));
      if (err != 0)
        break;
    } while (!last);
  }
  *destlen = s.outcnt;
  return err;
}

//% END CODE DERIVED FROM puff.{c,h}

#define ZLIB_HEADER_WIDTH 2

static int puff_zlib_to_file(const unsigned char* source,
                             unsigned long sourcelen, int dest_fd)
{
  if (sourcelen < ZLIB_HEADER_WIDTH)
    return 0;
  source += ZLIB_HEADER_WIDTH;
  sourcelen -= ZLIB_HEADER_WIDTH;
  const unsigned long max_destlen = 132 << 20;
  void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ,
                   MAP_PRIVATE | MAP_ANON, -1, 0);
  if (ret == MAP_FAILED)
    return -1;
  unsigned char* dest = (unsigned char*)ret;
  unsigned long destlen = max_destlen;
  int err = puff(dest, &destlen, source, sourcelen);
  if (err) {
    munmap(dest, max_destlen);
    errno = -err;
    return -1;
  }
  if (write(dest_fd, dest, destlen) != (ssize_t)destlen) {
    munmap(dest, max_destlen);
    return -1;
  }
  return munmap(dest, max_destlen);
}

static int setup_loop_device(unsigned char* data, unsigned long size,
                             const char* loopname, int* loopfd_p)
{
  int err = 0, loopfd = -1;
  int memfd = syscall(__NR_memfd_create, "syzkaller", 0);
  if (memfd == -1) {
    err = errno;
    goto error;
  }
  if (puff_zlib_to_file(data, size, memfd)) {
    err = errno;
    goto error_close_memfd;
  }
  loopfd = open(loopname, O_RDWR);
  if (loopfd == -1) {
    err = errno;
    goto error_close_memfd;
  }
  if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
    if (errno != EBUSY) {
      err = errno;
      goto error_close_loop;
    }
    ioctl(loopfd, LOOP_CLR_FD, 0);
    usleep(1000);
    if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
      err = errno;
      goto error_close_loop;
    }
  }
  close(memfd);
  *loopfd_p = loopfd;
  return 0;

error_close_loop:
  close(loopfd);
error_close_memfd:
  close(memfd);
error:
  errno = err;
  return -1;
}

static void reset_loop_device(const char* loopname)
{
  int loopfd = open(loopname, O_RDWR);
  if (loopfd == -1) {
    return;
  }
  if (ioctl(loopfd, LOOP_CLR_FD, 0)) {
  }
  close(loopfd);
}

static long syz_mount_image(volatile long fsarg, volatile long dir,
                            volatile long flags, volatile long optsarg,
                            volatile long change_dir,
                            volatile unsigned long size, volatile long image)
{
  unsigned char* data = (unsigned char*)image;
  int res = -1, err = 0, need_loop_device = !!size;
  char* mount_opts = (char*)optsarg;
  char* target = (char*)dir;
  char* fs = (char*)fsarg;
  char* source = NULL;
  char loopname[64];
  if (need_loop_device) {
    int loopfd;
    memset(loopname, 0, sizeof(loopname));
    snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid);
    if (setup_loop_device(data, size, loopname, &loopfd) == -1)
      return -1;
    close(loopfd);
    source = loopname;
  }
  mkdir(target, 0777);
  char opts[256];
  memset(opts, 0, sizeof(opts));
  if (strlen(mount_opts) > (sizeof(opts) - 32)) {
  }
  strncpy(opts, mount_opts, sizeof(opts) - 32);
  if (strcmp(fs, "iso9660") == 0) {
    flags |= MS_RDONLY;
  } else if (strncmp(fs, "ext", 3) == 0) {
    bool has_remount_ro = false;
    char* remount_ro_start = strstr(opts, "errors=remount-ro");
    if (remount_ro_start != NULL) {
      char after = *(remount_ro_start + strlen("errors=remount-ro"));
      char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1);
      has_remount_ro = ((before == '\0' || before == ',') &&
                        (after == '\0' || after == ','));
    }
    if (strstr(opts, "errors=panic") || !has_remount_ro)
      strcat(opts, ",errors=continue");
  } else if (strcmp(fs, "xfs") == 0) {
    strcat(opts, ",nouuid");
  }
  res = mount(source, target, fs, flags, opts);
  if (res == -1) {
    err = errno;
    goto error_clear_loop;
  }
  res = open(target, O_RDONLY | O_DIRECTORY);
  if (res == -1) {
    err = errno;
    goto error_clear_loop;
  }
  if (change_dir) {
    res = chdir(target);
    if (res == -1) {
      err = errno;
    }
  }

error_clear_loop:
  if (need_loop_device)
    reset_loop_device(loopname);
  errno = err;
  return res;
}

static void kill_and_wait(int pid, int* status)
{
  kill(-pid, SIGKILL);
  kill(pid, SIGKILL);
  for (int i = 0; i < 100; i++) {
    if (waitpid(-1, status, WNOHANG | __WALL) == pid)
      return;
    usleep(1000);
  }
  DIR* dir = opendir("/sys/fs/fuse/connections");
  if (dir) {
    for (;;) {
      struct dirent* ent = readdir(dir);
      if (!ent)
        break;
      if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0)
        continue;
      char abort[300];
      snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort",
               ent->d_name);
      int fd = open(abort, O_WRONLY);
      if (fd == -1) {
        continue;
      }
      if (write(fd, abort, 1) < 0) {
      }
      close(fd);
    }
    closedir(dir);
  } else {
  }
  while (waitpid(-1, status, __WALL) != pid) {
  }
}

static void reset_loop()
{
  char buf[64];
  snprintf(buf, sizeof(buf), "/dev/loop%llu", procid);
  int loopfd = open(buf, O_RDWR);
  if (loopfd != -1) {
    ioctl(loopfd, LOOP_CLR_FD, 0);
    close(loopfd);
  }
}

static void setup_test()
{
  prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
  setpgrp();
  write_file("/proc/self/oom_score_adj", "1000");
}

static void execute_one(void);

#define WAIT_FLAGS __WALL

static void loop(void)
{
  int iter = 0;
  for (;; iter++) {
    reset_loop();
    int pid = fork();
    if (pid < 0)
      exit(1);
    if (pid == 0) {
      setup_test();
      execute_one();
      exit(0);
    }
    int status = 0;
    uint64_t start = current_time_ms();
    for (;;) {
      sleep_ms(10);
      if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid)
        break;
      if (current_time_ms() - start < 5000)
        continue;
      kill_and_wait(pid, &status);
      break;
    }
  }
}

uint64_t r[1] = {0xffffffffffffffff};

void execute_one(void)
{
  intptr_t res = 0;
  if (write(1, "executing program\n", sizeof("executing program\n") - 1)) {
  }
  memcpy((void*)0x20000200, "exfat\000", 6);
  memcpy((void*)0x20000a00, "./file0\000", 8);
  memcpy(
      (void*)0x20001540,
      "\x78\x9c\xec\xdc\x09\xd8\x8d\x55\xd7\x38\xf0\xb5\xf6\xde\xb7\x1e\x92\x4e"
      "\x92\x84\xbd\xf6\xba\x39\xc9\xb0\x49\x92\x0c\x49\x32\x24\x49\x92\xbc\x92"
      "\x29\x21\x24\x49\x12\x12\x0f\x99\x92\x24\xc9\x3c\x25\x99\x43\x32\x85\x64"
      "\x9e\xa7\xcc\x49\xf2\x4a\x92\x24\x24\x24\xd9\xff\x4b\x71\xe9\xfd\x7a\xbf"
      "\xaf\xf7\xff\x4e\xde\xef\x7b\xd6\xef\xba\xee\xeb\xd9\xeb\xb9\xcf\xda\x67"
      "\xdd\x67\xdd\xe7\xdc\xc3\xf5\x3c\xe7\x9b\xb6\xfd\x2a\xd4\xaa\x58\xb6\x06"
      "\x33\xc3\x3f\x04\x7f\xfd\x91\x0a\x00\x29\x00\xd0\x0b\x00\xae\x06\x80\x08"
      "\x00\x8a\x66\x2e\x9a\xf9\xfc\xfa\xf4\x1a\x53\xff\xb1\x27\x11\xff\x5c\x0f"
      "\x4f\xba\xdc\x15\x88\xcb\x49\xfa\x9f\xb6\x49\xff\xd3\x36\xe9\x7f\xda\x26"
      "\xfd\x4f\xdb\xa4\xff\x69\x9b\xf4\x3f\x6d\x93\xfe\xa7\x6d\xd2\x7f\x21\xd2"
      "\xb2\x4d\x93\x6f\xb8\x46\x96\xb4\xbb\xfc\xd1\xfd\xff\xce\x7f\xeb\x8e\x24"
      "\xf7\xff\xff\x17\x92\xe3\x7f\x9a\x34\xe0\xe2\x40\xfa\x9f\xb6\x49\xff\xff"
      "\x0f\x4a\xff\xdb\xa0\x8c\xfe\x9f\x1e\x2a\xfd\x4f\xdb\xa4\xff\x69\x9b\xf4"
      "\x3f\x6d\x93\xfe\xa7\x6d\xd2\xff\xb4\x4d\xfa\x2f\x44\x5a\xf6\x77\xdc\x33"
      "\x2e\xff\xc8\x7f\xc0\x7d\xeb\x7f\xe3\xa2\x00\xe0\x72\xd7\xf0\x2f\x5b\x2e"
      "\xf7\xfe\x27\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21"
      "\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42"
      "\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84"
      "\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08"
      "\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10"
      "\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21"
      "\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42"
      "\x08\x21\x84\x10\x22\x6d\x38\x1d\x2e\x31\x00\x70\x71\x7c\xb9\xeb\x12\x42"
      "\x08\x21\x84\x10\x42\x08\x21\xc4\x3f\x4f\xb8\xe2\x72\x57\x20\x84\x10\x42"
      "\x08\x21\x84\x10\x42\x88\x7f\x3d\x04\x05\x1a\x0c\x44\x90\x0e\xae\x80\x14"
      "\x48\x0f\x19\xe0\x4a\xc8\x08\x57\x41\x26\xb8\x1a\x12\x70\x0d\x64\x86\x6b"
      "\x21\x0b\x5c\x57\xe6\x62\x46\x76\xc8\x01\x39\xc1\x02\x81\x03\x86\x18\x72"
      "\x41\x6e\x48\xc2\x8d\x90\x07\x6e\x82\xbc\x90\x0f\xf2\x43\x01\xf0\x50\x10"
      "\x0a\xc1\xcd\x50\x18\x6e\x81\x22\x70\x2b\x14\x85\xdb\xa0\x18\xdc\x0e\xc5"
      "\xa1\x04\x94\x84\x52\x70\x07\x94\x86\x3b\xa1\x0c\xdc\x05\x65\xe1\x6e\x28"
      "\x07\xe5\xa1\x02\x54\x84\x7b\xa0\x12\xdc\x0b\x95\xe1\x3e\xa8\x02\xf7\x43"
      "\x55\x78\x00\xaa\xc1\x83\x50\x1d\x1e\x82\x1a\xf0\x30\xd4\x84\x3f\x41\x2d"
      "\x78\x04\x6a\xc3\xa3\x50\x07\xea\x42\x3d\xa8\x0f\x0d\xfe\xae\xfc\x17\xa0"
      "\x23\xbc\x08\x9d\xa0\x33\xa4\x42\x17\xe8\x0a\x2f\x41\x37\xe8\x0e\x3d\xa0"
      "\x27\xf4\x82\x97\xa1\x37\xbc\x02\x7d\xe0\x55\xe8\x0b\xaf\x41\x3f\x78\x1d"
      "\xfa\xc3\x1b\x30\x00\xde\x84\x81\x30\x08\x06\xc3\x10\x18\x0a\xc3\x60\x38"
      "\x8c\x80\x91\x30\x0a\x46\xc3\x5b\x30\x06\xde\x86\xb1\xf0\x0e\x8c\x83\xf1"
      "\x30\x01\x26\xc2\x24\x98\x0c\x53\xe0\x5d\x98\x0a\xd3\x60\x3a\xbc\x07\x33"
      "\xe0\x7d\x98\x09\xb3\x60\x36\xcc\x81\xb9\xf0\x01\xcc\x83\xf9\xb0\x00\x3e"
      "\x84\x85\xf0\x11\x2c\x82\xc5\xb0\x04\x96\xc2\x32\x58\x0e\x2b\x60\x25\xac"
      "\x82\xd5\xb0\x06\xd6\xc2\x3a\x58\x0f\x1b\x60\x23\x6c\x82\x8f\x61\x33\x6c"
      "\x81\xad\xb0\x0d\xb6\xc3\x0e\xd8\x09\x9f\xc0\x2e\xf8\x14\x76\xc3\x67\xb0"
      "\x07\x3e\xff\xff\xcc\x3f\xf5\x5f\xf2\xdb\x21\x20\xa0\x42\x85\x06\x0d\xa6"
      "\xc3\x74\x98\x82\x29\x98\x01\x33\x60\x46\xcc\x88\x99\x30\x13\x26\x30\x81"
      "\x99\x31\x33\x66\xc1\x2c\x98\x15\xb3\x62\x36\xcc\x86\xd9\x31\x3b\xe6\xc4"
      "\x9c\x48\x48\xc8\xc8\x98\x0b\x73\x61\x12\x93\x98\x07\xf3\x60\x5e\xcc\x8b"
      "\xf9\x31\x3f\x7a\xf4\x58\x08\x0b\x61\x61\xbc\x05\x8b\x60\x11\x2c\x8a\x45"
      "\xb1\x18\x16\xc3\xe2\x58\x02\x4b\x60\x29\x2c\x85\xa5\xb1\x34\x96\xc1\x32"
      "\x58\x16\xcb\x62\x39\x2c\x87\x15\xb0\x02\xde\x83\xf7\xe0\xbd\x58\x19\x2b"
      "\x63\x15\xac\x82\x55\xb1\x2a\x56\xc3\x6a\x58\x1d\xab\x63\x0d\xac\x81\x35"
      "\xb1\x26\xd6\xc2\x5a\x58\x1b\x6b\x63\x1d\xac\x83\xf5\xb0\x1e\x36\xc0\x06"
      "\xd8\x10\x1b\x62\x23\x6c\x84\x4d\xb0\x09\x36\xc5\xa6\xd8\x1c\x9b\x63\x0b"
      "\x6c\x81\x2d\xb1\x25\x36\xc3\x56\xd8\x1a\x5b\x63\x1b\x6c\x83\x6d\xb1\x2d"
      "\xb6\xc3\xf6\xd8\x1e\x5f\xc0\x17\xf0\x45\x7c\x11\x3b\x63\x39\xd5\x05\xbb"
      "\x62\x57\xec\x86\xdd\xb0\x07\xf6\xc4\x9e\xf8\x32\xf6\xc6\x57\xf0\x15\x7c"
      "\x15\xfb\xe2\x6b\xd8\x0f\x5f\xc7\xd7\xf1\x0d\x1c\x80\x27\x71\x20\x0e\xc2"
      "\xc1\x38\x18\x4b\xab\x61\x38\x1c\x47\x20\xab\x51\x38\x1a\x47\xe3\x18\x1c"
      "\x83\x63\x71\x2c\x8e\xc3\xf1\x38\x1e\x27\xe2\x24\x9c\x8c\x53\x70\x0a\x4e"
      "\xc5\x69\x38\x0d\xdf\xc3\x19\xf8\x3e\xbe\x8f\xb3\x70\x16\xce\xc1\xb9\x38"
      "\x17\xe7\xe1\x7c\x5c\x80\x0b\x70\x21\x9e\xc2\x45\xb8\x18\x97\xe0\x52\x5c"
      "\x86\xcb\x71\x19\xae\xc4\x55\xb8\x12\xd7\xe0\x5a\x5c\x83\xeb\x71\x3d\x6e"
      "\xc4\x8d\xf8\x31\x7e\x8c\x43\x70\x0b\x6e\xc3\x6d\xb8\x03\x77\xe0\x27\xf8"
      "\x09\x7e\x8a\x9f\x62\x5f\xdc\x83\x7b\x70\x2f\xee\xc5\x7d\xb8\x0f\xf7\xe3"
      "\x7e\x3c\x80\x07\xf0\x20\x1e\xc4\x43\x78\x08\x0f\xe3\x61\x3c\x82\x47\xf0"
      "\x28\x1e\xc3\xe3\x78\x0c\x4f\xe0\x09\x3c\x89\xa7\xf0\x34\x9e\xc6\x33\x78"
      "\x06\xcf\xe2\x73\xd9\xbf\xaa\xb9\x23\xdf\xea\xbe\xa0\xce\x33\xca\xa8\x74"
      "\x2a\x9d\x4a\x51\x29\x2a\x83\xca\xa0\x32\xaa\x8c\x2a\x93\xca\xa4\x12\x2a"
      "\xa1\x32\xab\xcc\x2a\x8b\xca\xa2\xb2\xaa\xac\x2a\x9b\xca\xa6\xb2\xab\xec"
      "\x2a\xa7\xca\xa9\x48\x91\x62\x15\xab\x5c\x2a\x97\x4a\xaa\xa4\xca\xa3\x52"
      "\x2e\x7c\x42\xe4\x57\x5e\x79\x55\x48\x15\x52\x85\x55\x61\x55\x44\x15\x51"
      "\x45\xd5\x6d\xaa\x98\xba\x5d\x15\x57\x25\x54\x63\x5f\x4a\x95\x52\xa5\x55"
      "\x13\x5f\x46\xdd\xa5\xca\xaa\xb2\xaa\x9c\x2a\xaf\x2a\xa8\x8a\x08\x90\xaa"
      "\x2a\xa9\xca\xaa\xb2\xaa\xa2\xaa\xa8\xaa\xaa\xaa\xaa\xa6\x1e\x54\xd5\x55"
      "\x17\xec\x81\x0f\xab\xf3\x9d\xa9\xa5\x5e\xc3\xda\xaa\x1f\xd6\x51\x75\x55"
      "\x3d\x55\x5f\xbd\x81\x8f\xa9\x86\x6a\x00\x36\x52\x8d\x55\x13\xf5\x84\x1a"
      "\x84\x03\xb1\xb9\x6a\xe8\x5b\xa8\xa7\x54\x4b\x35\x1c\x5b\xa9\x67\xd4\x08"
      "\x7c\x56\xb5\x51\xa3\xb0\xad\x7a\x5e\xb5\x53\xed\x55\x07\xf5\x82\xea\xa8"
      "\x1a\xf9\x4e\xaa\xb3\x1a\x87\x5d\x54\x57\x35\x11\xbb\xa9\xee\xaa\x87\xea"
      "\xa9\xa6\x62\x79\x75\xbe\x63\x15\xd4\xab\xaa\xaf\x7a\x4d\xf5\x53\xaf\xab"
      "\x39\xf8\x86\x1a\xa0\xde\x54\x03\xd5\x20\x35\x58\x0d\x51\x43\xd5\x30\x35"
      "\x5c\x8d\x50\x23\xd5\x28\x35\x5a\xbd\xa5\xc6\xa8\xb7\xd5\x58\xf5\x8e\x1a"
      "\xa7\xc6\xab\x09\x6a\xa2\x9a\xa4\x26\xab\x29\xea\x5d\x35\x55\x4d\x2b\x33"
      "\x5d\xbd\xa7\x66\xa8\xf7\xd5\x4c\x35\x4b\xcd\x56\x73\xd4\x5c\xf5\x81\x9a"
      "\xa7\xe6\xab\x05\xea\x43\xb5\x50\x7d\xa4\x16\xa9\xc5\x6a\x89\x5a\xaa\x96"
      "\xa9\xe5\x6a\x85\x5a\xa9\x56\xa9\xd5\x6a\x8d\x5a\xab\xd6\xa9\xf5\x6a\x83"
      "\xda\xa8\x36\xa9\x8f\xd5\x66\xb5\x45\x6d\x55\xdb\xd4\x76\xb5\x43\xed\x54"
      "\x9f\xa8\x5d\xea\x53\xb5\x5b\x7d\xa6\xf6\xa8\xcf\xd5\x5e\xf5\x67\xb5\x4f"
      "\x7d\xa1\xf6\xab\x2f\xd5\x01\xf5\x95\x3a\xa8\xbe\x56\x87\xd4\x37\xea\xb0"
      "\xfa\x56\x1d\x51\xdf\xa9\xa3\xea\x98\x3a\xae\xbe\x57\x27\xd4\x0f\xea\xa4"
      "\x3a\xa5\x4e\xab\x1f\xd5\x19\xf5\x93\x3a\xab\x7e\x56\xe7\x54\x50\xa0\x51"
      "\x2b\xad\xb5\xd1\x91\x4e\xa7\xaf\xd0\x29\x3a\xbd\xce\xa0\xaf\xd4\x19\xf5"
      "\x55\x3a\x93\xbe\x5a\x27\xf4\x35\x3a\xb3\xbe\x56\x67\xd1\xd7\xe9\xac\xfa"
      "\x7a\x9d\x4d\xdf\xa0\xb3\xeb\x1c\x1a\xd4\xaf\x9d\x66\x1d\xeb\x5c\x3a\xb7"
      "\x4e\xea\x1b\x75\x1e\x7d\x93\xce\xab\xf3\xe9\xfc\xba\x80\xf6\xba\xa0\x2e"
      "\xa4\x6f\xd6\x85\xf5\x2d\xba\x88\xbe\x55\x17\xd5\xb7\xe9\x62\xfa\x76\x5d"
      "\x5c\x97\xd0\x25\x75\x29\x7d\x87\x2e\xad\xef\xd4\x65\xf4\x5d\xba\xac\xbe"
      "\x5b\x97\xd3\xe5\x75\x05\x5d\x51\xdf\xa3\x2b\xe9\x7b\x75\x65\x7d\x9f\xae"
      "\xa2\xef\xd7\x55\xf5\x03\xba\x9a\x7e\x50\x57\xd7\x0f\xe9\x1a\xfa\x61\x5d"
      "\x53\xd7\x4f\x02\x3c\xa2\x6b\xeb\x47\x75\x1d\x5d\x57\xd7\xd3\xf5\x75\x03"
      "\xfd\x98\x6e\xa8\x1f\xd7\x8d\x74\x63\xdd\x44\x3f\xa1\x9b\xea\x66\xba\xb9"
      "\x7e\x52\xb7\xd0\x4f\xe9\x96\xfa\x69\xdd\x4a\x3f\xa3\x5b\xeb\x67\x75\x1b"
      "\xfd\x9c\x6e\xab\x9f\xd7\xed\x74\x7b\xdd\x41\xff\xac\xcf\xe9\xa0\x3b\xe9"
      "\xce\x3a\x55\x77\xd1\x5d\xf5\x4b\xba\x9b\xee\xae\x7b\xe8\x9e\xba\x97\x7e"
      "\x59\xf7\xd6\xaf\xe8\x3e\xfa\x55\xdd\x57\xbf\xa6\xfb\xe9\xd7\x75\x7f\xfd"
      "\x86\x1e\xa0\xdf\xd4\x03\xf5\x20\x3d\x58\x0f\xd1\x43\xf5\x30\x3d\x5c\x8f"
      "\xd0\x23\xf5\x28\x3d\x5a\xbf\xa5\xc7\xe8\xb7\xf5\x58\xfd\x8e\x1e\xa7\xc7"
      "\xeb\x09\x7a\xa2\x9e\xa4\x27\xeb\x1e\x17\x66\x9a\xfe\x37\xe4\xbf\xfd\x57"
      "\xf2\xfb\xfc\xf2\xec\x1b\xf5\x26\xfd\xb1\xde\xac\xb7\xe8\xad\x7a\x9b\xde"
      "\xae\x77\xe8\x9d\x7a\xa7\xde\xa5\x77\xe9\xdd\x7a\xb7\xde\xa3\xf7\xe8\xbd"
      "\x7a\xaf\xde\xa7\xf7\xe9\xfd\x7a\xbf\x3e\xa0\x0f\xe8\x83\xfa\xa0\x3e\xa4"
      "\x0f\xe9\xc3\xfa\xb0\x3e\xa2\x8f\xe8\xa3\xfa\x98\xfe\x51\x7f\xaf\x4f\xe8"
      "\x1f\xf4\x49\x7d\x4a\x9f\xd2\x3f\xea\x33\xfa\x8c\x3e\x7b\xe1\x35\x00\x83"
      "\x46\x19\x6d\x8c\x89\x4c\x3a\x73\x85\x49\x31\xe9\x4d\x06\x73\xa5\xc9\x68"
      "\xae\x32\x99\xcc\xd5\x26\x61\xae\x31\x99\xcd\xb5\x26\x8b\xb9\xce\x64\x35"
      "\xd7\x9b\x6c\xe6\x06\x93\xdd\xe4\x30\x39\x8d\x35\x64\x9c\x61\x13\x9b\x5c"
      "\x26\xb7\x49\x9a\x1b\x4d\x1e\x73\x93\xc9\x6b\xf2\x99\xfc\xa6\x80\xf1\xa6"
      "\xa0\x29\x64\x6e\xfe\x87\xf3\xff\xa8\xbe\x06\xa6\x81\x69\x68\x1a\x9a\x46"
      "\xa6\x91\x69\x62\x9a\x98\xa6\xa6\xa9\x69\x6e\x9a\x9b\x16\xa6\x85\x69\x69"
      "\x5a\x9a\x56\xa6\x95\x69\x6d\x5a\x9b\x36\xa6\x8d\x69\x6b\xda\x9a\x76\xa6"
      "\x9d\xe9\x60\x3a\x98\x8e\xa6\xa3\xe9\x64\x3a\x99\x54\x93\x6a\xba\x9a\x97"
      "\x4c\x37\xd3\xdd\xf4\x30\x3d\x4d\x2f\xf3\xb2\xe9\x6d\x7a\x9b\x3e\xa6\x8f"
      "\xe9\x6b\xfa\x9a\x7e\xa6\x9f\xe9\x6f\xfa\x9b\x01\x66\x80\x19\x68\x06\x9a"
      "\xc1\x66\xb0\x19\x6a\x86\x9a\xe1\x66\xb8\x19\x69\x46\x9a\xd1\x66\xb4\x19"
      "\x63\xc6\x98\xb1\x66\xac\x19\x67\xc6\x99\x09\x66\x82\x99\x64\x26\x99\x29"
      "\x66\x8a\x99\x6a\xa6\x9a\xe9\x66\xba\x99\x61\x66\x98\x99\xe7\xdf\x2c\x66"
      "\xb6\x99\x6b\xe6\x9a\x79\x66\x9e\x59\x60\x16\x98\x85\x66\xa1\x59\x64\x16"
      "\x9b\xc5\x66\xa9\x59\x6a\x96\x9b\xe5\x66\xa5\x59\x69\x56\x9b\xd5\x66\xad"
      "\x59\x6b\xd6\x9b\xf5\x66\x91\xd9\x64\x36\x99\xcd\x66\xb3\xd9\x6a\xb6\x9a"
      "\xed\x66\xbb\xd9\x69\x76\x9a\x5d\x66\x97\xd9\x6d\x76\x9b\x3d\x66\x8f\xd9"
      "\x6b\xf6\x9a\x7d\x66\x9f\xd9\x6f\xf6\x9b\x03\xe7\x3f\x7e\xcd\x41\x73\xc8"
      "\x1c\x32\x87\xcd\x61\x73\xc4\x1c\x31\x47\xcd\x51\x73\xdc\x1c\x37\x27\xcc"
      "\x09\x73\xd2\x9c\x34\xa7\xcd\x69\x73\xc6\x9c\x31\x67\xcd\x59\x73\xce\x9c"
      "\x3b\x7f\xda\x17\xa9\x48\x45\x26\x32\x51\xba\x28\x5d\x94\x12\xa5\x44\x19"
      "\xa2\x0c\x51\xc6\x28\x63\x94\x29\xca\x14\x25\xa2\x44\x94\x39\xca\x1c\x65"
      "\x89\xae\x8b\xb2\x46\xd7\x47\xd9\xa2\x1b\xa2\xec\x51\x8e\x28\x67\x64\x23"
      "\x8a\x5c\xc4\x51\x1c\xe5\x8a\x72\x47\xc9\xe8\xc6\x28\x4f\x74\x53\x94\x37"
      "\xca\x17\xe5\x8f\x0a\x44\x3e\x2a\x18\x15\x8a\x6e\x8e\x0a\x47\xb7\x44\x45"
      "\xa2\x5b\xa3\xa2\xd1\x6d\x51\xb1\xe8\xf6\xa8\x78\x54\x22\x2a\x19\x95\x8a"
      "\xee\x88\x4a\x47\x77\x46\x65\xa2\xbb\xa2\xb2\xd1\xdd\x51\xb9\xa8\x7c\x54"
      "\x21\xaa\x18\xdd\x13\x55\x8a\xee\x8d\x2a\x47\xf7\x45\x55\xa2\xfb\xa3\xaa"
      "\xd1\x03\x51\xb5\xe8\xc1\xa8\x7a\xf4\x50\x54\x23\x7a\x38\xaa\x19\x99\x0b"
      "\xc7\x97\x47\xa3\x3a\x51\xdd\xa8\x5e\x54\x3f\x6a\xf0\x4f\x9d\x3f\x84\x93"
      "\xd7\x3f\xee\x3b\xd9\xce\x36\xd5\x76\xb1\x5d\xed\x4b\xb6\x9b\xed\x6e\x7b"
      "\xd8\x9e\xb6\x97\x7d\xd9\xf6\xb6\xaf\xd8\x3e\xf6\x55\xdb\xd7\xbe\x66\xfb"
      "\xd9\xd7\x6d\x7f\xfb\x86\x1d\x60\xdf\xb4\x03\xed\x20\x3b\xd8\x0e\xb1\x43"
      "\xed\x30\x3b\xdc\x8e\xb0\x23\xed\x28\x3b\xda\xbe\x65\xc7\xd8\xb7\xed\x58"
      "\xfb\x8e\x1d\x67\xc7\xdb\x09\x76\xa2\x9d\x64\x27\xdb\x29\xf6\x5d\x3b\xd5"
      "\x4e\xb3\xd3\xed\x7b\x76\x86\x7d\xdf\xce\xb4\xb3\xec\x6c\x3b\xc7\xa6\x03"
      "\x80\x79\x76\xbe\x5d\x60\x3f\xb4\x0b\xed\x47\x76\x91\x5d\x6c\x97\xd8\xa5"
      "\x76\x99\x5d\x6e\x57\xd8\x95\x76\x95\x5d\x6d\xd7\xd8\xb5\x76\x9d\x5d\x6f"
      "\x37\xd8\x8d\x76\x93\xfd\xd8\x6e\xb6\x5b\xec\x56\xbb\xcd\x6e\xb7\x3b\xec"
      "\x4e\xfb\x89\xdd\x65\x3f\xb5\xbb\xed\x67\x76\x8f\xfd\xdc\xee\xb5\x7f\xb6"
      "\xfb\xec\x17\x76\xbf\xfd\xd2\x1e\xb0\x5f\xd9\x83\xf6\x6b\x7b\xc8\x7e\x63"
      "\x0f\xdb\x6f\xed\x11\xfb\x9d\x3d\x6a\x8f\xd9\xe3\xf6\x7b\x7b\xc2\xfe\x60"
      "\x4f\xda\x53\xf6\xb4\xfd\xd1\x9e\xb1\x3f\xd9\xb3\xf6\x67\x7b\xce\x86\xf3"
      "\x27\xf7\xe7\x0f\xef\x64\xc8\x50\x3a\x4a\x47\x29\x94\x42\x19\x28\x03\x65"
      "\xa4\x8c\x94\x89\x32\x51\x82\x12\x94\x99\x32\x53\x16\xca\x42\x59\x29\x2b"
      "\x65\xa3\x6c\x94\x9d\xb2\x53\x4e\xca\x49\xe7\x31\x31\xe5\xa2\x5c\x94\xa4"
      "\x24\xe5\xa1\x3c\x94\x97\xf2\x52\x7e\xca\x4f\x9e\x3c\x15\xa2\x42\x54\x98"
      "\x0a\x53\x11\x2a\x42\x45\xa9\x28\x15\xa3\x62\x54\x9c\x8a\x53\x49\x2a\x49"
      "\x77\xd0\x1d\x74\x27\xdd\x49\x77\xd1\x5d\x74\x37\xdd\x4d\xe5\xa9\x3c\x55"
      "\xa4\x8a\x54\x89\x2a\x51\x65\xaa\x4c\x55\xa8\x0a\x55\xa5\xaa\x54\x8d\xaa"
      "\x51\x75\xaa\x4e\x35\xa8\x06\xd5\xa4\x9a\x54\x8b\x6a\x51\x6d\xaa\x4d\x75"
      "\xa8\x0e\xd5\xa3\x7a\xd4\x80\x1a\x50\x43\x6a\x48\x8d\xa8\x11\x35\xa1\x26"
      "\xd4\x94\x9a\x52\x73\x6a\x4e\x2d\xa8\x05\xb5\xa4\x96\xd4\x8a\x5a\x51\x6b"
      "\x6a\x4d\x6d\xa8\x0d\xb5\xa5\xb6\xd4\x8e\xda\x51\x07\xea\x40\x1d\xa9\x23"
      "\x75\xa2\x4e\x94\x4a\xa9\xd4\x95\xba\x52\x37\xea\x46\x3d\xa8\x07\xf5\xa2"
      "\x5e\xd4\x9b\x7a\x53\x1f\xea\x43\x7d\xa9\x2f\xf5\xa3\x7e\xd4\x9f\xfa\xd3"
      "\x00\x1a\x40\x03\x69\x10\x0d\xa6\x21\x34\x94\x86\xd1\x70\x1a\x41\x23\x69"
      "\x14\x8d\xa6\xd1\x34\x86\xc6\xd0\x58\x1a\x4b\xe3\x68\x1c\x4d\xa0\x09\x34"
      "\x89\x26\xd1\x14\x9a\x42\x53\x69\x2a\x4d\xa7\xe9\x34\x83\x66\xd0\x4c\x9a"
      "\x49\xb3\x69\x36\xcd\xa5\xb9\x34\x8f\xe6\xd1\x02\x5a\x40\x0b\x69\x21\x2d"
      "\xa2\x45\xb4\x84\x96\xd0\x32\x5a\x46\x2b\x68\x05\xad\xa2\x55\xb4\x86\xd6"
      "\xd0\x3a\x5a\x47\x1b\x68\x03\x6d\xa2\x4d\xb4\x99\x36\xd3\x56\xda\x4a\xdb"
      "\x69\x3b\xed\xa4\x9d\xb4\x8b\x76\xd1\x6e\xda\x4d\x7b\x68\x0f\xed\xa5\xbd"
      "\xb4\x8f\xf6\xd1\x7e\xda\x4f\x07\xe8\x00\x1d\xa4\x83\x74\x88\x0e\xd1\x61"
      "\x3a\x4c\x47\xe8\x08\x1d\xa5\xa3\x74\x9c\x8e\xd3\x09\x3a\x41\x27\xe9\x24"
      "\x9d\xa6\xd3\x74\x86\x7e\xa2\xb3\xf4\x33\x9d\xa3\x40\x29\x2e\xbd\xcb\xe0"
      "\xae\x74\x19\xdd\x55\x2e\x93\xbb\xda\xfd\xd7\x38\x9b\xbb\xc1\x65\x77\x39"
      "\x5c\x4e\x67\x5d\x56\x77\xfd\x5f\xc4\xe4\x9c\xcb\xeb\xf2\xb9\xfc\xae\x80"
      "\xf3\xae\xa0\x2b\xe4\x6e\xfe\x5d\x5c\xdc\x95\x70\x25\x5d\x29\x77\x87\x2b"
      "\xed\xee\x74\x65\x7e\x17\x57\x72\xf7\xba\xca\xee\x3e\x57\xc5\xdd\xef\x2a"
      "\xba\x7b\xfe\x22\xae\xea\x1e\x70\xd5\xca\x3c\xe2\xaa\xbb\x47\x5d\x0d\x57"
      "\xd7\xd5\x74\xf5\x5d\x2d\xf7\x88\xab\xed\x1e\x75\x75\x5c\x5d\x57\xcf\xd5"
      "\x77\x4d\x5d\x33\xd7\xdc\x3d\xe9\x5a\xb8\xa7\x5c\x4b\xf7\xf4\xef\xe2\x79"
      "\x6e\x3e\x82\x5b\xed\xd6\xb8\xb5\x6e\x97\xfb\xd4\x9d\x76\x3f\xba\x43\xee"
      "\x1b\x77\xc6\xfd\xe4\x3a\xb9\xce\xae\x97\x7b\xd9\xf5\x76\xaf\xb8\x3e\xee"
      "\x55\xd7\xd7\xbd\xf6\xbb\x78\xb0\x1b\xe2\x86\xba\x61\x6e\xb8\x1b\xe1\x46"
      "\xba\x51\xbf\x8b\x27\xb8\x89\x6e\x92\x9b\xec\xa6\xb8\x77\xdd\x54\x37\xed"
      "\x77\xf1\x5c\xf7\x81\x9b\xe1\x16\xb8\x99\x6e\x96\x9b\xed\xe6\xfc\x12\xcf"
      "\x73\xf3\xdd\x02\xf7\xa1\x5b\xe8\x3e\x72\x8b\xdc\x62\xb7\xc4\x2d\x75\xcb"
      "\xdc\x72\xb7\xc2\xad\x74\xab\x2e\xd4\xba\xd4\xad\x77\x1b\xdc\x46\xb7\xd3"
      "\x7d\xe2\x36\xbb\x2d\x6e\xab\xdb\xe6\xb6\xbb\x1d\xbf\xc4\xe7\xb7\x63\xb7"
      "\xfb\xcc\xed\x71\x9f\xbb\x83\xee\x6b\xb7\xcf\x7d\xe1\xf6\xbb\xc3\xee\x80"
      "\xfb\xea\x97\xf8\xfc\xf6\x1d\x76\xdf\xba\x23\xee\x3b\x77\xd4\x1d\x73\xc7"
      "\xdd\xf7\xee\x84\xfb\xc1\x9d\x74\xa7\x7e\xd9\xfe\xf3\xdb\xfe\xbd\xfb\xd9"
      "\x9d\x73\xc1\x01\x23\x2b\xd6\x6c\x38\xe2\x74\x7c\x05\xa7\x70\x7a\xce\xc0"
      "\x57\x72\x46\xbe\x8a\x33\xf1\xd5\x9c\xe0\x6b\x38\x33\x5f\xcb\x59\xf8\x3a"
      "\xce\xca\xd7\x73\x36\xbe\x81\xb3\x73\x0e\xce\xc9\x96\x89\x1d\x33\xc7\x9c"
      "\x8b\x73\x73\x92\x6f\xe4\x3c\x7c\x13\xe7\xe5\x7c\x9c\x9f\x0b\xb0\xe7\x82"
      "\x5c\x88\x6f\xe6\xc2\x7c\x0b\x17\xe1\x5b\xb9\x28\xdf\xc6\xc5\xf8\x76\x2e"
      "\xce\x25\xb8\x24\x97\xe2\x3b\xb8\x34\xdf\xc9\x65\xf8\x2e\x2e\xcb\x77\x73"
      "\x39\x2e\xcf\x15\xb8\x22\xdf\xc3\x95\xf8\x5e\xae\xcc\xf7\x71\x15\xbe\x9f"
      "\xab\xf2\x03\x5c\x8d\x1f\xe4\xea\xfc\x10\xd7\xe0\x87\xb9\x26\xff\x89\x6b"
      "\xf1\x23\x5c\x9b\x1f\xe5\x3a\x5c\x97\xeb\x71\x7d\x6e\xc0\x8f\x71\x43\x7e"
      "\x9c\x1b\x71\x63\x6e\xc2\x4f\x70\x53\x6e\xc6\xcd\xf9\x49\x6e\xc1\x4f\x71"
      "\x4b\x7e\x9a\x5b\xf1\x33\x0c\xa9\xbf\x1e\x4d\xda\xf2\xf3\xdc\x8e\xdb\x73"
      "\x07\x7e\x81\x3b\xf2\x8b\xdc\x89\x3b\x73\x2a\xa7\x72\x57\x7e\x89\xbb\x71"
      "\x77\xee\xc1\x3d\xb9\x17\xbf\xcc\xbd\xf9\x95\xf4\x17\x0e\x40\xdc\x8f\x5f"
      "\xe7\xfe\xfc\x06\x0f\xe0\x37\x79\x20\x0f\xe2\xc1\x3c\x84\x87\xf2\x30\x1e"
      "\xce\x23\x78\x24\x8f\xe2\xd1\xfc\x16\x8f\xe1\xb7\x79\x2c\xbf\xc3\xe3\x78"
      "\x3c\x4f\xe0\x89\x3c\x89\x27\xf3\x14\x7e\x97\xa7\xf2\x34\x9e\xce\xef\xf1"
      "\x0c\x7e\x9f\x67\xf2\x2c\x9e\xcd\x73\x78\x2e\x7f\xc0\xf3\x78\x3e\x2f\xe0"
      "\x0f\x79\x21\x7f\xc4\x8b\x78\x31\x2f\xe1\xa5\xbc\x8c\x97\xf3\x0a\x5e\xc9"
      "\xab\x78\x35\xaf\xe1\xb5\xbc\x8e\xd7\xf3\x06\xde\xc8\x9b\xf8\x63\xde\xcc"
      "\x5b\x78\x2b\x6f\xe3\xed\xbc\x83\x77\xf2\x27\xbc\x8b\x3f\xe5\xdd\xfc\x19"
      "\xef\xe1\xcf\x79\x2f\xff\x99\xf7\xf1\x17\xbc\x9f\xbf\xe4\x03\xfc\x15\x1f"
      "\xe4\xaf\xf9\x10\x7f\xc3\x87\xf9\x5b\x3e\xc2\xdf\xf1\x51\x3e\xc6\xc7\xf9"
      "\x7b\x3e\xc1\x3f\xf0\x49\x3e\xc5\xa7\xf9\x47\x3e\xc3\x3f\xf1\x59\xfe\x99"
      "\xcf\x71\x60\x88\x31\x56\xb1\x8e\x4d\x1c\xc5\xe9\xe2\x2b\xe2\x94\x38\x7d"
      "\x9c\x61\xef\x92\x38\x63\x7c\x55\x9c\x29\xbe\x3a\x4e\xc4\xd7\xc4\x99\xe3"
      "\x6b\xe3\x2c\xf1\x75\x71\xd6\xf8\xfa\x38\x5b\x7c\x43\x9c\x3d\xce\x11\xe7"
      "\x8c\x6d\x4c\xb1\x8b\x39\x8e\xe3\x5c\x71\xee\x38\x19\xdf\x18\xe7\x89\x6f"
      "\x8a\xf3\xc6\xf9\xe2\xfc\x71\x81\xd8\xc7\x05\xe3\x42\xf1\xcd\x71\xe1\xf8"
      "\x96\xb8\x48\x7c\x6b\x5c\x34\xbe\x2d\x2e\x16\xdf\x1e\x17\x8f\x4b\xc4\x8f"
      "\xdc\x5f\x2a\xbe\x23\x2e\x1d\xdf\x19\x97\x89\xef\x8a\xcb\xc6\x77\xc7\xe5"
      "\xe2\xf2\x71\x85\xb8\x62\x7c\x4f\x5c\x29\xbe\x37\xae\x1c\xdf\x17\x57\x89"
      "\xef\x8f\x8b\xc4\x0f\xc4\xd5\xe2\x07\xe3\xea\xf1\x43\x71\x8d\xf8\xe1\xb8"
      "\x66\xfc\xa7\xb8\x56\xfc\x48\x5c\x3b\x7e\x34\xae\x13\xd7\x8d\xeb\xc5\xf5"
      "\xe3\x06\xf1\x63\x71\xc3\xf8\xf1\xb8\x51\xdc\x38\x6e\x12\x3f\x11\x37\x8d"
      "\x9b\xc5\xcd\xe3\x27\xe3\x16\xf1\x53\x71\xcb\xf8\xe9\x3f\x5c\x9f\x1a\x77"
      "\x89\xbb\xc6\x2f\xc5\x2f\xc5\x21\xdc\xa7\x67\x27\xe7\x24\xe7\x26\x3f\x48"
      "\xce\x4b\xce\x4f\x5e\xdc\x05\x16\x25\x17\x27\x97\x24\x97\x26\x97\x25\x97"
      "\x27\x57\x24\x57\x26\x57\x25\x57\x27\xd7\x24\xd7\x26\xd7\x25\xd7\x27\x37"
      "\x24\x37\x26\x43\xa8\x78\x05\x78\xf4\xca\x6b\x6f\x7c\xe4\xd3\xf9\x2b\x7c"
      "\x8a\x4f\xef\x33\xf8\x2b\x7d\x46\x7f\x95\xcf\xe4\xaf\xf6\x09\x7f\x8d\xcf"
      "\xec\xaf\xf5\x59\xfc\x75\x3e\xab\xbf\xde\x67\xf3\x37\xf8\xec\x3e\x87\xcf"
      "\xe9\xad\x27\xef\x3c\xfb\xd8\xe7\xf2\xb9\x7d\xd2\xdf\xe8\xf3\xf8\x9b\x7c"
      "\x5e\x9f\xcf\xe7\xf7\x05\xbc\xf7\x05\x7d\x21\x5f\xdf\x37\xf0\x0d\x7c\x43"
      "\xff\xb8\x6f\xe4\x1b\xfb\x26\xfe\x09\xff\x84\x6f\xe6\x9b\xf9\x27\xfd\x93"
      "\xfe\x29\xdf\xd2\x3f\xed\x5b\xf9\x67\x7c\x6b\xff\xac\x6f\xe3\x9f\xf3\xcf"
      "\xf9\xe7\x7d\x3b\xdf\xde\x77\xf0\x2f\xf8\x8e\xfe\x45\xdf\xc9\x77\xf6\xa9"
      "\x3e\xd5\x77\xf5\x5d\x7d\x37\xdf\xcd\xf7\xf0\x3d\x7c\x2f\xdf\xcb\xf7\xf6"
      "\xbd\x7d\x1f\xdf\xc7\xf7\xf5\x7d\x7d\x3f\xdf\xcf\xf7\xf7\xfd\xfd\x00\x3f"
      "\xc0\x0f\xf4\x03\xfd\x60\x3f\xd8\x0f\x05\xf0\xc3\xfd\x70\x3f\xd2\x8f\xf4"
      "\xa3\xfd\x68\x3f\xc6\x8f\xf1\x63\xfd\x58\x3f\xce\x8f\xf3\x13\xfc\x04\x3f"
      "\xc9\x4f\xf2\x53\xfc\x14\x3f\xd5\x4f\xf5\xd3\xfd\x74\x3f\x23\xef\x0c\x3f"
      "\xd3\xcf\xf4\xb3\xfd\x6c\x3f\xd7\xcf\xf5\xf3\xfc\x3c\xbf\xc0\x2f\xf0\x0b"
      "\xfd\x42\xbf\xc8\x2f\xf2\x4b\xfc\x12\xbf\xcc\x2f\xf3\x2b\xfc\x0a\xbf\xca"
      "\xaf\xf2\x6b\xfc\x1a\xbf\xce\xaf\xf3\x1b\xfc\x06\xbf\xc9\x6f\xf2\x9b\xfd"
      "\x66\xbf\xd5\x6f\xf5\xdb\xfd\x76\xbf\xd3\xef\xf4\xbb\xfc\x2e\xbf\xdb\xef"
      "\xf6\x7b\xfc\x1e\xbf\xd7\xef\xf5\xfb\xfc\x3e\xbf\xdf\x7f\xe9\x0f\xf8\xaf"
      "\xfc\x41\xff\xb5\x3f\xe4\xbf\xf1\x87\xfd\xb7\xfe\x88\xff\xce\x1f\xf5\xc7"
      "\xfc\x71\xff\xbd\x3f\xe1\x7f\xf0\x27\xfd\x29\x7f\xda\xff\xe8\xcf\xf8\x9f"
      "\xfc\x59\xff\xb3\x3f\xe7\x83\x1f\x9d\x78\x2b\x31\x26\xf1\x76\x62\x6c\xe2"
      "\x9d\xc4\xb8\xc4\xf8\xc4\x84\xc4\xc4\xc4\xa4\xc4\xe4\xc4\x94\xc4\xbb\x89"
      "\xa9\x89\x69\x89\xe9\x89\xf7\x12\x33\x12\xef\x27\x66\x26\x66\x25\x66\x27"
      "\xe6\x24\xe6\x26\x3e\x48\xcc\x4b\xcc\x4f\x2c\x48\x7c\x98\x58\x98\xf8\x28"
      "\xb1\x28\xb1\x38\xb1\x24\xb1\x34\xb1\x2c\xb1\x3c\x11\x42\x8e\xcd\x71\xc8"
      "\x15\x72\x87\x64\xb8\x31\xe4\x09\x37\x85\xbc\x21\x5f\xc8\x1f\x0a\x04\x1f"
      "\x0a\x86\x42\xe1\xe6\x50\x38\xdc\x12\x8a\x84\x5b\x43\xd1\x70\x5b\x28\x16"
      "\x6e\x0f\xc5\x43\x89\x50\x32\x3c\x1a\xea\x84\xba\xa1\x5e\xa8\x1f\x1a\x84"
      "\xc7\x42\xc3\xf0\x78\x68\x14\x1a\x87\x26\xe1\x89\xd0\x34\x34\x0b\xcd\xc3"
      "\x93\xa1\x45\x78\x2a\xb4\x0c\x4f\x87\x56\xe1\x99\xd0\x3a\x3c\x1b\xda\x84"
      "\xe7\x42\xdb\xf0\x7c\x68\x17\xda\x87\x0e\xe1\x85\xd0\x31\xbc\x18\x3a\x85"
      "\xce\x21\x35\x74\x09\x5d\xc3\x4b\xa1\x5b\xe8\x1e\x7a\x84\x9e\xa1\x57\x78"
      "\x39\xf4\x0e\xaf\x84\x3e\xe1\xd5\xd0\x37\xbc\x16\xfa\x85\xd7\x43\xff\xf0"
      "\x46\x18\x10\xde\x0c\x03\xc3\xa0\x30\x38\x0c\x09\x43\xc3\xb0\x30\x3c\x8c"
      "\x08\x23\xc3\xa8\x30\x3a\xbc\x15\xc6\x84\xb7\xc3\xd8\xf0\x4e\x18\x17\xc6"
      "\x87\x09\x61\x62\x98\x14\x26\x87\x29\xe1\xdd\x30\x35\x4c\x0b\xd3\xc3\x7b"
      "\x61\x46\x78\x3f\xcc\x0c\xb3\xc2\xec\x30\x27\xcc\x0d\x1f\x84\x79\x61\x7e"
      "\x58\x10\x3e\x0c\x0b\xc3\x47\x61\x51\x58\x1c\x96\x84\xa5\x61\x59\x58\x1e"
      "\x56\x84\x95\x61\x55\xc0\x0b\xef\x95\xf5\x61\x43\xd8\x18\x36\x85\x8f\xc3"
      "\xe6\xb0\x25\x6c\x0d\xdb\xc2\xf6\xb0\x23\xec\x0c\x9f\x84\x5d\xe1\xd3\xb0"
      "\x3b\x7c\x16\xf6\x84\xcf\xc3\xde\xf0\xe7\xb0\x2f\x7c\x11\xf6\x87\x2f\xc3"
      "\x81\xf0\x55\x38\x18\xbe\x0e\x87\xc2\x37\xe1\x70\xf8\x36\x1c\x09\xdf\x85"
      "\xa3\xe1\x58\x38\x1e\xbe\x0f\x27\xc2\x0f\xe1\x64\x38\x15\x4e\x87\x1f\xc3"
      "\x99\xf0\x53\x38\x1b\x7e\x0e\xe7\xe4\x7f\xd6\x84\x10\x42\x08\x21\xfe\x26"
      "\x63\xfe\x60\x7d\x97\xbf\xf2\x3b\x75\x61\x39\xaf\x2b\x00\x5c\xb5\xe5\x86"
      "\x03\xbf\x5d\xaf\x01\x60\x5d\xd6\x5f\xc7\xdd\x55\xf6\xa6\x09\x00\x78\xaa"
      "\x73\xdb\x87\x2f\x2e\xe5\xca\xa5\xa6\x5e\xb8\xf4\x86\x45\x1a\xa2\xdc\xb3"
      "\x00\x20\x01\xe9\x2e\xe6\xff\xf2\xfd\x03\x89\x5f\xc7\x8b\xa1\x09\x34\x83"
      "\x16\xd0\x18\x0a\xff\xd5\xfa\xba\xab\xf6\x67\xf8\x0f\xe6\x4f\xde\x06\x90"
      "\xe1\x37\x39\x29\x70\x29\x0e\x9d\x2f\xce\x7f\xcb\x7f\x33\xff\xb0\x19\x7f"
      "\x38\xff\x2c\x80\xbc\xb9\x2f\xe5\x9c\xbf\x42\xbc\x18\x5f\xaa\xbf\xc8\x7f"
      "\x33\xff\xf5\x0d\xff\x60\xfe\xf4\x5f\x8c\x06\x68\xf4\x9b\x9c\x8c\x70\x29"
      "\xbe\x34\x7f\x21\x78\x1c\x9e\x86\x16\x7f\xf1\x48\x21\x84\x10\x42\x08\x21"
      "\x84\x10\xe2\x57\xdd\x55\xc9\xd6\x7f\x74\x7d\x7b\xfe\xfa\x3c\xbb\xb9\x94"
      "\x73\x05\x5c\x8a\x17\x03\xfe\x8f\xd7\xe7\x42\x08\x21\x84\x10\x42\x08\x21"
      "\x84\xb8\xfc\x9e\x6d\xdf\xe1\xc9\xc7\x5a\xb4\x68\xdc\x3a\x4d\x0e\xba\xfc"
      "\xbd\xe9\x1a\x2e\x7f\xf1\xff\xce\x81\xbe\xb0\xbb\xfc\x66\x55\xfe\x62\xf0"
      "\x7f\xe5\x45\xb8\xf8\xc7\x2c\xff\x29\xf5\xfc\x47\x0c\x2e\xe3\x87\x92\x10"
      "\x42\x08\x21\x84\x10\xe2\x5f\xe2\xd2\x49\xff\xe5\xae\x44\x08\x21\x84\x10"
      "\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21"
      "\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x48\xbb"
      "\xfe\x1d\x5f\x27\x76\xb9\xb7\x51\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42"
      "\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84"
      "\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08"
      "\x21\x84\xb8\xdc\xfe\x5f\x00\x00\x00\xff\xff\x18\xf8\x1b\x48",
      5379);
  syz_mount_image(/*fs=*/0x20000200, /*dir=*/0x20000a00, /*flags=MS_NOEXEC*/ 8,
                  /*opts=*/0x20000080, /*chdir=*/6, /*size=*/0x1503,
                  /*img=*/0x20001540);
  memcpy((void*)0x20000040, "./file0\000", 8);
  syscall(__NR_chdir, /*dir=*/0x20000040ul);
  memcpy((void*)0x200005c0, "./bus\000", 6);
  res = syscall(
      __NR_open, /*file=*/0x200005c0ul,
      /*flags=O_NONBLOCK|O_NOFOLLOW|O_NOATIME|O_DIRECT|O_CREAT|0x2*/ 0x64842ul,
      /*mode=S_IWGRP*/ 0x10ul);
  if (res != -1)
    r[0] = res;
  *(uint64_t*)0x20000240 = 0x20000000;
  memset((void*)0x20000000, 133, 1);
  *(uint64_t*)0x20000248 = 0xfea7;
  syscall(__NR_pwritev2, /*fd=*/r[0], /*vec=*/0x20000240ul, /*vlen=*/1ul,
          /*off_low=*/0x30, /*off_high=*/0, /*flags=*/0ul);
}
int main(void)
{
  syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul,
          /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  const char* reason;
  (void)reason;
  loop();
  return 0;
}