Coda File System

Re: "find ." not working ?

From: Roland Mainz <Roland.Mainz_at_informatik.med.uni-giessen.de>
Date: Sun, 08 Oct 2000 15:48:17 +0200
Jan Harkes wrote:

> > > > Can someone verify that "find ." doesn't work on a CODA filesystem ?
> > > >
> > > > I'll get
> > > > -- snip --
> > > > % find .
> > > > find: cannot open .: Error 0
> > > > -- snip --
> > > > on my Solaris 7 SPARC box... ;-(
> > >
> > > Does "find . -noleaf" work?
> >
> > Uhm... there is no -noleaf option in Solaris (2.7) /usr/bin/find... ;-(
> >
> > What does this option do ?
> 
> It disables a GNU find optimization.
> 
> Volume mount points in Coda are represented as symbolic links. So the
> directory link count doesn't account for mounted volumes. GNU find has
> this optimization that once it has seen "parent link count - 2"
> directories, the rest of the directory entries are assumed to be files,
> and find can therefore avoid a couple of stat(2) calls.

This "feature" sounds like a bad idea. It will break on many
not-so-common filesystems (AFS or DFS will be a good canidate to test
this... =:-)... Nice... ;-(

> I believe I once read that there is some magic linkcount that
> automatically turns off this optimization (nlink == 1 probably). I
> probably have to look at the find sourcecode to discover this. As I've
> not seen any reference to this in any POSIX or SuS references.
> 
> I don't really know much about the Solaris kernel module implementation,
> but in this case it could also be that find tries to avoid using
> readdir syscalls, but rather tries to read or mmap the directory for
> faster access, maybe truss or strace can show which syscall returns the
> error.

I've attched the output of 
% truss -o ~/truss.outfile -u :: find .

CODA filesystem mounted at /mnt, automounter creates lofs mounts ("lofs"
is the virtual loopback filesystem - a filesystem which works like a
softlink with the advantages of a real mount point) to /ftp on demand
(like /ftp/ftp.uni-giessen.de)

"find" in Solaris 7 uses libc:nftw() to travel througth the directory,
unfortunately it fails on the CODA filesystem. Interesting detail: If I
run a find starting from "/ftp" it will scan the whole
/ftp/ftp.uni.giessen.de tree (until it dies with SEGV in strlen() -
seems to be a bug in find(1) =:-)

Other problem - don't know if related or not related: getcwd() returns 0
on CODA filesystem (be sure to check this with /usr/bin/pwd or POSIX
sh/ksh as bash2 seems to do some (illegal !?) optimisations here).
Starting a directory walk in /ftp/ftp.uni-giessen.de/ using the
follwowing scripts failes to print $PWD. Starting in in /ftp works and
scans the whole tree.

-- snip --
#!/usr/bin/ksh
# dirwalk.ksh
# Small script to scan a directory tree, works more or less like
# % find $arg -print
# Written by Roland Mainz <Roland.Mainz_at_informatik.med.uni-giessen.de>
# 
export PATH=/usr/xpg4/bin:/usr/bin

scandir()
{  
    (
    cd "$1" || return
    
    for i in *
    do
        [ -d "$i" ] && scandir "$i"
        echo "$PWD/$i"
    done
    )
}

for i in "$@"
do
        scandir "$i"
done
# EOF.
-- snip --

----

Bye,
Roland

-- 
  __ .  . __
 (o.\ \/ /.o) Roland.Mainz_at_informatik.med.uni-giessen.de
  \__\/\/__/  gisburn_at_informatik.med.uni-giessen.de
  /O /==\ O\  MPEG specialist, C&&JAVA&&Sun&&Unix programmer
 (;O/ \/ \O;) TEL +49 641 99-13193 FAX +49 641 99-41359
execve("/usr/bin/find", 0xEFFFEC6C, 0xEFFFEC78)  argc = 2
open("/dev/zero", O_RDONLY)			= 3
mmap(0x00000000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0xEF7B0000
stat("/usr/bin/find", 0xEFFFE960)		= 0
open("/var/ld/ld.config", O_RDONLY)		Err#2 ENOENT
open("/usr/local/staden/lib/solaris-binaries/libc.so.1", O_RDONLY) Err#2 ENOENT
open("/usr/local/lib/libc.so.1", O_RDONLY)	Err#2 ENOENT
open("/usr/local/rvplayer5.0/libc.so.1", O_RDONLY) Err#2 ENOENT
open("/usr/local/arb/lib/libc.so.1", O_RDONLY)	Err#2 ENOENT
open("/usr/lib/libc.so.1", O_RDONLY)		= 4
fstat(4, 0xEFFFE6FC)				= 0
mmap(0x00000000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE, 4, 0) = 0xEF7A0000
mmap(0x00000000, 770048, PROT_READ|PROT_EXEC, MAP_PRIVATE, 4, 0) = 0xEF6C0000
mmap(0xEF773000, 27892, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 4, 667648) = 0xEF773000
mmap(0xEF77A000, 5720, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0xEF77A000
munmap(0xEF764000, 61440)			= 0
memcntl(0xEF6C0000, 131460, MC_ADVISE, 0x0003, 0, 0) = 0
close(4)					= 0
open("/usr/local/staden/lib/solaris-binaries/libdl.so.1", O_RDONLY) Err#2 ENOENT
open("/usr/local/lib/libdl.so.1", O_RDONLY)	Err#2 ENOENT
open("/usr/local/rvplayer5.0/libdl.so.1", O_RDONLY) Err#2 ENOENT
open("/usr/local/arb/lib/libdl.so.1", O_RDONLY)	Err#2 ENOENT
open("/usr/lib/libdl.so.1", O_RDONLY)		= 4
fstat(4, 0xEFFFE6FC)				= 0
mmap(0xEF7A0000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 4, 0) = 0xEF7A0000
close(4)					= 0
open("/usr/platform/SUNW,SPARCstation-5/lib/libc_psr.so.1", O_RDONLY) Err#2 ENOENT
close(3)					= 0
-> libc:_init(0x0, 0x2040440a, 0xef7efed8, 0xef7ca6f0)
<- libc:_init() = 0
-> libc:atexit(0xef7cab04, 0x24400, 0x0, 0x0)
  -> libc:mutex_lock(0xef775f58, 0x0, 0x0, 0xef6e0188)
  -> libc:_return_zero(0xef775f58, 0x0, 0x0, 0xef6e0188)
  <- libc:mutex_lock() = 0
  -> libc:mutex_unlock(0xef775f58, 0xef779cfc, 0xef775f50, 0x1)
  -> libc:_return_zero(0xef775f58, 0xef779cfc, 0xef775f50, 0x1)
  <- libc:mutex_unlock() = 0
<- libc:atexit() = 0
-> libc:atexit(0x13cc0, 0xef7cab04, 0xef775f58, 0xef773a30)
  -> libc:mutex_lock(0xef775f58, 0x0, 0x0, 0xef6e0188)
  -> libc:_return_zero(0xef775f58, 0x0, 0x0, 0xef6e0188)
  <- libc:mutex_lock() = 0
  -> libc:mutex_unlock(0xef775f58, 0xef779cfc, 0xef775f50, 0x2)
  -> libc:_return_zero(0xef775f58, 0xef779cfc, 0xef775f50, 0x2)
  <- libc:mutex_unlock() = 0
<- libc:atexit() = 0
-> libc:setlocale(0x6, 0x13d00, 0x5, 0x11458)
  -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef72ce14)
  -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef72ce14)
  <- libc:thr_main() = -1
  -> libc:_real_setlocale(0x6, 0x13d00, 0xef77736c, 0xef72ce14)
    -> libc:load_all_locales(0x13d00, 0xefffeb20, 0xefffe9ec, 0xefffeb38)
      -> libc:expand_locale_name(0x13d00, 0xefffeb38, 0xefffe7f8, 0x451e4)
        -> libc:getenv(0xef7635d8, 0x446e4, 0x0, 0xef72f348)
          -> libc:mutex_lock(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          <- libc:mutex_lock() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffedfb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffee1b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffee22, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffee2e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffee40, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffee5a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffee68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffef39, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffef47, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffef68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffef7b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffefeb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff009, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff028, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff045, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff125, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff13e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff259, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff32f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff343, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff35c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff36c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff37a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff387, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff3a5, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff3c7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff3df, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff41d, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff469, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff480, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff495, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff4ae, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff4b9, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff4ca, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff4d7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff4e7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff513, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff51b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff52a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff75c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff793, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff9c7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff9d8, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffff9ed, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffb8e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffbf6, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffcf4, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffd04, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffd17, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffd51, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffd60, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffd6f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffd81, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffd9e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffdb1, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xeffffdbd, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffff0f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffff21, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffff5b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffff74, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffff96, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffffa7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635d8, 0xefffffb8, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:mutex_unlock(0x243f4, 0x0, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0x0, 0x0, 0xef6fdb94)
          <- libc:mutex_unlock() = 0
        <- libc:getenv() = 0
        -> libc:getenv(0xef7635e0, 0x243f4, 0xef773a30, 0x0)
          -> libc:mutex_lock(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          <- libc:mutex_lock() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffedfb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffee1b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffee22, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffee2e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffee40, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffee5a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffee68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffef39, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffef47, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffef68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffef7b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xefffefeb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff009, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff028, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff045, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff125, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff13e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff259, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff32f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff343, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff35c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff36c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff37a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff387, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff3a5, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff3c7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff3df, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff41d, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff469, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff480, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff495, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635e0, 0xeffff4ae, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0xeffff4b3
          -> libc:mutex_unlock(0x243f4, 0xeffff4b3, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0xeffff4b3, 0x0, 0xef6fdb94)
          <- libc:mutex_unlock() = 0
        <- libc:getenv() = 0xeffff4b3
        -> libc:strcmp(0xeffff4b3, 0xef760ce0, 0xef773a30, 0xeffff4b3)
        <- libc:strcmp() = 21
        -> libc:strchr(0xeffff4b3, 0x2f, 0xef773a30, 0x0)
        <- libc:strchr() = 0
        -> libc:getenv(0xef763570, 0x2f, 0xef773a30, 0x0)
          -> libc:mutex_lock(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          <- libc:mutex_lock() = 0
          -> libc:nvmatch(0xef763570, 0xefffedfb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xefffee1b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xefffee22, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xefffee2e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xefffee40, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xefffee5a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xefffee68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xefffef39, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xefffef47, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xefffef68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xefffef7b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xefffefeb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff009, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff028, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff045, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff125, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff13e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff259, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff32f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff343, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff35c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff36c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff37a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff387, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff3a5, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff3c7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff3df, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff41d, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff469, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff480, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff495, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff4ae, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff4b9, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff4ca, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff4d7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff4e7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff513, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763570, 0xeffff51b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0xeffff524
          -> libc:mutex_unlock(0x243f4, 0xeffff524, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0xeffff524, 0x0, 0xef6fdb94)
          <- libc:mutex_unlock() = 0
        <- libc:getenv() = 0xeffff524
        -> libc:strcmp(0xeffff524, 0xef760ce0, 0xef773a30, 0xeffff524)
        <- libc:strcmp() = 21
        -> libc:strchr(0xeffff524, 0x2f, 0xef773a30, 0x0)
        <- libc:strchr() = 0
        -> libc:getenv(0xef76357c, 0x2f, 0xef773a30, 0x0)
          -> libc:mutex_lock(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          <- libc:mutex_lock() = 0
          -> libc:nvmatch(0xef76357c, 0xefffedfb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xefffee1b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xefffee22, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xefffee2e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xefffee40, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xefffee5a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xefffee68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xefffef39, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xefffef47, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xefffef68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xefffef7b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xefffefeb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff009, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff028, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff045, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff125, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff13e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff259, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff32f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff343, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff35c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff36c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff37a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff387, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff3a5, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff3c7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff3df, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff41d, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff469, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff480, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff495, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff4ae, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76357c, 0xeffff4b9, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0xeffff4c4
          -> libc:mutex_unlock(0x243f4, 0xeffff4c4, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0xeffff4c4, 0x0, 0xef6fdb94)
          <- libc:mutex_unlock() = 0
        <- libc:getenv() = 0xeffff4c4
        -> libc:strcmp(0xeffff4c4, 0xef760ce0, 0xef773a30, 0xeffff4c4)
        <- libc:strcmp() = 21
        -> libc:strchr(0xeffff4c4, 0x2f, 0xef773a30, 0x0)
        <- libc:strchr() = 0
        -> libc:getenv(0xef763588, 0x2f, 0xef773a30, 0x0)
          -> libc:mutex_lock(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          <- libc:mutex_lock() = 0
          -> libc:nvmatch(0xef763588, 0xefffedfb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xefffee1b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xefffee22, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xefffee2e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xefffee40, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xefffee5a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xefffee68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xefffef39, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xefffef47, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xefffef68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xefffef7b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xefffefeb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xeffff009, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xeffff028, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xeffff045, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xeffff125, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xeffff13e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xeffff259, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xeffff32f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xeffff343, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xeffff35c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763588, 0xeffff36c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0xeffff374
          -> libc:mutex_unlock(0x243f4, 0xeffff374, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0xeffff374, 0x0, 0xef6fdb94)
          <- libc:mutex_unlock() = 0
        <- libc:getenv() = 0xeffff374
        -> libc:strcmp(0xeffff374, 0xef760ce0, 0xef773a30, 0xeffff374)
        <- libc:strcmp() = 21
        -> libc:strchr(0xeffff374, 0x2f, 0xef773a30, 0x0)
        <- libc:strchr() = 0
        -> libc:getenv(0xef763590, 0x2f, 0xef773a30, 0x0)
          -> libc:mutex_lock(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          <- libc:mutex_lock() = 0
          -> libc:nvmatch(0xef763590, 0xefffedfb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffee1b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffee22, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffee2e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffee40, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffee5a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffee68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffef39, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffef47, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffef68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffef7b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffefeb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff009, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff028, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff045, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff125, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff13e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff259, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff32f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff343, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff35c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff36c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff37a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff387, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff3a5, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff3c7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff3df, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff41d, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff469, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff480, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff495, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff4ae, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff4b9, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff4ca, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff4d7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff4e7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff513, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff51b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff52a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff75c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff793, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff9c7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff9d8, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffff9ed, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffb8e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffbf6, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffcf4, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffd04, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffd17, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffd51, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffd60, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffd6f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffd81, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffd9e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffdb1, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xeffffdbd, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffff0f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffff21, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffff5b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffff74, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef763590, 0xefffff96, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0xefffffa1
          -> libc:mutex_unlock(0x243f4, 0xefffffa1, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0xefffffa1, 0x0, 0xef6fdb94)
          <- libc:mutex_unlock() = 0
        <- libc:getenv() = 0xefffffa1
        -> libc:strcmp(0xefffffa1, 0xef760ce0, 0xef773a30, 0xefffffa1)
        <- libc:strcmp() = 21
        -> libc:strchr(0xefffffa1, 0x2f, 0xef773a30, 0x0)
        <- libc:strchr() = 0
        -> libc:getenv(0xef76359c, 0x2f, 0xef773a30, 0x0)
          -> libc:mutex_lock(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          <- libc:mutex_lock() = 0
          -> libc:nvmatch(0xef76359c, 0xefffedfb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffee1b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffee22, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffee2e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffee40, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffee5a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffee68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffef39, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffef47, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffef68, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffef7b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffefeb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff009, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff028, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff045, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff125, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff13e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff259, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff32f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff343, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff35c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff36c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff37a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff387, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff3a5, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff3c7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff3df, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff41d, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff469, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff480, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff495, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff4ae, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff4b9, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff4ca, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff4d7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff4e7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff513, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff51b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff52a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff75c, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff793, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff9c7, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff9d8, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffff9ed, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffb8e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffbf6, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffcf4, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffd04, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffd17, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffd51, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffd60, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffd6f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffd81, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffd9e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffdb1, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xeffffdbd, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef76359c, 0xefffff0f, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0xefffff1b
          -> libc:mutex_unlock(0x243f4, 0xefffff1b, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0xefffff1b, 0x0, 0xef6fdb94)
          <- libc:mutex_unlock() = 0
        <- libc:getenv() = 0xefffff1b
        -> libc:strcmp(0xefffff1b, 0xef760ce0, 0xef773a30, 0xefffff1b)
        <- libc:strcmp() = 21
        -> libc:strchr(0xefffff1b, 0x2f, 0xef773a30, 0x0)
        <- libc:strchr() = 0
        -> libc:getenv(0xef7635a8, 0x2f, 0xef773a30, 0x0)
          -> libc:mutex_lock(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
          <- libc:mutex_lock() = 0
          -> libc:nvmatch(0xef7635a8, 0xefffedfb, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635a8, 0xefffee1b, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635a8, 0xefffee22, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635a8, 0xefffee2e, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635a8, 0xefffee40, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0
          -> libc:nvmatch(0xef7635a8, 0xefffee5a, 0x0, 0xef6fdb94)
          <- libc:nvmatch() = 0xefffee66
          -> libc:mutex_unlock(0x243f4, 0xefffee66, 0x0, 0xef6fdb94)
          -> libc:_return_zero(0x243f4, 0xefffee66, 0x0, 0xef6fdb94)
          <- libc:mutex_unlock() = 0
        <- libc:getenv() = 0xefffee66
        -> libc:strcmp(0xeffff524, 0xeffff4c4, 0xef773a30, 0xefffee66)
        <- libc:strcmp() = 0
        -> libc:strcmp(0xeffff524, 0xeffff374, 0xef773a30, 0x0)
        <- libc:strcmp() = 0
        -> libc:strcmp(0xeffff524, 0xefffffa1, 0xef773a30, 0x0)
        <- libc:strcmp() = 0
        -> libc:strcmp(0xeffff524, 0xefffff1b, 0xef773a30, 0x0)
        <- libc:strcmp() = 0
        -> libc:strcmp(0xeffff524, 0xef760ce6, 0xef773a30, 0x414232)
        <- libc:strcmp() = 34
        -> libc:strdup(0xeffff524, 0xef760cec, 0xef773a30, 0x0)
          -> libc:strlen(0xeffff524, 0x0, 0x0, 0xef710558)
          <- libc:strlen() = 5
          -> libc:malloc(0x6, 0xeffff52c, 0x5300584d, 0x7efefeff)
            -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
            -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
            <- libc:mutex_lock() = 0
            -> libc:_malloc_unlocked(0x6, 0x0, 0x0, 0xef705594)
              -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
              <- libc:cleanfree() = 0
            -> libc:_smalloc(0x8, 0x8, 0x0, 0x0)
              -> libc:_malloc_unlocked(0x400, 0x0, 0x0, 0xef773a30)
                -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
                <- libc:cleanfree() = 0
                -> libc:_morecore(0x400, 0x0, 0xef77a34c, 0xef77a3cc)
                  -> libc:sbrk(0x0, 0x0, 0x0, 0xef705e38)
                    -> libc:mutex_lock(0xef777fb0, 0x0, 0x0, 0xef74fbe8)
                    -> libc:_return_zero(0xef777fb0, 0x0, 0x0, 0xef74fbe8)
                    <- libc:mutex_lock() = 0
                    -> libc:_sbrk_unlocked(0x0, 0x0, 0x0, 0xef74fbe8)
                      -> libc:_brk_unlocked(0x252c8, 0x23e08, 0x0, 0xef773a30)
brk(0x000252C8)					= 0
                      <- libc:_brk_unlocked() = 0
                    <- libc:_sbrk_unlocked() = 0x252c8
                    -> libc:mutex_unlock(0xef777fb0, 0x252c8, 0x0, 0xef74fbe8)
                    -> libc:_return_zero(0xef777fb0, 0x252c8, 0x0, 0xef74fbe8)
                    <- libc:mutex_unlock() = 0
                  <- libc:sbrk() = 0x252c8
                  -> libc:sbrk(0x2000, 0xffffdfe7, 0x0, 0xef705e38)
                    -> libc:mutex_lock(0xef777fb0, 0x0, 0x0, 0xef74fbe8)
                    -> libc:_return_zero(0xef777fb0, 0x0, 0x0, 0xef74fbe8)
                    <- libc:mutex_lock() = 0
                    -> libc:_sbrk_unlocked(0x2000, 0x0, 0x0, 0xef74fbe8)
                      -> libc:_brk_unlocked(0x272c8, 0x23e08, 0x0, 0xef773a30)
brk(0x000272C8)					= 0
                      <- libc:_brk_unlocked() = 0
                    <- libc:_sbrk_unlocked() = 0x252c8
                    -> libc:mutex_unlock(0xef777fb0, 0x252c8, 0x0, 0xef74fbe8)
                    -> libc:_return_zero(0xef777fb0, 0x252c8, 0x0, 0xef74fbe8)
                    <- libc:mutex_unlock() = 0
                  <- libc:sbrk() = 0x252c8
                <- libc:_morecore() = 0x252c8
                -> libc:realfree(0x256d8, 0x1, 0x1ff0, 0x0)
                <- libc:realfree() = 0x272b8
              <- libc:_malloc_unlocked() = 0x252d0
            <- libc:_malloc_unlocked() = 0x252d8
            -> libc:mutex_unlock(0xef777fc8, 0xef77a338, 0x0, 0x0)
            -> libc:_return_zero(0xef777fc8, 0xef77a338, 0x0, 0x0)
            <- libc:mutex_unlock() = 0
          <- libc:malloc() = 0x252d8
          -> libc:strcpy(0x252d8, 0xeffff524, 0x5300584d, 0x7efefeff)
          <- libc:strcpy() = 0x252d8
        <- libc:strdup() = 0x252d8
        -> libc:strlen(0x252d8, 0xeffff524, 0xef773a30, 0x0)
        <- libc:strlen() = 5
        -> libc:strdup(0xeffff4c4, 0x252e0, 0x53000000, 0x7efefeff)
          -> libc:strlen(0xeffff4c4, 0x0, 0x0, 0xef710558)
          <- libc:strlen() = 5
          -> libc:malloc(0x6, 0xeffff4cc, 0x53004449, 0x7efefeff)
            -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
            -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
            <- libc:mutex_lock() = 0
            -> libc:_malloc_unlocked(0x6, 0x0, 0x0, 0xef705594)
              -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
              <- libc:cleanfree() = 0
            -> libc:_smalloc(0x8, 0x8, 0x0, 0x0)
            <- libc:_malloc_unlocked() = 0x252e8
            -> libc:mutex_unlock(0xef777fc8, 0xef77a338, 0x0, 0x0)
            -> libc:_return_zero(0xef777fc8, 0xef77a338, 0x0, 0x0)
            <- libc:mutex_unlock() = 0
          <- libc:malloc() = 0x252e8
          -> libc:strcpy(0x252e8, 0xeffff4c4, 0x53004449, 0x7efefeff)
          <- libc:strcpy() = 0x252e8
        <- libc:strdup() = 0x252e8
        -> libc:strlen(0x252e8, 0xeffff4c4, 0x53000000, 0x7efefeff)
        <- libc:strlen() = 5
        -> libc:strdup(0xeffff374, 0x252f0, 0x53000000, 0x7efefeff)
          -> libc:strlen(0xeffff374, 0x0, 0x0, 0xef710558)
          <- libc:strlen() = 5
          -> libc:malloc(0x6, 0xeffff37c, 0x53005553, 0x7efefeff)
            -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
            -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
            <- libc:mutex_lock() = 0
            -> libc:_malloc_unlocked(0x6, 0x0, 0x0, 0xef705594)
              -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
              <- libc:cleanfree() = 0
            -> libc:_smalloc(0x8, 0x8, 0x0, 0x0)
            <- libc:_malloc_unlocked() = 0x252f8
            -> libc:mutex_unlock(0xef777fc8, 0xef77a338, 0x0, 0x0)
            -> libc:_return_zero(0xef777fc8, 0xef77a338, 0x0, 0x0)
            <- libc:mutex_unlock() = 0
          <- libc:malloc() = 0x252f8
          -> libc:strcpy(0x252f8, 0xeffff374, 0x53005553, 0x7efefeff)
          <- libc:strcpy() = 0x252f8
        <- libc:strdup() = 0x252f8
        -> libc:strlen(0x252f8, 0xeffff374, 0x53000000, 0x7efefeff)
        <- libc:strlen() = 5
        -> libc:strdup(0xefffffa1, 0x25300, 0x53000000, 0x7efefeff)
          -> libc:strlen(0xefffffa1, 0x0, 0x0, 0xef710558)
          <- libc:strlen() = 5
          -> libc:malloc(0x6, 0xefffffa8, 0x5553005f, 0x7efefeff)
            -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
            -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
            <- libc:mutex_lock() = 0
            -> libc:_malloc_unlocked(0x6, 0x0, 0x0, 0xef705594)
              -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
              <- libc:cleanfree() = 0
            -> libc:_smalloc(0x8, 0x8, 0x0, 0x0)
            <- libc:_malloc_unlocked() = 0x25308
            -> libc:mutex_unlock(0xef777fc8, 0xef77a338, 0x0, 0x0)
            -> libc:_return_zero(0xef777fc8, 0xef77a338, 0x0, 0x0)
            <- libc:mutex_unlock() = 0
          <- libc:malloc() = 0x25308
          -> libc:strcpy(0x25308, 0xefffffa1, 0x5553005f, 0x7efefeff)
          <- libc:strcpy() = 0x25308
        <- libc:strdup() = 0x25308
        -> libc:strlen(0x25308, 0xefffffa1, 0x53000000, 0x7efefeff)
        <- libc:strlen() = 5
        -> libc:strdup(0xefffff1b, 0x25310, 0x53000000, 0x7efefeff)
          -> libc:strlen(0xefffff1b, 0x0, 0x0, 0xef710558)
          <- libc:strlen() = 5
          -> libc:malloc(0x6, 0xefffff24, 0x414232, 0x7efefeff)
            -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
            -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
            <- libc:mutex_lock() = 0
            -> libc:_malloc_unlocked(0x6, 0x0, 0x0, 0xef705594)
              -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
              <- libc:cleanfree() = 0
            -> libc:_smalloc(0x8, 0x8, 0x0, 0x0)
            <- libc:_malloc_unlocked() = 0x25318
            -> libc:mutex_unlock(0xef777fc8, 0xef77a338, 0x0, 0x0)
            -> libc:_return_zero(0xef777fc8, 0xef77a338, 0x0, 0x0)
            <- libc:mutex_unlock() = 0
          <- libc:malloc() = 0x25318
          -> libc:strcpy(0x25318, 0xefffff1b, 0x414232, 0x7efefeff)
          <- libc:strcpy() = 0x25318
        <- libc:strdup() = 0x25318
        -> libc:strlen(0x25318, 0xefffff1b, 0x53000000, 0x7efefeff)
        <- libc:strlen() = 5
        -> libc:strlen(0xef760ce6, 0x25320, 0x53000000, 0x7efefeff)
        <- libc:strlen() = 1
        -> libc:malloc(0x21, 0xef760ce8, 0x53000000, 0x0)
          -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
          -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
          <- libc:mutex_lock() = 0
          -> libc:_malloc_unlocked(0x21, 0x0, 0x0, 0xef705594)
            -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
            <- libc:cleanfree() = 0
            -> libc:realfree(0x25708, 0x1, 0x1be8, 0xef77a3cc)
            <- libc:realfree() = 0x272b8
          <- libc:_malloc_unlocked() = 0x256d8
          -> libc:mutex_unlock(0xef777fc8, 0x28, 0x0, 0x256d0)
          -> libc:_return_zero(0xef777fc8, 0x28, 0x0, 0x256d0)
          <- libc:mutex_unlock() = 0
        <- libc:malloc() = 0x256d8
        -> libc:create_composite_locale(0x256d8, 0xefffe7f8, 0x53000000, 0x0)
        <- libc:create_composite_locale() = 0
      <- libc:expand_locale_name() = 0x256d8
      -> libc:cache_check(0x256d8, 0xef760ce0, 0xefffeb20, 0xefffe7f8)
      <- libc:cache_check() = 0
      -> libc:memset(0xefffe7c8, 0x0, 0x30, 0xefffe7f8)
      <- libc:memset() = 0xefffe7c8
      -> libc:strcmp(0x252e8, 0x252d8, 0xffffffff, 0x0)
      <- libc:strcmp() = 0
      -> libc:strcmp(0x252f8, 0x252d8, 0xffffffff, 0x0)
      <- libc:strcmp() = 0
      -> libc:strcmp(0x25308, 0x252d8, 0xffffffff, 0x0)
      <- libc:strcmp() = 0
      -> libc:strcmp(0x25318, 0x252d8, 0xffffffff, 0x0)
      <- libc:strcmp() = 0
      -> libc:load_locale(0x252d8, 0x252e0, 0xffffffff, 0x0)
        -> libc:strcpy(0xefffe72c, 0xef7635f8, 0x0, 0xef72fa84)
        <- libc:strcpy() = 0xefffe72c
        -> libc:strcat(0xefffe72c, 0xefffe73c, 0xefffe72c, 0x0)
        <- libc:strcat() = 0xefffe72c
        -> libc:strlen(0xefffe72c, 0xefffe73e, 0xefffe72c, 0x0)
        <- libc:strlen() = 5
        -> libc:strlen(0xef778f38, 0xefffe734, 0x3200ffff, 0x7efefeff)
        <- libc:strlen() = 16
        -> libc:strlen(0x252d8, 0xef778f4c, 0x0, 0x7efefeff)
        <- libc:strlen() = 5
        -> libc:memcpy(0xefffe328, 0xef778f38, 0x10, 0x7efefeff)
        <- libc:memcpy() = 0xefffe328
        -> libc:memcpy(0xefffe338, 0x252d8, 0x5, 0x7efefeff)
        <- libc:memcpy() = 0xefffe338
        -> libc:memcpy(0xefffe33d, 0xef763600, 0x1, 0x7efefeff)
        <- libc:memcpy() = 0xefffe33d
        -> libc:memcpy(0xefffe33e, 0x252d8, 0x5, 0x7efefeff)
        <- libc:memcpy() = 0xefffe33e
        -> libc:memcpy(0xefffe343, 0xefffe72c, 0x5, 0x7efefeff)
        <- libc:memcpy() = 0xefffe343
open("/usr/lib/locale/en_US/en_US.so.2", O_RDONLY) = 3
fstat(3, 0xEFFFE10C)				= 0
mmap(0x00000000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0xEF790000
mmap(0x00000000, 86016, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0xEF6A0000
mmap(0xEF6B3000, 5942, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 12288) = 0xEF6B3000
munmap(0xEF6A4000, 61440)			= 0
memcntl(0xEF6A0000, 8224, MC_ADVISE, 0x0003, 0, 0) = 0
close(3)					= 0
open("/dev/zero", O_RDONLY)			= 3
mmap(0x00000000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0xEF780000
close(3)					= 0
munmap(0xEF790000, 4096)			= 0
        -> en_US:_init(0x0, 0x20404002, 0xef7efed8, 0x0)
        <- en_US:_init() = 0
        -> en_US:instantiate(0xef6a2030, 0xef763604, 0xc01, 0x1)
        <- en_US:instantiate() = 0xef6b45d4
      <- libc:load_locale() = 0xef6b45d4
      -> libc:strlen(0x252d8, 0xef7b0f48, 0xef773a30, 0x10)
      <- libc:strlen() = 5
      -> libc:strlen(0x252e8, 0x252e0, 0x53000000, 0x7efefeff)
      <- libc:strlen() = 5
      -> libc:strlen(0x252f8, 0x252f0, 0x53000000, 0x7efefeff)
      <- libc:strlen() = 5
      -> libc:strlen(0x25308, 0x25300, 0x53000000, 0x7efefeff)
      <- libc:strlen() = 5
      -> libc:strlen(0x25318, 0x25310, 0x53000000, 0x7efefeff)
      <- libc:strlen() = 5
      -> libc:strlen(0xef760ce6, 0x25320, 0x53000000, 0x7efefeff)
      <- libc:strlen() = 1
      -> libc:malloc(0x21, 0xef760ce8, 0x53000000, 0x0)
        -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
        -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
        <- libc:mutex_lock() = 0
        -> libc:_malloc_unlocked(0x21, 0x0, 0x0, 0xef705594)
          -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
          <- libc:cleanfree() = 0
          -> libc:realfree(0x25738, 0x1, 0x1bb8, 0xef77a3cc)
          <- libc:realfree() = 0x272b8
        <- libc:_malloc_unlocked() = 0x25708
        -> libc:mutex_unlock(0xef777fc8, 0x28, 0x0, 0x25700)
        -> libc:_return_zero(0xef777fc8, 0x28, 0x0, 0x25700)
        <- libc:mutex_unlock() = 0
      <- libc:malloc() = 0x25708
      -> libc:create_composite_locale(0x25708, 0xefffe7f8, 0x53000000, 0x0)
      <- libc:create_composite_locale() = 0
      -> libc:free(0x256d8, 0xef6b45b4, 0xef760ce8, 0x25729)
        -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef7063d4)
        -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef7063d4)
        <- libc:mutex_lock() = 0
        -> libc:_free_unlocked(0x256d8, 0x0, 0x0, 0xef7063d4)
        <- libc:_free_unlocked() = 0x256d8
      -> libc:mutex_unlock(0xef777fc8, 0xef6b45b4, 0xef760ce8, 0x25729)
      -> libc:_return_zero(0xef777fc8, 0xef6b45b4, 0xef760ce8, 0x25729)
      <- libc:free() = 0
    <- libc:load_all_locales() = 0xefffe9ec
    -> libc:__locale_init(0xefffe8b8, 0xef72cb54, 0xef760ce6, 0xefffe810)
      -> libc:__charmap_init(0xefffe8b8, 0xef72c9e8, 0x0, 0xef72cb54)
        -> libc:_clear_internal_mbstate(0xef6a3b1c, 0x0, 0x0, 0xef72c9e8)
          -> libc:mutex_lock(0xef777f98, 0x0, 0x252c0, 0xef74e76c)
          -> libc:_return_zero(0xef777f98, 0x0, 0x252c0, 0xef74e76c)
          <- libc:mutex_lock() = 0
        -> libc:mutex_unlock(0xef777f98, 0xef777f90, 0x0, 0xef72c9e8)
        -> libc:_return_zero(0xef777f98, 0xef777f90, 0x0, 0xef72c9e8)
        <- libc:_clear_internal_mbstate() = 0
      <- libc:__charmap_init() = 0
      -> libc:__collate_init(0xefffe8b8, 0xef72c89c, 0x0, 0xef72cb54)
      <- libc:__collate_init() = 0
      -> libc:__ctype_init(0xefffe8b8, 0xef72c8f4, 0x0, 0xef72cb54)
        -> libc:memcpy(0xef7770e4, 0xef6a2d04, 0x209, 0xef72c8f4)
        <- libc:memcpy() = 0xef7770e4
      <- libc:__ctype_init() = 0
      -> libc:__monetary_init(0xefffe8b8, 0xef72c958, 0xef773a30, 0xef72cb54)
      <- libc:__monetary_init() = 0
      -> libc:__numeric_init(0xefffe8b8, 0xef72ca30, 0xef773a30, 0xef72cb54)
      <- libc:__numeric_init() = 0
      -> libc:__messages_init(0xefffe8b8, 0xef72ca04, 0xef773a30, 0x2c)
      <- libc:__messages_init() = 0
      -> libc:__time_init(0xefffe8b8, 0xef72caa0, 0xef773a30, 0x2c)
        -> libc:memcpy(0xefffe920, 0xef6b447c, 0x1c, 0xef72caa0)
        <- libc:memcpy() = 0xefffe920
        -> libc:memcpy(0xefffe904, 0xef6b4498, 0x1c, 0x0)
        <- libc:memcpy() = 0xefffe904
        -> libc:memcpy(0xefffe96c, 0xef6b44b4, 0x30, 0x0)
        <- libc:memcpy() = 0xefffe96c
        -> libc:memcpy(0xefffe93c, 0xef6b44e4, 0x30, 0x0)
        <- libc:memcpy() = 0xefffe93c
      <- libc:__time_init() = 0
    <- libc:__locale_init() = 0
    -> libc:malloc(0x134, 0xef72cb54, 0xef760ce6, 0xefffe810)
      -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
      -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
      <- libc:mutex_lock() = 0
      -> libc:_malloc_unlocked(0x134, 0x0, 0x0, 0xef705594)
        -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x1)
          -> libc:realfree(0x256d8, 0x6d54c, 0x0, 0xef7064e0)
          <- libc:realfree() = 0x256f8
        <- libc:cleanfree() = 0
        -> libc:realfree(0x25878, 0x1, 0x1b88, 0xef77a3cc)
        <- libc:realfree() = 0x272b8
      <- libc:_malloc_unlocked() = 0x25738
      -> libc:mutex_unlock(0xef777fc8, 0x138, 0x256d0, 0x25730)
      -> libc:_return_zero(0xef777fc8, 0x138, 0x256d0, 0x25730)
      <- libc:mutex_unlock() = 0
    <- libc:malloc() = 0x25738
    -> libc:malloc(0x30, 0xef72cb54, 0xef760ce6, 0xefffe810)
      -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
      -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
      <- libc:mutex_lock() = 0
      -> libc:_malloc_unlocked(0x30, 0x0, 0x0, 0xef705594)
        -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
        <- libc:cleanfree() = 0
        -> libc:realfree(0x258b0, 0x1, 0x1a48, 0xef77a3cc)
        <- libc:realfree() = 0x272b8
      <- libc:_malloc_unlocked() = 0x25878
      -> libc:mutex_unlock(0xef777fc8, 0x30, 0x256d0, 0x25870)
      -> libc:_return_zero(0xef777fc8, 0x30, 0x256d0, 0x25870)
      <- libc:mutex_unlock() = 0
    <- libc:malloc() = 0x25878
    -> libc:malloc(0xc, 0xef72cb54, 0xef760ce6, 0xefffe810)
      -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
      -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
      <- libc:mutex_lock() = 0
      -> libc:_malloc_unlocked(0xc, 0x0, 0x0, 0xef705594)
        -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
        <- libc:cleanfree() = 0
      -> libc:_smalloc(0x10, 0x10, 0x0, 0x0)
        -> libc:_malloc_unlocked(0x600, 0x0, 0x0, 0xef773a30)
          -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
          <- libc:cleanfree() = 0
          -> libc:realfree(0x25eb8, 0x1, 0x1a10, 0xef77a3cc)
          <- libc:realfree() = 0x272b8
        <- libc:_malloc_unlocked() = 0x258b0
      <- libc:_malloc_unlocked() = 0x258b8
      -> libc:mutex_unlock(0xef777fc8, 0xef77a338, 0x4, 0x0)
      -> libc:_return_zero(0xef777fc8, 0xef77a338, 0x4, 0x0)
      <- libc:mutex_unlock() = 0
    <- libc:malloc() = 0x258b8
    -> libc:strlen(0x252d8, 0x258b8, 0xef760ce6, 0xefffe810)
    <- libc:strlen() = 5
    -> libc:strlen(0x252e8, 0x252e0, 0x53000000, 0x7efefeff)
    <- libc:strlen() = 5
    -> libc:strlen(0x252f8, 0x252f0, 0x53000000, 0x7efefeff)
    <- libc:strlen() = 5
    -> libc:strlen(0x25308, 0x25300, 0x53000000, 0x7efefeff)
    <- libc:strlen() = 5
    -> libc:strlen(0x25318, 0x25310, 0x53000000, 0x7efefeff)
    <- libc:strlen() = 5
    -> libc:strlen(0xef760ce6, 0x25320, 0x53000000, 0x7efefeff)
    <- libc:strlen() = 1
    -> libc:malloc(0x21, 0x0, 0x53000000, 0x0)
      -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
      -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
      <- libc:mutex_lock() = 0
      -> libc:_malloc_unlocked(0x21, 0x0, 0x0, 0xef705594)
        -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
        <- libc:cleanfree() = 0
        -> libc:t_delete(0x256d0, 0x28, 0xef77a34c, 0xef77a3cc)
        <- libc:t_delete() = 0x256d0
      <- libc:_malloc_unlocked() = 0x256d8
      -> libc:mutex_unlock(0xef777fc8, 0x28, 0x256d0, 0x256d0)
      -> libc:_return_zero(0xef777fc8, 0x28, 0x256d0, 0x256d0)
      <- libc:mutex_unlock() = 0
    <- libc:malloc() = 0x256d8
    -> libc:create_composite_locale(0x256d8, 0xefffeb20, 0x53000000, 0x0)
    <- libc:create_composite_locale() = 0
    -> libc:mutex_lock(0xef777300, 0xefffeb20, 0xef760ce8, 0x256f9)
    -> libc:_return_zero(0xef777300, 0xefffeb20, 0xef760ce8, 0x256f9)
    <- libc:mutex_lock() = 0
    -> libc:mutex_unlock(0xef777300, 0xefffeb20, 0xef760ce8, 0x256f9)
    -> libc:_return_zero(0xef777300, 0xefffeb20, 0xef760ce8, 0x256f9)
    <- libc:mutex_unlock() = 0
    -> libc:memcpy(0x25738, 0xefffe8b8, 0x134, 0x256f9)
    <- libc:memcpy() = 0x25738
    -> libc:memcpy(0x25878, 0xefffe888, 0x30, 0x0)
    <- libc:memcpy() = 0x25878
    -> libc:make_chain(0x258b8, 0xeffd9010, 0xffffffff, 0x0)
    <- libc:make_chain() = 0x258b8
  <- libc:_real_setlocale() = 0x256d8
<- libc:setlocale() = 0x256d8
-> libc:textdomain(0x13d04, 0x13d00, 0x5, 0xef77736c)
  -> libc:mutex_lock(0xef7773f0, 0x0, 0x0, 0xef737b70)
  -> libc:_return_zero(0xef7773f0, 0x0, 0x0, 0xef737b70)
  <- libc:mutex_lock() = 0
  -> libc:_textdomain_u(0x13d04, 0xef777408, 0x0, 0xef737b70)
    -> libc:strlen(0x13d04, 0x3be7c, 0x0, 0xef737bb0)
    <- libc:strlen() = 14
    -> libc:strcpy(0xef777408, 0x13d04, 0x4d440000, 0x7efefeff)
    <- libc:strcpy() = 0xef777408
  <- libc:_textdomain_u() = 0xef777408
  -> libc:mutex_unlock(0xef7773f0, 0xef777408, 0xef773a30, 0xef737b70)
  -> libc:_return_zero(0xef7773f0, 0xef777408, 0xef773a30, 0xef737b70)
  <- libc:mutex_unlock() = 0
<- libc:textdomain() = 0xef777408
-> libc:time(0x2514c, 0xef773a30, 0x5, 0xef77736c)
time()						= 971007884
<- libc:time() = 0x39e0678c
-> libc:malloc(0x30, 0x8, 0x0, 0xef77736c)
  -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
  -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
  <- libc:mutex_lock() = 0
  -> libc:_malloc_unlocked(0x30, 0x0, 0x0, 0xef705594)
    -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
    <- libc:cleanfree() = 0
    -> libc:realfree(0x25ef0, 0x1, 0x1408, 0xef77a3cc)
    <- libc:realfree() = 0x272b8
  <- libc:_malloc_unlocked() = 0x25eb8
  -> libc:mutex_unlock(0xef777fc8, 0x30, 0x0, 0x25eb0)
  -> libc:_return_zero(0xef777fc8, 0x30, 0x0, 0x25eb0)
  <- libc:mutex_unlock() = 0
<- libc:malloc() = 0x25eb8
-> libc:malloc(0x30, 0x8, 0x0, 0xef77736c)
  -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
  -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
  <- libc:mutex_lock() = 0
  -> libc:_malloc_unlocked(0x30, 0x0, 0x0, 0xef705594)
    -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
    <- libc:cleanfree() = 0
    -> libc:realfree(0x25f28, 0x1, 0x13d0, 0xef77a3cc)
    <- libc:realfree() = 0x272b8
  <- libc:_malloc_unlocked() = 0x25ef0
  -> libc:mutex_unlock(0xef777fc8, 0x30, 0x0, 0x25ee8)
  -> libc:_return_zero(0xef777fc8, 0x30, 0x0, 0x25ee8)
  <- libc:mutex_unlock() = 0
<- libc:malloc() = 0x25ef0
-> libc:memset(0x25eb8, 0x0, 0x30, 0xef77736c)
<- libc:memset() = 0x25eb8
-> libc:memset(0x25ef0, 0x0, 0x30, 0x0)
<- libc:memset() = 0x25ef0
-> libc:memcpy(0x25eb8, 0x246b0, 0x18, 0x25eb8)
<- libc:memcpy() = 0x25eb8
-> libc:memcpy(0x25ef0, 0x25eb8, 0x30, 0x0)
<- libc:memcpy() = 0x25ef0
-> libc:nftw64(0xefffedf9, 0x12170, 0x3e8, 0x5)
  -> libc:mutex_lock(0xef7761d0, 0x0, 0x0, 0xef6f8524)
  -> libc:_return_zero(0xef7761d0, 0x0, 0x0, 0xef6f8524)
  <- libc:mutex_lock() = 0
  -> libc:malloc(0xc, 0x0, 0x0, 0xef6f8524)
    -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
    -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
    <- libc:mutex_lock() = 0
    -> libc:_malloc_unlocked(0xc, 0x0, 0x0, 0xef705594)
      -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
      <- libc:cleanfree() = 0
    -> libc:_smalloc(0x10, 0x10, 0x0, 0x0)
    <- libc:_malloc_unlocked() = 0x258d0
    -> libc:mutex_unlock(0xef777fc8, 0xef77a338, 0x4, 0x0)
    -> libc:_return_zero(0xef777fc8, 0xef77a338, 0x4, 0x0)
    <- libc:mutex_unlock() = 0
  <- libc:malloc() = 0x258d0
  -> libc:getcwd(0xefffe3a4, 0x401, 0x0, 0xef6f8524)
    -> libc:pathconf(0xef762240, 0x5, 0x0, 0xef773a30)
pathconf(".", _PC_PATH_MAX)			= 1024
    <- libc:pathconf() = 1024
    -> libc:mutex_lock(0xef776560, 0x5, 0x0, 0xef773a30)
    -> libc:_return_zero(0xef776560, 0x5, 0x0, 0xef773a30)
    <- libc:mutex_lock() = 0
    -> libc:strcpy(0xefffd860, 0xef762244, 0x400, 0xef773a30)
    <- libc:strcpy() = 0xefffd860
    -> libc:stat64(0xefffd860, 0xefffe208, 0xefffd860, 0x2e2f0000)
stat64("./", 0xEFFFE208)			= 0
    <- libc:stat64() = 0
    -> libc:calloc(0x1, 0x18, 0xefffd860, 0x2e2f0000)
      -> libc:malloc(0x18, 0x1, 0x0, 0xef6f9be8)
        -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
        -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
        <- libc:mutex_lock() = 0
        -> libc:_malloc_unlocked(0x18, 0x0, 0x0, 0xef705594)
          -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
          <- libc:cleanfree() = 0
        -> libc:_smalloc(0x18, 0x18, 0x0, 0x0)
          -> libc:_malloc_unlocked(0x800, 0x0, 0x0, 0xef773a30)
            -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
            <- libc:cleanfree() = 0
            -> libc:realfree(0x26730, 0x1, 0x1398, 0xef77a3cc)
            <- libc:realfree() = 0x272b8
          <- libc:_malloc_unlocked() = 0x25f28
        <- libc:_malloc_unlocked() = 0x25f30
        -> libc:mutex_unlock(0xef777fc8, 0xef77a338, 0x8, 0x0)
        -> libc:_return_zero(0xef777fc8, 0xef77a338, 0x8, 0x0)
        <- libc:mutex_unlock() = 0
      <- libc:malloc() = 0x25f30
    -> libc:memset(0x25f30, 0x0, 0x18, 0x2e2f0000)
    <- libc:calloc() = 0x25f30
    -> libc:stat64(0xef762248, 0xefffe170, 0x25f30, 0x0)
stat64("/", 0xEFFFE170)				= 0
    <- libc:stat64() = 0
    -> libc:strncpy(0xefffe160, 0xefffe270, 0x10, 0x0)
    <- libc:strncpy() = 0xefffe160
    -> libc:strncmp(0xefffe160, 0xef76224c, 0x10, 0x0)
    <- libc:strncmp() = 0
    -> libc:strcpy(0xefffd862, 0xef762254, 0x8, 0x0)
    <- libc:strcpy() = 0xefffd862
    -> libc:opendir(0xefffd860, 0xef762258, 0xefffd862, 0x2f000000)
      -> libc:_open64(0xefffd860, 0x4, 0x0, 0xef70b8b4)
        -> libc:__open64(0xefffd860, 0x4, 0x0, 0xef74f40c)
open64("./../", O_RDONLY|O_NDELAY)		= 3
        <- libc:__open64() = 3
      <- libc:_open64() = 3
      -> libc:fcntl(0x3, 0x2, 0x1, 0xef773a30)
        -> libc:__fcntl(0x3, 0x2, 0x1, 0xef74f120)
fcntl(3, F_SETFD, 0x00000001)			= 0
        <- libc:__fcntl() = 0
      <- libc:fcntl() = 0
      -> libc:fstat64(0x3, 0xefffd768, 0x1, 0xef773a30)
fstat64(3, 0xEFFFD768)				= 0
      <- libc:fstat64() = 0
      -> libc:malloc(0x428, 0x4000, 0x1, 0xef773a30)
        -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
        -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
        <- libc:mutex_lock() = 0
        -> libc:_malloc_unlocked(0x428, 0x0, 0x0, 0xef705594)
          -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
          <- libc:cleanfree() = 0
          -> libc:realfree(0x26b60, 0x1, 0xb90, 0xef77a3cc)
          <- libc:realfree() = 0x272b8
        <- libc:_malloc_unlocked() = 0x26730
        -> libc:mutex_unlock(0xef777fc8, 0x428, 0x0, 0x26728)
        -> libc:_return_zero(0xef777fc8, 0x428, 0x0, 0x26728)
        <- libc:mutex_unlock() = 0
      <- libc:malloc() = 0x26730
    <- libc:opendir() = 0x26730
    -> libc:fstat64(0x3, 0xefffe208, 0xf000, 0x3)
fstat64(3, 0xEFFFE208)				= 0
    <- libc:fstat64() = 0
    -> libc:strncmp(0xefffe160, 0xefffe270, 0x10, 0x3)
    <- libc:strncmp() = 0
    -> libc:readdir64(0x26730, 0xef773a30, 0x8, 0x0)
      -> libc:getdents64(0x3, 0x26740, 0x418, 0xef70d6ec)
getdents64(3, 0x00026740, 1048)			= 496
      <- libc:getdents64() = 496
    <- libc:readdir64() = 0x26740
    -> libc:strcmp(0xef762258, 0x26752, 0x8, 0x0)
    <- libc:strcmp() = -56
    -> libc:readdir64(0x26730, 0x1234568e, 0x8, 0x6f727761)
    <- libc:readdir64() = 0x26760
    -> libc:strcmp(0xef762258, 0x26772, 0x8, 0x6f727761)
    <- libc:strcmp() = -61
    -> libc:readdir64(0x26730, 0x1234568d, 0x8, 0x73687263)
    <- libc:readdir64() = 0x26780
    -> libc:strcmp(0xef762258, 0x26792, 0x8, 0x73687263)
    <- libc:strcmp() = -64
    -> libc:readdir64(0x26730, 0x1234568c, 0x8, 0x6f746172)
    <- libc:readdir64() = 0x267a0
    -> libc:strcmp(0xef762258, 0x267b2, 0x8, 0x6f746172)
    <- libc:strcmp() = -66
    -> libc:readdir64(0x26730, 0x1234568b, 0x8, 0x726f6669)
    <- libc:readdir64() = 0x267c0
    -> libc:strcmp(0xef762258, 0x267d2, 0x8, 0x726f6669)
    <- libc:strcmp() = -66
    -> libc:readdir64(0x26730, 0x1234568a, 0x8, 0x726f6669)
    <- libc:readdir64() = 0x267e8
    -> libc:strcmp(0xef762258, 0x267fa, 0x8, 0x726f6669)
    <- libc:strcmp() = -73
    -> libc:readdir64(0x26730, 0x12345689, 0x8, 0x656c636f)
    <- libc:readdir64() = 0x26808
    -> libc:strcmp(0xef762258, 0x2681a, 0x8, 0x656c636f)
    <- libc:strcmp() = -73
    -> libc:readdir64(0x26730, 0x12345688, 0x8, 0x696c6c6b)
    <- libc:readdir64() = 0x26830
    -> libc:strcmp(0xef762258, 0x26842, 0x8, 0x696c6c6b)
    <- libc:strcmp() = -52
    -> libc:readdir64(0x26730, 0x12345697, 0x8, 0x6e000000)
    <- libc:readdir64() = 0x26848
    -> libc:strcmp(0xef762258, 0x2685a, 0x8, 0x6e000000)
    <- libc:strcmp() = -54
    -> libc:readdir64(0x26730, 0x12345696, 0x8, 0x6d657272)
    <- libc:readdir64() = 0x26868
    -> libc:strcmp(0xef762258, 0x2687a, 0x8, 0x6d657272)
    <- libc:strcmp() = -55
    -> libc:readdir64(0x26730, 0x12345695, 0x8, 0x63000000)
    <- libc:readdir64() = 0x26880
    -> libc:strcmp(0xef762258, 0x26892, 0x8, 0x63000000)
    <- libc:strcmp() = -62
    -> libc:readdir64(0x26730, 0x12345694, 0x8, 0x62000000)
    <- libc:readdir64() = 0x26898
    -> libc:strcmp(0xef762258, 0x268aa, 0x8, 0x62000000)
    <- libc:strcmp() = -62
    -> libc:readdir64(0x26730, 0x12345693, 0x8, 0x2d6c5200)
    <- libc:readdir64() = 0x268b0
    -> libc:strcmp(0xef762258, 0x268c2, 0x8, 0x2d6c5200)
    <- libc:strcmp() = -62
    -> libc:readdir64(0x26730, 0x12345692, 0x8, 0x2d6c522e)
    <- libc:readdir64() = 0x268d0
    -> libc:strcmp(0xef762258, 0x268e2, 0x8, 0x2d6c522e)
    <- libc:strcmp() = -66
    -> libc:readdir64(0x26730, 0x12345691, 0x8, 0x62000000)
    <- libc:readdir64() = 0x268e8
    -> libc:strcmp(0xef762258, 0x268fa, 0x8, 0x62000000)
    <- libc:strcmp() = -71
    -> libc:readdir64(0x26730, 0x12345690, 0x8, 0x72000000)
    <- libc:readdir64() = 0x26900
    -> libc:strcmp(0xef762258, 0x26912, 0x8, 0x72000000)
    <- libc:strcmp() = 46
    -> libc:readdir64(0x26730, 0x1234569f, 0x8, 0x0)
    <- libc:readdir64() = 0x26918
    -> libc:strcmp(0xef762258, 0x2692a, 0x8, 0x0)
    <- libc:strcmp() = 0
    -> libc:strcpy(0xefffd460, 0xefffd860, 0x8, 0x0)
    <- libc:strcpy() = 0xefffd460
    -> libc:strcat(0xefffd460, 0xef76225c, 0xefffd460, 0x2f000000)
    <- libc:strcat() = 0xefffd460
    -> libc:opendir(0xefffd460, 0xef762260, 0xefffd460, 0x2f000000)
      -> libc:_open64(0xefffd460, 0x4, 0x0, 0xef70b8b4)
        -> libc:__open64(0xefffd460, 0x4, 0x0, 0xef74f40c)
open64("./..//..", O_RDONLY|O_NDELAY)		= 4
        <- libc:__open64() = 4
      <- libc:_open64() = 4
      -> libc:fcntl(0x4, 0x2, 0x1, 0xef773a30)
        -> libc:__fcntl(0x4, 0x2, 0x1, 0xef74f120)
fcntl(4, F_SETFD, 0x00000001)			= 0
        <- libc:__fcntl() = 0
      <- libc:fcntl() = 0
      -> libc:fstat64(0x4, 0xefffd368, 0x1, 0xef773a30)
fstat64(4, 0xEFFFD368)				= 0
      <- libc:fstat64() = 0
      -> libc:malloc(0x428, 0x4000, 0x1, 0xef773a30)
        -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
        -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
        <- libc:mutex_lock() = 0
        -> libc:_malloc_unlocked(0x428, 0x0, 0x0, 0xef705594)
          -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
          <- libc:cleanfree() = 0
          -> libc:realfree(0x26f90, 0x1, 0x760, 0xef77a3cc)
          <- libc:realfree() = 0x272b8
        <- libc:_malloc_unlocked() = 0x26b60
        -> libc:mutex_unlock(0xef777fc8, 0x428, 0x0, 0x26b58)
        -> libc:_return_zero(0xef777fc8, 0x428, 0x0, 0x26b58)
        <- libc:mutex_unlock() = 0
      <- libc:malloc() = 0x26b60
    <- libc:opendir() = 0x26b60
    -> libc:fstat64(0x4, 0xefffe0c8, 0xf000, 0x4)
fstat64(4, 0xEFFFE0C8)				= 0
    <- libc:fstat64() = 0
    -> libc:closedir(0x26b60, 0x12345692, 0x0, 0x4b)
      -> libc:free(0x26b60, 0x0, 0x0, 0xef6fa644)
        -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef7063d4)
        -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef7063d4)
        <- libc:mutex_lock() = 0
        -> libc:_free_unlocked(0x26b60, 0x0, 0x0, 0xef7063d4)
        <- libc:_free_unlocked() = 0x26b60
      -> libc:mutex_unlock(0xef777fc8, 0x0, 0x0, 0xef6fa644)
      -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef6fa644)
      <- libc:free() = 0
    -> libc:_close(0x4, 0x12345692, 0x0, 0x4b)
close(4)					= 0
    <- libc:closedir() = 0
    -> libc:getdevinfo(0x0, 0x47, 0x12, 0x0)
      -> libc:fopen(0xef762264, 0xef762270, 0x0, 0xef6fd8e8)
        -> libc:_findiop(0xf025e2b4, 0x0, 0x0, 0xef74b460)
          -> libc:getiop(0x25180, 0xef777eac, 0x0, 0xef74aa18)
          <- libc:getiop() = 0
          -> libc:getiop(0x25190, 0xef777eac, 0xef7776d8, 0xef777eac)
          <- libc:getiop() = 0
          -> libc:getiop(0x251a0, 0xef777eac, 0xef777708, 0xef777eac)
          <- libc:getiop() = 0
          -> libc:getiop(0x251b0, 0xef777eac, 0xef777738, 0xef777eac)
            -> libc:memset(0xef777b10, 0x0, 0x18, 0xef74b26c)
            <- libc:memset() = 0xef777b10
          <- libc:getiop() = 0x251b0
        <- libc:_findiop() = 0x251b0
        -> libc:_endopen(0xef762264, 0xef762270, 0x251b0, 0x0)
          -> libc:_open(0xef762264, 0x0, 0x1b6, 0xef747ef0)
            -> libc:__open(0xef762264, 0x0, 0x1b6, 0xef74f3a4)
open("/etc/mnttab", O_RDONLY)			= 4
            <- libc:__open() = 4
          <- libc:_open() = 4
        <- libc:_endopen() = 0x251b0
      <- libc:fopen() = 0x251b0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0x251b0, 0xef6fd8e8)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:malloc(0x400, 0x0, 0x0, 0xef6fe468)
          -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
          -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
          <- libc:mutex_lock() = 0
          -> libc:_malloc_unlocked(0x400, 0x0, 0x0, 0xef705594)
          <- libc:_malloc_unlocked() = 0x26b60
          -> libc:mutex_unlock(0xef777fc8, 0x400, 0x0, 0x26b58)
          -> libc:_return_zero(0xef777fc8, 0x400, 0x0, 0x26b58)
          <- libc:mutex_unlock() = 0
        <- libc:malloc() = 0x26b60
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 0
            -> libc:_setorientation(0x251b0, 0x1, 0x0, 0xef74a6b8)
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_findbuf(0x251b0, 0x1, 0x0, 0xef74a6b8)
              -> libc:fstat64(0x4, 0xefffcd20, 0x0, 0xef7481ac)
fstat64(4, 0xEFFFCD20)				= 0
              <- libc:fstat64() = 0
              -> libc:malloc(0x2008, 0xefffcd20, 0x0, 0xef7481ac)
                -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef705594)
                -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef705594)
                <- libc:mutex_lock() = 0
                -> libc:_malloc_unlocked(0x2008, 0x0, 0x0, 0xef705594)
                  -> libc:cleanfree(0x0, 0xef77a348, 0xef77a3cc, 0x0)
                  <- libc:cleanfree() = 0
                  -> libc:_morecore(0x2008, 0x26f88, 0xef77a34c, 0xef77a3cc)
                    -> libc:sbrk(0x0, 0x0, 0x0, 0xef705e38)
                      -> libc:mutex_lock(0xef777fb0, 0x0, 0x0, 0xef74fbe8)
                      -> libc:_return_zero(0xef777fb0, 0x0, 0x0, 0xef74fbe8)
                      <- libc:mutex_lock() = 0
                      -> libc:_sbrk_unlocked(0x0, 0x0, 0x0, 0xef74fbe8)
                        -> libc:_brk_unlocked(0x272c8, 0x23e08, 0x0, 0xef773a30)
brk(0x000272C8)					= 0
                        <- libc:_brk_unlocked() = 0
                      <- libc:_sbrk_unlocked() = 0x272c8
                      -> libc:mutex_unlock(0xef777fb0, 0x272c8, 0x0, 0xef74fbe8)
                      -> libc:_return_zero(0xef777fb0, 0x272c8, 0x0, 0xef74fbe8)
                      <- libc:mutex_unlock() = 0
                    <- libc:sbrk() = 0x272c8
                    -> libc:sbrk(0x2000, 0xffffdfe7, 0x0, 0xef705e38)
                      -> libc:mutex_lock(0xef777fb0, 0x0, 0x0, 0xef74fbe8)
                      -> libc:_return_zero(0xef777fb0, 0x0, 0x0, 0xef74fbe8)
                      <- libc:mutex_lock() = 0
                      -> libc:_sbrk_unlocked(0x2000, 0x0, 0x0, 0xef74fbe8)
                        -> libc:_brk_unlocked(0x292c8, 0x23e08, 0x0, 0xef773a30)
brk(0x000292C8)					= 0
                        <- libc:_brk_unlocked() = 0
                      <- libc:_sbrk_unlocked() = 0x272c8
                      -> libc:mutex_unlock(0xef777fb0, 0x272c8, 0x0, 0xef74fbe8)
                      -> libc:_return_zero(0xef777fb0, 0x272c8, 0x0, 0xef74fbe8)
                      <- libc:mutex_unlock() = 0
                    <- libc:sbrk() = 0x272c8
                  <- libc:_morecore() = 0x26f88
                  -> libc:realfree(0x28fa0, 0x1, 0x2330, 0x26f88)
                  <- libc:realfree() = 0x292b8
                <- libc:_malloc_unlocked() = 0x26f90
                -> libc:mutex_unlock(0xef777fc8, 0x2008, 0x0, 0x26f88)
                -> libc:_return_zero(0xef777fc8, 0x2008, 0x0, 0x26f88)
                <- libc:mutex_unlock() = 0
              <- libc:malloc() = 0x26f90
              -> libc:_setbufend(0x251b0, 0x28f94, 0x0, 0xef7481ac)
              <- libc:_setbufend() = 0x251b0
              -> libc:isatty(0x4, 0x28f94, 0xef773a30, 0xef7481ac)
                -> libc:___errno(0xf025e2b4, 0x0, 0x0, 0xef704afc)
                  -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
                  -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
                  <- libc:thr_main() = -1
                <- libc:___errno() = 0x252c0
                -> libc:ioctl(0x4, 0x5401, 0xefffccac, 0xef704afc)
ioctl(4, TCGETA, 0xEFFFCCAC)			Err#25 ENOTTY
                -> libc:_cerror(0x19, 0x5401, 0xefffccac, 0xef704afc)
                  -> libc:___errno(0xf025e2b4, 0x0, 0x5, 0xef758208)
                    -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
                    -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
                    <- libc:thr_main() = -1
                  <- libc:___errno() = 0x252c0
                <- libc:ioctl() = -1
                -> libc:___errno(0xffffffff, 0x5401, 0xefffccac, 0xef704afc)
                  -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
                  -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
                  <- libc:thr_main() = -1
                <- libc:___errno() = 0x252c0
              <- libc:isatty() = 0
            <- libc:_findbuf() = 0x28f94
            -> libc:_filbuf(0x251b0, 0x28f94, 0xef773a30, 0xffffffff)
              -> libc:_realbufend(0x251b0, 0x0, 0x0, 0xef7480a4)
              <- libc:_realbufend() = 0x28f94
              -> libc:_read(0x4, 0x26f94, 0x2000, 0xef7480a4)
read(4, " / p r o c\t / p r o c\t".., 8192)	= 1141
              <- libc:_read() = 1141
            <- libc:_filbuf() = 47
            -> libc:memccpy(0x26b60, 0x26f94, 0xa, 0x3ff)
            <- libc:memccpy() = 0x26b8f
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26b8f, 0x251b0, 0x3d0)
          <- libc:strlen() = 47
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b65
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b66, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b6b
        <- libc:strtok_r() = 0x26b66
        -> libc:strcmp(0x26b66, 0xef75e8e8, 0xefffcedc, 0x26b66)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6c, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b70
        <- libc:strtok_r() = 0x26b6c
        -> libc:strcmp(0x26b6c, 0xef75e8e8, 0xefffcedc, 0x26b6c)
        <- libc:strcmp() = 67
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b71, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b84
        <- libc:strtok_r() = 0x26b71
        -> libc:strcmp(0x26b71, 0xef75e8e8, 0xefffcedc, 0x26b71)
        <- libc:strcmp() = 69
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b85, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b8e
        <- libc:strtok_r() = 0x26b85
        -> libc:strcmp(0x26b85, 0xef75e8e8, 0xefffcedc, 0x26b85)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b8f, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b71, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b88, 0xefffcddc, 0x30303000)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b88, 0x2, 0xefffcddf)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = -9
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcddf
        -> libc:strlen(0xef778aac, 0xefffcddd, 0x2, 0xefffcde4)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddf, 0x6, 0x7efefeff)
        <- libc:strncmp() = -10
        -> libc:mntopt(0xefffcedc, 0xefffcde0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde4
        -> libc:strlen(0xef778aac, 0xefffcde0, 0x82, 0xefffcdef)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcde4, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcde5, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcdef
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffcdef, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b71, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26b88, 0xefffcce4, 0x30303000)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26b88, 0x2, 0xefffcce7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = -14
          -> libc:mntopt(0xefffcde4, 0xefffcce5, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffcce7
          -> libc:strlen(0xef778ab4, 0xefffcce5, 0x2, 0xefffccec)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce7, 0x3, 0x7efefeff)
          <- libc:strncmp() = -15
          -> libc:mntopt(0xefffcde4, 0xefffcce8, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffccec
          -> libc:strlen(0xef778ab4, 0xefffcce8, 0x82, 0xefffccf7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffccec, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b79
        -> libc:strchr(0x26b79, 0x3d, 0xefffccec, 0xef6fda40)
        <- libc:strchr() = 0x26b7c
        -> libc:strtol(0x26b7d, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 0x2a00000
      <- libc:isdevice() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcdef, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x26fc3, 0xa, 0x3ff)
            <- libc:memccpy() = 0x26ba8
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26ba8, 0x251b0, 0x3b7)
          <- libc:strlen() = 72
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b71
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b72, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b73
        <- libc:strtok_r() = 0x26b72
        -> libc:strcmp(0x26b72, 0xef75e8e8, 0xefffcedc, 0x26b72)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b74, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b77
        <- libc:strtok_r() = 0x26b74
        -> libc:strcmp(0x26b74, 0xef75e8e8, 0xefffcedc, 0x26b74)
        <- libc:strcmp() = 72
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b78, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9d, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b9d
        <- libc:strtok_r() = 0x26b78
        -> libc:strcmp(0x26b78, 0xef75e8e8, 0xefffcedc, 0x26b78)
        <- libc:strcmp() = 69
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b9e, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b9e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba0, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba1, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba2, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba3, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba4, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba5, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba6, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba7, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26ba7
        <- libc:strtok_r() = 0x26b9e
        -> libc:strcmp(0x26b9e, 0xef75e8e8, 0xefffcedc, 0x26b9e)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26ba8, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b78, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26ba0, 0xefffcddc, 0x73003937)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26ba0, 0x2, 0xefffcddf)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = -9
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcddf
        -> libc:strlen(0xef778aac, 0xefffcddd, 0x2, 0xefffcde4)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddf, 0x6, 0x7efefeff)
        <- libc:strncmp() = -10
        -> libc:mntopt(0xefffcedc, 0xefffcde0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde4
        -> libc:strlen(0xef778aac, 0xefffcde0, 0x82, 0xefffcdef)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcde4, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcde5, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcdef
        -> libc:strlen(0xef778aac, 0xefffcde5, 0x2, 0xefffcdf7)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcdef, 0x6, 0x7efefeff)
        <- libc:strncmp() = -3
        -> libc:mntopt(0xefffcedc, 0xefffcdf0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcdf7
        -> libc:strlen(0xef778aac, 0xefffcdf0, 0x2, 0xefffce01)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcdf7, 0x6, 0x7efefeff)
        <- libc:strncmp() = -3
        -> libc:mntopt(0xefffcedc, 0xefffcdf8, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffce01
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffce01, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b78, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26ba0, 0xefffcce4, 0x73003937)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26ba0, 0x2, 0xefffcce7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = -14
          -> libc:mntopt(0xefffcde4, 0xefffcce5, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffcce7
          -> libc:strlen(0xef778ab4, 0xefffcce5, 0x2, 0xefffccec)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce7, 0x3, 0x7efefeff)
          <- libc:strncmp() = -15
          -> libc:mntopt(0xefffcde4, 0xefffcce8, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffccec
          -> libc:strlen(0xef778ab4, 0xefffcce8, 0x82, 0xefffccf7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffccec, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b80
        -> libc:strchr(0x26b80, 0x3d, 0xefffccec, 0xef6fda40)
        <- libc:strchr() = 0x26b83
        -> libc:strtol(0x26b84, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 0x800018
      <- libc:isdevice() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffce01, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x2700b, 0xa, 0x3fe)
            <- libc:memccpy() = 0x26bab
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26bab, 0x251b0, 0x3b4)
          <- libc:strlen() = 75
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b71
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b72, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b76
        <- libc:strtok_r() = 0x26b72
        -> libc:strcmp(0x26b72, 0xef75e8e8, 0xefffcedc, 0x26b72)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b77, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b7a
        <- libc:strtok_r() = 0x26b77
        -> libc:strcmp(0x26b77, 0xef75e8e8, 0xefffcedc, 0x26b77)
        <- libc:strcmp() = 72
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b7b, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba0, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26ba0
        <- libc:strtok_r() = 0x26b7b
        -> libc:strcmp(0x26b7b, 0xef75e8e8, 0xefffcedc, 0x26b7b)
        <- libc:strcmp() = 69
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26ba1, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26ba1, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba2, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba3, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba4, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba5, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba6, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba7, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba8, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba9, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26baa, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26baa
        <- libc:strtok_r() = 0x26ba1
        -> libc:strcmp(0x26ba1, 0xef75e8e8, 0xefffcedc, 0x26ba1)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26bab, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b7b, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26ba4, 0xefffcddc, 0x73003937)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26ba4, 0x2, 0xefffcddf)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = -9
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcddf
        -> libc:strlen(0xef778aac, 0xefffcddd, 0x2, 0xefffcde4)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddf, 0x6, 0x7efefeff)
        <- libc:strncmp() = -10
        -> libc:mntopt(0xefffcedc, 0xefffcde0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde4
        -> libc:strlen(0xef778aac, 0xefffcde0, 0x82, 0xefffcdef)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcde4, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcde5, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcdef
        -> libc:strlen(0xef778aac, 0xefffcde5, 0x2, 0xefffcdf7)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcdef, 0x6, 0x7efefeff)
        <- libc:strncmp() = -3
        -> libc:mntopt(0xefffcedc, 0xefffcdf0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcdf7
        -> libc:strlen(0xef778aac, 0xefffcdf0, 0x2, 0xefffce01)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcdf7, 0x6, 0x7efefeff)
        <- libc:strncmp() = -3
        -> libc:mntopt(0xefffcedc, 0xefffcdf8, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffce01
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffce01, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b7b, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26ba4, 0xefffcce4, 0x73003937)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26ba4, 0x2, 0xefffcce7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = -14
          -> libc:mntopt(0xefffcde4, 0xefffcce5, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffcce7
          -> libc:strlen(0xef778ab4, 0xefffcce5, 0x2, 0xefffccec)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce7, 0x3, 0x7efefeff)
          <- libc:strncmp() = -15
          -> libc:mntopt(0xefffcde4, 0xefffcce8, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffccec
          -> libc:strlen(0xef778ab4, 0xefffcce8, 0x82, 0xefffccf7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffccec, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b83
        -> libc:strchr(0x26b83, 0x3d, 0xefffccec, 0xef6fda40)
        <- libc:strchr() = 0x26b86
        -> libc:strtol(0x26b87, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 0x80001e
      <- libc:isdevice() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffce01, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x27056, 0xa, 0x3b3)
            <- libc:memccpy() = 0x26b8c
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26b8c, 0x251b0, 0x3d3)
          <- libc:strlen() = 44
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b62
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 57
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b63, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b6a
        <- libc:strtok_r() = 0x26b63
        -> libc:strcmp(0x26b63, 0xef75e8e8, 0xefffcedc, 0x26b63)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6b, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b6d
        <- libc:strtok_r() = 0x26b6b
        -> libc:strcmp(0x26b6b, 0xef75e8e8, 0xefffcedc, 0x26b6b)
        <- libc:strcmp() = 57
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6e, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b81
        <- libc:strtok_r() = 0x26b6e
        -> libc:strcmp(0x26b6e, 0xef75e8e8, 0xefffcedc, 0x26b6e)
        <- libc:strcmp() = 69
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b82, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b8b
        <- libc:strtok_r() = 0x26b82
        -> libc:strcmp(0x26b82, 0xef75e8e8, 0xefffcedc, 0x26b82)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b8c, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b6e, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b84, 0xefffcddc, 0x30303000)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b84, 0x2, 0xefffcddf)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = -9
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcddf
        -> libc:strlen(0xef778aac, 0xefffcddd, 0x2, 0xefffcde4)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddf, 0x6, 0x7efefeff)
        <- libc:strncmp() = -10
        -> libc:mntopt(0xefffcedc, 0xefffcde0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde4
        -> libc:strlen(0xef778aac, 0xefffcde0, 0x82, 0xefffcdef)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcde4, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcde5, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcdef
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffcdef, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b6e, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26b84, 0xefffcce4, 0x30303000)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26b84, 0x2, 0xefffcce7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = -14
          -> libc:mntopt(0xefffcde4, 0xefffcce5, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffcce7
          -> libc:strlen(0xef778ab4, 0xefffcce5, 0x2, 0xefffccec)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce7, 0x3, 0x7efefeff)
          <- libc:strncmp() = -15
          -> libc:mntopt(0xefffcde4, 0xefffcce8, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffccec
          -> libc:strlen(0xef778ab4, 0xefffcce8, 0x82, 0xefffccf7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffccec, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b76
        -> libc:strchr(0x26b76, 0x3d, 0xefffccec, 0xef6fda40)
        <- libc:strchr() = 0x26b79
        -> libc:strtol(0x26b7a, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 0x2ac0000
      <- libc:isdevice() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcdef, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x27082, 0xa, 0x387)
            <- libc:memccpy() = 0x26bab
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26bab, 0x251b0, 0x3b4)
          <- libc:strlen() = 75
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b71
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b72, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b76
        <- libc:strtok_r() = 0x26b72
        -> libc:strcmp(0x26b72, 0xef75e8e8, 0xefffcedc, 0x26b72)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b77, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b7a
        <- libc:strtok_r() = 0x26b77
        -> libc:strcmp(0x26b77, 0xef75e8e8, 0xefffcedc, 0x26b77)
        <- libc:strcmp() = 72
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b7b, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba0, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26ba0
        <- libc:strtok_r() = 0x26b7b
        -> libc:strcmp(0x26b7b, 0xef75e8e8, 0xefffcedc, 0x26b7b)
        <- libc:strcmp() = 69
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26ba1, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26ba1, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba2, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba3, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba4, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba5, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba6, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba7, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba8, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba9, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26baa, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26baa
        <- libc:strtok_r() = 0x26ba1
        -> libc:strcmp(0x26ba1, 0xef75e8e8, 0xefffcedc, 0x26ba1)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26bab, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b7b, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26ba4, 0xefffcddc, 0x73003937)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26ba4, 0x2, 0xefffcddf)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = -9
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcddf
        -> libc:strlen(0xef778aac, 0xefffcddd, 0x2, 0xefffcde4)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddf, 0x6, 0x7efefeff)
        <- libc:strncmp() = -10
        -> libc:mntopt(0xefffcedc, 0xefffcde0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde4
        -> libc:strlen(0xef778aac, 0xefffcde0, 0x82, 0xefffcdef)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcde4, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcde5, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcdef
        -> libc:strlen(0xef778aac, 0xefffcde5, 0x2, 0xefffcdf7)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcdef, 0x6, 0x7efefeff)
        <- libc:strncmp() = -3
        -> libc:mntopt(0xefffcedc, 0xefffcdf0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcdf7
        -> libc:strlen(0xef778aac, 0xefffcdf0, 0x2, 0xefffce01)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcdf7, 0x6, 0x7efefeff)
        <- libc:strncmp() = -3
        -> libc:mntopt(0xefffcedc, 0xefffcdf8, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffce01
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffce01, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b7b, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26ba4, 0xefffcce4, 0x73003937)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26ba4, 0x2, 0xefffcce7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = -14
          -> libc:mntopt(0xefffcde4, 0xefffcce5, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffcce7
          -> libc:strlen(0xef778ab4, 0xefffcce5, 0x2, 0xefffccec)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce7, 0x3, 0x7efefeff)
          <- libc:strncmp() = -15
          -> libc:mntopt(0xefffcde4, 0xefffcce8, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffccec
          -> libc:strlen(0xef778ab4, 0xefffcce8, 0x82, 0xefffccf7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffccec, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b83
        -> libc:strchr(0x26b83, 0x3d, 0xefffccec, 0xef6fda40)
        <- libc:strchr() = 0x26b86
        -> libc:strtol(0x26b87, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 0x800019
      <- libc:isdevice() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffce01, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x270cd, 0xa, 0x33c)
            <- libc:memccpy() = 0x26ba6
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26ba6, 0x251b0, 0x3b9)
          <- libc:strlen() = 70
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b71
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b72, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b79
        <- libc:strtok_r() = 0x26b72
        -> libc:strcmp(0x26b72, 0xef75e8e8, 0xefffcedc, 0x26b72)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b7a, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b7d
        <- libc:strtok_r() = 0x26b7a
        -> libc:strcmp(0x26b7a, 0xef75e8e8, 0xefffcedc, 0x26b7a)
        <- libc:strcmp() = 72
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b7e, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9b, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b9b
        <- libc:strtok_r() = 0x26b7e
        -> libc:strcmp(0x26b7e, 0xef75e8e8, 0xefffcedc, 0x26b7e)
        <- libc:strcmp() = 63
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b9c, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b9c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba0, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba1, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba2, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba3, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba4, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba5, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26ba5
        <- libc:strtok_r() = 0x26b9c
        -> libc:strcmp(0x26b9c, 0xef75e8e8, 0xefffcedc, 0x26b9c)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26ba6, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b7e, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b9c, 0xefffcddc, 0x33000000)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b9c, 0x2, 0xefffcde7)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = -3
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde7
        -> libc:strlen(0xef778aac, 0xefffcddd, 0x2, 0xefffcdef)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcde7, 0x6, 0x7efefeff)
        <- libc:strncmp() = -3
        -> libc:mntopt(0xefffcedc, 0xefffcde8, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcdef
        -> libc:strlen(0xef778aac, 0xefffcde8, 0x82, 0xefffcdf9)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcdef, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcdf0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcdf9
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffcdf9, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b7e, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26b9c, 0xefffcce4, 0x33000000)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26b9c, 0x2, 0xefffccef)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = -8
          -> libc:mntopt(0xefffcde4, 0xefffcce5, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffccef
          -> libc:strlen(0xef778ab4, 0xefffcce5, 0x2, 0xefffccf7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffccef, 0x3, 0x7efefeff)
          <- libc:strncmp() = -8
          -> libc:mntopt(0xefffcde4, 0xefffccf0, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffccf7
          -> libc:strlen(0xef778ab4, 0xefffccf0, 0x82, 0xefffcd01)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffccf7, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b91
        -> libc:strchr(0x26b91, 0x3d, 0xefffccf7, 0xef6fda40)
        <- libc:strchr() = 0x26b94
        -> libc:strtol(0x26b95, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 0x800013
      <- libc:isdevice() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcdf9, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x27113, 0xa, 0x2f6)
            <- libc:memccpy() = 0x26b83
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26b83, 0x251b0, 0x3dc)
          <- libc:strlen() = 35
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b64
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 70
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b65, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b69
        <- libc:strtok_r() = 0x26b65
        -> libc:strcmp(0x26b65, 0xef75e8e8, 0xefffcedc, 0x26b65)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6a, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b6f
        <- libc:strtok_r() = 0x26b6a
        -> libc:strcmp(0x26b6a, 0xef75e8e8, 0xefffcedc, 0x26b6a)
        <- libc:strcmp() = 71
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b70, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b78
        <- libc:strtok_r() = 0x26b70
        -> libc:strcmp(0x26b70, 0xef75e8e8, 0xefffcedc, 0x26b70)
        <- libc:strcmp() = 69
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b79, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b82
        <- libc:strtok_r() = 0x26b79
        -> libc:strcmp(0x26b79, 0xef75e8e8, 0xefffcedc, 0x26b79)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b83, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b70, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b7c, 0xefffcddc, 0x393730)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b7c, 0x2, 0xefffcddf)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = -9
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcddf
        -> libc:strlen(0xef778aac, 0xefffcddd, 0x82, 0xefffcde4)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddf, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcde0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde4
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffcde4, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b70, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26b7c, 0xefffcce4, 0x393730)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26b7c, 0x2, 0xefffcce7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = -14
          -> libc:mntopt(0xefffcde4, 0xefffcce5, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffcce7
          -> libc:strlen(0xef778ab4, 0xefffcce5, 0x82, 0xefffccec)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce7, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b73
        -> libc:strchr(0x26b73, 0x3d, 0xefffcce7, 0xef6fda40)
        <- libc:strchr() = 0x26b76
        -> libc:strtol(0x26b77, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 1
      <- libc:isdevice() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcde4, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x27136, 0xa, 0x2d3)
            <- libc:memccpy() = 0x26b9a
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26b9a, 0x251b0, 0x3c5)
          <- libc:strlen() = 58
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b71
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b72, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b7c
        <- libc:strtok_r() = 0x26b72
        -> libc:strcmp(0x26b72, 0xef75e8e8, 0xefffcedc, 0x26b72)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b7d, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b81
        <- libc:strtok_r() = 0x26b7d
        -> libc:strcmp(0x26b7d, 0xef75e8e8, 0xefffcedc, 0x26b7d)
        <- libc:strcmp() = 63
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b82, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b8f
        <- libc:strtok_r() = 0x26b82
        -> libc:strcmp(0x26b82, 0xef75e8e8, 0xefffcedc, 0x26b82)
        <- libc:strcmp() = 69
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b90, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b99
        <- libc:strtok_r() = 0x26b90
        -> libc:strcmp(0x26b90, 0xef75e8e8, 0xefffcedc, 0x26b90)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b9a, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b82, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b90, 0xefffcddc, 0x33000000)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b90, 0x2, 0xefffcddf)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = -9
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcddf
        -> libc:strlen(0xef778aac, 0xefffcddd, 0x82, 0xefffcde9)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddf, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcde0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde9
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffcde9, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b82, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26b90, 0xefffcce4, 0x33000000)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26b90, 0x2, 0xefffcce7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = -14
          -> libc:mntopt(0xefffcde4, 0xefffcce5, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffcce7
          -> libc:strlen(0xef778ab4, 0xefffcce5, 0x82, 0xefffccf1)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce7, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b85
        -> libc:strchr(0x26b85, 0x3d, 0xefffcce7, 0xef6fda40)
        <- libc:strchr() = 0x26b88
        -> libc:strtol(0x26b89, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 0x800013
      <- libc:isdevice() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcde9, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x27170, 0xa, 0x299)
            <- libc:memccpy() = 0x26b8e
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26b8e, 0x251b0, 0x3d1)
          <- libc:strlen() = 46
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b6b
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6c, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b70
        <- libc:strtok_r() = 0x26b6c
        -> libc:strcmp(0x26b6c, 0xef75e8e8, 0xefffcedc, 0x26b6c)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b71, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b75
        <- libc:strtok_r() = 0x26b71
        -> libc:strcmp(0x26b71, 0xef75e8e8, 0xefffcedc, 0x26b71)
        <- libc:strcmp() = 63
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b76, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b83
        <- libc:strtok_r() = 0x26b76
        -> libc:strcmp(0x26b76, 0xef75e8e8, 0xefffcedc, 0x26b76)
        <- libc:strcmp() = 69
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b84, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b8d
        <- libc:strtok_r() = 0x26b84
        -> libc:strcmp(0x26b84, 0xef75e8e8, 0xefffcedc, 0x26b84)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b8e, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b76, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b84, 0xefffcddc, 0x33000000)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b84, 0x2, 0xefffcddf)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = -9
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcddf
        -> libc:strlen(0xef778aac, 0xefffcddd, 0x82, 0xefffcde9)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddf, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcde0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde9
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffcde9, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b76, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26b84, 0xefffcce4, 0x33000000)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26b84, 0x2, 0xefffcce7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = -14
          -> libc:mntopt(0xefffcde4, 0xefffcce5, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffcce7
          -> libc:strlen(0xef778ab4, 0xefffcce5, 0x82, 0xefffccf1)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce7, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b79
        -> libc:strchr(0x26b79, 0x3d, 0xefffcce7, 0xef6fda40)
        <- libc:strchr() = 0x26b7c
        -> libc:strtol(0x26b7d, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 0x800013
      <- libc:isdevice() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcde9, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x2719e, 0xa, 0x26b)
            <- libc:memccpy() = 0x26ba9
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26ba9, 0x251b0, 0x3b6)
          <- libc:strlen() = 73
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b66
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 104
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b67, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b6b
        <- libc:strtok_r() = 0x26b67
        -> libc:strcmp(0x26b67, 0xef75e8e8, 0xefffcedc, 0x26b67)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6c, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b72
        <- libc:strtok_r() = 0x26b6c
        -> libc:strcmp(0x26b6c, 0xef75e8e8, 0xefffcedc, 0x26b6c)
        <- libc:strcmp() = 52
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b73, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9e, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b9e
        <- libc:strtok_r() = 0x26b73
        -> libc:strcmp(0x26b73, 0xef75e8e8, 0xefffcedc, 0x26b73)
        <- libc:strcmp() = 60
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b9f, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b9f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba0, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba1, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba2, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba3, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba4, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba5, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba6, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba7, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba8, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26ba8
        <- libc:strtok_r() = 0x26b9f
        -> libc:strcmp(0x26b9f, 0xef75e8e8, 0xefffcedc, 0x26b9f)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26ba9, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b73, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26ba0, 0xefffcddc, 0x30303100)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26ba0, 0x2, 0xefffcde3)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = 0
      <- libc:hasmntopt() = 0x26b73
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcddc, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x271e7, 0xa, 0x222)
            <- libc:memccpy() = 0x26b9b
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26b9b, 0x251b0, 0x3c4)
          <- libc:strlen() = 59
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b68
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 52
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b69, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b6d
        <- libc:strtok_r() = 0x26b69
        -> libc:strcmp(0x26b69, 0xef75e8e8, 0xefffcedc, 0x26b69)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6e, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b74
        <- libc:strtok_r() = 0x26b6e
        -> libc:strcmp(0x26b6e, 0xef75e8e8, 0xefffcedc, 0x26b6e)
        <- libc:strcmp() = 52
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b75, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b90
        <- libc:strtok_r() = 0x26b75
        -> libc:strcmp(0x26b75, 0xef75e8e8, 0xefffcedc, 0x26b75)
        <- libc:strcmp() = 60
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b91, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b9a
        <- libc:strtok_r() = 0x26b91
        -> libc:strcmp(0x26b91, 0xef75e8e8, 0xefffcedc, 0x26b91)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b9b, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b75, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b94, 0xefffcddc, 0x30303200)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b94, 0x2, 0xefffcde3)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = 0
      <- libc:hasmntopt() = 0x26b75
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcddc, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x27222, 0xa, 0x1e7)
            <- libc:memccpy() = 0x26b9d
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26b9d, 0x251b0, 0x3c2)
          <- libc:strlen() = 61
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b69
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 52
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6a, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b6f
        <- libc:strtok_r() = 0x26b6a
        -> libc:strcmp(0x26b6a, 0xef75e8e8, 0xefffcedc, 0x26b6a)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b70, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b76
        <- libc:strtok_r() = 0x26b70
        -> libc:strcmp(0x26b70, 0xef75e8e8, 0xefffcedc, 0x26b70)
        <- libc:strcmp() = 52
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b77, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b92
        <- libc:strtok_r() = 0x26b77
        -> libc:strcmp(0x26b77, 0xef75e8e8, 0xefffcedc, 0x26b77)
        <- libc:strcmp() = 60
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b93, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9c, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b9c
        <- libc:strtok_r() = 0x26b93
        -> libc:strcmp(0x26b93, 0xef75e8e8, 0xefffcedc, 0x26b93)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b9d, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b77, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b94, 0xefffcddc, 0x30303300)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b94, 0x2, 0xefffcde3)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = 0
      <- libc:hasmntopt() = 0x26b77
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcddc, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x2725f, 0xa, 0x1aa)
            <- libc:memccpy() = 0x26ba1
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26ba1, 0x251b0, 0x3be)
          <- libc:strlen() = 65
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b6b
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 52
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6c, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b73
        <- libc:strtok_r() = 0x26b6c
        -> libc:strcmp(0x26b6c, 0xef75e8e8, 0xefffcedc, 0x26b6c)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b74, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b7a
        <- libc:strtok_r() = 0x26b74
        -> libc:strcmp(0x26b74, 0xef75e8e8, 0xefffcedc, 0x26b74)
        <- libc:strcmp() = 52
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b7b, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b96
        <- libc:strtok_r() = 0x26b7b
        -> libc:strcmp(0x26b7b, 0xef75e8e8, 0xefffcedc, 0x26b7b)
        <- libc:strcmp() = 60
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b97, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba0, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26ba0
        <- libc:strtok_r() = 0x26b97
        -> libc:strcmp(0x26b97, 0xef75e8e8, 0xefffcedc, 0x26b97)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26ba1, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b7b, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b98, 0xefffcddc, 0x30303400)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b98, 0x2, 0xefffcde3)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = 0
      <- libc:hasmntopt() = 0x26b7b
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcddc, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x272a0, 0xa, 0x169)
            <- libc:memccpy() = 0x26b97
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26b97, 0x251b0, 0x3c8)
          <- libc:strlen() = 55
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b64
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 120
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b65, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b69
        <- libc:strtok_r() = 0x26b65
        -> libc:strcmp(0x26b65, 0xef75e8e8, 0xefffcedc, 0x26b65)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6a, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b70
        <- libc:strtok_r() = 0x26b6a
        -> libc:strcmp(0x26b6a, 0xef75e8e8, 0xefffcedc, 0x26b6a)
        <- libc:strcmp() = 52
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b71, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b8c
        <- libc:strtok_r() = 0x26b71
        -> libc:strcmp(0x26b71, 0xef75e8e8, 0xefffcedc, 0x26b71)
        <- libc:strcmp() = 60
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b8d, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b96
        <- libc:strtok_r() = 0x26b8d
        -> libc:strcmp(0x26b8d, 0xef75e8e8, 0xefffcedc, 0x26b8d)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b97, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b71, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b90, 0xefffcddc, 0x30303500)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b90, 0x2, 0xefffcde3)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = 0
      <- libc:hasmntopt() = 0x26b71
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcddc, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x272d7, 0xa, 0x132)
            <- libc:memccpy() = 0x26ba0
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26ba0, 0x251b0, 0x3bf)
          <- libc:strlen() = 64
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b71
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 67
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b72, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b76
        <- libc:strtok_r() = 0x26b72
        -> libc:strcmp(0x26b72, 0xef75e8e8, 0xefffcedc, 0x26b72)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b77, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b7a
        <- libc:strtok_r() = 0x26b77
        -> libc:strcmp(0x26b77, 0xef75e8e8, 0xefffcedc, 0x26b77)
        <- libc:strcmp() = 65
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b7b, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b95
        <- libc:strtok_r() = 0x26b7b
        -> libc:strcmp(0x26b7b, 0xef75e8e8, 0xefffcedc, 0x26b7b)
        <- libc:strcmp() = 60
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b96, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9f, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b9f
        <- libc:strtok_r() = 0x26b96
        -> libc:strcmp(0x26b96, 0xef75e8e8, 0xefffcedc, 0x26b96)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26ba0, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b7b, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b98, 0xefffcddc, 0x30310039)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b98, 0x2, 0xefffcde3)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = 0
      <- libc:hasmntopt() = 0x26b7b
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcddc, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x27317, 0xa, 0xf2)
            <- libc:memccpy() = 0x26baa
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26baa, 0x251b0, 0x3b5)
          <- libc:strlen() = 74
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b81
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 54
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b82, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b8f
        <- libc:strtok_r() = 0x26b82
        -> libc:strcmp(0x26b82, 0xef75e8e8, 0xefffcedc, 0x26b82)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b90, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b93
        <- libc:strtok_r() = 0x26b90
        -> libc:strcmp(0x26b90, 0xef75e8e8, 0xefffcedc, 0x26b90)
        <- libc:strcmp() = 65
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b94, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9f, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b9f
        <- libc:strtok_r() = 0x26b94
        -> libc:strcmp(0x26b94, 0xef75e8e8, 0xefffcedc, 0x26b94)
        <- libc:strcmp() = 55
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26ba0, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26ba0, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba1, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba2, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba3, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba4, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba5, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba6, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba7, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba8, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba9, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26ba9
        <- libc:strtok_r() = 0x26ba0
        -> libc:strcmp(0x26ba0, 0xef75e8e8, 0xefffcedc, 0x26ba0)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26baa, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b94, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26ba0, 0xefffcddc, 0x30303200)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26ba0, 0x82, 0xefffcde7)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde7
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffcde7, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b94, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26ba0, 0xefffcce4, 0x30303200)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26ba0, 0x82, 0xefffccef)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b94
        -> libc:strchr(0x26b94, 0x3d, 0xefffcce4, 0xef6fda40)
        <- libc:strchr() = 0x26b97
        -> libc:strtol(0x26b98, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 0x2c40002
      <- libc:isdevice() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcde7, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x27361, 0xa, 0xa8)
            <- libc:memccpy() = 0x26ba4
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26ba4, 0x251b0, 0x3bb)
          <- libc:strlen() = 68
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b7e
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 54
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b7f, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b89
        <- libc:strtok_r() = 0x26b7f
        -> libc:strcmp(0x26b7f, 0xef75e8e8, 0xefffcedc, 0x26b7f)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b8a, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b8d
        <- libc:strtok_r() = 0x26b8a
        -> libc:strcmp(0x26b8a, 0xef75e8e8, 0xefffcedc, 0x26b8a)
        <- libc:strcmp() = 65
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b8e, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b99
        <- libc:strtok_r() = 0x26b8e
        -> libc:strcmp(0x26b8e, 0xef75e8e8, 0xefffcedc, 0x26b8e)
        <- libc:strcmp() = 55
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b9a, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba0, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba1, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba2, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba3, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26ba3
        <- libc:strtok_r() = 0x26b9a
        -> libc:strcmp(0x26b9a, 0xef75e8e8, 0xefffcedc, 0x26b9a)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26ba4, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b8e, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b9c, 0xefffcddc, 0x31316400)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b9c, 0x82, 0xefffcde7)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde7
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffcde7, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b8e, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26b9c, 0xefffcce4, 0x31316400)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26b9c, 0x82, 0xefffccef)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b8e
        -> libc:strchr(0x26b8e, 0x3d, 0xefffcce4, 0xef6fda40)
        <- libc:strchr() = 0x26b91
        -> libc:strtol(0x26b92, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 0x2c4011d
      <- libc:isdevice() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcde7, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x273a5, 0xa, 0x64)
            <- libc:memccpy() = 0x26b7c
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26b7c, 0x251b0, 0x3e3)
          <- libc:strlen() = 28
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b64
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 22
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b65, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b69
        <- libc:strtok_r() = 0x26b65
        -> libc:strcmp(0x26b65, 0xef75e8e8, 0xefffcedc, 0x26b65)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6a, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b6e
        <- libc:strtok_r() = 0x26b6a
        -> libc:strcmp(0x26b6a, 0xef75e8e8, 0xefffcedc, 0x26b6a)
        <- libc:strcmp() = 22
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b6f, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b71
        <- libc:strtok_r() = 0x26b6f
        -> libc:strcmp(0x26b6f, 0xef75e8e8, 0xefffcedc, 0x26b6f)
        <- libc:strcmp() = 69
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b72, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b7b
        <- libc:strtok_r() = 0x26b72
        -> libc:strcmp(0x26b72, 0xef75e8e8, 0xefffcedc, 0x26b72)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b7c, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b6f, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26b74, 0xefffcddc, 0x77003937)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26b74, 0x2, 0xefffcdde)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = -9
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcdde
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffcdde, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b6f, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26b74, 0xefffcce4, 0x77003937)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26b74, 0x2, 0xefffcce6)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = -14
          -> libc:mntopt(0xefffcde4, 0xefffcce5, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffcce6
        <- libc:hasmntopt() = 0
        -> libc:lstat64(0x26b65, 0xefffce48, 0xefffcce6, 0xef6fda40)
lstat64("/mnt", 0xEFFFCE48)			= 0
        <- libc:lstat64() = 0
      <- libc:isdevice() = 1
      -> libc:lstat64(0x26b65, 0xefffcf48, 0xefffcdde, 0xef773a30)
lstat64("/mnt", 0xEFFFCF48)			= 0
      <- libc:lstat64() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcdde, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:memccpy(0x26b60, 0x273c1, 0xa, 0x48)
            <- libc:memccpy() = 0x26ba8
          <- libc:fgets() = 0x26b60
          -> libc:strlen(0x26b60, 0x26ba8, 0x251b0, 0x3b7)
          <- libc:strlen() = 72
        <- libc:getline() = 0
        -> libc:strtok_r(0x26b60, 0xef75e8e4, 0xefffcedc, 0xef6fe468)
          -> libc:strspn(0x26b60, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b60, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b61, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b62, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b63, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b64, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b65, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b66, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b67, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b68, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b69, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b6f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b70, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b71, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b72, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b73, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b74, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b75, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b76, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b76
        <- libc:strtok_r() = 0x26b60
        -> libc:strcmp(0x26b60, 0xef75e8e8, 0xefffcedc, 0x26b60)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b77, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b77, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b78, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b79, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b7f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b80, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b81, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b82, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b83, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b84, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b85, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b86, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b87, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b88, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b89, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8d, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b8e, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b8e
        <- libc:strtok_r() = 0x26b77
        -> libc:strcmp(0x26b77, 0xef75e8e8, 0xefffcedc, 0x26b77)
        <- libc:strcmp() = 2
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b8f, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b8f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b90, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b91, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b92, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b93, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b93
        <- libc:strtok_r() = 0x26b8f
        -> libc:strcmp(0x26b8f, 0xef75e8e8, 0xefffcedc, 0x26b8f)
        <- libc:strcmp() = 63
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b94, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b94, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b95, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b96, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b97, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b98, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b99, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9a, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9b, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9c, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9d, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26b9d
        <- libc:strtok_r() = 0x26b94
        -> libc:strcmp(0x26b94, 0xef75e8e8, 0xefffcedc, 0x26b94)
        <- libc:strcmp() = 69
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26b9e, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
          -> libc:strpbrk(0x26b9e, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26b9f, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba0, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba1, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba2, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba3, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba4, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba5, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba6, 0xef75e8e4, 0x0, 0x0)
          -> libc:strpbrk(0x26ba7, 0xef75e8e4, 0x0, 0x0)
          <- libc:strpbrk() = 0x26ba7
        <- libc:strtok_r() = 0x26b9e
        -> libc:strcmp(0x26b9e, 0xef75e8e8, 0xefffcedc, 0x26b9e)
        <- libc:strcmp() = 12
        -> libc:strtok_r(0x0, 0xef75e8e4, 0xefffcedc, 0x0)
          -> libc:strspn(0x26ba8, 0xef75e8e4, 0x0, 0xef710944)
          <- libc:strspn() = 0
        <- libc:strtok_r() = 0
      <- libc:getmntent() = 0
      -> libc:hasmntopt(0xefffcfe4, 0xef778aac, 0xef75e8e4, 0xef773a30)
        -> libc:strcpy(0xefffcddc, 0x26b94, 0x0, 0xef6fe77c)
        <- libc:strcpy() = 0xefffcddc
        -> libc:mntopt(0xefffcedc, 0x26ba0, 0xefffcddc, 0x32003937)
        <- libc:mntopt() = 0xefffcddc
        -> libc:strlen(0xef778aac, 0x26ba0, 0x2, 0xefffcddf)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddc, 0x6, 0x7efefeff)
        <- libc:strncmp() = -9
        -> libc:mntopt(0xefffcedc, 0xefffcddd, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcddf
        -> libc:strlen(0xef778aac, 0xefffcddd, 0x82, 0xefffcde5)
        <- libc:strlen() = 6
        -> libc:strncmp(0xef778aac, 0xefffcddf, 0x6, 0x7efefeff)
        <- libc:strncmp() = 5
        -> libc:mntopt(0xefffcedc, 0xefffcde0, 0x5, 0x7efefeff)
        <- libc:mntopt() = 0xefffcde5
      <- libc:hasmntopt() = 0
      -> libc:isdevice(0xefffcfe4, 0x12, 0xefffcde5, 0xef773a30)
        -> libc:hasmntopt(0xefffcfe4, 0xef778ab4, 0x0, 0xef6fda40)
          -> libc:strcpy(0xefffcce4, 0x26b94, 0x0, 0xef6fe77c)
          <- libc:strcpy() = 0xefffcce4
          -> libc:mntopt(0xefffcde4, 0x26ba0, 0xefffcce4, 0x32003937)
          <- libc:mntopt() = 0xefffcce4
          -> libc:strlen(0xef778ab4, 0x26ba0, 0x2, 0xefffcce7)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce4, 0x3, 0x7efefeff)
          <- libc:strncmp() = -14
          -> libc:mntopt(0xefffcde4, 0xefffcce5, 0x2, 0x7efefeff)
          <- libc:mntopt() = 0xefffcce7
          -> libc:strlen(0xef778ab4, 0xefffcce5, 0x82, 0xefffcced)
          <- libc:strlen() = 3
          -> libc:strncmp(0xef778ab4, 0xefffcce7, 0x3, 0x7efefeff)
          <- libc:strncmp() = 0
        <- libc:hasmntopt() = 0x26b97
        -> libc:strchr(0x26b97, 0x3d, 0xefffcce7, 0xef6fda40)
        <- libc:strchr() = 0x26b9a
        -> libc:strtol(0x26b9b, 0x0, 0x10, 0xef6fda40)
        <- libc:strtol() = 18
      <- libc:isdevice() = 1
      -> libc:lstat64(0x26b77, 0xefffcf48, 0xefffcde5, 0xef773a30)
lstat64("/ftp/ftp.uni-giessen.de", 0xEFFFCF48)	= 0
      <- libc:lstat64() = 0
      -> libc:getmntent(0x251b0, 0xefffcfe4, 0xefffcde5, 0xef773a30)
        -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef6fe468)
        <- libc:thr_main() = -1
        -> libc:getline(0x26b60, 0x251b0, 0x0, 0xef6fe468)
          -> libc:fgets(0x26b60, 0x400, 0x251b0, 0xef6fe648)
            -> libc:_set_orientation_byte(0x251b0, 0x29374, 0x0, 0xef74a6b8)
              -> libc:_getorientation(0x251b0, 0x0, 0x0, 0xef74e8f0)
              <- libc:_getorientation() = 1
            <- libc:_set_orientation_byte() = 0x251b0
            -> libc:_realbufend(0x251b0, 0x29374, 0x0, 0xef74a6b8)
            <- libc:_realbufend() = 0x28f94
            -> libc:_filbuf(0x251b0, 0x251b0, 0xef773a30, 0xef74a6b8)
              -> libc:_realbufend(0x251b0, 0x0, 0x0, 0xef7480a4)
              <- libc:_realbufend() = 0x28f94
              -> libc:_read(0x4, 0x26f94, 0x2000, 0xef7480a4)
read(4, 0x00026F94, 8192)			= 0
              <- libc:_read() = 0
            <- libc:_filbuf() = -1
          <- libc:fgets() = 0
        <- libc:getline() = -1
      <- libc:getmntent() = -1
      -> libc:fclose(0x251b0, 0xef778aac, 0xef776590, 0xef773a30)
        -> libc:_fflush_u(0x251b0, 0x0, 0x28988, 0xef74b0a4)
          -> libc:lseek64(0x4, 0x0, 0x0, 0x1)
llseek(4, 0, SEEK_CUR)				= 1141
          <- libc:lseek64() = 0
        <- libc:_fflush_u() = 0
        -> libc:_close(0x4, 0x0, 0x28988, 0xef74b0a4)
close(4)					= 0
        <- libc:_close() = 0
        -> libc:free(0x26f90, 0x0, 0x28988, 0xef74b0a4)
          -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef7063d4)
          -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef7063d4)
          <- libc:mutex_lock() = 0
          -> libc:_free_unlocked(0x26f90, 0x0, 0x0, 0xef7063d4)
          <- libc:_free_unlocked() = 0x26f90
        -> libc:mutex_unlock(0xef777fc8, 0x0, 0x28988, 0xef74b0a4)
        -> libc:_return_zero(0xef777fc8, 0x0, 0x28988, 0xef74b0a4)
        <- libc:free() = 0
      <- libc:fclose() = 0
    <- libc:getdevinfo() = 0
    -> libc:readdir64(0x26730, 0x47, 0x12, 0xef778aac)
      -> libc:getdents64(0x3, 0x26740, 0x418, 0x1d8)
getdents64(3, 0x00026740, 1048)			= 0
      <- libc:getdents64() = 0
    <- libc:readdir64() = 0
    -> libc:___errno(0x0, 0x1d8, 0x12, 0xef778aac)
      -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      <- libc:thr_main() = -1
    <- libc:___errno() = 0x252c0
    -> libc:closedir(0x26730, 0x1d8, 0x12, 0xef778aac)
      -> libc:free(0x26730, 0x0, 0x0, 0xef6fa644)
        -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef7063d4)
        -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef7063d4)
        <- libc:mutex_lock() = 0
        -> libc:_free_unlocked(0x26730, 0x0, 0x0, 0xef7063d4)
        <- libc:_free_unlocked() = 0x26730
      -> libc:mutex_unlock(0xef777fc8, 0x0, 0x0, 0xef6fa644)
      -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef6fa644)
      <- libc:free() = 0
    -> libc:_close(0x3, 0x1d8, 0x12, 0xef778aac)
close(3)					= 0
    <- libc:closedir() = 0
    -> libc:___errno(0x0, 0x1d8, 0x12, 0xef778aac)
      -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      <- libc:thr_main() = -1
    <- libc:___errno() = 0x252c0
    -> libc:mutex_unlock(0xef776560, 0x1d8, 0x12, 0xef778aac)
    -> libc:_return_zero(0xef776560, 0x1d8, 0x12, 0xef778aac)
    <- libc:mutex_unlock() = 0
  <- libc:getcwd() = 0
  -> libc:mutex_unlock(0xef7761d0, 0x47, 0x400, 0x12)
  -> libc:_return_zero(0xef7761d0, 0x47, 0x400, 0x12)
  <- libc:mutex_unlock() = 0
<- libc:nftw64() = -1
-> libc:gettext(0x13d4c, 0x12170, 0x0, 0x5)
  -> libc:mutex_lock(0xef7773f0, 0x0, 0x0, 0xef737c50)
  -> libc:_return_zero(0xef7773f0, 0x0, 0x0, 0xef737c50)
  <- libc:mutex_lock() = 0
  -> libc:dcgettext_u(0x0, 0x13d4c, 0x5, 0xef737c50)
    -> libc:___errno(0xf025e2b4, 0x0, 0x0, 0xef737d1c)
      -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      <- libc:thr_main() = -1
    <- libc:___errno() = 0x252c0
    -> libc:setlocale(0x5, 0x0, 0x0, 0xef737d1c)
      -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef72ce14)
      -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef72ce14)
      <- libc:thr_main() = -1
      -> libc:_real_setlocale(0x5, 0x0, 0xef77736c, 0xef72ce14)
        -> libc:free(0x256d8, 0xef760ce6, 0x256d8, 0xef72cf58)
          -> libc:mutex_lock(0xef777fc8, 0x0, 0x0, 0xef7063d4)
          -> libc:_return_zero(0xef777fc8, 0x0, 0x0, 0xef7063d4)
          <- libc:mutex_lock() = 0
          -> libc:_free_unlocked(0x256d8, 0x0, 0x0, 0xef7063d4)
          <- libc:_free_unlocked() = 0x256d8
        -> libc:mutex_unlock(0xef777fc8, 0xef760ce6, 0x256d8, 0xef72cf58)
        -> libc:_return_zero(0xef777fc8, 0xef760ce6, 0x256d8, 0xef72cf58)
        <- libc:free() = 0
      <- libc:_real_setlocale() = 0xef760ce6
    <- libc:setlocale() = 0xef760ce6
    -> libc:getenv(0xef763728, 0x0, 0x0, 0xef77736c)
      -> libc:mutex_lock(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
      -> libc:_return_zero(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
      <- libc:mutex_lock() = 0
      -> libc:nvmatch(0xef763728, 0xefffedfb, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee1b, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee22, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee2e, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee40, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee5a, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee68, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffef39, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffef47, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffef68, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffef7b, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffefeb, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff009, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff028, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff045, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff125, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff13e, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff259, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff32f, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff343, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff35c, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff36c, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff37a, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff387, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff3a5, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff3c7, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff3df, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff41d, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff469, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff480, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff495, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff4ae, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff4b9, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff4ca, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff4d7, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff4e7, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff513, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff51b, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff52a, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff75c, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff793, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff9c7, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff9d8, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff9ed, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffb8e, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffbf6, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffcf4, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd04, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd17, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd51, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd60, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd6f, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd81, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd9e, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffdb1, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffdbd, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffff0f, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffff21, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffff5b, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffff74, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffff96, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffffa7, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffffb8, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:mutex_unlock(0x243f4, 0x0, 0x0, 0xef6fdb94)
      -> libc:_return_zero(0x243f4, 0x0, 0x0, 0xef6fdb94)
      <- libc:mutex_unlock() = 0
    <- libc:getenv() = 0
    -> libc:___errno(0x0, 0x243f4, 0xef773a30, 0x0)
      -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      <- libc:thr_main() = -1
    <- libc:___errno() = 0x252c0
  <- libc:dcgettext_u() = 0x13d4c
  -> libc:mutex_unlock(0xef7773f0, 0x13d4c, 0x5, 0xef773a30)
  -> libc:_return_zero(0xef7773f0, 0x13d4c, 0x5, 0xef773a30)
  <- libc:mutex_unlock() = 0
<- libc:gettext() = 0x13d4c
-> libc:strerror(0x0, 0x12170, 0x0, 0x5)
-> libc:dgettext(0xef762d58, 0xef75eca4, 0x0, 0x5)
  -> libc:mutex_lock(0xef7773f0, 0x0, 0x0, 0xef737c94)
  -> libc:_return_zero(0xef7773f0, 0x0, 0x0, 0xef737c94)
  <- libc:mutex_lock() = 0
  -> libc:dcgettext_u(0xef762d58, 0xef75eca4, 0x5, 0xef737c94)
    -> libc:___errno(0xf025e2b4, 0x0, 0x0, 0xef737d1c)
      -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      <- libc:thr_main() = -1
    <- libc:___errno() = 0x252c0
    -> libc:setlocale(0x5, 0x0, 0x0, 0xef737d1c)
      -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef72ce14)
      -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef72ce14)
      <- libc:thr_main() = -1
      -> libc:_real_setlocale(0x5, 0x0, 0xef77736c, 0xef72ce14)
      <- libc:_real_setlocale() = 0xef760ce6
    <- libc:setlocale() = 0xef760ce6
    -> libc:getenv(0xef763728, 0x0, 0x0, 0xef77736c)
      -> libc:mutex_lock(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
      -> libc:_return_zero(0x243f4, 0x75e98, 0x0, 0xef6fdb94)
      <- libc:mutex_lock() = 0
      -> libc:nvmatch(0xef763728, 0xefffedfb, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee1b, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee22, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee2e, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee40, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee5a, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffee68, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffef39, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffef47, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffef68, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffef7b, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffefeb, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff009, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff028, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff045, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff125, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff13e, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff259, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff32f, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff343, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff35c, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff36c, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff37a, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff387, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff3a5, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff3c7, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff3df, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff41d, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff469, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff480, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff495, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff4ae, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff4b9, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff4ca, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff4d7, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff4e7, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff513, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff51b, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff52a, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff75c, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff793, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff9c7, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff9d8, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffff9ed, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffb8e, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffbf6, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffcf4, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd04, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd17, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd51, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd60, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd6f, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd81, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffd9e, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffdb1, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xeffffdbd, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffff0f, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffff21, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffff5b, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffff74, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffff96, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffffa7, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:nvmatch(0xef763728, 0xefffffb8, 0x0, 0xef6fdb94)
      <- libc:nvmatch() = 0
      -> libc:mutex_unlock(0x243f4, 0x0, 0x0, 0xef6fdb94)
      -> libc:_return_zero(0x243f4, 0x0, 0x0, 0xef6fdb94)
      <- libc:mutex_unlock() = 0
    <- libc:getenv() = 0
    -> libc:___errno(0x0, 0x243f4, 0xef773a30, 0x0)
      -> libc:thr_main(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      -> libc:_return_negone(0xf025e2b4, 0x0, 0x0, 0xef74ff34)
      <- libc:thr_main() = -1
    <- libc:___errno() = 0x252c0
  <- libc:dcgettext_u() = 0xef75eca4
  -> libc:mutex_unlock(0xef7773f0, 0xef75eca4, 0x5, 0xef773a30)
  -> libc:_return_zero(0xef7773f0, 0xef75eca4, 0x5, 0xef773a30)
  <- libc:mutex_unlock() = 0
<- libc:strerror() = 0xef75eca4
-> libc:fprintf(0x251a0, 0x13d4c, 0xefffedf4, 0xefffedf9)
  -> libc:_set_orientation_byte(0x251a0, 0x32410, 0x0, 0xef773a30)
    -> libc:_getorientation(0x251a0, 0x0, 0x0, 0xef74e8f0)
    <- libc:_getorientation() = 0
  -> libc:_setorientation(0x251a0, 0x1, 0x0, 0xef773a30)
  <- libc:_set_orientation_byte() = 0x251a0
  -> libc:_doprnt(0x13d4c, 0xefffebf4, 0x251a0, 0xef773a30)
    -> libc:_findbuf(0x251a0, 0x1, 0x0, 0xef773a30)
      -> libc:_setbufend(0x251a0, 0xef777648, 0x0, 0xef7481ac)
      <- libc:_setbufend() = 0x251a0
    <- libc:_findbuf() = 0xef777648
    -> libc:_realbufend(0x251a0, 0x251a0, 0xef777644, 0xffffffff)
    <- libc:_realbufend() = 0xef777648
    -> libc:strlen(0xefffedf4, 0x1b38, 0xef779050, 0x73)
    <- libc:strlen() = 4
    -> libc:_dowrite(0x13d4e, 0xe, 0x251a0, 0xefffeb28)
      -> libc:_realbufend(0x251a0, 0x0, 0x0, 0xef73df70)
      <- libc:_realbufend() = 0xef777648
      -> libc:_bufsync(0x251a0, 0xef777648, 0xef773a30, 0xef73df70)
      <- libc:_bufsync() = 0x251a0
      -> libc:_fwrite_unlocked(0x13d4e, 0x1, 0xe, 0x251a0)
        -> libc:fileno(0x251a0, 0x6, 0xef777644, 0xef74c360)
        <- libc:fileno() = 2
        -> libc:_write(0x2, 0xef777644, 0x4, 0xef74c360)
write(2, " f i n d", 4)				= 4
        <- libc:_write() = 4
        -> libc:fileno(0x251a0, 0x4, 0x4, 0xef74c360)
        <- libc:fileno() = 2
        -> libc:_write(0x2, 0x13d4e, 0xe, 0xef74c360)
write(2, " :   c a n n o t   o p e".., 14)	= 14
        <- libc:_write() = 14
      <- libc:_fwrite_unlocked() = 14
    <- libc:_dowrite() = 1
    -> libc:strlen(0xefffedf9, 0x1b38, 0x251a0, 0x73)
    <- libc:strlen() = 1
    -> libc:strlen(0xef75eca4, 0x1b38, 0x13d5e, 0x73)
    <- libc:strlen() = 7
    -> libc:_dowrite(0xef75eca4, 0x7, 0x251a0, 0xefffeb28)
      -> libc:_realbufend(0x251a0, 0x0, 0x0, 0xef73df70)
      <- libc:_realbufend() = 0xef777648
      -> libc:_bufsync(0x251a0, 0xef777648, 0xef773a30, 0xef73df70)
      <- libc:_bufsync() = 0x251a0
      -> libc:_fwrite_unlocked(0xef75eca4, 0x1, 0x7, 0x251a0)
        -> libc:fileno(0x251a0, 0x6, 0xef777644, 0xef74c360)
        <- libc:fileno() = 2
        -> libc:_write(0x2, 0xef777644, 0x3, 0xef74c360)
write(2, " . :  ", 3)				= 3
        <- libc:_write() = 3
        -> libc:fileno(0x251a0, 0x3, 0x3, 0xef74c360)
        <- libc:fileno() = 2
        -> libc:_write(0x2, 0xef75eca4, 0x7, 0xef74c360)
write(2, " E r r o r   0", 7)			= 7
        <- libc:_write() = 7
      <- libc:_fwrite_unlocked() = 7
    <- libc:_dowrite() = 1
    -> libc:_xflsbuf(0x251a0, 0xef777648, 0x251a0, 0xefffeb28)
      -> libc:_realbufend(0x251a0, 0x0, 0x0, 0xef74adc8)
      <- libc:_realbufend() = 0xef777648
      -> libc:_write(0x2, 0xef777644, 0x1, 0xef74adc8)
write(2, "\n", 1)				= 1
      <- libc:_write() = 1
    <- libc:_xflsbuf() = 0
    -> libc:ferror_unlocked(0x251a0, 0xef777644, 0x1, 0xefffeb28)
    <- libc:ferror_unlocked() = 0
  <- libc:_doprnt() = 29
  -> libc:ferror_unlocked(0x251a0, 0x0, 0x0, 0xef75eca4)
  <- libc:ferror_unlocked() = 0
<- libc:fprintf() = 29
-> libc:exit(0x1, 0xefffec70, 0x30, 0x0)
  -> libc:_exithandle(0xf025e2b4, 0x0, 0x0, 0xef75825c)
    -> libc:mutex_lock(0xef775f70, 0x0, 0x0, 0xef6e01f0)
    -> libc:_return_zero(0xef775f70, 0x0, 0x0, 0xef6e01f0)
    <- libc:mutex_lock() = 0
    -> libc:mutex_unlock(0xef775f70, 0x0, 0x0, 0xef6e01f0)
    -> libc:_return_zero(0xef775f70, 0x0, 0x0, 0xef6e01f0)
    <- libc:mutex_unlock() = 0
    -> libc:mutex_lock(0xef775f58, 0x0, 0x0, 0xef6e01f0)
    -> libc:_return_zero(0xef775f58, 0x0, 0x0, 0xef6e01f0)
    <- libc:mutex_lock() = 0
    -> en_US:_fini(0x0, 0x24bd4, 0xef7ef5a0, 0x0)
    <- en_US:_fini() = 0
    -> libc:_fini(0x0, 0x24bd4, 0xef7ef5a0, 0x0)
      -> libc:_cleanup(0xf025e2b4, 0x0, 0x0, 0xef758334)
      -> libc:fflush(0x0, 0x0, 0x0, 0xef758334)
      -> libc:_fflush_u_iops(0x0, 0x0, 0x0, 0xef758334)
        -> libc:_fflush_u(0x25180, 0x28af4, 0x0, 0xef74af38)
          -> libc:lseek64(0x0, 0x0, 0x0, 0x1)
llseek(0, 0, SEEK_CUR)				= 16219
          <- libc:lseek64() = 0
        <- libc:_fflush_u() = 0
        -> libc:_fflush_u(0x25190, 0x0, 0x0, 0xef74af38)
        <- libc:_fflush_u() = 0
      <- libc:_cleanup() = 0
    <- libc:_fini() = 0
  -> libc:mutex_unlock(0xef775f58, 0xef779cfc, 0x0, 0xef75825c)
  -> libc:_return_zero(0xef775f58, 0xef779cfc, 0x0, 0xef75825c)
  <- libc:_exithandle() = 0
_exit(1)
Received on 2000-10-08 11:15:07