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