// https://syzkaller.appspot.com/bug?id=fcf0b68b63113416159649a5145d26759b9865ba
// 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

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 void use_temporary_dir(void)
{
  char tmpdir_template[] = "./syzkaller.XXXXXX";
  char* tmpdir = mkdtemp(tmpdir_template);
  if (!tmpdir)
    exit(1);
  if (chmod(tmpdir, 0777))
    exit(1);
  if (chdir(tmpdir))
    exit(1);
}

static 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;
}

#define FS_IOC_SETFLAGS _IOW('f', 2, long)
static void remove_dir(const char* dir)
{
  int iter = 0;
  DIR* dp = 0;
  const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW;

retry:
  while (umount2(dir, umount_flags) == 0) {
  }
  dp = opendir(dir);
  if (dp == NULL) {
    if (errno == EMFILE) {
      exit(1);
    }
    exit(1);
  }
  struct dirent* ep = 0;
  while ((ep = readdir(dp))) {
    if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0)
      continue;
    char filename[FILENAME_MAX];
    snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name);
    while (umount2(filename, umount_flags) == 0) {
    }
    struct stat st;
    if (lstat(filename, &st))
      exit(1);
    if (S_ISDIR(st.st_mode)) {
      remove_dir(filename);
      continue;
    }
    int i;
    for (i = 0;; i++) {
      if (unlink(filename) == 0)
        break;
      if (errno == EPERM) {
        int fd = open(filename, O_RDONLY);
        if (fd != -1) {
          long flags = 0;
          if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) {
          }
          close(fd);
          continue;
        }
      }
      if (errno == EROFS) {
        break;
      }
      if (errno != EBUSY || i > 100)
        exit(1);
      if (umount2(filename, umount_flags))
        exit(1);
    }
  }
  closedir(dp);
  for (int i = 0;; i++) {
    if (rmdir(dir) == 0)
      break;
    if (i < 100) {
      if (errno == EPERM) {
        int fd = open(dir, O_RDONLY);
        if (fd != -1) {
          long flags = 0;
          if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) {
          }
          close(fd);
          continue;
        }
      }
      if (errno == EROFS) {
        break;
      }
      if (errno == EBUSY) {
        if (umount2(dir, umount_flags))
          exit(1);
        continue;
      }
      if (errno == ENOTEMPTY) {
        if (iter < 100) {
          iter++;
          goto retry;
        }
      }
    }
    exit(1);
  }
}

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

static void 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");
  if (symlink("/dev/binderfs", "./binderfs")) {
  }
}

static void execute_one(void);

#define WAIT_FLAGS __WALL

static void loop(void)
{
  int iter = 0;
  for (;; iter++) {
    char cwdbuf[32];
    sprintf(cwdbuf, "./%d", iter);
    if (mkdir(cwdbuf, 0777))
      exit(1);
    reset_loop();
    int pid = fork();
    if (pid < 0)
      exit(1);
    if (pid == 0) {
      if (chdir(cwdbuf))
        exit(1);
      setup_test();
      execute_one();
      exit(0);
    }
    int status = 0;
    uint64_t start = current_time_ms();
    for (;;) {
      sleep_ms(10);
      if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid)
        break;
      if (current_time_ms() - start < 5000)
        continue;
      kill_and_wait(pid, &status);
      break;
    }
    remove_dir(cwdbuf);
  }
}

void execute_one(void)
{
  if (write(1, "executing program\n", sizeof("executing program\n") - 1)) {
  }
  memcpy((void*)0x200000c0, "exfat\000", 6);
  memcpy((void*)0x20000140, "./file0\000", 8);
  memcpy(
      (void*)0x200022c0,
      "\x78\x9c\xec\xdc\x0b\x98\x4f\xd5\xfa\x38\xf0\xf5\xae\xb5\x36\x43\xd2\xb7"
      "\x49\x2e\xc3\x7a\xd7\xbb\xf9\xa6\xc1\x32\x49\x92\x4b\x42\x2e\x49\x92\x24"
      "\x49\x6e\x09\x49\x93\x24\x09\x89\x21\xb7\xa4\x21\x09\xb9\x4e\x9a\x5c\x86"
      "\x90\x5c\xa6\x31\x69\xdc\xef\x97\xdc\x93\x26\x47\x9a\x24\x09\xc9\x2d\x59"
      "\xff\x47\xc7\x39\x4e\xff\xce\x39\x9d\xdf\xff\x9c\xff\xcf\xef\xf9\xcd\xfb"
      "\x79\x9e\xf5\xcc\x7a\xf7\xde\xef\xfb\x5d\x7b\xde\x79\xe6\xbb\xf7\x9e\x67"
      "\xbe\xdf\xf5\x1c\x55\xaf\x45\xfd\xda\xcd\x88\x48\xfc\x5b\xe0\xcf\x5f\x92"
      "\x84\x10\x31\x42\x88\x61\x42\x88\xeb\x84\x10\x81\x10\xa2\x52\x6c\xa5\xd8"
      "\x4b\xfb\xf3\x29\x48\xfa\xf7\x5e\x84\xfd\x67\x3d\x9c\x76\xb5\x57\xc0\xae"
      "\x26\xee\x7f\xee\xc6\xfd\xcf\xdd\xb8\xff\xb9\x1b\xf7\x3f\x77\xe3\xfe\xe7"
      "\x6e\xdc\xff\xdc\x8d\xfb\x9f\xbb\x71\xff\x19\xcb\xcd\xb6\xcd\x2e\x76\x3d"
      "\x8f\xdc\x3b\xf8\xf9\x7f\x6e\xc6\xef\xff\xff\x8b\xe4\x94\x9f\xfc\xd5\x86"
      "\xf2\x37\xf6\xfa\x2f\xa4\x70\xff\x73\x37\xee\x7f\xee\xc6\xfd\xcf\xdd\xb8"
      "\xff\xb9\x1b\xf7\x3f\x77\xe3\xfe\xff\xef\x57\xeb\x9f\xec\xe3\xfe\xe7\x6e"
      "\xdc\x7f\xc6\x72\xb3\xbf\x3e\x0b\xbe\xe0\xbd\xff\x1f\xf0\x3c\x9a\xc7\x7f"
      "\xef\xb8\xda\x3f\x7f\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6"
      "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c"
      "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18"
      "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31"
      "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63"
      "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6"
      "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c"
      "\x31\xc6\x18\x63\x8c\x31\xc6\x72\x87\xb3\xfe\x0a\x2d\x84\xf8\xcb\xfc\x6a"
      "\xaf\x8b\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\xff\x39\x3e\xef\xd5\x5e\x01"
      "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\xfe\xff\x03\x21\x85\x12\x5a\x04\x22"
      "\x8f\xc8\x2b\x62\x44\x3e\x91\x5f\x5c\x23\x0a\x88\x6b\x45\x41\x71\x9d\x88"
      "\x88\xeb\x45\xac\xb8\x41\x14\x12\x37\x8a\xc2\xa2\x88\x28\x2a\x8a\x89\x38"
      "\x51\x5c\x94\x10\x46\xa0\xb0\x82\x44\x28\x4a\x8a\x52\x22\x2a\x6e\x12\xa5"
      "\xc5\xcd\x22\x5e\x94\x11\x65\x45\x39\xe1\x44\x79\x91\x20\x6e\x11\x15\xc4"
      "\xad\xa2\xa2\xb8\x4d\x54\x12\xb7\x8b\xca\xe2\x0e\x51\x45\x54\x15\xd5\x44"
      "\x75\x71\xa7\xa8\x21\xee\x12\x35\x45\x2d\x51\x5b\xdc\x2d\xea\x88\xba\xa2"
      "\x9e\xa8\x2f\xee\x11\x0d\xc4\xbd\xa2\xa1\xb8\x4f\x34\x12\xf7\x8b\xc6\xe2"
      "\x01\xd1\x44\x3c\x28\x9a\x8a\x87\x44\x33\xf1\xb0\x68\x2e\x1e\x11\x2d\xc4"
      "\xa3\xa2\xa5\x78\x4c\xb4\x12\xad\x45\x1b\xd1\x56\xb4\xfb\x7f\xca\x7f\x49"
      "\xf4\x15\x2f\x8b\x7e\xa2\xbf\x48\x12\x03\xc4\x40\xf1\x8a\x18\x24\x06\x8b"
      "\x21\x62\xa8\x18\x26\x5e\x15\xc3\xc5\x6b\x62\x84\x78\x5d\x24\x8b\x91\x62"
      "\x94\x78\x43\x8c\x16\x6f\x8a\x31\xe2\x2d\x31\x56\x8c\x13\xe3\xc5\xdb\x62"
      "\x82\x98\x28\x26\x89\xc9\x62\x8a\x98\x2a\x52\xc4\x3b\x62\x9a\x78\x57\xa4"
      "\x8a\xf7\xc4\x74\x31\x43\xcc\x14\xb3\x44\x9a\x98\x2d\xe6\x88\xf7\xc5\x5c"
      "\x31\x4f\xcc\x17\x1f\x88\x05\xe2\x43\xb1\x50\x2c\x12\x8b\xc5\x12\x91\x2e"
      "\x3e\x12\x19\x62\xa9\xc8\x14\x1f\x8b\x65\xe2\x13\x91\x25\x96\x8b\x15\x62"
      "\xa5\x58\x25\x56\x8b\x35\x62\xad\x58\x27\xd6\x8b\x0d\x62\xa3\xd8\x24\x36"
      "\x8b\x2d\x62\xab\xd8\x26\x3e\x15\xdb\xc5\x0e\xb1\x53\xec\x12\xbb\xc5\x1e"
      "\xb1\x57\x7c\x26\xf6\x89\xcf\xc5\x7e\xf1\x85\xc8\x16\x5f\xfe\x17\xf3\xcf"
      "\xfc\x5f\xf9\xbd\x40\x80\x00\x09\x12\x34\x68\xc8\x03\x79\x20\x06\x62\x20"
      "\x3f\xe4\x87\x02\x50\x00\x0a\x42\x41\x88\x40\x04\x62\x21\x16\x0a\x41\x21"
      "\x28\x0c\x85\xa1\x28\x14\x85\x00\xe2\xa0\x04\x94\x00\x04\x04\x02\x82\x92"
      "\x50\x12\xa2\x10\x85\xd2\x50\x1a\xe2\x21\x1e\xca\x42\x59\x70\xe0\x20\x01"
      "\x12\xa0\x02\xdc\x0a\x15\xa1\x22\x54\x82\x4a\x50\x19\x2a\x43\x15\xa8\x0a"
      "\x55\xa1\x3a\x54\x87\x1a\x50\x03\x6a\x42\x4d\xa8\x0d\xb5\xa1\x0e\xd4\x81"
      "\x7a\x50\x0f\xee\x81\x7b\xe0\x5e\x68\x08\x0d\xa1\x11\x34\x82\xc6\xd0\x18"
      "\x9a\x40\x13\x68\x0a\x4d\xa1\x19\x34\x83\xe6\xd0\x1c\x5a\x40\x0b\x68\x09"
      "\x2d\xa1\x15\xb4\x82\x36\xd0\x06\xda\x41\x3b\x68\x0f\xed\xa1\x03\x74\x80"
      "\x4e\xd0\x09\x3a\x43\x67\xe8\x02\x5d\x20\x11\x12\xa1\x2b\x74\x85\x6e\xd0"
      "\x0d\xba\x43\x77\xe8\x01\x3d\xa0\x27\xf4\x84\x5e\xd0\x1b\x7a\xc3\x4b\xf0"
      "\x12\xbc\x0c\x2f\x43\x7f\xa8\x23\x07\xc0\x40\x18\x08\x83\x60\x10\x0c\x81"
      "\xa1\x30\x14\x5e\x85\xe1\xf0\x1a\xbc\x06\xaf\x43\x32\x8c\x84\x51\xf0\x06"
      "\xbc\x01\x6f\xc2\x18\x38\x0d\x63\x61\x1c\x8c\x87\xf1\x50\x43\x4e\x84\x49"
      "\x30\x19\x48\x4e\x85\x14\x48\x81\x69\x30\x0d\x52\x21\x15\xa6\xc3\x0c\x98"
      "\x01\xb3\x20\x0d\x66\xc3\x1c\x98\x03\x73\x61\x1e\xcc\x83\x0f\x60\x01\x7c"
      "\x08\x1f\xc2\x22\x58\x04\x4b\x20\x1d\xd2\x21\x03\x96\x42\x26\x64\xc2\x32"
      "\x38\x03\x59\xb0\x1c\x56\xc0\x4a\x58\x05\xab\x61\x15\xac\x85\x75\xb0\x16"
      "\x36\xc0\x46\xd8\x00\x9b\x61\x33\x6c\x85\xad\xf0\x29\x7c\x0a\x3b\x60\x07"
      "\xec\x82\x5d\xb0\x07\xf6\xc0\x67\xf0\x19\x7c\x0e\x9f\x43\x32\x64\x43\x36"
      "\x1c\x80\x03\x70\x10\x0e\xc2\x21\x38\x04\x39\x90\x03\x87\xe1\x30\x1c\x81"
      "\x23\x70\x14\x8e\xc2\x31\x38\x06\xc7\xe1\x04\x9c\x84\x13\x70\x0a\x4e\xc1"
      "\x69\x38\x03\x67\xe1\x2c\x9c\x87\xf3\x70\x01\x5e\x88\xfb\xa6\xf9\x9e\x32"
      "\xeb\x93\x85\xbc\x44\x4b\x2d\xf3\xc8\x3c\x32\x46\xc6\xc8\xfc\x32\xbf\x2c"
      "\x20\x0b\xc8\x82\xb2\xa0\x8c\xc8\x88\x8c\x95\xb1\xb2\x90\x2c\x24\x0b\xcb"
      "\xc2\xb2\xa8\x2c\x2a\xe3\x64\x9c\x2c\x21\x4b\x48\x94\x28\x49\x86\xb2\xa4"
      "\x2c\x29\xa3\x32\x2a\x4b\xcb\xd2\x32\x5e\xc6\xcb\xb2\xb2\xac\x74\xd2\xc9"
      "\x04\x99\x20\x2b\xc8\x0a\xb2\xa2\xac\x28\x2b\xc9\xdb\x65\x65\x79\x87\xac"
      "\x22\xab\xca\x8e\xae\xba\xac\x2e\x6b\xc8\x4e\xae\xa6\xac\x25\x6b\xcb\xda"
      "\xb2\x8e\xac\x2b\xeb\xc9\xfa\xb2\xbe\x6c\x20\x1b\xc8\x86\xb2\xa1\x6c\x24"
      "\x1b\xc9\xc6\xb2\xb1\x6c\x22\x1f\x94\x4d\xe5\x00\x18\x02\x0f\xcb\x4b\x9d"
      "\x69\x21\x47\x42\x4b\x39\x0a\x5a\xc9\xd6\xb2\x8d\x6c\x2b\xdf\x84\xc7\x65"
      "\x7b\x39\x06\x3a\xc8\x8e\xb2\x93\x7c\x52\x8e\x83\xb1\xd0\x45\xb6\x77\x89"
      "\xf2\x19\xd9\x55\x4e\x82\x6e\xf2\x39\x39\x19\x9e\x97\x3d\xe4\x54\xe8\x29"
      "\x5f\x94\xbd\x64\x6f\xd9\x47\xbe\x24\xfb\xca\x0e\xae\x9f\xec\x2f\xa7\xc3"
      "\x00\x39\x50\xce\x82\x41\x72\xb0\x1c\x22\x87\xca\xb9\x50\x57\x5e\xea\x58"
      "\x3d\xf9\xba\x4c\x96\x23\xe5\x28\xf9\x86\x5c\x02\x6f\xca\x31\xf2\x2d\x39"
      "\x56\x8e\x93\xe3\xe5\xdb\x72\x82\x9c\x28\x27\xc9\xc9\x72\x8a\x9c\x2a\x53"
      "\xe4\x3b\x72\x9a\x7c\x57\xa6\xca\xf7\xe4\x74\x39\x43\xce\x94\xb3\x64\x9a"
      "\x9c\x2d\xe7\xc8\xf7\xe5\x5c\x39\x4f\xce\x97\x1f\xc8\x05\xf2\x43\xb9\x50"
      "\x2e\x92\x8b\xe5\x12\x99\x2e\x3f\x92\x19\x72\xa9\xcc\x94\x1f\xcb\x65\xf2"
      "\x13\x99\x25\x97\xcb\x15\x72\xa5\x5c\x25\x57\xcb\x35\x72\xad\x5c\x27\xd7"
      "\xcb\x0d\x72\xa3\xdc\x24\x37\xcb\x2d\x72\xab\xdc\x26\x3f\x95\xdb\xe5\x0e"
      "\xb9\x53\xee\x92\xbb\xe5\x1e\xb9\x57\x7e\x26\xf7\xc9\xcf\xe5\x7e\xf9\x85"
      "\xcc\x96\x5f\xca\x03\xf2\x4f\xf2\xa0\xfc\x4a\x1e\x92\x5f\xcb\x1c\xf9\x8d"
      "\x3c\x2c\xbf\x95\x47\xe4\x77\xf2\xa8\xfc\x5e\x1e\x93\x3f\xc8\xe3\xf2\x84"
      "\x3c\x29\x7f\x94\xa7\xe4\x4f\xf2\xb4\x3c\x23\xcf\xca\x73\xf2\xbc\xfc\x59"
      "\x5e\x90\xbf\xc8\x8b\xd2\x4b\xa1\x40\x49\xa5\x94\x56\x81\xca\xa3\xf2\xaa"
      "\x18\x95\x4f\xe5\x57\xd7\xa8\x02\xea\x5a\x55\x50\x5d\xa7\x22\xea\x7a\x15"
      "\xab\x6e\x50\x85\xd4\x8d\xaa\xb0\x2a\xa2\x8a\xaa\x62\x2a\x4e\x15\x57\x25"
      "\x94\x51\xa8\xac\x22\x15\xaa\x92\xaa\x94\x8a\xaa\x9b\x54\x69\x75\xb3\x8a"
      "\x57\x65\x54\x59\x55\x4e\x39\x55\x5e\x25\xa8\x5b\x54\x05\x75\xab\xaa\xa8"
      "\x6e\x53\x95\xd4\xed\xaa\xb2\xba\x43\x55\x51\x55\x55\x35\x55\x5d\xdd\xa9"
      "\x6a\xa8\xbb\x54\x4d\x55\x4b\xd5\x56\x77\xab\x3a\xaa\xae\xaa\xa7\xea\xab"
      "\x7b\x54\x03\x75\xaf\x6a\xa8\xee\x53\x8d\xd4\xfd\xaa\xb1\x7a\x40\x35\x51"
      "\x0f\xaa\xa6\xea\x21\xd5\x4c\x3d\xac\x9a\xab\x47\x54\x0b\xf5\xa8\x6a\xa9"
      "\x1e\x53\xad\x54\x6b\xd5\x46\xb5\x55\xed\xd4\xe3\xaa\xbd\x7a\x42\x75\x50"
      "\x1d\x55\x27\xf5\xa4\xea\xac\x9e\x52\x5d\xd4\xd3\x2a\x51\x3d\xa3\xba\xaa"
      "\x67\x55\x37\xf5\x9c\xea\xae\x9e\x57\x3d\xd4\x0b\xaa\xa7\x7a\x51\xf5\x52"
      "\xbd\x55\x1f\xf5\x8b\xba\xa8\xbc\xea\xa7\xfa\xab\x24\x35\x40\x0d\x54\xaf"
      "\xa8\x41\x6a\xb0\x1a\xa2\x86\xaa\x61\xea\x55\x35\x5c\xbd\xa6\x46\xa8\xd7"
      "\x55\xb2\x1a\xa9\x46\xa9\x37\xd4\x68\xf5\xa6\x1a\xa3\xde\x52\x63\xd5\x38"
      "\x35\x5e\xbd\xad\x26\xa8\x89\x6a\x92\x9a\xac\xa6\xa8\xa9\x2a\x45\xbd\xa3"
      "\xa6\xa9\x77\x55\xaa\x7a\x4f\x4d\x57\x33\xd4\x4c\x35\x4b\xa5\xa9\xd9\x6a"
      "\xc8\xe5\x4a\xf3\xff\x85\xfc\x77\xff\x4e\xfe\x88\x5f\x5f\x7d\xab\xda\xa6"
      "\x3e\x55\xdb\xd5\x0e\xb5\x53\xed\x52\xbb\xd5\x1e\xb5\x57\xed\x55\xfb\xd4"
      "\x3e\xb5\x5f\xed\x57\xd9\x2a\x5b\x1d\x50\x07\xd4\x41\x75\x50\x1d\x52\x87"
      "\x54\x8e\xca\x51\x87\xd5\x61\x75\x44\x1d\x51\x47\xd5\x51\x75\x4c\x1d\x53"
      "\xc7\xd5\x09\x75\x4e\xfd\xa8\x4e\xa9\x9f\xd4\x69\x75\x46\x9d\x51\xe7\xd4"
      "\x79\x75\x5e\x5d\xb8\xfc\x3d\x10\x1a\xb4\xd4\x4a\x6b\x1d\xe8\x3c\x3a\xaf"
      "\x8e\xd1\xf9\x74\x7e\x7d\x8d\x2e\xa0\xaf\xd5\x05\xf5\x75\x3a\xa2\xaf\xd7"
      "\xb1\xfa\x06\x5d\x48\xdf\xa8\x0b\xeb\x22\xba\xa8\x2e\xa6\xe3\x74\x71\x5d"
      "\x42\x1b\x8d\xda\x6a\xd2\xa1\x2e\xa9\x4b\xe9\xa8\xbe\x49\x97\xd6\x37\xeb"
      "\x78\x5d\x46\x97\xd5\xe5\xb4\xd3\xe5\x75\x82\xbe\xe5\xdf\xce\xff\xa3\xf5"
      "\xb5\xd3\xed\x74\x7b\xdd\x5e\x77\xd0\x1d\x74\x27\xdd\x49\x77\xd6\x9d\x75"
      "\x17\xdd\x45\x27\xea\x44\xdd\x55\x77\xd5\xdd\x74\x37\xdd\x5d\x77\xd7\x3d"
      "\x74\x0f\xdd\x53\xf7\xd4\xbd\x74\x2f\xdd\x47\xf7\xd1\x7d\x75\x5f\xdd\x4f"
      "\xf7\xd3\x49\x3a\x49\x0f\xd4\xaf\xe8\x41\x7a\xb0\x1e\xa2\x87\xea\x61\xfa"
      "\x55\x3d\x5c\x0f\xd7\x23\xf4\x08\x9d\xac\x93\xf5\x28\x3d\x4a\x8f\xd6\xa3"
      "\xf5\x18\x3d\x46\x8f\xd5\x63\xf5\x78\x3d\x5e\x4f\xd0\x13\xf4\x24\x3d\x49"
      "\x4f\xd1\x53\x74\x8a\x4e\xd1\xd3\xf4\x34\x9d\xaa\x53\xf5\x74\x3d\x5d\xcf"
      "\xd4\x33\x75\x9a\x4e\xd3\x73\xf4\x1c\x3d\x57\xcf\xd5\xf3\xf5\x7c\xbd\x40"
      "\x2f\xd0\x0b\xf5\x42\xbd\x58\x2f\xd6\xe9\x3a\x5d\x67\xe8\x0c\x9d\xa9\x33"
      "\xf5\x32\xbd\x4c\x67\xe9\xe5\x7a\xb9\x5e\xa9\x57\xea\xd5\x7a\xb5\x5e\xab"
      "\xd7\xea\xf5\x7a\xbd\xde\xa8\x37\xea\xcd\x7a\xb3\xce\xd2\xdb\xf4\x36\xbd"
      "\x5d\x6f\xd7\x3b\xf5\x4e\xbd\x5b\xef\xd6\x7b\xf5\x5e\xbd\x4f\xef\xd3\xfb"
      "\xf5\x7e\x9d\xad\xb3\xf5\x01\x7d\x40\x1f\xd4\x07\xf5\x21\x7d\x48\xe7\xe8"
      "\x1c\x7d\x58\x1f\xd6\x47\xf4\x11\x7d\x54\x1f\xd5\xc7\xf4\x31\x7d\x5c\x1f"
      "\xd7\x27\xf5\x49\x7d\x4a\x9f\xd2\xa7\xf5\x69\x7d\x56\x9f\xd5\xe7\xf5\x79"
      "\x7d\x41\x5f\xd0\x17\xf5\xc5\x4b\x97\x7d\x81\x0c\x64\xa0\x03\x1d\xe4\x09"
      "\xf2\x04\x31\x41\x4c\x90\x3f\xc8\x1f\x14\x08\x0a\x04\x05\x83\x82\x41\x24"
      "\x88\x04\xb1\x41\x6c\x50\x28\xb8\x31\x28\x1c\x14\x09\x8a\x06\xc5\x82\xb8"
      "\xa0\x78\x50\x22\x30\x01\x06\x36\xa0\x20\x0c\x4a\x06\xa5\x82\x68\x70\x53"
      "\x50\x3a\xb8\x39\x88\x0f\xca\x04\x65\x83\x72\x81\x0b\xca\x07\x09\xc1\x2d"
      "\x41\x85\xe0\xd6\xa0\x62\x70\x5b\x50\x29\xb8\x3d\xa8\x1c\xdc\x11\x54\x09"
      "\xaa\x06\xd5\x82\xea\xc1\x9d\x41\x8d\xe0\xae\xa0\x66\x50\x2b\xa8\x1d\xdc"
      "\x1d\xd4\x09\xea\xfe\xe5\xef\x50\xc1\xbd\x41\xc3\xe0\xbe\xa0\x51\x70\x7f"
      "\xd0\x38\x78\x20\x68\x12\x3c\x18\x34\x0d\x1e\x0a\x9a\x05\x0f\x07\xcd\x83"
      "\x47\x82\x16\xc1\xa3\x41\xcb\xe0\xb1\xa0\x55\xd0\x3a\x68\x13\xb4\x0d\xda"
      "\xfd\xab\xf5\x83\x7a\x41\xfd\xe0\x9e\xa0\xc1\x3f\xad\xef\xfd\xe9\x22\x4f"
      "\xb8\x7e\xa6\xbf\x49\x32\x03\xcc\x40\xf3\x8a\x19\x64\x06\x9b\x21\x66\xa8"
      "\x19\x66\x5e\x35\xc3\xcd\x6b\x66\x84\x79\xdd\x24\x9b\x91\x66\x94\x79\xc3"
      "\x8c\x36\x6f\x9a\x31\xe6\x2d\x33\xd6\x8c\x33\xe3\xcd\xdb\x66\x82\x99\x68"
      "\x26\x99\xc9\x66\x8a\x99\x6a\x52\xcc\x3b\x66\x9a\x79\xd7\xa4\x9a\xf7\xcc"
      "\x74\x33\xc3\xcc\x34\xb3\x4c\x9a\x99\x6d\xe6\x98\xf7\xcd\x5c\x33\xcf\xcc"
      "\x37\x1f\x98\x05\xe6\x43\xb3\xd0\x2c\x32\x8b\xcd\x12\x93\x6e\x3e\x32\x19"
      "\x66\xa9\xc9\x34\x1f\x9b\x65\xe6\x13\x93\x65\x96\x9b\x15\x66\xa5\x59\x65"
      "\x56\x9b\x35\x66\xad\x59\x67\xd6\x9b\x0d\x66\xa3\xd9\x64\x36\x9b\x2d\x66"
      "\xab\xd9\x66\x3e\x35\xdb\xcd\x0e\xb3\xd3\xec\x32\xbb\xcd\x1e\xb3\xd7\x7c"
      "\x66\xf6\x99\xcf\xcd\x7e\xf3\x85\xc9\x36\x5f\x9a\x03\xe6\x4f\xe6\xa0\xf9"
      "\xca\x1c\x32\x5f\x9b\x1c\xf3\x8d\x39\x6c\xbe\x35\x47\xcc\x77\xe6\xa8\xf9"
      "\xde\x1c\x33\x3f\x98\xe3\xe6\x84\x39\x69\x7e\x34\xa7\xcc\x4f\xe6\xb4\x39"
      "\x63\xce\x9a\x73\xe6\xbc\xf9\xd9\x5c\x30\xbf\x98\x8b\xc6\x5f\xba\xb8\xbf"
      "\xf4\xf6\x8e\x1a\x35\xe6\xc1\x3c\x18\x83\x31\x98\x1f\xf3\x63\x01\x2c\x80"
      "\x05\xb1\x20\x46\x30\x82\xb1\x18\x8b\x85\xb0\x10\x16\xc6\xc2\x58\x14\x8b"
      "\x62\x1c\xc6\x61\x09\x2c\x81\x97\x10\x12\x96\xc4\x92\x18\xc5\x28\x96\xc6"
      "\xd2\x18\x8f\xf1\x58\x16\xcb\xa2\x43\x87\x09\x98\x80\x15\xb0\x02\x56\xc4"
      "\x8a\x58\x09\x2b\x61\x65\xac\x8c\x55\xb0\x0a\x56\xc3\x6a\x78\x27\xde\x89"
      "\x77\xe1\x5d\x58\x0b\x6b\xe1\xdd\x78\x37\xd6\xc5\xba\x58\x1f\xeb\x63\x03"
      "\x6c\x80\x0d\xb1\x21\x36\xc2\x46\xd8\x18\x1b\x63\x13\x6c\x82\x4d\xb1\x29"
      "\x36\xc3\x66\xd8\x1c\x9b\x63\x0b\x6c\x81\x2d\xb1\x25\xb6\xc2\x56\xd8\x06"
      "\xdb\x60\x3b\x6c\x87\xed\xb1\x3d\x76\xc0\x0e\xd8\x09\x3b\x61\x67\xec\x8c"
      "\x5d\xb0\x0b\x26\x62\x22\x76\xc5\xae\xd8\x0d\xbb\x61\x77\xec\x8e\x3d\xb0"
      "\x07\xf6\xc4\x9e\xd8\x0b\x7b\x61\x1f\xec\x83\x7d\xb1\x2f\xf6\x3b\xd7\x0f"
      "\x93\x30\x09\x07\xe2\x40\x1c\x84\x83\x70\x08\x0e\xc1\x61\x38\x0c\x87\xe3"
      "\x70\x1c\x81\x23\x30\x19\x93\x71\x14\x8e\xc2\xd1\x38\x1a\xc7\xe0\x18\x1c"
      "\x8b\xe3\x70\x3c\xbe\x8d\x13\x70\x22\x4e\xc2\xc9\x38\x05\xa7\x62\x0a\xa6"
      "\xe0\x34\x9c\x86\xa9\x98\x8a\xd3\x71\x3a\xce\xc4\x99\x98\x86\x69\x38\x07"
      "\xe7\xe0\x5c\x9c\x8b\xf3\x71\x3e\x2e\xc0\x05\xb8\x10\x17\xe2\x62\x5c\x8c"
      "\xe9\x98\x8e\x19\x98\x81\x99\x98\x89\xcb\x70\x19\x66\x61\x16\xae\xc0\x15"
      "\xb8\x0a\x57\xe1\x1a\x5c\x83\xeb\x70\x1d\x6e\xc0\x0d\xb8\x09\x37\xe1\x16"
      "\xdc\x82\xdb\x70\x1b\x6e\xc7\xed\xb8\x13\x77\xe2\x6e\xdc\x8d\x7b\x71\x2f"
      "\xee\xc3\x7d\xb8\x1f\xf7\x63\x36\x66\xe3\x01\x3c\x80\x07\xf1\x20\x1e\xc2"
      "\x43\x98\x83\x39\x78\x18\x0f\xe3\x11\x3c\x82\x47\xf1\x28\x1e\xc3\x63\x78"
      "\x1c\x8f\xe3\x49\x3c\x89\xa7\xf0\x14\x9e\xc6\xd3\x78\x16\xcf\xe2\x79\xfc"
      "\x19\x2f\xe0\x2f\x78\x11\x3d\xc6\x58\x29\xf2\xdb\x6b\x6c\x01\x7b\xad\x2d"
      "\x68\xaf\xb3\x31\x36\x9f\xfd\xdb\xb8\xa8\x2d\x66\xe3\x6c\x71\x5b\xc2\x1a"
      "\x5b\xd8\x16\xf9\x4d\x8c\xd6\xda\x78\x5b\xc6\x96\xb5\xe5\xac\xb3\xe5\x6d"
      "\x82\xbd\xe5\x77\x71\x15\x5b\xd5\x56\xb3\xd5\xed\x9d\xb6\x86\xbd\xcb\xd6"
      "\xfc\x5d\xdc\xc0\xde\x6b\x1b\xda\xfb\x6c\x23\x7b\xbf\xad\x6f\xef\xf9\x4d"
      "\xdc\xd8\x3e\x60\x9b\xd8\x47\x6d\x53\xfb\x98\x6d\x66\x5b\xdb\xe6\xb6\xad"
      "\x6d\x61\x1f\xb5\x2d\xed\x63\xb6\x95\x6d\x6d\xdb\xd8\xb6\xb6\xb3\x7d\xca"
      "\x76\xb1\x4f\xdb\x44\xfb\x8c\xed\x6a\x9f\xfd\x5d\x9c\x61\x97\xda\x75\x76"
      "\xbd\xdd\x60\x37\xda\x7d\xf6\x73\x7b\xd6\x9e\xb3\x47\xec\x77\xf6\xbc\xfd"
      "\xd9\xf6\xb3\xfd\xed\x30\xfb\xaa\x1d\x6e\x5f\xb3\x23\xec\xeb\x36\xb9\xd1"
      "\xc8\xdf\xc6\x76\xa4\x1d\x6f\xdf\xb6\x13\xec\x44\x3b\xc9\x4e\xb6\x53\xec"
      "\xd4\xdf\xc5\x33\xed\x2c\x9b\x66\x67\xdb\x39\xf6\x7d\x3b\xd7\xce\xfb\x5d"
      "\x9c\x6e\x3f\xb2\x0b\x6c\xa6\x5d\x68\x17\xd9\xc5\x76\xc9\xaf\xf1\xa5\x35"
      "\x65\xda\x8f\xed\x32\xfb\x89\xcd\xb2\xcb\xed\x0a\xbb\xd2\xae\xb2\xab\xed"
      "\x1a\xbb\xf6\xaf\x6b\x5d\x69\x37\xdb\x2d\x76\xab\xdd\x6b\x3f\xb3\xdb\xed"
      "\x0e\xbb\xd3\xee\xb2\xbb\xed\x9e\x5f\xe3\x4b\xe7\xb1\xdf\x7e\x61\xb3\xed"
      "\x97\xf6\xb0\xfd\xd6\x1e\xb4\x5f\xd9\x43\xf6\xa8\xcd\xb1\xdf\xfc\x1a\x5f"
      "\x3a\xbf\xa3\xf6\x7b\x7b\xcc\xfe\x60\x8f\xdb\x13\xf6\xa4\xfd\xd1\x9e\xb2"
      "\x3f\xd9\xd3\xf6\xcc\xaf\xe7\x7f\xe9\xdc\x7f\xb4\xbf\xd8\x8b\xd6\x5b\x41"
      "\x40\x92\x14\x69\x0a\x28\x0f\xe5\xa5\x18\xca\x47\xf9\xe9\x1a\x2a\x40\xd7"
      "\x52\x41\xba\x8e\x22\x74\x3d\xc5\xd2\x0d\x54\x88\x6e\xa4\xc2\x54\x84\x8a"
      "\x52\x31\x8a\xa3\xe2\x54\x82\x0c\x21\x59\x22\x0a\xa9\x24\x95\xa2\x28\xdd"
      "\x44\xa5\xe9\x66\x8a\xa7\x32\x54\x96\xca\x91\xa3\xf2\x94\x40\xb7\x50\x05"
      "\xba\x95\x2a\xd2\x6d\x54\x89\x6e\xa7\xca\x74\x07\x55\xa1\xaa\x54\x8d\xaa"
      "\xd3\x9d\x54\x83\xee\xa2\x9a\x54\x8b\x6a\xd3\xdd\x54\x87\xea\x52\x3d\xaa"
      "\x4f\xf7\x50\x03\xba\x97\x1a\xd2\x7d\xd4\x88\xee\xa7\xc6\xf4\x00\x35\xa1"
      "\x07\xa9\x29\x3d\x44\xcd\xe8\x61\x6a\x4e\x8f\x50\x0b\x7a\x94\x5a\xd2\x63"
      "\xd4\x8a\x5a\x53\x1b\x6a\x4b\xed\xe8\x71\x6a\x4f\x4f\x50\x07\xea\x48\x9d"
      "\xe8\x49\xea\x4c\x4f\x51\x17\x7a\x9a\x12\xe9\x19\xea\x4a\xcf\x52\x37\x7a"
      "\x8e\xba\xd3\xf3\xd4\x83\x5e\xa0\x9e\xf4\x22\xf5\xa2\xde\xd4\x87\x5e\xa2"
      "\xbe\xf4\x32\xf5\xa3\xfe\x94\x44\x03\x68\x20\xbd\x42\x83\x68\x30\x0d\xa1"
      "\xa1\x34\x8c\x5e\xa5\xe1\xf4\x1a\x8d\xa0\xd7\x29\x99\x46\xd2\x28\x7a\x83"
      "\x46\xd3\x9b\x34\x86\xde\xa2\xb1\x34\x8e\xc6\xd3\xdb\x34\x81\x26\xd2\x24"
      "\x9a\x4c\x53\x68\x2a\xa5\xd0\x3b\x34\x8d\xde\xa5\x54\x7a\x8f\xa6\xd3\x0c"
      "\x9a\x49\xb3\x28\x8d\x66\xd3\x1c\x7a\x9f\xe6\xd2\x3c\x9a\x4f\x1f\xd0\x02"
      "\xfa\x90\x16\xd2\x22\x5a\x4c\x4b\x28\x9d\x3e\xa2\x0c\x5a\x4a\x99\xf4\x31"
      "\x2d\xa3\x4f\x28\x8b\x96\xd3\x0a\x5a\x49\xab\x68\x35\xad\xa1\xb5\xb4\x8e"
      "\xd6\xd3\x06\xda\x48\x9b\x68\x33\x6d\xa1\xad\xb4\x8d\x3e\xa5\xed\xb4\x83"
      "\x76\xd2\x2e\xda\x4d\x7b\x68\x2f\x7d\x46\xfb\xe8\x73\xda\x4f\x5f\x50\x36"
      "\x7d\x49\x07\xe8\x4f\x74\x90\xbe\xa2\x43\xf4\x35\xe5\xd0\x37\x74\x98\xbe"
      "\xa5\x23\xf4\x1d\x1d\xa5\xef\xe9\x18\xfd\x40\xc7\xe9\x04\x9d\xa4\x1f\xe9"
      "\x14\xfd\x44\xa7\xe9\x0c\x9d\xa5\x73\x74\x9e\x7e\xa6\x0b\xf4\x0b\x5d\x24"
      "\x4f\x22\x84\x50\x86\x2a\xd4\x61\x10\xe6\x09\xf3\x86\x31\x61\xbe\x30\x7f"
      "\x78\x4d\x58\x20\xbc\x36\x2c\x18\x5e\x17\x46\xc2\xeb\xc3\xd8\xf0\x86\xb0"
      "\x50\x78\x63\x58\x38\x2c\x12\x16\x0d\x8b\x85\x71\x61\xf1\xb0\x44\x68\x42"
      "\x0c\x6d\x48\x61\x18\x96\x0c\x4b\x85\xd1\xf0\xa6\xb0\x74\x78\x73\x18\x1f"
      "\x96\x09\xcb\x86\xe5\x42\x17\x96\x0f\x13\xc2\x5b\xc2\x0a\xe1\xad\x61\xc5"
      "\xf0\xb6\xb0\x52\x78\x7b\x58\x39\xbc\x23\xac\x12\x56\x0d\x1f\xbd\xbf\x7a"
      "\x78\x67\x58\x23\xbc\x2b\xac\x19\xd6\x0a\x6b\x87\x77\x87\x75\xc2\xba\x61"
      "\xbd\xb0\x7e\x78\x4f\xd8\x20\xbc\x37\x6c\x18\xde\x17\x36\x0a\xef\x0f\x2b"
      "\x86\x0f\x84\x4d\xc2\x07\xc3\xa6\xe1\x43\x61\xb3\xf0\xe1\xb0\x79\xf8\x48"
      "\xd8\x22\x7c\x34\x6c\x19\x3e\x16\xb6\x0a\x5b\x87\x6d\xc2\xb6\x61\xbb\xf0"
      "\xf1\xb0\x7d\xf8\x44\xd8\x21\xec\x18\x76\x0a\x9f\x0c\x3b\x87\x4f\x85\x5d"
      "\xc2\xa7\xc3\xc4\xf0\x99\xb0\x6b\xf8\xec\x1f\xee\x4f\x0a\x07\x84\x03\xc3"
      "\x57\xc2\x57\x42\xef\xef\x53\x8b\xa3\x4b\xa2\xe9\xd1\x8f\xa2\x19\xd1\xa5"
      "\xd1\xcc\xe8\xc7\xd1\x65\xd1\x4f\xa2\x59\xd1\xe5\xd1\x15\xd1\x95\xd1\x55"
      "\xd1\xd5\xd1\x35\xd1\xb5\xd1\x75\xd1\xf5\xd1\x0d\xd1\x8d\xd1\x4d\xd1\xcd"
      "\xd1\x2d\xd1\xad\x51\xef\xeb\xe7\x15\x0e\x9c\x74\xca\x69\x17\xb8\x3c\x2e"
      "\xaf\x8b\x71\xf9\x5c\x7e\x77\x8d\x2b\xe0\xae\x75\x05\xdd\x75\x2e\xe2\xae"
      "\x77\xb1\xee\x06\x57\xc8\xdd\xe8\x0a\xbb\x22\xae\xa8\x2b\xe6\xe2\x5c\x71"
      "\x57\xc2\x19\x87\xce\x3a\x72\xa1\x2b\xe9\x4a\xb9\xa8\xbb\xc9\x95\x76\x37"
      "\xbb\x78\x57\xc6\x95\x75\xe5\x9c\x73\xe5\x5d\x82\x6b\xeb\xda\xb9\x76\xae"
      "\xbd\x7b\xc2\x75\x70\x1d\x5d\x27\xf7\xa4\x7b\xd2\x3d\xe5\x9e\x72\x4f\xbb"
      "\xa7\xdd\x33\xae\xab\x7b\xd6\x75\x73\xcf\xb9\xee\xee\x79\xd7\xc3\xbd\xe0"
      "\x5e\x70\x2f\xba\x5e\xae\xb7\xeb\xe3\x5e\x72\x7d\xdd\xcb\xae\x9f\xeb\xef"
      "\x92\x5c\x92\x1b\xe8\x06\xba\x41\x6e\x90\x1b\xe2\x86\xe4\xb9\x7c\x0d\xe6"
      "\x46\xb8\x11\x2e\xd9\x25\xbb\x51\x6e\x94\x1b\xed\x46\xbb\x31\x6e\x8c\x1b"
      "\xeb\xc6\xba\xf1\x6e\xbc\x9b\xe0\x26\xb8\x49\x6e\x92\x9b\xe2\xa6\xb8\x14"
      "\x97\xe2\xa6\xb9\x69\x2e\xd5\xa5\xba\xe9\x6e\xba\x9b\xe9\x66\xba\x34\x97"
      "\xe6\xe6\xb8\x39\x6e\xae\x9b\xeb\xe6\xbb\xf9\x6e\x41\xfc\x02\xb7\xd0\x2d"
      "\x74\x8b\xdd\x62\x97\xee\xd2\x5d\x86\xcb\x70\x99\x2e\xd3\x2d\x73\xcb\x5c"
      "\x96\xcb\x72\x2b\xdc\x0a\xb7\xca\xad\x72\x6b\xdc\x1a\xb7\xce\xad\x73\x1b"
      "\xdc\x06\xb7\xc9\x6d\x72\x5b\xdc\x16\xb7\xcd\x6d\x73\xdb\xdd\x76\xb7\xd3"
      "\xed\x74\xbb\xdd\x6e\xb7\xd7\xed\x75\xfb\xdc\x3e\xb7\xdf\xed\x77\xd9\x2e"
      "\xdb\x1d\x70\x07\xdc\x41\x77\xd0\x1d\x72\x5f\xbb\x1c\xf7\x8d\x3b\xec\xbe"
      "\x75\x47\xdc\x77\xee\xa8\xfb\xde\x1d\x73\x3f\xb8\xe3\xee\x84\x3b\xe9\x7e"
      "\x74\xa7\xdc\x4f\xee\xb4\x3b\xe3\xce\xba\x73\xee\xbc\xfb\xd9\x5d\x70\xbf"
      "\xb8\x8b\xce\xbb\x94\xc8\x3b\x91\x69\x91\x77\x23\xa9\x91\xf7\x22\xd3\x23"
      "\x33\x22\x33\x23\xb3\x22\x69\x91\xd9\x91\x39\x91\xf7\x23\x73\x23\xf3\x22"
      "\xf3\x23\x1f\x44\x16\x44\x3e\x8c\x2c\x8c\x2c\x8a\x2c\x8e\x2c\x89\xa4\x47"
      "\x3e\x8a\x64\x44\x96\x46\x32\x23\x1f\x47\x96\x45\x3e\x89\x64\x45\x96\x47"
      "\x56\x44\x56\x46\x56\x45\x56\x47\xbc\x2f\xbe\x3d\xf4\x25\x7d\x29\x1f\xf5"
      "\x37\xf9\xd2\xfe\x66\x1f\xef\xcb\xf8\xb2\xbe\x9c\x77\xbe\xbc\x4f\xf0\xb7"
      "\xf8\x0a\xfe\x56\x5f\xd1\xdf\xe6\x2b\xf9\xdb\x7d\x65\x7f\x87\xaf\xe2\xab"
      "\xfa\x6a\xfe\x31\xdf\xca\xb7\xf6\x6d\x7c\x5b\xdf\xce\x3f\xee\xdb\xfb\x27"
      "\x7c\x07\xdf\xd1\x77\xf2\x4f\xfa\xce\xfe\x29\xdf\xc5\x3f\xed\x13\xfd\x33"
      "\xbe\xab\x7f\xd6\x77\xf3\xcf\xf9\xee\xfe\x79\xdf\xc3\xbf\xe0\x7b\xfa\x17"
      "\x7d\x2f\xdf\xdb\xf7\xf1\x2f\xf9\xbe\xfe\x65\xdf\xcf\xf7\xf7\x49\x7e\x80"
      "\x1f\xe8\x5f\xf1\x83\xfc\x60\x3f\xc4\x0f\xf5\xc3\xfc\xab\x7e\xb8\x7f\xcd"
      "\x8f\xf0\xaf\xfb\x64\x3f\xd2\x8f\xf2\x6f\xf8\xd1\xfe\x4d\x3f\xc6\xbf\xe5"
      "\xc7\xfa\x71\x7e\xbc\x7f\xdb\x4f\xf0\x13\xfd\x24\x3f\xd9\x4f\xf1\x53\x7d"
      "\x8a\x7f\xc7\x4f\xf3\xef\xfa\x54\xff\x9e\x9f\xee\x67\xf8\x99\x7e\x96\x4f"
      "\xf3\xb3\xfd\x1c\xff\xbe\x9f\xeb\xe7\xf9\xf9\xfe\x03\xbf\xc0\x7f\xe8\x17"
      "\xfa\x45\x7e\xb1\x5f\xe2\xd3\xfd\x47\x3e\xc3\x2f\xf5\x99\xfe\x63\xbf\xcc"
      "\x7f\xe2\xb3\xfc\x72\xbf\xc2\xaf\xf4\xab\xfc\x6a\xbf\xc6\xaf\xf5\xeb\xfc"
      "\x7a\xbf\xc1\x6f\xf4\x9b\xfc\x66\xbf\xc5\x6f\xf5\xdb\xfc\xa7\x7e\xbb\xdf"
      "\xe1\x77\xfa\x5d\x7e\xb7\xdf\xe3\xf7\xfa\xcf\xfc\x3e\xff\xb9\xdf\xef\xbf"
      "\xf0\xd9\xfe\x4b\x7f\xc0\xff\xc9\x1f\xf4\x5f\xf9\x43\xfe\x6b\x9f\xe3\xbf"
      "\xf1\x87\xfd\xb7\xfe\x88\xff\xce\x1f\xf5\xdf\xfb\x63\xfe\x07\x7f\xdc\x9f"
      "\xf0\x27\xfd\x8f\xfe\x94\xff\xc9\x9f\xf6\x67\xfc\x59\x7f\xce\x9f\xf7\x3f"
      "\xfb\x0b\xfe\x17\x7f\x91\xff\x67\x8d\x31\xc6\x18\x63\xec\x5f\x92\x7a\xe8"
      "\x9f\xef\x1f\xf0\x77\xb6\xc9\xcb\xe3\x92\x81\x42\x88\x6b\x77\x14\xcb\xf9"
      "\xdb\xfd\x5a\x08\xb1\xa9\xf0\x9f\xe7\x83\x65\x5c\xe7\x88\x10\xe2\x99\xfe"
      "\x3d\x1f\xfe\xcb\xa8\x53\x27\x29\x29\xe9\xf2\xb1\x59\x4a\x04\xa5\x16\x09"
      "\x21\x22\x57\xf2\x7f\xbd\x0d\xb9\x1c\x2f\x17\x9d\xc4\x53\x22\x51\x74\x14"
      "\x15\xfe\xee\xfa\x06\xcb\xde\xe7\xe9\x1f\xd4\xd7\x97\x8f\x89\xde\x2e\x44"
      "\xfe\xbf\xc9\x89\x11\x57\xe2\x2b\xf5\x6f\xfd\x07\xf5\x1f\x7f\x72\x7c\x46"
      "\xe5\xf0\x6c\xec\x6f\xeb\x5f\xb8\x7c\xbd\x79\x69\xfd\xd1\x45\x42\xc4\x97"
      "\xba\x92\x93\x4f\x5c\x89\xaf\xd4\xaf\xf8\x0f\xea\x17\x69\xff\x8f\xd6\x7f"
      "\xb9\x7e\xbe\xaf\x52\x84\xe8\xf0\x37\x39\x05\xc4\x95\xf8\x4a\xfd\x04\xf1"
      "\x84\x78\x56\x24\xfe\xe6\x48\xc6\x18\x63\x8c\x31\xc6\x18\x63\xec\xcf\x06"
      "\xcb\x6a\xdd\xff\xe0\xfe\xf3\xd7\xfb\xf3\xb8\x3f\xdf\x4c\xff\xba\x39\xaf"
      "\xf8\x6b\xfc\x87\xf7\xe7\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\xbb\xfa\x9e"
      "\xef\xdd\xe7\xe9\xc7\x13\x13\x3b\x76\xe7\x09\x4f\x78\xc2\x93\xbf\x4e\xae"
      "\xf6\x6f\x26\xc6\x18\x63\x8c\x31\xc6\xd8\x7f\xda\x95\x8b\xfe\xbf\x6c\xc9"
      "\x73\x75\x17\xc4\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31"
      "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63"
      "\x8c\x31\xc6\x18\x63\x8c\xe5\x42\xff\x1d\x1f\x27\x76\xb5\xcf\x91\x31\xc6"
      "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c"
      "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18"
      "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\xbb\xda\xfe\x4f\x00\x00\x00\xff"
      "\xff\x5d\x31\x40\x46",
      5405);
  syz_mount_image(
      /*fs=*/0x200000c0, /*dir=*/0x20000140,
      /*flags=MS_NOEXEC|MS_NODEV|MS_MANDLOCK|0x20000000*/ 0x2000004c,
      /*opts=*/0x20000640, /*chdir=*/0xfe, /*size=*/0x151d, /*img=*/0x200022c0);
  memcpy((void*)0x20000000, "./file1\000", 8);
  syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000000ul,
          /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=*/0);
}
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;
  use_temporary_dir();
  loop();
  return 0;
}