You are not logged in.

#1 2019-10-15 16:22:37

Shirothe
Member
Registered: 2019-10-15
Posts: 9

[SOLVED] pulseaudio doesn't work when started by systemd

I can't access pulsemixer nor do i hear anything even though pulseaudio.service is running.
When I stop pulseaudio.service and run pulseaudio myself, everything works.
I've already reinstalled pulseaudio and have the default configuration.

$ pulseaudio
E: [pulseaudio] main.c: D-Bus name org.PulseAudio1 already taken.
$ pulseaudio -D
E: [pulseaudio] main.c: Daemon startup failed.
$ pulseaudio -k
E: [pulseaudio] main.c: Failed to kill daemon: No such process
$ pulsemixer
Failed to connect to pulseaudio: Connection refused
$ systemctl --user status pulseaudio
● pulseaudio.service - Sound Service
   Loaded: loaded (/usr/lib/systemd/user/pulseaudio.service; enabled; vendor preset: enabled)
   Active: active (running) since Tue 2019-10-15 18:02:44 CEST; 25s ago
 Main PID: 2069 (pulseaudio)
   CGroup: /user.slice/user-1000.slice/user@1000.service/pulseaudio.service
           ├─2069 /usr/bin/pulseaudio --daemonize=no
           └─2077 /usr/lib/pulse/gsettings-helper

Oct 15 18:02:42 arch-desktop systemd[567]: Starting Sound Service...
Oct 15 18:02:44 arch-desktop systemd[567]: Started Sound Service.
$ systemctl --user stop pulseaudio
Warning: Stopping pulseaudio.service, but it can still be activated by:
  pulseaudio.socket
$ pulseaudio --daemonize=no  # this works

The service file (did not modify it):

[Unit]
Description=Sound Service

# We require pulseaudio.socket to be active before starting the daemon, because
# while it is possible to use the service without the socket, it is not clear
# why it would be desirable.
#
# A user installing pulseaudio and doing `systemctl --user start pulseaudio`
# will not get the socket started, which might be confusing and problematic if
# the server is to be restarted later on, as the client autospawn feature
# might kick in. Also, a start of the socket unit will fail, adding to the
# confusion.
#
# After=pulseaudio.socket is not needed, as it is already implicit in the
# socket-service relationship, see systemd.socket(5).
Requires=pulseaudio.socket
ConditionUser=!root

[Service]
ExecStart=/usr/bin/pulseaudio --daemonize=no
LockPersonality=yes
MemoryDenyWriteExecute=yes
NoNewPrivileges=yes
Restart=on-failure
RestrictNamespaces=yes
SystemCallArchitectures=native
SystemCallFilter=@system-service
# Note that notify will only work if --daemonize=no
Type=notify
UMask=0077

[Install]
Also=pulseaudio.socket
WantedBy=default.target

Last edited by Shirothe (2019-10-15 21:09:50)

Offline

#2 2019-10-15 16:35:26

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,650

Re: [SOLVED] pulseaudio doesn't work when started by systemd

How are you starting your session? What's your output for

printenv DBUS_SESSION_BUS_ADDRESS

terminal output of a program that cannot connect to the systemd pulse instance? According to the output it's properly started.

Offline

#3 2019-10-15 16:41:55

Shirothe
Member
Registered: 2019-10-15
Posts: 9

Re: [SOLVED] pulseaudio doesn't work when started by systemd

$ printenv DBUS_SESSION_BUS_ADDRESS
unix:path=/run/user/1000/bus
$ pulsemixer
Failed to connect to pulseaudio: Connection refused

Playing a youtube video:

$ firefox
[Child 7984, MediaDecoderStateMachine #1] WARNING: 7f0a196ee600 OpenCubeb() failed to init cubeb: file /build/firefox/src/firefox-69.0.3/dom/media/AudioStream.cpp, line 305
[Child 7984, MediaDecoderStateMachine #1] WARNING: Decoder=7f0a20d4fc00 [OnMediaSinkAudioError]: file /build/firefox/src/firefox-69.0.3/dom/media/MediaDecoderStateMachine.cpp, line 3641

Closing the tab with the youtube video:

[Parent 7754, Gecko_IOThread] WARNING: pipe error (216): Connection reset by peer: file /build/firefox/src/firefox-69.0.3/ipc/chromium/src/chrome/common/ipc_channel_posix.cc, line 358

Offline

#4 2019-10-15 16:43:04

Shirothe
Member
Registered: 2019-10-15
Posts: 9

Re: [SOLVED] pulseaudio doesn't work when started by systemd

I'm starting my session with startx.
.xinitrc:

#!/usr/bin/env sh

# load system wide configuration
sysconfig=/etc/X11/xinit
sysresources=$sysconfig/.Xresources
sysmodmap=$sysconfig/.Xmodmap

[ -f $sysresources ] && xrdb -merge $sysresources
[ -f $sysmodmap ] && xmodmap $sysmodmap

# source scripts from /etc/X11/xinit/xinitrc.d/
if [ -d $sysresources/xinitrc.d ]; then
    for f in $sysresources/xinitrc.d/?*.sh; do
        [ -x "$f" ] && . "$f"
    done
    unset f
fi

# load user configuration
userconfig=$XDG_CONFIG_HOME/X11
userresources=$userconfig/.Xresources
usermodmap=$userconfig/.Xmodmap

[ -f $userresources ] && xrdb -merge $userresources
[ -f $usermodmap ] && xmodmap $usermodmap

# start up several programs
setbg &
xcapemodmap &
compton &
dunst &

# launch window manager
exec i3

Offline

#5 2019-10-15 16:52:50

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,650

Re: [SOLVED] pulseaudio doesn't work when started by systemd

Meh... install strace

strace pulsemixer

Do you have any special /etc/pulse/client.conf deviating from defaults?

Offline

#6 2019-10-15 16:58:11

Shirothe
Member
Registered: 2019-10-15
Posts: 9

Re: [SOLVED] pulseaudio doesn't work when started by systemd

strace pulsemixer:

execve("/usr/bin/pulsemixer", ["pulsemixer"], 0x7ffe17148110 /* 56 vars */) = 0
brk(NULL)                               = 0x565215bd0000
arch_prctl(0x3001 /* ARCH_??? */, 0x7ffce0b42d40) = -1 EINVAL (Invalid argument)
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=128298, ...}) = 0
mmap(NULL, 128298, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f0f5942d000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`r\2\0\0\0\0\0"..., 832) = 832
lseek(3, 64, SEEK_SET)                  = 64
read(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784) = 784
lseek(3, 848, SEEK_SET)                 = 848
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
lseek(3, 880, SEEK_SET)                 = 880
read(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0z\36*\342l\357PXJ\362\306\nZ\323\247\256"..., 68) = 68
fstat(3, {st_mode=S_IFREG|0755, st_size=2149496, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5942b000
lseek(3, 64, SEEK_SET)                  = 64
read(3, "\6\0\0\0\4\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0@\0\0\0\0\0\0\0"..., 784) = 784
lseek(3, 848, SEEK_SET)                 = 848
read(3, "\4\0\0\0\20\0\0\0\5\0\0\0GNU\0\2\0\0\300\4\0\0\0\3\0\0\0\0\0\0\0", 32) = 32
lseek(3, 880, SEEK_SET)                 = 880
read(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0z\36*\342l\357PXJ\362\306\nZ\323\247\256"..., 68) = 68
mmap(NULL, 1860536, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f59264000
mprotect(0x7f0f59289000, 1671168, PROT_NONE) = 0
mmap(0x7f0f59289000, 1363968, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x25000) = 0x7f0f59289000
mmap(0x7f0f593d6000, 303104, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x172000) = 0x7f0f593d6000
mmap(0x7f0f59421000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1bc000) = 0x7f0f59421000
mmap(0x7f0f59427000, 13240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f0f59427000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/libpython3.7m.so.1.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \20\6\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=3285192, ...}) = 0
mmap(NULL, 3422160, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f58f20000
mmap(0x7f0f58f81000, 1716224, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x61000) = 0x7f0f58f81000
mmap(0x7f0f59124000, 720896, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x204000) = 0x7f0f59124000
mmap(0x7f0f591d4000, 454656, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2b3000) = 0x7f0f591d4000
mmap(0x7f0f59243000, 133072, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f0f59243000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\201\0\0\0\0\0\0"..., 832) = 832
lseek(3, 824, SEEK_SET)                 = 824
read(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\203v\227\265{\24\377\341I\0\2477\6\2565\1"..., 68) = 68
fstat(3, {st_mode=S_IFREG|0755, st_size=159824, ...}) = 0
lseek(3, 824, SEEK_SET)                 = 824
read(3, "\4\0\0\0\24\0\0\0\3\0\0\0GNU\0\203v\227\265{\24\377\341I\0\2477\6\2565\1"..., 68) = 68
mmap(NULL, 135592, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f58efe000
mmap(0x7f0f58f05000, 65536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f0f58f05000
mmap(0x7f0f58f15000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f0f58f15000
mmap(0x7f0f58f1a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b000) = 0x7f0f58f1a000
mmap(0x7f0f58f1c000, 12712, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f0f58f1c000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\22\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=14512, ...}) = 0
mmap(NULL, 16528, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f58ef9000
mmap(0x7f0f58efa000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f0f58efa000
mmap(0x7f0f58efb000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f58efb000
mmap(0x7f0f58efc000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f58efc000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\23\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=14440, ...}) = 0
mmap(NULL, 16400, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f58ef4000
mmap(0x7f0f58ef5000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f0f58ef5000
mmap(0x7f0f58ef6000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f58ef6000
mmap(0x7f0f58ef7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f58ef7000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\363\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1329264, ...}) = 0
mmap(NULL, 1331224, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f58dae000
mmap(0x7f0f58dbd000, 638976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7f0f58dbd000
mmap(0x7f0f58e59000, 626688, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xab000) = 0x7f0f58e59000
mmap(0x7f0f58ef2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x143000) = 0x7f0f58ef2000
close(3)                                = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58dac000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58daa000
arch_prctl(ARCH_SET_FS, 0x7f0f58dad6c0) = 0
mprotect(0x7f0f59421000, 12288, PROT_READ) = 0
mprotect(0x7f0f58ef2000, 4096, PROT_READ) = 0
mprotect(0x7f0f58ef7000, 4096, PROT_READ) = 0
mprotect(0x7f0f58efc000, 4096, PROT_READ) = 0
mprotect(0x7f0f58f1a000, 4096, PROT_READ) = 0
mprotect(0x7f0f591d4000, 24576, PROT_READ) = 0
mprotect(0x565214b1c000, 4096, PROT_READ) = 0
mprotect(0x7f0f59477000, 4096, PROT_READ) = 0
munmap(0x7f0f5942d000, 128298)          = 0
set_tid_address(0x7f0f58dad990)         = 17581
set_robust_list(0x7f0f58dad9a0, 24)     = 0
rt_sigaction(SIGRTMIN, {sa_handler=0x7f0f58f05c40, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7f0f58f12930}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {sa_handler=0x7f0f58f05ce0, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7f0f58f12930}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
brk(NULL)                               = 0x565215bd0000
brk(0x565215bf1000)                     = 0x565215bf1000
openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3039616, ...}) = 0
mmap(NULL, 3039616, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f0f58ac3000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/gconv/gconv-modules", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=56352, ...}) = 0
read(3, "# GNU libc iconv configuration.\n"..., 4096) = 4096
read(3, "1002//\tJUS_I.B1.002//\nmodule\tJUS"..., 4096) = 4096
read(3, "ISO-IR-110//\t\tISO-8859-4//\nalias"..., 4096) = 4096
read(3, "\t\tISO-8859-14//\nalias\tISO_8859-1"..., 4096) = 4096
read(3, "IC-ES//\nalias\tEBCDICES//\t\tEBCDIC"..., 4096) = 4096
read(3, "DIC-CP-ES//\t\tIBM284//\nalias\tCSIB"..., 4096) = 4096
read(3, "\tIBM863//\nalias\tOSF1002035F//\t\tI"..., 4096) = 4096
read(3, "37//\t\tIBM937//\nmodule\tIBM937//\t\t"..., 4096) = 4096
read(3, "JIS//\t\t\tEUC-JP//\nmodule\tEUC-JP//"..., 4096) = 4096
read(3, "ias\tISO2022CN//\t\tISO-2022-CN//\nm"..., 4096) = 4096
read(3, "_5427-EXT//\nalias\tISO_5427EXT//\t"..., 4096) = 4096
read(3, "st\nmodule\tMAC-SAMI//\t\tINTERNAL\t\t"..., 4096) = 4096
read(3, "12//\t\tINTERNAL\t\tIBM1112\t\t1\nmodul"..., 4096) = 4096
brk(0x565215c12000)                     = 0x565215c12000
read(3, "\tCP9448//\t\tIBM9448//\nalias\tCSIBM"..., 4096) = 3104
read(3, "", 4096)                       = 0
close(3)                                = 0
futex(0x7f0f59426494, FUTEX_WAKE_PRIVATE, 2147483647) = 0
readlink("/usr/bin/python", "python3", 4096) = 7
readlink("/usr/bin/python3", "python3.7", 4096) = 9
readlink("/usr/bin/python3.7", 0x7ffce0b30560, 4096) = -1 EINVAL (Invalid argument)
openat(AT_FDCWD, "/usr/bin/pyvenv.cfg", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/pyvenv.cfg", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/bin/Modules/Setup", 0x7ffce0b36610) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib/python3.7/os.py", 0x7ffce0b314f0) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib/python3.7/os.pyc", 0x7ffce0b314f0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/os.py", {st_mode=S_IFREG|0644, st_size=37756, ...}) = 0
stat("/usr/bin/pybuilddir.txt", 0x7ffce0b315f0) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib/python3.7/lib-dynload", 0x7ffce0b315f0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
getrandom("\x56\xbd\xd3\x74\x90\xd9\x72\xf9\x97\xc5\xc8\xc4\x3e\xb4\x85\xce\xae\x5d\xf2\x54\x02\x0c\x01\xe5", 24, GRND_NONBLOCK) = 24
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58a83000
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58a43000
brk(0x565215c38000)                     = 0x565215c38000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58a03000
brk(0x565215c5b000)                     = 0x565215c5b000
sysinfo({uptime=3493, loads=[27328, 37888, 29728], totalram=16807088128, freeram=14152851456, sharedram=283332608, bufferram=91578368, totalswap=21474832384, freeswap=21474832384, procs=677, totalhigh=0, freehigh=0, mem_unit=1}) = 0
sigaltstack({ss_sp=0x565215c125d0, ss_flags=0, ss_size=8192}, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
stat("/usr/lib/python37.zip", 0x7ffce0b410b0) = -1 ENOENT (No such file or directory)
stat("/usr/lib", {st_mode=S_IFDIR|0755, st_size=135168, ...}) = 0
stat("/usr/lib/python37.zip", 0x7ffce0b40760) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 209 entries */, 32768) = 6952
getdents64(3, /* 0 entries */, 32768)   = 0
close(3)                                = 0
stat("/usr/lib/python3.7/encodings/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffce0b40b40) = -1 ENOENT (No such file or directory)
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f589c3000
munmap(0x7f0f589c3000, 262144)          = 0
stat("/usr/lib/python3.7/encodings/__init__.abi3.so", 0x7ffce0b40b40) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/encodings/__init__.so", 0x7ffce0b40b40) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5668, ...}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f589c3000
stat("/usr/lib/python3.7/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5668, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/encodings/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fcntl(3, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fstat(3, {st_mode=S_IFREG|0644, st_size=3929, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3929, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\177\324#\342\tR\10\317\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 3930) = 3929
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/encodings/__init__.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5668, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5668, ...}) = 0
read(3, "\"\"\" Standard \"encodings\" Package"..., 5669) = 5668
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/codecs.py", {st_mode=S_IFREG|0644, st_size=36538, ...}) = 0
stat("/usr/lib/python3.7/codecs.py", {st_mode=S_IFREG|0644, st_size=36538, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/codecs.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=34057, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=34057, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\210O\234\242\206\361\335\302\343\0\0\0\0\0\0\0\0\0\0\0\0,\0\0"..., 34058) = 34057
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/codecs.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=36538, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=36538, ...}) = 0
read(3, "\"\"\" codecs -- Python Codec Regis"..., 36539) = 36538
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/lib/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/encodings", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 128 entries */, 32768) = 4336
getdents64(3, /* 0 entries */, 32768)   = 0
close(3)                                = 0
stat("/usr/lib/python3.7/encodings/aliases.py", {st_mode=S_IFREG|0644, st_size=15577, ...}) = 0
stat("/usr/lib/python3.7/encodings/aliases.py", {st_mode=S_IFREG|0644, st_size=15577, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/encodings/__pycache__/aliases.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6278, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6278, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\357a;\0\235<\221\224\343\0\0\0\0\0\0\0\0\0\0\0\0D\1\0"..., 6279) = 6278
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/encodings/aliases.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15577, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15577, ...}) = 0
read(3, "\"\"\" Encoding Aliases Support\n\n  "..., 15578) = 15577
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/lib/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/encodings/utf_8.py", {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
stat("/usr/lib/python3.7/encodings/utf_8.py", {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/encodings/__pycache__/utf_8.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1596, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1596, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\273\375kS\343\n\f\276\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 1597) = 1596
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/encodings/utf_8.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
read(3, "\"\"\" Python 'utf-8' Codec\n\n\nWritt"..., 1006) = 1005
read(3, "", 1)                          = 0
close(3)                                = 0
rt_sigaction(SIGPIPE, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f0f5929ffb0}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXFSZ, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f0f5929ffb0}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
getpid()                                = 17581
rt_sigaction(SIGHUP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGINT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGQUIT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTRAP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGABRT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGBUS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGFPE, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGKILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGUSR1, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSEGV, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGUSR2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPIPE, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f0f5929ffb0}, 8) = 0
rt_sigaction(SIGALRM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTERM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSTKFLT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGCHLD, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGCONT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSTOP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTSTP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTTIN, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTTOU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGURG, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXCPU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXFSZ, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f0f5929ffb0}, 8) = 0
rt_sigaction(SIGVTALRM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPROF, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGWINCH, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGIO, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPWR, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSYS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_3, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_4, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_5, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_6, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_7, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_8, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_9, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_10, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_11, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_12, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_13, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_14, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_15, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_16, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_17, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_18, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_19, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_20, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_21, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_22, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_23, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_24, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_25, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_26, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_27, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_28, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_29, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_30, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_31, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_32, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGINT, {sa_handler=0x7f0f590bc9c0, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f0f5929ffb0}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
stat("/usr/lib/python3.7/encodings", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/encodings/latin_1.py", {st_mode=S_IFREG|0644, st_size=1264, ...}) = 0
stat("/usr/lib/python3.7/encodings/latin_1.py", {st_mode=S_IFREG|0644, st_size=1264, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/encodings/__pycache__/latin_1.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1878, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1878, ...}) = 0
read(3, "B\r\r\n\3\0\0\0u\206\216\270\301?\3735\343\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0"..., 1879) = 1878
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/encodings/latin_1.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1264, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1264, ...}) = 0
read(3, "\"\"\" Python 'latin-1' Codec\n\n\nWri"..., 1265) = 1264
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/io.py", {st_mode=S_IFREG|0644, st_size=3517, ...}) = 0
stat("/usr/lib/python3.7/io.py", {st_mode=S_IFREG|0644, st_size=3517, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/io.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3391, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3391, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\f\237D\357\261\222\322\334\343\0\0\0\0\0\0\0\0\0\0\0\0\22\0\0"..., 3392) = 3391
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/io.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3517, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3517, ...}) = 0
read(3, "\"\"\"The io module provides the Py"..., 3518) = 3517
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/abc.py", {st_mode=S_IFREG|0644, st_size=5580, ...}) = 0
stat("/usr/lib/python3.7/abc.py", {st_mode=S_IFREG|0644, st_size=5580, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/abc.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6433, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6433, ...}) = 0
read(3, "B\r\r\n\3\0\0\0003\204\326\0301\23\367\274\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 6434) = 6433
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/abc.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5580, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5580, ...}) = 0
read(3, "# Copyright 2007 Google, Inc. Al"..., 5581) = 5580
read(3, "", 1)                          = 0
close(3)                                = 0
dup(0)                                  = 3
close(3)                                = 0
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
lseek(0, 0, SEEK_CUR)                   = -1 ESPIPE (Illegal seek)
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
dup(1)                                  = 3
close(3)                                = 0
fstat(1, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
ioctl(1, TCGETS, 0x7ffce0b42190)        = -1 ENOTTY (Inappropriate ioctl for device)
lseek(1, 0, SEEK_CUR)                   = -1 ESPIPE (Illegal seek)
ioctl(1, TCGETS, 0x7ffce0b42490)        = -1 ENOTTY (Inappropriate ioctl for device)
ioctl(1, TCGETS, 0x7ffce0b423a0)        = -1 ENOTTY (Inappropriate ioctl for device)
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/_bootlocale.py", {st_mode=S_IFREG|0644, st_size=1801, ...}) = 0
stat("/usr/lib/python3.7/_bootlocale.py", {st_mode=S_IFREG|0644, st_size=1801, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/_bootlocale.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1231, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1231, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\25\206\305\253S\301\327{\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 1232) = 1231
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/_bootlocale.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1801, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1801, ...}) = 0
read(3, "\"\"\"A minimal subset of the local"..., 1802) = 1801
read(3, "", 1)                          = 0
close(3)                                = 0
dup(2)                                  = 3
close(3)                                = 0
fstat(2, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
ioctl(2, TCGETS, 0x7ffce0b42190)        = -1 ENOTTY (Inappropriate ioctl for device)
lseek(2, 0, SEEK_CUR)                   = -1 ESPIPE (Illegal seek)
ioctl(2, TCGETS, 0x7ffce0b42490)        = -1 ENOTTY (Inappropriate ioctl for device)
ioctl(2, TCGETS, 0x7ffce0b423a0)        = -1 ENOTTY (Inappropriate ioctl for device)
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site.py", {st_mode=S_IFREG|0644, st_size=21307, ...}) = 0
stat("/usr/lib/python3.7/site.py", {st_mode=S_IFREG|0644, st_size=21307, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/site.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16532, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16532, ...}) = 0
brk(0x565215c7d000)                     = 0x565215c7d000
read(3, "B\r\r\n\3\0\0\0\2161\2309L\341\7\5\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 16533) = 16532
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=21307, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=21307, ...}) = 0
read(3, "\"\"\"Append module search paths fo"..., 21308) = 21307
read(3, "", 1)                          = 0
close(3)                                = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58983000
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/os.py", {st_mode=S_IFREG|0644, st_size=37756, ...}) = 0
stat("/usr/lib/python3.7/os.py", {st_mode=S_IFREG|0644, st_size=37756, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/os.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=29675, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=29675, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\225\21Q\344a\265\30\21\343\0\0\0\0\0\0\0\0\0\0\0\0\23\0\0"..., 29676) = 29675
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/os.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=37756, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=37756, ...}) = 0
read(3, "r\"\"\"OS routines for NT or Posix "..., 37757) = 37756
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/stat.py", {st_mode=S_IFREG|0644, st_size=5038, ...}) = 0
stat("/usr/lib/python3.7/stat.py", {st_mode=S_IFREG|0644, st_size=5038, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/stat.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3855, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3855, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\25O/S\304\243ck\343\0\0\0\0\0\0\0\0\0\0\0\0\r\0\0"..., 3856) = 3855
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/stat.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5038, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5038, ...}) = 0
read(3, "\"\"\"Constants/functions for inter"..., 5039) = 5038
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/posixpath.py", {st_mode=S_IFREG|0644, st_size=15771, ...}) = 0
stat("/usr/lib/python3.7/posixpath.py", {st_mode=S_IFREG|0644, st_size=15771, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/posixpath.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=10411, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=10411, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\2003\317_r\301\376!\343\0\0\0\0\0\0\0\0\0\0\0\0&\0\0"..., 10412) = 10411
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/posixpath.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15771, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15771, ...}) = 0
read(3, "\"\"\"Common operations on Posix pa"..., 15772) = 15771
read(3, "", 1)                          = 0
close(3)                                = 0
mmap(NULL, 151552, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5895e000
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/genericpath.py", {st_mode=S_IFREG|0644, st_size=4756, ...}) = 0
stat("/usr/lib/python3.7/genericpath.py", {st_mode=S_IFREG|0644, st_size=4756, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/genericpath.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3730, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3730, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\265\332\n\36Gu\247\211\343\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0"..., 3731) = 3730
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/genericpath.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4756, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4756, ...}) = 0
read(3, "\"\"\"\nPath operations common to mo"..., 4757) = 4756
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/_collections_abc.py", {st_mode=S_IFREG|0644, st_size=26424, ...}) = 0
stat("/usr/lib/python3.7/_collections_abc.py", {st_mode=S_IFREG|0644, st_size=26424, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/_collections_abc.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=28924, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=28924, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\227\10\234\307\346J^\322\343\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0"..., 28925) = 28924
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/_collections_abc.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=26424, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=26424, ...}) = 0
read(3, "# Copyright 2007 Google, Inc. Al"..., 26425) = 26424
read(3, "", 1)                          = 0
close(3)                                = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5891e000
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/_sitebuiltins.py", {st_mode=S_IFREG|0644, st_size=3115, ...}) = 0
stat("/usr/lib/python3.7/_sitebuiltins.py", {st_mode=S_IFREG|0644, st_size=3115, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/_sitebuiltins.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3447, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3447, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\303!\206\263\3176\355\374\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 3448) = 3447
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/_sitebuiltins.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3115, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3115, ...}) = 0
read(3, "\"\"\"\nThe objects used by the site"..., 3116) = 3115
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin/pyvenv.cfg", 0x7ffce0b40a50) = -1 ENOENT (No such file or directory)
stat("/usr/pyvenv.cfg", 0x7ffce0b40a50) = -1 ENOENT (No such file or directory)
geteuid()                               = 1000
getuid()                                = 1000
getegid()                               = 985
getgid()                                = 985
stat("/home/theo/.local/lib/python3.7/site-packages", 0x7ffce0b40d30) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 213 entries */, 32768) = 8984
getdents64(3, /* 0 entries */, 32768)   = 0
close(3)                                = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lib-dynload", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 73 entries */, 32768)  = 4560
getdents64(3, /* 0 entries */, 32768)   = 0
close(3)                                = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
getdents64(3, /* 213 entries */, 32768) = 8984
getdents64(3, /* 0 entries */, 32768)   = 0
close(3)                                = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/site-packages", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
stat("/usr/bin/pulsemixer", {st_mode=S_IFREG|0755, st_size=86456, ...}) = 0
openat(AT_FDCWD, "/usr/bin/pulsemixer", O_RDONLY) = 3
ioctl(3, FIOCLEX)                       = 0
fstat(3, {st_mode=S_IFREG|0755, st_size=86456, ...}) = 0
fstat(3, {st_mode=S_IFREG|0755, st_size=86456, ...}) = 0
lseek(3, 86016, SEEK_SET)               = 86016
read(3, "l.values[i] + int(arg), max_volu"..., 418) = 418
read(3, "__main__':\n    main()\n", 4096) = 22
close(3)                                = 0
stat("/usr/bin/pulsemixer", {st_mode=S_IFREG|0755, st_size=86456, ...}) = 0
readlink("/usr/bin/pulsemixer", 0x7ffce0b31780, 4096) = -1 EINVAL (Invalid argument)
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
lstat("/usr/bin/pulsemixer", {st_mode=S_IFREG|0755, st_size=86456, ...}) = 0
openat(AT_FDCWD, "/usr/bin/pulsemixer", O_RDONLY) = 3
fcntl(3, F_GETFD)                       = 0
fcntl(3, F_SETFD, FD_CLOEXEC)           = 0
fstat(3, {st_mode=S_IFREG|0755, st_size=86456, ...}) = 0
ioctl(3, TCGETS, 0x7ffce0b42ac0)        = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0755, st_size=86456, ...}) = 0
read(3, "#!/usr/bin/python\n'''Usage of pu"..., 4096) = 4096
lseek(3, 0, SEEK_SET)                   = 0
brk(0x565215ca3000)                     = 0x565215ca3000
read(3, "#!/usr/bin/python\n'''Usage of pu"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f588de000
read(3, "  POINTER(POINTER(PA_PORT_INFO))"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5889e000
read(3, "NTER(PA_CONTEXT), c_int, c_void_"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5885e000
read(3, "_context_get_sink_input_info_lis"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5881e000
read(3, "t.restype = POINTER(PA_OPERATION"..., 4096) = 4096
read(3, "ver = pa_card.driver\n        sel"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f587de000
read(3, "tInfo:\n            self.sink_inp"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5879e000
read(3, " def subscribe(self, cb):\n      "..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5875e000
read(3, "ion_sync\n    def set_source_port"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5871e000
read(3, "    self.client_id = pa_source_o"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f586de000
read(3, "ROLL_DOWN = [getattr(curses, i, "..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5869e000
read(3, " threading.Event()\n\n    def getc"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5865e000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5861e000
read(3, "ottom:\n                        s"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f585de000
read(3, "            if not self.submenu_"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5859e000
read(3, "f c in CFG.keys.left_big:\n      "..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5855e000
read(3, "n(self.data)\n        if not self"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5851e000
read(3, "-to_remove].strip() + '~'\n      "..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f584de000
read(3, ", cycle=True)\n        elif c in "..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5849e000
read(3, "er = None\n\n        self._more_ke"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5845e000
read(3, "    = M  ; \360\237\224\211\n\n        [rename"..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5841e000
read(3, "ot noninteractive_opts:\n        "..., 4096) = 4096
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f583de000
read(3, "l.values[i] + int(arg), max_volu"..., 4096) = 440
read(3, "", 4096)                       = 0
brk(0x565215cc5000)                     = 0x565215cc5000
brk(0x565215ce8000)                     = 0x565215ce8000
brk(0x565215d10000)                     = 0x565215d10000
brk(0x565215d38000)                     = 0x565215d38000
munmap(0x7f0f5841e000, 262144)          = 0
munmap(0x7f0f5849e000, 262144)          = 0
munmap(0x7f0f584de000, 262144)          = 0
munmap(0x7f0f5851e000, 262144)          = 0
munmap(0x7f0f5855e000, 262144)          = 0
munmap(0x7f0f5859e000, 262144)          = 0
munmap(0x7f0f585de000, 262144)          = 0
munmap(0x7f0f5861e000, 262144)          = 0
munmap(0x7f0f5865e000, 262144)          = 0
munmap(0x7f0f5869e000, 262144)          = 0
munmap(0x7f0f586de000, 262144)          = 0
munmap(0x7f0f5871e000, 262144)          = 0
munmap(0x7f0f5875e000, 262144)          = 0
munmap(0x7f0f5879e000, 262144)          = 0
munmap(0x7f0f587de000, 262144)          = 0
munmap(0x7f0f5881e000, 262144)          = 0
munmap(0x7f0f5885e000, 262144)          = 0
munmap(0x7f0f5889e000, 262144)          = 0
munmap(0x7f0f588de000, 262144)          = 0
close(3)                                = 0
brk(0x565215d5f000)                     = 0x565215d5f000
brk(0x565215d59000)                     = 0x565215d59000
brk(0x565215d4d000)                     = 0x565215d4d000
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
openat(AT_FDCWD, "/usr/bin", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
getdents64(3, /* 1007 entries */, 32768) = 32768
getdents64(3, /* 1005 entries */, 32768) = 32752
getdents64(3, /* 592 entries */, 32768) = 19336
getdents64(3, /* 0 entries */, 32768)   = 0
close(3)                                = 0
mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f588fd000
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/curses/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffce0b40ef0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/curses/__init__.abi3.so", 0x7ffce0b40ef0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/curses/__init__.so", 0x7ffce0b40ef0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/curses/__init__.py", {st_mode=S_IFREG|0644, st_size=3590, ...}) = 0
stat("/usr/lib/python3.7/curses/__init__.py", {st_mode=S_IFREG|0644, st_size=3590, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/curses/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1922, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1922, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\214\217\17\3445\267\fR\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 1923) = 1922
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/curses/__init__.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3590, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3590, ...}) = 0
read(3, "\"\"\"curses\n\nThe main package for "..., 3591) = 3590
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload/_curses.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=85488, ...}) = 0
futex(0x7f0f58efd048, FUTEX_WAKE_PRIVATE, 2147483647) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lib-dynload/_curses.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 `\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=85488, ...}) = 0
mmap(NULL, 88072, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f59437000
mmap(0x7f0f5943d000, 36864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f0f5943d000
mmap(0x7f0f59446000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7f0f59446000
mmap(0x7f0f5944a000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x12000) = 0x7f0f5944a000
close(3)                                = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=128298, ...}) = 0
mmap(NULL, 128298, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f0f588dd000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/libncursesw.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 p\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=449040, ...}) = 0
mmap(NULL, 453880, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f5886e000
mmap(0x7f0f58885000, 241664, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f0f58885000
mmap(0x7f0f588c0000, 94208, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x52000) = 0x7f0f588c0000
mmap(0x7f0f588d7000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x68000) = 0x7f0f588d7000
close(3)                                = 0
mprotect(0x7f0f588d7000, 20480, PROT_READ) = 0
mprotect(0x7f0f5944a000, 4096, PROT_READ) = 0
munmap(0x7f0f588dd000, 128298)          = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/functools.py", {st_mode=S_IFREG|0644, st_size=32916, ...}) = 0
stat("/usr/lib/python3.7/functools.py", {st_mode=S_IFREG|0644, st_size=32916, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/functools.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=24197, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=24197, ...}) = 0
read(3, "B\r\r\n\3\0\0\0<\314p\3273\272w\30\343\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0"..., 24198) = 24197
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/functools.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=32916, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=32916, ...}) = 0
read(3, "\"\"\"functools.py - Tools for work"..., 32917) = 32916
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/collections/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffce0b3fed0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/collections/__init__.abi3.so", 0x7ffce0b3fed0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/collections/__init__.so", 0x7ffce0b3fed0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/collections/__init__.py", {st_mode=S_IFREG|0644, st_size=48363, ...}) = 0
stat("/usr/lib/python3.7/collections/__init__.py", {st_mode=S_IFREG|0644, st_size=48363, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/collections/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=47058, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=47058, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\375\272E\275w\323\35\"\343\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0"..., 47059) = 47058
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/collections/__init__.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=48363, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=48363, ...}) = 0
read(3, "'''This module implements specia"..., 48364) = 48363
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/operator.py", {st_mode=S_IFREG|0644, st_size=10863, ...}) = 0
stat("/usr/lib/python3.7/operator.py", {st_mode=S_IFREG|0644, st_size=10863, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/operator.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=13882, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=13882, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\0051*\353\3750\254\324\343\0\0\0\0\0\0\0\0\0\0\0\0006\0\0"..., 13883) = 13882
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/operator.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=10863, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=10863, ...}) = 0
read(3, "\"\"\"\nOperator Interface\n\nThis mod"..., 10864) = 10863
read(3, "", 1)                          = 0
close(3)                                = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5882e000
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/keyword.py", {st_mode=S_IFREG|0755, st_size=2245, ...}) = 0
stat("/usr/lib/python3.7/keyword.py", {st_mode=S_IFREG|0755, st_size=2245, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/keyword.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1791, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1791, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\33\245\224\240\0\233KG\343\0\0\0\0\0\0\0\0\0\0\0\0#\0\0"..., 1792) = 1791
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/keyword.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0755, st_size=2245, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0755, st_size=2245, ...}) = 0
read(3, "#! /usr/bin/env python3\n\n\"\"\"Keyw"..., 2246) = 2245
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/heapq.py", {st_mode=S_IFREG|0644, st_size=23017, ...}) = 0
stat("/usr/lib/python3.7/heapq.py", {st_mode=S_IFREG|0644, st_size=23017, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/heapq.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14344, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14344, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\366\373\364\245\210o3F\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 14345) = 14344
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/heapq.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=23017, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=23017, ...}) = 0
read(3, "\"\"\"Heap queue algorithm (a.k.a. "..., 23018) = 23017
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload/_heapq.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=25480, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lib-dynload/_heapq.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \20\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=25480, ...}) = 0
mmap(NULL, 27952, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f59430000
mmap(0x7f0f59431000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f0f59431000
mmap(0x7f0f59433000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f0f59433000
mmap(0x7f0f59434000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f0f59434000
close(3)                                = 0
mprotect(0x7f0f59434000, 4096, PROT_READ) = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/reprlib.py", {st_mode=S_IFREG|0644, st_size=5267, ...}) = 0
stat("/usr/lib/python3.7/reprlib.py", {st_mode=S_IFREG|0644, st_size=5267, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/reprlib.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5332, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5332, ...}) = 0
read(3, "B\r\r\n\3\0\0\0J\255\226Y\202\376\23\336\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 5333) = 5332
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/reprlib.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5267, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5267, ...}) = 0
read(3, "\"\"\"Redo the builtin repr() (repr"..., 5268) = 5267
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/bin/getopt/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffce0b40ef0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/getopt/__init__.abi3.so", 0x7ffce0b40ef0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/getopt/__init__.so", 0x7ffce0b40ef0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/getopt/__init__.py", 0x7ffce0b40ef0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/getopt/__init__.pyc", 0x7ffce0b40ef0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/getopt", {st_mode=S_IFREG|0755, st_size=18496, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/getopt.py", {st_mode=S_IFREG|0644, st_size=7489, ...}) = 0
stat("/usr/lib/python3.7/getopt.py", {st_mode=S_IFREG|0644, st_size=7489, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/getopt.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6221, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6221, ...}) = 0
read(3, "B\r\r\n\3\0\0\0x\10\236R\317\210O\246\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 6222) = 6221
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/getopt.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7489, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7489, ...}) = 0
read(3, "\"\"\"Parser for command line optio"..., 7490) = 7489
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/bin/gettext/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffce0b3fed0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/gettext/__init__.abi3.so", 0x7ffce0b3fed0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/gettext/__init__.so", 0x7ffce0b3fed0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/gettext/__init__.py", 0x7ffce0b3fed0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/gettext/__init__.pyc", 0x7ffce0b3fed0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/gettext", {st_mode=S_IFREG|0755, st_size=38880, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/gettext.py", {st_mode=S_IFREG|0644, st_size=21967, ...}) = 0
stat("/usr/lib/python3.7/gettext.py", {st_mode=S_IFREG|0644, st_size=21967, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/gettext.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=14150, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=14150, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\374\310A\277\241\236\305\5\343\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0"..., 14151) = 14150
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/gettext.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=21967, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=21967, ...}) = 0
read(3, "\"\"\"Internationalization and loca"..., 21968) = 21967
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/bin/locale/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffce0b3eeb0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/locale/__init__.abi3.so", 0x7ffce0b3eeb0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/locale/__init__.so", 0x7ffce0b3eeb0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/locale/__init__.py", 0x7ffce0b3eeb0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/locale/__init__.pyc", 0x7ffce0b3eeb0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/locale", {st_mode=S_IFREG|0755, st_size=54800, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/locale.py", {st_mode=S_IFREG|0644, st_size=78027, ...}) = 0
stat("/usr/lib/python3.7/locale.py", {st_mode=S_IFREG|0644, st_size=78027, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/locale.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=34537, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=34537, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\23\255u\311s\256\266\4\343\0\0\0\0\0\0\0\0\0\0\0\0M\2\0"..., 34538) = 34537
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/locale.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=78027, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=78027, ...}) = 0
brk(0x565215d6e000)                     = 0x565215d6e000
read(3, "\"\"\"Locale support module.\n\nThe m"..., 78028) = 78027
read(3, "", 1)                          = 0
close(3)                                = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f587ee000
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/re.py", {st_mode=S_IFREG|0644, st_size=15192, ...}) = 0
stat("/usr/lib/python3.7/re.py", {st_mode=S_IFREG|0644, st_size=15192, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/re.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=13786, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=13786, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\217#\22.\360AZ\330\343\0\0\0\0\0\0\0\0\0\0\0\0\35\0\0"..., 13787) = 13786
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/re.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15192, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15192, ...}) = 0
read(3, "#\n# Secret Labs' Regular Express"..., 15193) = 15192
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/enum.py", {st_mode=S_IFREG|0644, st_size=34778, ...}) = 0
stat("/usr/lib/python3.7/enum.py", {st_mode=S_IFREG|0644, st_size=34778, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/enum.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=24253, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=24253, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\206\252\330od\366&n\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 24254) = 24253
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/enum.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=34778, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=34778, ...}) = 0
read(3, "import sys\nfrom types import Map"..., 34779) = 34778
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/types.py", {st_mode=S_IFREG|0644, st_size=9897, ...}) = 0
stat("/usr/lib/python3.7/types.py", {st_mode=S_IFREG|0644, st_size=9897, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/types.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=8958, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=8958, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\343\266\345\322\276\20\t\221\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 8959) = 8958
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/types.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=9897, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=9897, ...}) = 0
read(3, "\"\"\"\nDefine names for built-in ty"..., 9898) = 9897
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/sre_compile.py", {st_mode=S_IFREG|0644, st_size=26872, ...}) = 0
stat("/usr/lib/python3.7/sre_compile.py", {st_mode=S_IFREG|0644, st_size=26872, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/sre_compile.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15185, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15185, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\203\270\2611\302\220\35!\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 15186) = 15185
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/sre_compile.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=26872, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=26872, ...}) = 0
read(3, "#\n# Secret Labs' Regular Express"..., 26873) = 26872
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/sre_parse.py", {st_mode=S_IFREG|0644, st_size=39305, ...}) = 0
stat("/usr/lib/python3.7/sre_parse.py", {st_mode=S_IFREG|0644, st_size=39305, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/sre_parse.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=21339, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=21339, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\314\363\331\274\320\230\234`\343\0\0\0\0\0\0\0\0\0\0\0\0\v\0\0"..., 21340) = 21339
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/sre_parse.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=39305, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=39305, ...}) = 0
read(3, "#\n# Secret Labs' Regular Express"..., 39306) = 39305
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/sre_constants.py", {st_mode=S_IFREG|0644, st_size=7177, ...}) = 0
stat("/usr/lib/python3.7/sre_constants.py", {st_mode=S_IFREG|0644, st_size=7177, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/sre_constants.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6273, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=6273, ...}) = 0
read(3, "B\r\r\n\3\0\0\0^Vu\22<\260\305+\343\0\0\0\0\0\0\0\0\0\0\0\0\20\0\0"..., 6274) = 6273
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/sre_constants.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7177, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7177, ...}) = 0
read(3, "#\n# Secret Labs' Regular Express"..., 7178) = 7177
read(3, "", 1)                          = 0
close(3)                                = 0
mmap(NULL, 299008, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f587a5000
munmap(0x7f0f5895e000, 151552)          = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58765000
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/copyreg.py", {st_mode=S_IFREG|0644, st_size=7017, ...}) = 0
stat("/usr/lib/python3.7/copyreg.py", {st_mode=S_IFREG|0644, st_size=7017, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/copyreg.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4226, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4226, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\36ei\270\307\220pe\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 4227) = 4226
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/copyreg.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7017, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7017, ...}) = 0
read(3, "\"\"\"Helper to provide extensibili"..., 7018) = 7017
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/signal.py", {st_mode=S_IFREG|0644, st_size=2123, ...}) = 0
stat("/usr/lib/python3.7/signal.py", {st_mode=S_IFREG|0644, st_size=2123, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/signal.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2494, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2494, ...}) = 0
read(3, "B\r\r\n\3\0\0\0-h$\214m\350&\376\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 2495) = 2494
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/signal.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2123, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2123, ...}) = 0
read(3, "import _signal\nfrom _signal impo"..., 2124) = 2123
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/threading.py", {st_mode=S_IFREG|0644, st_size=49065, ...}) = 0
stat("/usr/lib/python3.7/threading.py", {st_mode=S_IFREG|0644, st_size=49065, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/threading.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=37884, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=37884, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\334\213D\2\320\300e\310\343\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0"..., 37885) = 37884
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/threading.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=49065, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=49065, ...}) = 0
read(3, "\"\"\"Thread module emulating a sub"..., 49066) = 49065
read(3, "", 1)                          = 0
close(3)                                = 0
brk(0x565215d8f000)                     = 0x565215d8f000
openat(AT_FDCWD, "/etc/localtime", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2298, ...}) = 0
read(3, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0\t\0\0\0\0"..., 4096) = 2298
lseek(3, -1449, SEEK_CUR)               = 849
read(3, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0\t\0\0\0\0"..., 4096) = 1449
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/traceback.py", {st_mode=S_IFREG|0644, st_size=23438, ...}) = 0
stat("/usr/lib/python3.7/traceback.py", {st_mode=S_IFREG|0644, st_size=23438, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/traceback.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19605, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19605, ...}) = 0
read(3, "B\r\r\n\3\0\0\0FOc{\301\26\3775\343\0\0\0\0\0\0\0\0\0\0\0\0\23\0\0"..., 19606) = 19605
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/traceback.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=23438, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=23438, ...}) = 0
read(3, "\"\"\"Extract, format and print inf"..., 23439) = 23438
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/linecache.py", {st_mode=S_IFREG|0644, st_size=5312, ...}) = 0
stat("/usr/lib/python3.7/linecache.py", {st_mode=S_IFREG|0644, st_size=5312, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/linecache.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3771, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3771, ...}) = 0
read(3, "B\r\r\n\3\0\0\0g\260\303\376\210\34\2\35\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 3772) = 3771
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/linecache.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5312, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5312, ...}) = 0
read(3, "\"\"\"Cache lines from Python sourc"..., 5313) = 5312
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/tokenize.py", {st_mode=S_IFREG|0644, st_size=27031, ...}) = 0
stat("/usr/lib/python3.7/tokenize.py", {st_mode=S_IFREG|0644, st_size=27031, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/tokenize.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=17813, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=17813, ...}) = 0
read(3, "B\r\r\n\3\0\0\0sa\211;\222\371\212\345\343\0\0\0\0\0\0\0\0\0\0\0\0/\0\0"..., 17814) = 17813
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/tokenize.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=27031, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=27031, ...}) = 0
read(3, "\"\"\"Tokenization help for Python "..., 27032) = 27031
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/token.py", {st_mode=S_IFREG|0644, st_size=3763, ...}) = 0
stat("/usr/lib/python3.7/token.py", {st_mode=S_IFREG|0644, st_size=3763, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/token.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3581, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3581, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\260\6w\3710g*^\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 3582) = 3581
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/token.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3763, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3763, ...}) = 0
read(3, "\"\"\"Token constants (from \"token."..., 3764) = 3763
read(3, "", 1)                          = 0
close(3)                                = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58725000
munmap(0x7f0f58725000, 262144)          = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58725000
munmap(0x7f0f58725000, 262144)          = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58725000
munmap(0x7f0f58725000, 262144)          = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58725000
munmap(0x7f0f58725000, 262144)          = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58725000
munmap(0x7f0f58725000, 262144)          = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58725000
munmap(0x7f0f58725000, 262144)          = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f58725000
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/_weakrefset.py", {st_mode=S_IFREG|0644, st_size=5679, ...}) = 0
stat("/usr/lib/python3.7/_weakrefset.py", {st_mode=S_IFREG|0644, st_size=5679, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/_weakrefset.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=7444, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=7444, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\262V\7\205>\7F\334\343\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0"..., 7445) = 7444
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/_weakrefset.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5679, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5679, ...}) = 0
read(3, "# Access WeakSet through the wea"..., 5680) = 5679
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/configparser.py", {st_mode=S_IFREG|0644, st_size=54283, ...}) = 0
stat("/usr/lib/python3.7/configparser.py", {st_mode=S_IFREG|0644, st_size=54283, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/configparser.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=45862, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=45862, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\266\277J.\304J\n~\343\0\0\0\0\0\0\0\0\0\0\0\0\25\0\0"..., 45863) = 45862
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/configparser.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=54283, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=54283, ...}) = 0
read(3, "\"\"\"Configuration file parser.\n\nA"..., 54284) = 54283
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/lib/python3.7/collections", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/collections", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/collections", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/collections", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents64(3, /* 5 entries */, 32768)   = 144
getdents64(3, /* 0 entries */, 32768)   = 0
close(3)                                = 0
stat("/usr/lib/python3.7/collections/abc.py", {st_mode=S_IFREG|0644, st_size=68, ...}) = 0
stat("/usr/lib/python3.7/collections/abc.py", {st_mode=S_IFREG|0644, st_size=68, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/collections/__pycache__/abc.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=187, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=187, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\332\202\332)O\325\217\25\343\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0"..., 188) = 187
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/collections/abc.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=68, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=68, ...}) = 0
read(3, "from _collections_abc import *\nf"..., 69) = 68
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/warnings.py", {st_mode=S_IFREG|0644, st_size=20242, ...}) = 0
stat("/usr/lib/python3.7/warnings.py", {st_mode=S_IFREG|0644, st_size=20242, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/warnings.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=13922, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=13922, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\254\212\3478\331\232@\277\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 13923) = 13922
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/warnings.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=20242, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=20242, ...}) = 0
read(3, "\"\"\"Python part of the warnings s"..., 20243) = 20242
read(3, "", 1)                          = 0
close(3)                                = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f586e5000
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/ctypes/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffce0b40ef0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/ctypes/__init__.abi3.so", 0x7ffce0b40ef0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/ctypes/__init__.so", 0x7ffce0b40ef0) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python3.7/ctypes/__init__.py", {st_mode=S_IFREG|0644, st_size=17574, ...}) = 0
stat("/usr/lib/python3.7/ctypes/__init__.py", {st_mode=S_IFREG|0644, st_size=17574, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/ctypes/__pycache__/__init__.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16361, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=16361, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\364\322\210\353Z\33\23\325\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 16362) = 16361
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/ctypes/__init__.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=17574, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=17574, ...}) = 0
read(3, "\"\"\"create and manipulate C data "..., 17575) = 17574
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload/_ctypes.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=133448, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lib-dynload/_ctypes.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 p\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=133448, ...}) = 0
mmap(NULL, 135976, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f58961000
mmap(0x7f0f58968000, 61440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f0f58968000
mmap(0x7f0f58977000, 28672, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7f0f58977000
mmap(0x7f0f5897e000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c000) = 0x7f0f5897e000
close(3)                                = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=128298, ...}) = 0
mmap(NULL, 128298, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f0f588dd000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/libffi.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@ \0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=38792, ...}) = 0
mmap(NULL, 42248, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f586da000
mprotect(0x7f0f586dc000, 28672, PROT_NONE) = 0
mmap(0x7f0f586dc000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f586dc000
mmap(0x7f0f586e1000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f0f586e1000
mmap(0x7f0f586e3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f0f586e3000
close(3)                                = 0
mprotect(0x7f0f586e3000, 4096, PROT_READ) = 0
mprotect(0x7f0f5897e000, 4096, PROT_READ) = 0
munmap(0x7f0f588dd000, 128298)          = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/struct.py", {st_mode=S_IFREG|0644, st_size=257, ...}) = 0
stat("/usr/lib/python3.7/struct.py", {st_mode=S_IFREG|0644, st_size=257, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/struct.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=316, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=316, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\240\32\203\351!\2355\n\343\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0"..., 317) = 316
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/struct.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=257, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=257, ...}) = 0
read(3, "__all__ = [\n    # Functions\n    "..., 258) = 257
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload/_struct.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=54424, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lib-dynload/_struct.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 0\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=54424, ...}) = 0
mmap(NULL, 56840, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f588ef000
mprotect(0x7f0f588f2000, 32768, PROT_NONE) = 0
mmap(0x7f0f588f2000, 20480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f0f588f2000
mmap(0x7f0f588f7000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f0f588f7000
mmap(0x7f0f588fa000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7f0f588fa000
close(3)                                = 0
mprotect(0x7f0f588fa000, 4096, PROT_READ) = 0
stat("/usr/lib/python3.7/ctypes", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/ctypes", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/ctypes", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/ctypes", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
brk(0x565215db2000)                     = 0x565215db2000
getdents64(3, /* 10 entries */, 32768)  = 296
getdents64(3, /* 0 entries */, 32768)   = 0
close(3)                                = 0
stat("/usr/lib/python3.7/ctypes/_endian.py", {st_mode=S_IFREG|0644, st_size=2000, ...}) = 0
stat("/usr/lib/python3.7/ctypes/_endian.py", {st_mode=S_IFREG|0644, st_size=2000, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/ctypes/__pycache__/_endian.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1938, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1938, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\202\335`f\260\344\2128\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 1939) = 1938
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/ctypes/_endian.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2000, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=2000, ...}) = 0
read(3, "import sys\nfrom ctypes import *\n"..., 2001) = 2000
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/proc/self/status", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
read(3, "Name:\tpulsemixer\nUmask:\t0022\nSta"..., 1024) = 1024
read(3, "0\nvoluntary_ctxt_switches:\t2696\n"..., 1024) = 62
read(3, "", 1024)                       = 0
close(3)                                = 0
statfs("/selinux", 0x7ffce0b41390)      = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/proc/mounts", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
read(3, "proc /proc proc rw,nosuid,nodev,"..., 1024) = 1024
read(3, "_event cgroup rw,nosuid,nodev,no"..., 1024) = 1024
read(3, "s rw,nosuid,nodev,noexec,relatim"..., 1024) = 472
read(3, "", 1024)                       = 0
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f59476000
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/pprint.py", {st_mode=S_IFREG|0644, st_size=20884, ...}) = 0
stat("/usr/lib/python3.7/pprint.py", {st_mode=S_IFREG|0644, st_size=20884, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/pprint.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15815, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15815, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\305\322\214B\270\200M\226\343\0\0\0\0\0\0\0\0\0\0\0\0\n\0\0"..., 15816) = 15815
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/pprint.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=20884, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=20884, ...}) = 0
read(3, "#  Author:      Fred L. Drake, J"..., 20885) = 20884
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload/select.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=35632, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lib-dynload/select.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=35632, ...}) = 0
mmap(NULL, 38104, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f588e5000
mmap(0x7f0f588e7000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f588e7000
mmap(0x7f0f588eb000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f0f588eb000
mmap(0x7f0f588ec000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f0f588ec000
close(3)                                = 0
mprotect(0x7f0f588ec000, 4096, PROT_READ) = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/shutil.py", {st_mode=S_IFREG|0644, st_size=41950, ...}) = 0
stat("/usr/lib/python3.7/shutil.py", {st_mode=S_IFREG|0644, st_size=41950, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/shutil.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=30962, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=30962, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\367m\260\312s\242\302\320\343\0\0\0\0\0\0\0\0\0\0\0\0\31\0\0"..., 30963) = 30962
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/shutil.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=41950, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=41950, ...}) = 0
read(3, "\"\"\"Utility functions for copying"..., 41951) = 41950
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/fnmatch.py", {st_mode=S_IFREG|0644, st_size=4056, ...}) = 0
stat("/usr/lib/python3.7/fnmatch.py", {st_mode=S_IFREG|0644, st_size=4056, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/fnmatch.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3319, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=3319, ...}) = 0
read(3, "B\r\r\n\3\0\0\0j\335?c~\211\22\252\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 3320) = 3319
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/fnmatch.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4056, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4056, ...}) = 0
read(3, "\"\"\"Filename matching with shell "..., 4057) = 4056
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload/zlib.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=40824, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lib-dynload/zlib.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=40824, ...}) = 0
mmap(NULL, 43232, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f586cf000
mprotect(0x7f0f586d1000, 24576, PROT_NONE) = 0
mmap(0x7f0f586d1000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f586d1000
mmap(0x7f0f586d5000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f0f586d5000
mmap(0x7f0f586d7000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f0f586d7000
close(3)                                = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=128298, ...}) = 0
mmap(NULL, 128298, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f0f586af000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320!\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=91912, ...}) = 0
mmap(NULL, 2187280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f581c7000
mprotect(0x7f0f581dd000, 2093056, PROT_NONE) = 0
mmap(0x7f0f583dc000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f0f583dc000
close(3)                                = 0
mprotect(0x7f0f583dc000, 4096, PROT_READ) = 0
mprotect(0x7f0f586d7000, 4096, PROT_READ) = 0
munmap(0x7f0f586af000, 128298)          = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/bz2.py", {st_mode=S_IFREG|0644, st_size=12410, ...}) = 0
stat("/usr/lib/python3.7/bz2.py", {st_mode=S_IFREG|0644, st_size=12410, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/bz2.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=11163, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=11163, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\373\0US\322\r\4k\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 11164) = 11163
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/bz2.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=12410, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=12410, ...}) = 0
read(3, "\"\"\"Interface to the libbzip2 com"..., 12411) = 12410
read(3, "", 1)                          = 0
close(3)                                = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f5868f000
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/_compression.py", {st_mode=S_IFREG|0644, st_size=5340, ...}) = 0
stat("/usr/lib/python3.7/_compression.py", {st_mode=S_IFREG|0644, st_size=5340, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/_compression.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=4106, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=4106, ...}) = 0
read(3, "B\r\r\n\3\0\0\0v\314\312l\271\306\265\335\343\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0"..., 4107) = 4106
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/_compression.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5340, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=5340, ...}) = 0
read(3, "\"\"\"Internal classes used by the "..., 5341) = 5340
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload/_bz2.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=25496, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lib-dynload/_bz2.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=25496, ...}) = 0
mmap(NULL, 27896, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f588de000
mmap(0x7f0f588e0000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f588e0000
mmap(0x7f0f588e2000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f0f588e2000
mmap(0x7f0f588e3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f0f588e3000
close(3)                                = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=128298, ...}) = 0
mmap(NULL, 128298, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f0f5866f000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=74440, ...}) = 0
mmap(NULL, 76840, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f5865c000
mmap(0x7f0f5865e000, 53248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f5865e000
mmap(0x7f0f5866b000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7f0f5866b000
mmap(0x7f0f5866d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7f0f5866d000
close(3)                                = 0
mprotect(0x7f0f5866d000, 4096, PROT_READ) = 0
mprotect(0x7f0f588e3000, 4096, PROT_READ) = 0
munmap(0x7f0f5866f000, 128298)          = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/bin/lzma/__init__.cpython-37m-x86_64-linux-gnu.so", 0x7ffce0b3fed0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/lzma/__init__.abi3.so", 0x7ffce0b3fed0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/lzma/__init__.so", 0x7ffce0b3fed0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/lzma/__init__.py", 0x7ffce0b3fed0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/lzma/__init__.pyc", 0x7ffce0b3fed0) = -1 ENOTDIR (Not a directory)
stat("/usr/bin/lzma", {st_mode=S_IFREG|0755, st_size=75888, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lzma.py", {st_mode=S_IFREG|0644, st_size=12983, ...}) = 0
stat("/usr/lib/python3.7/lzma.py", {st_mode=S_IFREG|0644, st_size=12983, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/lzma.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=11921, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=11921, ...}) = 0
read(3, "B\r\r\n\3\0\0\0\272\6\206h\253\26\263\327\343\0\0\0\0\0\0\0\0\0\0\0\0$\0\0"..., 11922) = 11921
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lzma.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=12983, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=12983, ...}) = 0
read(3, "\"\"\"Interface to the liblzma comp"..., 12984) = 12983
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload/_lzma.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=40952, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lib-dynload/_lzma.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=40952, ...}) = 0
mmap(NULL, 43368, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f58684000
mmap(0x7f0f58686000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f58686000
mmap(0x7f0f5868a000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f0f5868a000
mmap(0x7f0f5868c000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f0f5868c000
close(3)                                = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=128298, ...}) = 0
mmap(NULL, 128298, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f0f5863c000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/liblzma.so.5", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300,\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=153352, ...}) = 0
mmap(NULL, 2248720, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f57fa1000
mprotect(0x7f0f57fc6000, 2093056, PROT_NONE) = 0
mmap(0x7f0f581c5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000) = 0x7f0f581c5000
close(3)                                = 0
mprotect(0x7f0f581c5000, 4096, PROT_READ) = 0
mprotect(0x7f0f5868c000, 4096, PROT_READ) = 0
munmap(0x7f0f5863c000, 128298)          = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload/grp.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=15848, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lib-dynload/grp.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \20\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=15848, ...}) = 0
mmap(NULL, 18704, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f5867f000
mmap(0x7f0f58680000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f0f58680000
mmap(0x7f0f58681000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f58681000
mmap(0x7f0f58682000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f58682000
close(3)                                = 0
mprotect(0x7f0f58682000, 4096, PROT_READ) = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/textwrap.py", {st_mode=S_IFREG|0644, st_size=19494, ...}) = 0
stat("/usr/lib/python3.7/textwrap.py", {st_mode=S_IFREG|0644, st_size=19494, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/__pycache__/textwrap.cpython-37.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=13594, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=13594, ...}) = 0
read(3, "B\r\r\n\3\0\0\0R\334%*0\"\377\23\343\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0"..., 13595) = 13594
read(3, "", 1)                          = 0
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/python3.7/textwrap.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19494, ...}) = 0
lseek(3, 0, SEEK_CUR)                   = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=19494, ...}) = 0
read(3, "\"\"\"Text wrapping and filling.\n\"\""..., 19495) = 19494
read(3, "", 1)                          = 0
close(3)                                = 0
stat("/usr/bin", {st_mode=S_IFDIR|0755, st_size=86016, ...}) = 0
stat("/usr/lib/python3.7", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python3.7/lib-dynload/unicodedata.cpython-37m-x86_64-linux-gnu.so", {st_mode=S_IFREG|0755, st_size=1070424, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python3.7/lib-dynload/unicodedata.cpython-37m-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 0\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1070424, ...}) = 0
mmap(NULL, 1072824, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f58556000
mmap(0x7f0f58559000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f0f58559000
mmap(0x7f0f5855d000, 921600, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f0f5855d000
mmap(0x7f0f5863e000, 122880, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe7000) = 0x7f0f5863e000
close(3)                                = 0
mprotect(0x7f0f5863e000, 4096, PROT_READ) = 0
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=128298, ...}) = 0
mmap(NULL, 128298, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f0f58536000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/libpulse.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \320\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=342680, ...}) = 0
mmap(NULL, 344152, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f584e1000
mmap(0x7f0f584ee000, 192512, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x7f0f584ee000
mmap(0x7f0f5851d000, 90112, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3c000) = 0x7f0f5851d000
mmap(0x7f0f58533000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x51000) = 0x7f0f58533000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/tls/x86_64/x86_64/libpulsecommon-13.0.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/lib/pulseaudio/tls/x86_64/x86_64", 0x7ffce0b41380) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/pulseaudio/tls/x86_64/libpulsecommon-13.0.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/lib/pulseaudio/tls/x86_64", 0x7ffce0b41380) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/pulseaudio/tls/x86_64/libpulsecommon-13.0.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/lib/pulseaudio/tls/x86_64", 0x7ffce0b41380) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/pulseaudio/tls/libpulsecommon-13.0.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/lib/pulseaudio/tls", 0x7ffce0b41380) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/pulseaudio/x86_64/x86_64/libpulsecommon-13.0.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/lib/pulseaudio/x86_64/x86_64", 0x7ffce0b41380) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/pulseaudio/x86_64/libpulsecommon-13.0.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/lib/pulseaudio/x86_64", 0x7ffce0b41380) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/pulseaudio/x86_64/libpulsecommon-13.0.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/lib/pulseaudio/x86_64", 0x7ffce0b41380) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/pulseaudio/libpulsecommon-13.0.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@@\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=534488, ...}) = 0
mmap(NULL, 537488, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f57f1d000
mprotect(0x7f0f57f31000, 446464, PROT_NONE) = 0
mmap(0x7f0f57f31000, 286720, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0x7f0f57f31000
mmap(0x7f0f57f77000, 155648, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5a000) = 0x7f0f57f77000
mmap(0x7f0f57f9e000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x80000) = 0x7f0f57f9e000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libdbus-1.so.3", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \340\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=296864, ...}) = 0
mmap(NULL, 299728, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f57ed3000
mmap(0x7f0f57ee1000, 163840, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7f0f57ee1000
mmap(0x7f0f57f09000, 69632, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x36000) = 0x7f0f57f09000
mmap(0x7f0f57f1a000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x46000) = 0x7f0f57f1a000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3606\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=39408, ...}) = 0
mmap(NULL, 43512, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f58674000
mmap(0x7f0f58677000, 16384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f0f58677000
mmap(0x7f0f5867b000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f0f5867b000
mmap(0x7f0f5867d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f0f5867d000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libsndfile.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libsndfile.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 p\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=494360, ...}) = 0
mmap(NULL, 506464, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f57e57000
mmap(0x7f0f57e5e000, 335872, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f0f57e5e000
mmap(0x7f0f57eb0000, 118784, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x59000) = 0x7f0f57eb0000
mmap(0x7f0f57ecd000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x75000) = 0x7f0f57ecd000
mmap(0x7f0f57ed1000, 6752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f0f57ed1000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libxcb.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libxcb.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \300\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=165624, ...}) = 0
mmap(NULL, 168200, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f584b7000
mmap(0x7f0f584c3000, 77824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x7f0f584c3000
mmap(0x7f0f584d6000, 36864, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1f000) = 0x7f0f584d6000
mmap(0x7f0f584df000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x27000) = 0x7f0f584df000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libsystemd.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libsystemd.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \20\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=675832, ...}) = 0
mmap(NULL, 680688, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f57db0000
mmap(0x7f0f57dc1000, 446464, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x7f0f57dc1000
mmap(0x7f0f57e2e000, 147456, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7e000) = 0x7f0f57e2e000
mmap(0x7f0f57e52000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa1000) = 0x7f0f57e52000
mmap(0x7f0f57e56000, 752, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f0f57e56000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libasyncns.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libasyncns.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=26224, ...}) = 0
mmap(NULL, 28688, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f584af000
mmap(0x7f0f584b1000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f584b1000
mmap(0x7f0f584b4000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f0f584b4000
mmap(0x7f0f584b5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f0f584b5000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libFLAC.so.8", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libFLAC.so.8", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \220\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=251592, ...}) = 0
mmap(NULL, 253984, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f5841f000
mprotect(0x7f0f58428000, 212992, PROT_NONE) = 0
mmap(0x7f0f58428000, 167936, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7f0f58428000
mmap(0x7f0f58451000, 40960, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x32000) = 0x7f0f58451000
mmap(0x7f0f5845c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3c000) = 0x7f0f5845c000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libogg.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libogg.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=38504, ...}) = 0
mmap(NULL, 40976, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f584a4000
mprotect(0x7f0f584a6000, 28672, PROT_NONE) = 0
mmap(0x7f0f584a6000, 12288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f584a6000
mmap(0x7f0f584a9000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f0f584a9000
mmap(0x7f0f584ad000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f0f584ad000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libvorbis.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libvorbis.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0202\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=179120, ...}) = 0
mmap(NULL, 2273296, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f57b84000
mprotect(0x7f0f57bae000, 2097152, PROT_NONE) = 0
mmap(0x7f0f57dae000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2a000) = 0x7f0f57dae000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libvorbisenc.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libvorbisenc.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@:\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=691184, ...}) = 0
mmap(NULL, 2785360, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f578db000
mprotect(0x7f0f57968000, 2093056, PROT_NONE) = 0
mmap(0x7f0f57b67000, 118784, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8c000) = 0x7f0f57b67000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libXau.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libXau.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \20\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=13960, ...}) = 0
mmap(NULL, 16424, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f5866f000
mmap(0x7f0f58670000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f0f58670000
mmap(0x7f0f58671000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f58671000
mmap(0x7f0f58672000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f58672000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0  \0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=26224, ...}) = 0
mmap(NULL, 28688, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f578d3000
mmap(0x7f0f578d5000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f0f578d5000
mmap(0x7f0f578d7000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f0f578d7000
mmap(0x7f0f578d9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f0f578d9000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/liblz4.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/liblz4.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 0\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=132784, ...}) = 0
mmap(NULL, 135184, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f578b1000
mmap(0x7f0f578b4000, 106496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f0f578b4000
mmap(0x7f0f578ce000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1d000) = 0x7f0f578ce000
mmap(0x7f0f578d1000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1f000) = 0x7f0f578d1000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libgcrypt.so.20", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libgcrypt.so.20", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\300\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1167808, ...}) = 0
mmap(NULL, 1171400, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f57793000
mprotect(0x7f0f5779f000, 1093632, PROT_NONE) = 0
mmap(0x7f0f5779f000, 843776, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x7f0f5779f000
mmap(0x7f0f5786d000, 245760, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xda000) = 0x7f0f5786d000
mmap(0x7f0f578aa000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x116000) = 0x7f0f578aa000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libresolv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000G\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=88400, ...}) = 0
mmap(NULL, 100512, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f5777a000
mprotect(0x7f0f5777e000, 69632, PROT_NONE) = 0
mmap(0x7f0f5777e000, 53248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f0f5777e000
mmap(0x7f0f5778b000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x7f0f5778b000
mmap(0x7f0f5778f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0x7f0f5778f000
mmap(0x7f0f57791000, 6304, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f0f57791000
close(3)                                = 0
openat(AT_FDCWD, "/usr/lib/pulseaudio/libgpg-error.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libgpg-error.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@@\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=137320, ...}) = 0
mmap(NULL, 139872, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f0f57757000
mprotect(0x7f0f5775b000, 118784, PROT_NONE) = 0
mmap(0x7f0f5775b000, 77824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f0f5775b000
mmap(0x7f0f5776e000, 36864, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f0f5776e000
mmap(0x7f0f57778000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20000) = 0x7f0f57778000
close(3)                                = 0
mprotect(0x7f0f57778000, 4096, PROT_READ) = 0
mprotect(0x7f0f5778f000, 4096, PROT_READ) = 0
mprotect(0x7f0f578aa000, 8192, PROT_READ) = 0
mprotect(0x7f0f578d1000, 4096, PROT_READ) = 0
mprotect(0x7f0f578d9000, 4096, PROT_READ) = 0
mprotect(0x7f0f58672000, 4096, PROT_READ) = 0
mprotect(0x7f0f584ad000, 4096, PROT_READ) = 0
mprotect(0x7f0f57dae000, 4096, PROT_READ) = 0
mprotect(0x7f0f57b67000, 114688, PROT_READ) = 0
mprotect(0x7f0f5845c000, 4096, PROT_READ) = 0
mprotect(0x7f0f584b5000, 4096, PROT_READ) = 0
mprotect(0x7f0f5867d000, 4096, PROT_READ) = 0
mprotect(0x7f0f57e52000, 12288, PROT_READ) = 0
mprotect(0x7f0f584df000, 4096, PROT_READ) = 0
mprotect(0x7f0f57ecd000, 12288, PROT_READ) = 0
mprotect(0x7f0f57f1a000, 8192, PROT_READ) = 0
mprotect(0x7f0f57f9e000, 8192, PROT_READ) = 0
mprotect(0x7f0f58533000, 8192, PROT_READ) = 0
munmap(0x7f0f58536000, 128298)          = 0
brk(0x565215dd3000)                     = 0x565215dd3000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f0f57717000
openat(AT_FDCWD, "/home/theo/.config//pulsemixer.cfg", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
rt_sigaction(SIGINT, {sa_handler=0x7f0f590bc9c0, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f0f5929ffb0}, {sa_handler=0x7f0f590bc9c0, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f0f5929ffb0}, 8) = 0
pipe2([3, 4], O_CLOEXEC)                = 0
fcntl(3, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fcntl(4, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
fcntl(3, F_GETFL)                       = 0 (flags O_RDONLY)
fcntl(3, F_SETFL, O_RDONLY|O_NONBLOCK)  = 0
fcntl(4, F_GETFL)                       = 0x1 (flags O_WRONLY)
fcntl(4, F_SETFL, O_WRONLY|O_NONBLOCK)  = 0
futex(0x7ffce0b41d34, FUTEX_UNLOCK_PI)  = -1 EPERM (Operation not permitted)
getpid()                                = 17581
getpid()                                = 17581
openat(AT_FDCWD, "/home/theo/.pulse/client.conf", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/home/theo/.config/pulse/client.conf", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/etc/pulse/client.conf", O_RDONLY|O_CLOEXEC) = 5
fcntl(5, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
readlink("/proc/self/exe", "/usr/bin/python3.7", 99) = 18
fstat(5, {st_mode=S_IFREG|0644, st_size=1216, ...}) = 0
read(5, "# This file is part of PulseAudi"..., 4096) = 1216
read(5, "", 4096)                       = 0
openat(AT_FDCWD, "/etc/pulse/client.conf.d", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = -1 ENOENT (No such file or directory)
close(5)                                = 0
openat(AT_FDCWD, "/dev/shm/", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 5
fstat(5, {st_mode=S_IFDIR|S_ISVTX|0777, st_size=40, ...}) = 0
getdents64(5, /* 2 entries */, 32768)   = 48
getdents64(5, /* 0 entries */, 32768)   = 0
close(5)                                = 0
openat(AT_FDCWD, "/dev/urandom", O_RDONLY|O_NOCTTY|O_CLOEXEC) = 5
fcntl(5, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
read(5, "\362\306\277\316", 4)          = 4
close(5)                                = 0
memfd_create("pulseaudio", MFD_ALLOW_SEALING) = 5
ftruncate(5, 67108864)                  = 0
mmap(NULL, 67108864, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_NORESERVE, 5, 0) = 0x7f0f53717000
getpid()                                = 17581
getpid()                                = 17581
stat("/home/theo/.cache/", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
getuid()                                = 1000
umask(077)                              = 022
mkdir("/home/theo/.cache//pulse", 0700) = -1 EEXIST (File exists)
umask(022)                              = 077
openat(AT_FDCWD, "/home/theo/.cache//pulse", O_RDONLY|O_NOCTTY|O_NOFOLLOW|O_CLOEXEC) = 6
fstat(6, {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
getuid()                                = 1000
getgid()                                = 985
close(6)                                = 0
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/theo", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
lstat("/home/theo/.cache", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
lstat("/home/theo/.cache/pulse", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
setsockopt(6, SOL_SOCKET, SO_PRIORITY, [6], 4) = 0
fcntl(6, F_GETFL)                       = 0x2 (flags O_RDWR)
fcntl(6, F_SETFL, O_RDWR|O_NONBLOCK)    = 0
connect(6, {sa_family=AF_UNIX, sun_path="/home/theo/.cache/pulse/native"}, 110) = -1 ENOENT (No such file or directory)
close(6)                                = 0
socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0) = 6
fcntl(6, F_GETFD)                       = 0x1 (flags FD_CLOEXEC)
setsockopt(6, SOL_SOCKET, SO_PRIORITY, [6], 4) = 0
fcntl(6, F_GETFL)                       = 0x2 (flags O_RDWR)
fcntl(6, F_SETFL, O_RDWR|O_NONBLOCK)    = 0
connect(6, {sa_family=AF_UNIX, sun_path="/var/run/pulse/native"}, 110) = -1 ENOENT (No such file or directory)
close(6)                                = 0
write(2, "Failed to connect to pulseaudio:"..., 52Failed to connect to pulseaudio: Connection refused
) = 52
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f0f5929ffb0}, {sa_handler=0x7f0f590bc9c0, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f0f5929ffb0}, 8) = 0
munmap(0x7f0f588fd000, 135168)          = 0
sigaltstack(NULL, {ss_sp=0x565215c125d0, ss_flags=0, ss_size=8192}) = 0
sigaltstack({ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}, NULL) = 0
munmap(0x7f0f57717000, 262144)          = 0
exit_group(1)                           = ?
+++ exited with 1 +++

/etc/pulse/client.conf (I should have the default file though since I did pacman -Rns pulseaudio before reinstalling):

# This file is part of PulseAudio.
#
# PulseAudio is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# PulseAudio is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.

## Configuration file for PulseAudio clients. See pulse-client.conf(5) for
## more information. Default values are commented out.  Use either ; or # for
## commenting.

; default-sink =
; default-source =
; default-server =
; default-dbus-server =

autospawn = no
; autospawn = yes
; daemon-binary = /usr/bin/pulseaudio
; extra-arguments = --log-target=syslog

; cookie-file =

; enable-shm = yes
; shm-size-bytes = 0 # setting this 0 will use the system-default, usually 64 MiB

; auto-connect-localhost = no
; auto-connect-display = no

Offline

#7 2019-10-15 19:24:41

Shirothe
Member
Registered: 2019-10-15
Posts: 9

Re: [SOLVED] pulseaudio doesn't work when started by systemd

Ok so I went ahead and diffed the strace with one from a successful start (ignoring hexadecimals).
It seems like /home/theo/.cache/pulse/native and /var/run/pulse/native are missing (near the end of the strace).
Any idea what that could mean?

Offline

#8 2019-10-15 19:30:09

Shirothe
Member
Registered: 2019-10-15
Posts: 9

Re: [SOLVED] pulseaudio doesn't work when started by systemd

/var/run/pulse/ doesn't exist at all (I'm guessing that's because pulseaudio is not running system-wide).

When I'm running pulseaudio via systemd (doesn't work):
~/.cache/pulse is empty!

When I'm running pulseaudio manually (and it works):
~/.cache/pulse:

srwxrwxrwx 1 theo users 0 Oct 15 21:32 dbus-socket
srwxrwxrwx 1 theo users 0 Oct 15 21:32 native
-rw------- 1 theo users 6 Oct 15 21:32 pid

Last edited by Shirothe (2019-10-15 19:38:38)

Offline

#9 2019-10-15 20:25:19

Shirothe
Member
Registered: 2019-10-15
Posts: 9

Re: [SOLVED] pulseaudio doesn't work when started by systemd

I compared the files opened by the processes (using htop and diff):

Exclusive to pulseaudio.service (the one that doesn't work):

/dev/null
unix 299774 type=STREAM
unix 299774 type=STREAM  
/run/user/1000/pulse/native type=STREAM
/run/user/1000/pulse/dbus-socket type=STREAM

Exclusive to the manually run pulseaudio (which does work):

/dev/pts/3
/dev/pts/3
/dev/pts/3
/home/theo/.cache/pulse/native type=STREAM
/home/theo/.cache/pulse/dbus-socket type=STREAM

Last edited by Shirothe (2019-10-15 20:28:44)

Offline

#10 2019-10-15 20:50:25

Shirothe
Member
Registered: 2019-10-15
Posts: 9

Re: [SOLVED] pulseaudio doesn't work when started by systemd

Ok, I've solved the issue! smile
The issue was that in my ~/.profile I set $XDG_RUNTIME_DIR to ~/.cache
I did that because I was cleaning up my home directory and the Wiki recommends setting $XAUTHORITY to "$XDG_RUNTIME_DIR"/Xauthority. I got confused and searched GitHub repos for a default for $XDG_RUNTIME_DIR

I still have some questions:
Why is pulseaudio.service being run before ~/.profile is sourced?
Is it recommended not to change $XDG_RUNTIME_DIR? (Can't find much information about this variable in general).
What files should be put in $XDG_RUNTIME_DIR (besides Xauthority apparently)?

Offline

#11 2019-10-15 21:01:44

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,650

Re: [SOLVED] pulseaudio doesn't work when started by systemd

Your user session is pretty much disjoint from any other environments you set at other places, and will definitely run before profile is sourced (which will be done by your shell, the user session has no relation to your shell)
It's recommended to not change runtime dir, it will be set to /run/user/$UID and contains, as the name implies, files that are only relevant during active runtime.  /var/run will by default be a tmpfs that is only present in RAM and will be cleared on shutdown.
Many utilities wanting to store runtime files will use that to store runtime files, as you've found pulseaudio but a lot of other utilities and services running as your user.

See also the

freedesktop spec wrote:

$XDG_RUNTIME_DIR defines the base directory relative to which user-specific non-essential runtime files and other file objects (such as sockets, named pipes, ...) should be stored. The directory MUST be owned by the user, and he MUST be the only one having read and write access to it. Its Unix access mode MUST be 0700.

The lifetime of the directory MUST be bound to the user being logged in. It MUST be created when the user first logs in and if the user fully logs out the directory MUST be removed. If the user logs in more than once he should get pointed to the same directory, and it is mandatory that the directory continues to exist from his first login to his last logout on the system, and not removed in between. Files in the directory MUST not survive reboot or a full logout/login cycle.
...

https://standards.freedesktop.org/based … atest.html

Offline

#12 2019-10-15 21:13:28

Shirothe
Member
Registered: 2019-10-15
Posts: 9

Re: [SOLVED] pulseaudio doesn't work when started by systemd

Okay, thank you for your help.
(Useful link for others: https://wiki.archlinux.org/index.php/sy … _variables)

Offline

Board footer

Powered by FluxBB