Skip to content

Instantly share code, notes, and snippets.

@newtonick
Last active July 19, 2023 03:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save newtonick/2df134a84fd04398bd925a000e979112 to your computer and use it in GitHub Desktop.
Save newtonick/2df134a84fd04398bd925a000e979112 to your computer and use it in GitHub Desktop.
SeedSigner OS Reproducible Build PR Testing

SeedSigner OS Reproducible Build PR 51 Testing

SeedSigner/seedsigner-os#51

SeedSigner OS reproducible build allows creation of the image to be compiled and assembled deterministically. This makes it possible for multiple people to compile the same source code into identical binaries. This also means SeedSigner the person (or any other SeedSigner contributors) don't need to be solely trusted for the image that most people run on thier SeedSigner. This trust can be distributed through others attesting they too can produce the same image byte for byte. Also for those who compile the image themselves, they have a way to verify the image produced is identical to the one released.

Steps to create a reproducible SeedSigner image

Clone the SeedSigner OS repo from github. Do this with a recursive clone to pull the buildroot submodule at the same time. By default this will create a directory in the current working directory named seedsigner-os.

git clone --recursive https://github.com/SeedSigner/seedsigner-os.git

For now the reproducible build is still a pull request so this additional step is required. The PR branch will need to be fetched and checked out locally. In the future the code to create reproducible builds will be on the main branch so this step would not be required. Also because this PR updates the buildroot submodule, an update to the submodule is required.

cd seedsigner-os
git fetch origin pull/51/head:pr_51
git checkout pr_51
git submodule update

Once you have the SeedSigner OS code repo, there are a few different ways to complete a build. The command documented here is meant to be a one-liner command to perform all steps required to make a final image. This command takes a decent amount of time and will download over 1 GB of dependencies. Docker and the Docker plugin compose is required to complete this next step.

DOCKER_DEFAULT_PLATFORM="linux/amd64" SS_ARGS="--pi0 --app-commit-id=9c36f5c" docker compose up --force-recreate --build
Output example if everything was successful
>>>   Executing post-image script ../pi4/board/post-image-seedsigner.sh
26+0 records in
26+0 records out
27262976 bytes (27 MB, 26 MiB) copied, 0.0147841 s, 1.8 GB/s
Checking that no-one is using this disk right now ... OK

Disk disk.img: 26 MiB, 27262976 bytes, 53248 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

>>> Script header accepted.
>>> Script header accepted.
>>> Created a new DOS disklabel with disk identifier 0xba5eba11.
disk.img1: Created a new partition 1 of type 'W95 FAT32 (LBA)' and of size 25 MiB.
disk.img2: Done.

New situation:
Disklabel type: dos
Disk identifier: 0xba5eba11

Device     Boot Start   End Sectors Size Id Type
disk.img1  *     2048 53247   51200  25M  c W95 FAT32 (LBA)

The partition table has been altered.
Syncing disks.

mkfs.fat 4.2 (2021-01-31)
/opt/buildroot
29e41cccf0ca93705901bacd5d605da884f9b8315cfd978910698c2f8e28b036  /opt/../images/seedsigner_os.9c36f5c.pi0.img

The build should have created an image in the image folder. Change working directories and list it.

cd images
ls -lh seedsigner_os.*

Now verify for yourself the hash of the seedsigner_os image.

sha256sum seedsigner_os.9c36f5c.pi0.img

Did you get 29e41cccf0ca93705901bacd5d605da884f9b8315cfd978910698c2f8e28b036?

🎉🎉🎉

See a list of the images you can build with the build script options and the boards they are for here: https://github.com/seedSigner/seedsigner-os#image-location-and-naming

You want more?

Breaking down the build steps

Instead of doing the one-liner command above you can follow these more broken down steps. These steps will still require using docker. I'm going to skip the above git clone and checkout commands above and assume you have those steps done. The command below assumes you are in the seedsigner-os repo working directory and are tagging the imager as seedsigner-os-build-host. The DOCKER_DEFAULT_PLATFORM is needed to force the build to be amd64 archituture. Reproducible builds for SeedSigner OS are currently only possible if built from the same host system architecture. I assume amd64 is the most widely available. You can leave off the DOCKER_DEFAULT_PLATFORM="linux/amd64" part if you want to build on your systems native architecture (which can be dramatically faster if your building on a non amd64 system).

DOCKER_DEFAULT_PLATFORM="linux/amd64" docker build -t seedsigner-os-build-host .

Next step is to start the container from the image you just created. This container will act as a clean host system to build the SeedSigner image. Run the container from the image you created interactively. We'll be overriding the image entrypoint and have to map the 2 volumes that docker-compose.yml would normally handle for us.

docker run --entrypoint bash -ti --name seedsigner-os-build-host-container \
-v ./opt:/opt \
-v ./images:/images \
seedsigner-os-build-host
Extra: command to remove seedsigner-os-build-host-container container if it already exists
docker rm seedsigner-os-build-host-container

You should now have a shell session open to the /opt working directory in the seedsigner-os-build-host-container container. Your shell prompt should read something like root@xxxxxxxxxxxx:/opt#. You can kick off the build.sh script and passing whatever options you'd like. You can run ./build.sh --help to see the list of command. To build a pi0 image run this command.

./build.sh --pi0 --app-commit-id=9c36f5c

Still not satisfied?

You can skip the build.sh script completely and interact with the buildroot commands directly to build the SeedSigner OS if you'd like. I'm going to skip setting up the docker container and assume you have a container running with a shell connected. You'll need to clone the app repo first to the right location to be copied into the image. Then delete everything but the src sub directory in opt.

rm -rf /opt/rootfs-overlay/opt
git clone https://github.com/SeedSigner/seedsigner.git /opt/rootfs-overlay/opt/
cd /opt/rootfs-overlay/opt/
git reset --hard "9c36f5c"
find /opt/rootfs-overlay/opt -not -path '/opt/rootfs-overlay/opt/src/*' -not -name 'src' -delete
cd /opt

Now setup buildroot from the /opt working directory to know where the board config you want to build is. This will create the Makefile in /output. This usually takes only a few seconds.

make BR2_EXTERNAL="../pi0/" O="/output" -C ./buildroot/ pi0_defconfig

Change to the build working directory /output and run make. This will take sometime and will produce an image named seedsigner_os.img in /output/images. This step takes the longest. Depending on your computer, expect it to run anywhere from 30 minutes to many hours.

cd /output
make

Bonus Round

Extracting Source from an image

Binwalk is a linux command line tool used to extract code from binaries. In this example we will extract the root file system (including the seedsigner app code) from an image file. First step is to install binwalk. For my example, I'm going to do this in my docker container that I just built the image from.

apt install -y binwalk

Once this is done you want to copy an image to a test location to extract.

mkdir /testing
cd /testing
cp /images/seedsigner_os.9c36f5c.pi0.img /testing/seedsigner_os.9c36f5c.pi0.img

Then use binwalk to breakdown and extract the contents of the image. This will produce a list of outputs with descriptions.

binwalk --extract seedsigner_os.9c36f5c.pi0.img

List the contents of the what was extracted. Identify the last largest data file not compressed and binwalk that file too.

cd _seedsigner_os.9c36f5c.pi0.img.extracted
ls -lh *
binwalk --extract 4D0E0C
cd _4D0E0C.extracted
ls -lh *

Now find the largest uncompressed file and run the file command to see what type of file it is. I would expect it to be a ASCII cpio archive.

file 74EFAC

Create a new folder to extract the root file system cpio archive.

mkdir rootfs
cd rootfs
cpio -i < ../74EFAC

You now have the root file system extracted with the source code in opt/src. I've md5 hashed, sorted and captured the contents for comparison here with this command md5deep -lr ./ | sort -k2 > ../rootfs.md5.chk.

output of rootfs.md5.chk
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/arch
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/ash
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/base32
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/base64
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/busybox
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/cat
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/chattr
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/chgrp
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/chmod
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/chown
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/cp
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/cpio
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/date
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/dd
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/df
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/dmesg
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/dumpkmap
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/echo
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/egrep
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/false
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/fdflush
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/fgrep
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/getopt
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/grep
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/gunzip
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/gzip
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/hostname
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/kill
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/link
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/linux32
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/linux64
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/ln
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/login
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/ls
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/lsattr
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/mkdir
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/mknod
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/mktemp
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/more
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/mount
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/mountpoint
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/mt
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/mv
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/nice
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/nuke
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/pidof
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/pipe_progress
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/printenv
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/ps
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/pwd
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/resume
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/rm
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/rmdir
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/run-parts
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/sed
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/setarch
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/setpriv
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/setserial
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/sh
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/sleep
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/stty
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/su
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/sync
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/tar
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/touch
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/true
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/umount
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/uname
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/usleep
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/vi
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/watch
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./bin/zcat
d41d8cd98f00b204e9800998ecf8427e  ./dev/console
317b3e57475a91dcca103897b4d60c7b  ./etc/fstab
eddb98059b2069aa6ccb7fcadab7774a  ./etc/group
782fa272b9d1c1fc93eae408b03a4b51  ./etc/hostname
27e818bede7ce0e57f0d85dcc193d219  ./etc/hosts
6b31f620c36bb2d6c54cfaf71cc5a086  ./etc/init.d/rcK
76f02a748149f1aa945aa418ea65b2bc  ./etc/init.d/rcS
89ef66c7cf527bc113c815f715e2fef5  ./etc/init.d/S02seedsigner
30f5962a454d15d55a0e1d749ac2237f  ./etc/init.d/S10mdev
28520362b562dbb2aaad39b8af86d97c  ./etc/inittab
9c787d669fc89eb25ef35ea877bc7ee0  ./etc/issue
a9c8fe8d7f0d75abf09b4ba777826ea0  ./etc/mdev.conf
3cb9ed0bbcd74f2b8a3b4463f5eb90a0  ./etc/mdev/mdev.sh
f0c6c4cd97dbe4dfb2d7e1db90c12697  ./etc/network/if-pre-up.d/wait_iface
3ddc9e6cbaa6ac1e55c1e37ba840c6c8  ./etc/network/interfaces
820295e1f75667811a3843384507f89b  ./etc/network/nfs_check
f632f5cbce86412e9d973653b05e700d  ./etc/nsswitch.conf
b2e6a87e4494feee42a0a903042c7554  ./etc/os-release
7c04e662b37e09a98c46141cf08fb247  ./etc/passwd
d8444e8a2595130625a33d34a35d0686  ./etc/profile
359ec096fae48c11cdb9adb8e113bc3c  ./etc/profile.d/umask.sh
a15e99b47a5596f2593399c71bf3bade  ./etc/protocols
9ebdc6f90a6070a1cdac5ecde97fbd33  ./etc/services
48411b4a74eab31bc1a68b34fb0f2531  ./etc/shadow
791bdb4d7d2b8c7ebc874f502145c87f  ./etc/shells
0ce9ca12c08f928da7dc3ffe99f24ba2  ./.gitignore
68b27177f9fe560b74f0c9e4c4fd53e1  ./init
0e475a7911ef98df17858250e5656c77  ./lib32/ld-linux-armhf.so.3
53f0c6ce5ed152ab49762d1f649db1a2  ./lib32/libanl.so.1
610d300d92460f2adbddaa03b8cdb40a  ./lib32/libatomic.so
610d300d92460f2adbddaa03b8cdb40a  ./lib32/libatomic.so.1
610d300d92460f2adbddaa03b8cdb40a  ./lib32/libatomic.so.1.2.0
a56f07f787911cf18992119989e1a527  ./lib32/libcrypt.so.1
3cb2023e9bf4ed8714ee9ddb1f3dce54  ./lib32/libc.so.6
a046c3f7979e9f75efe6b1846ff80e16  ./lib32/libdl.so.2
e90f13d2c5b8c878ee56fb1bf00004be  ./lib32/libgcc_s.so
f674a3aa437e7359c4e4670a31fe2d6e  ./lib32/libgcc_s.so.1
81a673d11de8052bcd3b6c7872b91cf1  ./lib32/libm.so.6
d1d9c927cbade22238313b91889c3c60  ./lib32/libnss_dns.so.2
f8805acde75fdbff548039f7a08508de  ./lib32/libnss_files.so.2
8eb27eb323bfab57e987e69cc25b487a  ./lib32/libpthread.so.0
8682fd5923152641d5067d1a3e186249  ./lib32/libresolv.so.2
fb3b20ae7684c31a077399562e1b75bc  ./lib32/librt.so.1
c1d983f191c28986ab19a9532db9cf94  ./lib32/libutil.so.1
0e475a7911ef98df17858250e5656c77  ./lib/ld-linux-armhf.so.3
53f0c6ce5ed152ab49762d1f649db1a2  ./lib/libanl.so.1
610d300d92460f2adbddaa03b8cdb40a  ./lib/libatomic.so
610d300d92460f2adbddaa03b8cdb40a  ./lib/libatomic.so.1
610d300d92460f2adbddaa03b8cdb40a  ./lib/libatomic.so.1.2.0
a56f07f787911cf18992119989e1a527  ./lib/libcrypt.so.1
3cb2023e9bf4ed8714ee9ddb1f3dce54  ./lib/libc.so.6
a046c3f7979e9f75efe6b1846ff80e16  ./lib/libdl.so.2
e90f13d2c5b8c878ee56fb1bf00004be  ./lib/libgcc_s.so
f674a3aa437e7359c4e4670a31fe2d6e  ./lib/libgcc_s.so.1
81a673d11de8052bcd3b6c7872b91cf1  ./lib/libm.so.6
d1d9c927cbade22238313b91889c3c60  ./lib/libnss_dns.so.2
f8805acde75fdbff548039f7a08508de  ./lib/libnss_files.so.2
8eb27eb323bfab57e987e69cc25b487a  ./lib/libpthread.so.0
8682fd5923152641d5067d1a3e186249  ./lib/libresolv.so.2
fb3b20ae7684c31a077399562e1b75bc  ./lib/librt.so.1
c1d983f191c28986ab19a9532db9cf94  ./lib/libutil.so.1
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./linuxrc
89611535315616701cfa502c5ebcc2f4  ./opt/.coveragerc
9c891af09001df1e9936c57cdd492b17  ./opt/src/main.py
36f3d4e51e976ef8d6bd63da90275363  ./opt/src/seedsigner/controller.py
08be79851458d4a60797f4550a2fd2ed  ./opt/src/seedsigner/gui/components.py
3126cf28cf13d5a05232bbd10a8e3dfb  ./opt/src/seedsigner/gui/__init__.py
bfb2b7031e29b8bffd8085151ff76a08  ./opt/src/seedsigner/gui/keyboard.py
fd42416120ba8ee55c19ba2ee73acff6  ./opt/src/seedsigner/gui/renderer.py
4e9382a13315c51e134763d50e469d6a  ./opt/src/seedsigner/gui/screens/__init__.py
0603ad54271b17626a7b538e0c8cbea6  ./opt/src/seedsigner/gui/screens/psbt_screens.py
38cc86e608a6405e2aee6d92570c8197  ./opt/src/seedsigner/gui/screens/scan_screens.py
1bc21c65ce8100540d3e975629b82b1a  ./opt/src/seedsigner/gui/screens/screen.py
ca2991c1bd5ce9cf20f7a65cabd7f52a  ./opt/src/seedsigner/gui/screens/seed_screens.py
86c1ca807b3ec2a7a06c3aa6e9724acc  ./opt/src/seedsigner/gui/screens/settings_screens.py
b5d776dd3525dc10de8972c5b5300803  ./opt/src/seedsigner/gui/screens/tools_screens.py
25bd980ec8a5f27f400d65ef87961316  ./opt/src/seedsigner/hardware/buttons.py
9230187f2eb506f102af62938a329e39  ./opt/src/seedsigner/hardware/camera.py
d41d8cd98f00b204e9800998ecf8427e  ./opt/src/seedsigner/hardware/__init__.py
60ec862fb99d34f9323b063c6dd9806d  ./opt/src/seedsigner/hardware/microsd.py
46784aace4d284139d50fa837adf859a  ./opt/src/seedsigner/hardware/pivideostream.py
31b537ef0a5962fd89e306af19235ec1  ./opt/src/seedsigner/hardware/ST7789.py
6e9b6e2d08041df4d346852193dcc9af  ./opt/src/seedsigner/helpers/embit_utils.py
d41d8cd98f00b204e9800998ecf8427e  ./opt/src/seedsigner/helpers/__init__.py
40ac1c7f51bd90ce8e8d31cf4d0aa690  ./opt/src/seedsigner/helpers/mnemonic_generation.py
ce699ce1aa7501cd931d80a096780a62  ./opt/src/seedsigner/helpers/qr.py
ee7e49972d14aace6048978a8ad93b42  ./opt/src/seedsigner/helpers/ur2/bytewords.py
4731bddb9a325c62a7f43ca999883610  ./opt/src/seedsigner/helpers/ur2/cbor_lite.py
935ac901efea0ebb5d6bd4a0d47148a6  ./opt/src/seedsigner/helpers/ur2/constants.py
ed94bdf2e900699ecb091e0fb4c4098c  ./opt/src/seedsigner/helpers/ur2/crc32.py
499ffc723fa11202b9301730a296dff3  ./opt/src/seedsigner/helpers/ur2/fountain_decoder.py
033a2d5f54eb495d5f7f2ecbac5081af  ./opt/src/seedsigner/helpers/ur2/fountain_encoder.py
6c78d47282fd5a4b317ceffae9503fa6  ./opt/src/seedsigner/helpers/ur2/fountain_utils.py
d41d8cd98f00b204e9800998ecf8427e  ./opt/src/seedsigner/helpers/ur2/__init__.py
6bcc783bf01016bf98825536486a879f  ./opt/src/seedsigner/helpers/ur2/LICENSE
255b10ac284bda2c5f45dab261e73003  ./opt/src/seedsigner/helpers/ur2/random_sampler.py
0fde75c4989d9bfda13ac8e5e21fd5dd  ./opt/src/seedsigner/helpers/ur2/ur_decoder.py
3b8a9864b72d95b92f83888c110d3b01  ./opt/src/seedsigner/helpers/ur2/ur_encoder.py
8e9a49c752efa904bd6cd7557c0e986b  ./opt/src/seedsigner/helpers/ur2/ur.py
e046d7cad23b9ae21c63e05c6f737750  ./opt/src/seedsigner/helpers/ur2/utils.py
fe400c4ab353c0de734ee797e3fbef1c  ./opt/src/seedsigner/helpers/ur2/xoshiro256.py
d41d8cd98f00b204e9800998ecf8427e  ./opt/src/seedsigner/__init__.py
3fd8f854a490349ef4188917de7930f5  ./opt/src/seedsigner/models/decode_qr.py
d6fd9b7125ba5b949d6b1488f698227f  ./opt/src/seedsigner/models/encode_qr.py
fb68efd603be0b7ee48275e60d130993  ./opt/src/seedsigner/models/__init__.py
12f48ad28b66b135112188b8b96639b0  ./opt/src/seedsigner/models/psbt_parser.py
07dba6f631f84c71beddd95e69da65b7  ./opt/src/seedsigner/models/qr_type.py
c720a8b229c4d44e681fda9cc656fc2a  ./opt/src/seedsigner/models/seed.py
e2ecc49f877548976fe1965c5ecaa67a  ./opt/src/seedsigner/models/seed_storage.py
bd4ac192d8729a610a0cff2808e84dc9  ./opt/src/seedsigner/models/settings_definition.py
0001f657db354734ea53b411bebf4d59  ./opt/src/seedsigner/models/settings.py
42a90e2c21db37b2524fc240dd5ccc42  ./opt/src/seedsigner/models/singleton.py
5263b2e8b2bea000747ca581228699f8  ./opt/src/seedsigner/models/threads.py
377d8fdf20255dd4531d068789fc7a30  ./opt/src/seedsigner/resources/fonts/Font_Awesome_6_Free-Solid-900.otf
39cba59a48ffa6eea39a5d5f9ec63df6  ./opt/src/seedsigner/resources/fonts/Inconsolata-Regular.ttf
67d275b4059c2e7958f5025b381697b3  ./opt/src/seedsigner/resources/fonts/Inconsolata-SemiBold.ttf
3ed9575dcc488c3e3a5bd66620bdf5a4  ./opt/src/seedsigner/resources/fonts/OpenSans-Regular.ttf
ba5cde21eeea0d57ab7efefc99596cce  ./opt/src/seedsigner/resources/fonts/OpenSans-SemiBold.ttf
cbd4e701269338259ee0b39a0b768167  ./opt/src/seedsigner/resources/fonts/RobotoCondensed-Bold.ttf
52ee8b598488b1ffbaa93e50cbd6a2f4  ./opt/src/seedsigner/resources/fonts/RobotoCondensed-Regular.ttf
9057de573354cde3f7b246765f2425e3  ./opt/src/seedsigner/resources/fonts/seedsigner-glyphs.otf
b7e751e9d47d2515d939b18912ac4782  ./opt/src/seedsigner/resources/icons/arrow-down.png
50a23762b2218a42d8c38e49783956a4  ./opt/src/seedsigner/resources/icons/arrow-down_selected.png
d00345f0c974c863b65f84849b1c0ad8  ./opt/src/seedsigner/resources/icons/arrow-up.png
6ea314febe844e7288c1febdf50adae6  ./opt/src/seedsigner/resources/icons/arrow-up_selected.png
5ba26a9da8fdada59419f5bcc9d06bc4  ./opt/src/seedsigner/resources/icons/back.png
3f0935f333a6803a7744c9e298d15e7c  ./opt/src/seedsigner/resources/icons/back_selected.png
be23085e825e56b3ffee068f083ea194  ./opt/src/seedsigner/resources/icons/btc_logo_30x30.png
1b3dc0ce4fe26eb7ee4999086bc438e5  ./opt/src/seedsigner/resources/icons/btc_logo_bw.png
4b4c3532f9b80b8b90daa17ab19425d2  ./opt/src/seedsigner/resources/icons/btc_logo.png
fe7a0847694ed86d0770c5f73ab1f33f  ./opt/src/seedsigner/resources/icons/dire_warning.png
add2e6446fa440b9545ec5ebf5f1b042  ./opt/src/seedsigner/resources/icons/warning.png
0070cfad2d6e40223079987c33229e8f  ./opt/src/seedsigner/resources/img/btc_logo_60x60.png
818e18243f66e252d50a7d9449846570  ./opt/src/seedsigner/resources/img/logo_black_240.png
5ae432b2343dc76736a565d2f1e228d0  ./opt/src/seedsigner/resources/img/partners/hrf_logo.png
06ea30c57024e52920557cc8db832d99  ./opt/src/seedsigner/views/__init__.py
7326f189b9b8bda9f71f4cf103510923  ./opt/src/seedsigner/views/psbt_views.py
f66c379c722c5181164da281e487bfcf  ./opt/src/seedsigner/views/scan_views.py
90ee341ab85fa5147580f96bbaf0e7f0  ./opt/src/seedsigner/views/screensaver.py
e2bc96726f003cf1cb5a9aebee89d9f4  ./opt/src/seedsigner/views/seed_views.py
8915366c5fd6ed86deeee3ac94a4386d  ./opt/src/seedsigner/views/settings_views.py
497cdbf863c14d2194f154e3338c8b12  ./opt/src/seedsigner/views/tools_views.py
a08d40cc3c7ad3f795486fa18ad108df  ./opt/src/seedsigner/views/view.py
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/blkid
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/devmem
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/fdisk
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/freeramdisk
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/fsck
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/fstrim
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/getty
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/halt
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/hdparm
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/hwclock
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/init
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/klogd
2afc14741240730ecb90da79510e0511  ./sbin/ldconfig
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/loadkmap
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/losetup
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/lsmod
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/makedevs
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/mdev
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/mkdosfs
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/mke2fs
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/mkswap
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/modprobe
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/pivot_root
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/poweroff
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/reboot
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/rmmod
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/run-init
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/runlevel
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/setconsole
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/start-stop-daemon
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/sulogin
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/swapoff
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/swapon
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/switch_root
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/sysctl
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/syslogd
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/uevent
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./sbin/watchdog
94bc82dd88eb8c38fdcebf005453fe86  ./start.sh
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/[
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/[[
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/ar
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/ascii
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/awk
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/basename
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/bc
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/bunzip2
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/bzcat
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/chrt
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/chvt
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/cksum
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/clear
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/cmp
19402f53e652b8cd753d4e54f685e4bd  ./usr/bin/containers_check_frame_int
b0f60661ee80fe972e9c1112a618fcbc  ./usr/bin/containers_datagram_receiver
df17a267ce5a7345681790208e91ea1f  ./usr/bin/containers_datagram_sender
8a436b2ee63f25cd1a90a0dcdf79bde0  ./usr/bin/containers_dump_pktfile
ff406b0af3702d6c970c3cbfab3a23f2  ./usr/bin/containers_rtp_decoder
dc51bc0b17ae9c8e8058cb559f22e161  ./usr/bin/containers_stream_client
0b92ad3cf92eb64bc6f37b960fc73e97  ./usr/bin/containers_stream_server
c6974207dac2757089e97df0294c7340  ./usr/bin/containers_test
924f027eaa94a901873d1ea58d77a2aa  ./usr/bin/containers_test_bits
bbbb33037fe09f48bff9f376ddeb39c6  ./usr/bin/containers_test_uri
eb30314e3c0ca03fad091044007678af  ./usr/bin/containers_uri_pipe
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/crc32
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/crontab
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/cut
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/dc
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/deallocvt
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/diff
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/dirname
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/dos2unix
58ab6e69e1f14034c5b2c41ed32db61b  ./usr/bin/dtmerge
d5a08aa4ba1f006b74efa985b1d228f7  ./usr/bin/dtoverlay
165786fea4b763dcefec16700e153c2a  ./usr/bin/dtoverlay-post
fc34e47c35808399555c0020caecfc78  ./usr/bin/dtoverlay-pre
d5a08aa4ba1f006b74efa985b1d228f7  ./usr/bin/dtparam
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/du
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/eject
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/env
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/expr
149ddb13f784d3f11bd0d5302da71342  ./usr/bin/f2py
3ceebe5c40dd1d3548dc17bc9ed17028  ./usr/bin/f2py3
d649d9336eadb61b6f4119fd3c2a3d1c  ./usr/bin/f2py3.10
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/factor
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/fallocate
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/find
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/flock
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/fold
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/free
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/fuser
2b05e08b94f06311669778a1959c05eb  ./usr/bin/getconf
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/head
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/hexdump
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/hexedit
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/hostid
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/id
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/install
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/ipcrm
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/ipcs
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/killall
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/last
78b98f4c91c11022dc1c1ac9b9b520e1  ./usr/bin/ldd
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/less
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/logger
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/logname
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/lsof
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/lspci
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/lsscsi
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/lsusb
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/lzcat
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/lzma
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/lzopcat
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/md5sum
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/mesg
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/microcom
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/mkfifo
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/mkpasswd
8f974c073f1fabe03406f26c17d22ecd  ./usr/bin/mmal_vc_diag
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/nl
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/nohup
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/nproc
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/od
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/openvt
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/passwd
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/paste
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/patch
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/printf
9aa73342974c47b0a61817bee0a7d5c6  ./usr/bin/python
9aa73342974c47b0a61817bee0a7d5c6  ./usr/bin/python3
9aa73342974c47b0a61817bee0a7d5c6  ./usr/bin/python3.10
c6285873342631219995abf299982b8b  ./usr/bin/qr
f60ca0ce3d0d554589d68081cfd113e3  ./usr/bin/qrencode
10ae2a335dedb9c887715c5ef059f0df  ./usr/bin/raspistill
08d4de92db475f1e104ba479e5737092  ./usr/bin/raspivid
5d88e27eb2d45627e1bd2f15daf16e72  ./usr/bin/raspividyuv
d85590edca25bc187c5988f4bf16f351  ./usr/bin/raspiyuv
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/readlink
067aa184f451fdb1afb8c4b25cf92c66  ./usr/bin/read_zbar
83eabd52ee549352fd8e039dd19d3b61  ./usr/bin/read_zbar.py
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/realpath
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/renice
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/reset
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/resize
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/seq
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/setfattr
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/setkeycodes
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/setsid
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/sha1sum
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/sha256sum
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/sha3sum
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/sha512sum
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/shred
6c69f335fff6681c77250ea3383de93f  ./usr/bin/smtpd.py.10
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/sort
16d27e55785c90f28ec275c96c7fce3e  ./usr/bin/spi-config
9bebe13e884668c3534e26451adfea79  ./usr/bin/spi-pipe
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/strings
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/svc
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/svok
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/tail
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/tee
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/test
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/time
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/top
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/tr
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/tree
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/truncate
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/ts
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/tsort
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/tty
63ca374260d0efccf49209437c002937  ./usr/bin/tvservice
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/uniq
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/unix2dos
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/unlink
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/unlzma
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/unlzop
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/unxz
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/unzip
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/uptime
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/uudecode
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/uuencode
12c4d16e3763b15c4d577253ddb39a41  ./usr/bin/vcgencmd
23089e3988d30c90859dc94c442e0867  ./usr/bin/vchiq_test
f50a0fb426077f608c0778ec4be78497  ./usr/bin/vcmailbox
2849bfa5923201094502a33f36edbee7  ./usr/bin/vcsmem
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/vlock
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/w
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/wc
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/which
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/who
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/whoami
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/xargs
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/xxd
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/xz
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/xzcat
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/bin/yes
1d099e32c6621eca0a4488b74c0eae33  ./usr/bin/zbarcam
404ce68ba7e27c9de80490f64eefe09e  ./usr/lib32/libbcm_host.so
395c85a8e3c88691f7fe9e2865a7820c  ./usr/lib32/libbrcmEGL.so
6ef1201475cba79c976b39f6cbee3b5f  ./usr/lib32/libbrcmGLESv2.so
264a7c44c285716a418580a8ba76b2d0  ./usr/lib32/libbrcmOpenVG.so
b4a153bb1a04b8e4f21b91b036b6ebf5  ./usr/lib32/libbrcmWFC.so
fb702ebd791aaa45cb0a34ade375de6a  ./usr/lib32/libcontainers.so
f7f6c304285f804d57e800c3593e0a01  ./usr/lib32/libdebug_sym.so
f58cf423f95715315b253d8e3d700cc6  ./usr/lib32/libdtovl.so
3e11855fef15ab58285704ca4e4e3056  ./usr/lib32/libEGL.so
a4b2ebdecc3ca45b5cbb963bd0cadc63  ./usr/lib32/libexpat.so
a4b2ebdecc3ca45b5cbb963bd0cadc63  ./usr/lib32/libexpat.so.1
a4b2ebdecc3ca45b5cbb963bd0cadc63  ./usr/lib32/libexpat.so.1.8.10
96d969979b0ca9b590ca408b4fc14969  ./usr/lib32/libffi.so
96d969979b0ca9b590ca408b4fc14969  ./usr/lib32/libffi.so.8
96d969979b0ca9b590ca408b4fc14969  ./usr/lib32/libffi.so.8.1.2
770aaa0de5016682410857bcf36836e6  ./usr/lib32/libfreetype.so
770aaa0de5016682410857bcf36836e6  ./usr/lib32/libfreetype.so.6
770aaa0de5016682410857bcf36836e6  ./usr/lib32/libfreetype.so.6.18.3
080cf5ccf3d9c3348635e8a0e377036d  ./usr/lib32/libGLESv2.so
33bcaab1cf169f5467907ad0c28a9259  ./usr/lib32/libjpeg.so
33bcaab1cf169f5467907ad0c28a9259  ./usr/lib32/libjpeg.so.9
33bcaab1cf169f5467907ad0c28a9259  ./usr/lib32/libjpeg.so.9.5.0
520de383150435d18707d855f5382dcc  ./usr/lib32/libkhrn_client.so
0fa325507e88a2cd7b9151597491b3d4  ./usr/lib32/libmmal_components.so
37b599a557db880d45777b11f2fb8f69  ./usr/lib32/libmmal_core.so
5afbc2b23959a38f730d1718dd9d3705  ./usr/lib32/libmmal.so
b1bc4f25bc8a98ab9fc374f9ba15ae99  ./usr/lib32/libmmal_util.so
ba9aaf7d20cc2f28a7cd00e2ef749483  ./usr/lib32/libmmal_vc_client.so
ae56cdea8f65ac819530bf4e51a3daf8  ./usr/lib32/libopenmaxil.so
f1a12a1ba705b70deec13d721b6bd79e  ./usr/lib32/libOpenVG.so
801280648e20d2f15f253f21bab0b7bd  ./usr/lib32/libpng16.so
801280648e20d2f15f253f21bab0b7bd  ./usr/lib32/libpng16.so.16
801280648e20d2f15f253f21bab0b7bd  ./usr/lib32/libpng16.so.16.39.0
801280648e20d2f15f253f21bab0b7bd  ./usr/lib32/libpng.so
46ed8dfc132d0873a9b78993b2791207  ./usr/lib32/libpython3.10.so
46ed8dfc132d0873a9b78993b2791207  ./usr/lib32/libpython3.10.so.1.0
0e6c20ef1a8a3262fc2a01eff9114c75  ./usr/lib32/libpython3.so
37d73eac98448a4a5826cc0546463ee7  ./usr/lib32/libqrencode.so
37d73eac98448a4a5826cc0546463ee7  ./usr/lib32/libqrencode.so.4
37d73eac98448a4a5826cc0546463ee7  ./usr/lib32/libqrencode.so.4.1.1
79a8b5589878a53ed26026cdbf4422ef  ./usr/lib32/libstdc++.so
79a8b5589878a53ed26026cdbf4422ef  ./usr/lib32/libstdc++.so.6
79a8b5589878a53ed26026cdbf4422ef  ./usr/lib32/libstdc++.so.6.0.29
7fbb8e01200439b562ec0200115a8cdb  ./usr/lib32/libstdc++.so.6.0.29-gdb.py
fc35548acdf65453395009e0d4c5631b  ./usr/lib32/libv4l1.so
fc35548acdf65453395009e0d4c5631b  ./usr/lib32/libv4l1.so.0
fc35548acdf65453395009e0d4c5631b  ./usr/lib32/libv4l1.so.0.0.0
20c8fa9d811d5f66ebc075c36481dd5c  ./usr/lib32/libv4l2rds.so
20c8fa9d811d5f66ebc075c36481dd5c  ./usr/lib32/libv4l2rds.so.0
20c8fa9d811d5f66ebc075c36481dd5c  ./usr/lib32/libv4l2rds.so.0.0.0
832950adfe09534827034efcefbe393f  ./usr/lib32/libv4l2.so
832950adfe09534827034efcefbe393f  ./usr/lib32/libv4l2.so.0
832950adfe09534827034efcefbe393f  ./usr/lib32/libv4l2.so.0.0.0
592a3652776c7351d97a731090252631  ./usr/lib32/libv4lconvert.so
592a3652776c7351d97a731090252631  ./usr/lib32/libv4lconvert.so.0
592a3652776c7351d97a731090252631  ./usr/lib32/libv4lconvert.so.0.0.0
1ef3d5e390ab05e112ab63e75bbd2894  ./usr/lib32/libv4l/ov511-decomp
8b4ac68f8d5b1dc377d4efcb5199d3fe  ./usr/lib32/libv4l/ov518-decomp
6f3da8456530f8bae2e9c978b40711fd  ./usr/lib32/libv4l/plugins/libv4l-mplane.so
0065c97bb8ddf0a97914989b9abaa55e  ./usr/lib32/libv4l/v4l1compat.so
18373e7989fa769b52a552c726721e7b  ./usr/lib32/libv4l/v4l2convert.so
0ee483a216863ed58b5d380dff6025dd  ./usr/lib32/libvchiq_arm.so
074717533072d1719406439b1cf4abea  ./usr/lib32/libvchostif.so
34b5f7a2230c39c2e9e01cb404e80ffa  ./usr/lib32/libvcilcs.so
893cb2f78fbab2f2c432f333797d8382  ./usr/lib32/libvcos.so
e5ce546b8bbe94a4b301343234bd20c3  ./usr/lib32/libvcsm.so
e6ad443dd7a98174c1af253ee3f2d10c  ./usr/lib32/libWFC.so
e43ecbebd51a9c0de87c90068c3dd90c  ./usr/lib32/libzbar.so
e43ecbebd51a9c0de87c90068c3dd90c  ./usr/lib32/libzbar.so.0
e43ecbebd51a9c0de87c90068c3dd90c  ./usr/lib32/libzbar.so.0.3.0
dbf080a4dc03df7e02872f9b10f72dc1  ./usr/lib32/libz.so
dbf080a4dc03df7e02872f9b10f72dc1  ./usr/lib32/libz.so.1
dbf080a4dc03df7e02872f9b10f72dc1  ./usr/lib32/libz.so.1.2.13
b2e6a87e4494feee42a0a903042c7554  ./usr/lib32/os-release
385f833971004ed4505e7296f05ad6c7  ./usr/lib32/plugins/reader_asf.so
486f2ed0ffa38eeeb11f295bef408b99  ./usr/lib32/plugins/reader_avi.so
49617c1acd7341d458974024360f0012  ./usr/lib32/plugins/reader_binary.so
0088234a7605f8920f53b40827a185d5  ./usr/lib32/plugins/reader_flv.so
31cf01ded7b81e17dd6f798494db8830  ./usr/lib32/plugins/reader_metadata_id3.so
583425d2f7484f2952f4175a58de0a32  ./usr/lib32/plugins/reader_mkv.so
536831b5912ae7b927b9e07a67abe81d  ./usr/lib32/plugins/reader_mp4.so
c6d11202d2f6f46161ed553cef02a2f8  ./usr/lib32/plugins/reader_mpga.so
4355d69c0eee9f2446e871f7634b5fb2  ./usr/lib32/plugins/reader_ps.so
111789383d17ca2b9decb34bf26c535f  ./usr/lib32/plugins/reader_qsynth.so
802edb8d371c72a0a41fa38935aac61c  ./usr/lib32/plugins/reader_raw_video.so
2b876dd38e001cdd9fc64354f5126648  ./usr/lib32/plugins/reader_rcv.so
6ee58e42cd924ff99cb943b2a762502b  ./usr/lib32/plugins/reader_rtp.so
37b3b0d94a2c544d2828a613617d6dc3  ./usr/lib32/plugins/reader_rtsp.so
f09e7246d2f2a93d8774af82bb20c8d6  ./usr/lib32/plugins/reader_rv9.so
9f3c26983e9eb5bf16ed22f0f702ba2f  ./usr/lib32/plugins/reader_simple.so
aba8c898bcc49b201e1c8b0dc8ba0a62  ./usr/lib32/plugins/reader_wav.so
ea17ce9c314047ac8fa5087204249862  ./usr/lib32/plugins/writer_asf.so
bb250727aea05a78b9e7f45f84750991  ./usr/lib32/plugins/writer_avi.so
dca00b9e6d7fae1185aca9e9c98f840a  ./usr/lib32/plugins/writer_binary.so
0321db9cbfa9b346875da5c752c9a2bf  ./usr/lib32/plugins/writer_dummy.so
558456bfbef496bd81412c0061701660  ./usr/lib32/plugins/writer_mp4.so
39e9c528e9c88ee9b301d45e9cb80637  ./usr/lib32/plugins/writer_raw_video.so
48d36675b4e28bf3d1dd2789c19de0f4  ./usr/lib32/plugins/writer_simple.so
e39b2bc81f5403b44296a23486d6aa16  ./usr/lib32/python3.10/abc.pyc
5e1e506db8f0ea39cdf97e2738c8b5be  ./usr/lib32/python3.10/aifc.pyc
2274b27fa6ebbaaa7d2b919696ac7983  ./usr/lib32/python3.10/_aix_support.pyc
100f23d1e12ae31664ec53f1890bf660  ./usr/lib32/python3.10/antigravity.pyc
48ce02a1015c934ba619085ab7f597a6  ./usr/lib32/python3.10/argparse.pyc
3317e1c6dec4f674ece69292bb33ee99  ./usr/lib32/python3.10/ast.pyc
b85a4a6396b3948e3568f5e49077d9ed  ./usr/lib32/python3.10/asynchat.pyc
6067bcb6c8daeb43a31e24e2e3645208  ./usr/lib32/python3.10/asyncio/base_events.pyc
602c43bad29721c3879e65b2c147da20  ./usr/lib32/python3.10/asyncio/base_futures.pyc
56bd4d293b89d7ff7ed58f8086c83386  ./usr/lib32/python3.10/asyncio/base_subprocess.pyc
c18b3e1cc99e371701a7ab680c506812  ./usr/lib32/python3.10/asyncio/base_tasks.pyc
d731e5d42c16a24316227e6a44960935  ./usr/lib32/python3.10/asyncio/constants.pyc
1e0ef4886b21aa1355495ecfab5ecc4c  ./usr/lib32/python3.10/asyncio/coroutines.pyc
fd1fec5699182dcab955bd8b2bae4b30  ./usr/lib32/python3.10/asyncio/events.pyc
530b04ef2924e89dfcd57314dbdf9d56  ./usr/lib32/python3.10/asyncio/exceptions.pyc
67b3d9ccc9cc12e87319f3ddade89894  ./usr/lib32/python3.10/asyncio/format_helpers.pyc
793638899a658280df1dc31c657e97ea  ./usr/lib32/python3.10/asyncio/futures.pyc
199a245d1782809bf8f305962a6794e3  ./usr/lib32/python3.10/asyncio/__init__.pyc
2b175f711c3944d63708d128f3956ed1  ./usr/lib32/python3.10/asyncio/locks.pyc
65ea76186849360ceea3e3820ce18a99  ./usr/lib32/python3.10/asyncio/log.pyc
0e4094c7074d2709c43d6df531231273  ./usr/lib32/python3.10/asyncio/__main__.pyc
70b134782cf23f9384ffe232f93f937f  ./usr/lib32/python3.10/asyncio/mixins.pyc
33ae401fc68b0c98c2cccd38a95fffdd  ./usr/lib32/python3.10/asyncio/proactor_events.pyc
49b0cc2792bf134e626093e36d74da14  ./usr/lib32/python3.10/asyncio/protocols.pyc
8df1f1b0cb86f66c66ce4ddef978e0c4  ./usr/lib32/python3.10/asyncio/queues.pyc
43324951780eba34e03f6b25cd848745  ./usr/lib32/python3.10/asyncio/runners.pyc
00a9fe6df6f9654e5628082a24317eac  ./usr/lib32/python3.10/asyncio/selector_events.pyc
f3d4a9d763eb0689a9c020a075ddcaad  ./usr/lib32/python3.10/asyncio/sslproto.pyc
b94001ceed111bd12b2fc20771356a12  ./usr/lib32/python3.10/asyncio/staggered.pyc
814650e485345f552960dbaee38a0338  ./usr/lib32/python3.10/asyncio/streams.pyc
438d9e739fd0f3349e3b6dfd6fe522db  ./usr/lib32/python3.10/asyncio/subprocess.pyc
9562a7ab6be4a1ae74bb9663edceae93  ./usr/lib32/python3.10/asyncio/tasks.pyc
0019f9abea81c89422d348053bd36f70  ./usr/lib32/python3.10/asyncio/threads.pyc
e43146a0a7ee439124a0796d12c211b7  ./usr/lib32/python3.10/asyncio/transports.pyc
8c02ee6fb2efaedf11f82bc5ea5d1bee  ./usr/lib32/python3.10/asyncio/trsock.pyc
4a8ea4bed63be2516e09bdf1309e2a31  ./usr/lib32/python3.10/asyncio/unix_events.pyc
58435329fbdeacb2e8d489def78f81f2  ./usr/lib32/python3.10/asyncio/windows_events.pyc
f872629897baad0b4116bfc5a54b49d3  ./usr/lib32/python3.10/asyncio/windows_utils.pyc
0f3d24d5b95dc2ce5292e660efaf8cc3  ./usr/lib32/python3.10/asyncore.pyc
1584456b2d3f56cd0969c09eac3a1d10  ./usr/lib32/python3.10/base64.pyc
9497db31b899abf8703c8a7f5af0acb0  ./usr/lib32/python3.10/bdb.pyc
b3a80212d76b1ecad284289c685283ed  ./usr/lib32/python3.10/binhex.pyc
90a6b20b6e4d53dce31bd2d5ec1d7074  ./usr/lib32/python3.10/bisect.pyc
891a91ee37a4e11b218aceeaaf79af42  ./usr/lib32/python3.10/_bootsubprocess.pyc
e2877dd6693165ee23ed0154334e8fa4  ./usr/lib32/python3.10/bz2.pyc
e1ae7e68bc4e93055824294a4471bed0  ./usr/lib32/python3.10/calendar.pyc
7f7c14eabc591f95138adb55a16399b8  ./usr/lib32/python3.10/cgi.pyc
f16e8ca9fd291ea408748a8979f61e15  ./usr/lib32/python3.10/cgitb.pyc
ddc516702e670c272305c82429ddaf8b  ./usr/lib32/python3.10/chunk.pyc
9cd635d295fae1d2bcbe57c54188416f  ./usr/lib32/python3.10/cmd.pyc
13fc4d2cf97f260a54db9afef6b869a8  ./usr/lib32/python3.10/codecs.pyc
50aa986303876c5d5412893b33602f71  ./usr/lib32/python3.10/codeop.pyc
c9d113d7d0677d38641ef5349590c980  ./usr/lib32/python3.10/code.pyc
b75bd11073ec12f0854b1b2bd9190b0f  ./usr/lib32/python3.10/collections/abc.pyc
bd83e148b49efe601752738a0e826075  ./usr/lib32/python3.10/_collections_abc.pyc
3852e3941a0f7055b6e2b210c1661c23  ./usr/lib32/python3.10/collections/__init__.pyc
fcee8797ccec50a46541d2e7669965c4  ./usr/lib32/python3.10/colorsys.pyc
107d401ffd7c8761104f74f16bea1165  ./usr/lib32/python3.10/_compat_pickle.pyc
f8e7a0fb0f54f3427dc2241b054af3bf  ./usr/lib32/python3.10/compileall.pyc
6c5e9411e3f598ecd446d25ac72aa545  ./usr/lib32/python3.10/_compression.pyc
6f4d1f0788a1f4a57e5d6789794a36d1  ./usr/lib32/python3.10/concurrent/futures/_base.pyc
762db18bdce0f1f4767c33346770da2e  ./usr/lib32/python3.10/concurrent/futures/__init__.pyc
7d480889a5679dc22912b7761f005e52  ./usr/lib32/python3.10/concurrent/futures/process.pyc
d96eb24825d54137861fdf0222692977  ./usr/lib32/python3.10/concurrent/futures/thread.pyc
bfe9cdda26cc9af8cc7931203fc5f8d1  ./usr/lib32/python3.10/concurrent/__init__.pyc
3346d6e7aa6334f7a99893ed46dbe810  ./usr/lib32/python3.10/config-3.10-arm-linux-gnueabihf/config.c
35de682ece0a705c5bb4f25d68213aab  ./usr/lib32/python3.10/config-3.10-arm-linux-gnueabihf/config.c.in
b090c5891571c820e91d345a9551af44  ./usr/lib32/python3.10/config-3.10-arm-linux-gnueabihf/install-sh
c84d824a02babd60ddc08835da1a1183  ./usr/lib32/python3.10/config-3.10-arm-linux-gnueabihf/makesetup
883cf31b3e5503f5a699562e91f64906  ./usr/lib32/python3.10/config-3.10-arm-linux-gnueabihf/python-config.pyc
ebaac818e48b28148180d449d2dcdb94  ./usr/lib32/python3.10/config-3.10-arm-linux-gnueabihf/python.o
58f9a356a7613d26ccb2caa7ea21d491  ./usr/lib32/python3.10/config-3.10-arm-linux-gnueabihf/Setup
f78e3a8770057df86847e97b6979fd11  ./usr/lib32/python3.10/config-3.10-arm-linux-gnueabihf/Setup.local
256683d9ec599acdcc66a73ab866e56a  ./usr/lib32/python3.10/configparser.pyc
669abc5a0aac8e1bdc855182652be861  ./usr/lib32/python3.10/contextlib.pyc
d1eb54e0fa0c1dfa34dbaec0dd1035fe  ./usr/lib32/python3.10/contextvars.pyc
3f26b1a3086532cb450546f34684ce8d  ./usr/lib32/python3.10/copy.pyc
069caa92ebca8521a8eac95ec6ec357b  ./usr/lib32/python3.10/copyreg.pyc
29e78547580013574b7e20d89539a8ff  ./usr/lib32/python3.10/cProfile.pyc
a5c025c723660e59d90ed9b79e5da341  ./usr/lib32/python3.10/crypt.pyc
2828bcd824541fe608688df588110f77  ./usr/lib32/python3.10/csv.pyc
fc6d3804d5a928df0d96356a2907ce96  ./usr/lib32/python3.10/ctypes/_aix.pyc
61d3c436b2789fce7ba410ee507c95cc  ./usr/lib32/python3.10/ctypes/_endian.pyc
3d8324f6c611fa15d4f7f04f3e8291b2  ./usr/lib32/python3.10/ctypes/__init__.pyc
0dd57d823b6318b4c68340a625cedee7  ./usr/lib32/python3.10/ctypes/macholib/dyld.pyc
b1ef2ead6b0394b3778f1e35893c3b17  ./usr/lib32/python3.10/ctypes/macholib/dylib.pyc
8e343c4578540377faeae632b6b967e1  ./usr/lib32/python3.10/ctypes/macholib/fetch_macholib
b88dfc5590f1d09d550605f3afcac0d7  ./usr/lib32/python3.10/ctypes/macholib/fetch_macholib.bat
0b674a5edab37023e7a50aadc15debbd  ./usr/lib32/python3.10/ctypes/macholib/framework.pyc
f07bd094a7479c079481a0e466c24764  ./usr/lib32/python3.10/ctypes/macholib/__init__.pyc
4622ce3deb3c6d926b8b79ee9d5b8a97  ./usr/lib32/python3.10/ctypes/macholib/README.ctypes
f6920afa6786c0bb160a4790f6a1bdb8  ./usr/lib32/python3.10/ctypes/util.pyc
ffa225c1d0f1d58c6789b359881985d4  ./usr/lib32/python3.10/ctypes/wintypes.pyc
77ee80d6827b72492870a46f14a061a5  ./usr/lib32/python3.10/dataclasses.pyc
8cc7c1077f50bcf4de5e2d3749acbc70  ./usr/lib32/python3.10/datetime.pyc
12d987c4a1682cbb986ef4810221600a  ./usr/lib32/python3.10/dbm/dumb.pyc
1fdc31d445ecf7019c0064e9e5df4207  ./usr/lib32/python3.10/dbm/gnu.pyc
0971f5b2c9e465e0f8ad7f707a74a508  ./usr/lib32/python3.10/dbm/__init__.pyc
207b8ecfd7472945209bac209732e5ed  ./usr/lib32/python3.10/dbm/ndbm.pyc
828dcb093e7e777ad46ca2870b126f88  ./usr/lib32/python3.10/decimal.pyc
378992ee261dfdaaf58d28cb7c96aea9  ./usr/lib32/python3.10/difflib.pyc
e8190cc5ddeb53f4d07947061973d8c2  ./usr/lib32/python3.10/dis.pyc
a30519775879d3340d82138866c919fe  ./usr/lib32/python3.10/distutils/archive_util.pyc
e05eb7f3df0c618b2581bcc3cd4af31b  ./usr/lib32/python3.10/distutils/bcppcompiler.pyc
74c5e02a15e689907e2f12dd396176a9  ./usr/lib32/python3.10/distutils/ccompiler.pyc
8d8eceb6937d0e6a50e5a7ca0446a9fe  ./usr/lib32/python3.10/distutils/cmd.pyc
a0de718daf7fcdbcf2dad4b63daceaf9  ./usr/lib32/python3.10/distutils/command/bdist_dumb.pyc
63d960449b181788b06a5e7ee4b5b866  ./usr/lib32/python3.10/distutils/command/bdist_msi.pyc
54978fb0760ec1984b39267df0d1f72c  ./usr/lib32/python3.10/distutils/command/bdist.pyc
0277951af64f66f2f36d3b38086699fa  ./usr/lib32/python3.10/distutils/command/bdist_rpm.pyc
4bcdf598f17fe59fac21e3f8e4cbf559  ./usr/lib32/python3.10/distutils/command/build_clib.pyc
98021a9f8f26894031b1ff24d9eed503  ./usr/lib32/python3.10/distutils/command/build_ext.pyc
77e3e14f099dda38da369a50b80108de  ./usr/lib32/python3.10/distutils/command/build.pyc
8bc1a9c3dda1f4a89384a99f451a06e5  ./usr/lib32/python3.10/distutils/command/build_py.pyc
865e1a54013af99650b098bec8348cd7  ./usr/lib32/python3.10/distutils/command/build_scripts.pyc
d0b510f30fafdeaadff4ebe8296fecef  ./usr/lib32/python3.10/distutils/command/check.pyc
c929b1f84dcf838a3a6102b8af1bcdf7  ./usr/lib32/python3.10/distutils/command/clean.pyc
b99c55765154dc98cdf6fa1e9039e714  ./usr/lib32/python3.10/distutils/command/command_template
cd67b06ef56061859cfa1e740a10deee  ./usr/lib32/python3.10/distutils/command/config.pyc
8b3cf965fc16d2fb00f420534bade13d  ./usr/lib32/python3.10/distutils/command/__init__.pyc
0cfad1f40325bbfa112c5cf346d71de3  ./usr/lib32/python3.10/distutils/command/install_data.pyc
4174998e78b9b27c17a27d2b53d69f98  ./usr/lib32/python3.10/distutils/command/install_egg_info.pyc
3440b052465371f1ca3ff3bad6c08120  ./usr/lib32/python3.10/distutils/command/install_headers.pyc
b82cb3379e3ec102844a1ac1e0b2bc77  ./usr/lib32/python3.10/distutils/command/install_lib.pyc
b95c01200ffcdae3cab2c2ea771d8834  ./usr/lib32/python3.10/distutils/command/install.pyc
6d9639f8e144db9564081459d5a5a892  ./usr/lib32/python3.10/distutils/command/install_scripts.pyc
60b19ea54609ad53380e6430bb4b8233  ./usr/lib32/python3.10/distutils/command/register.pyc
1126c65cac1d69b5d5ca5cfc44a4912a  ./usr/lib32/python3.10/distutils/command/sdist.pyc
266b02584c475c17b20a1e06568e630c  ./usr/lib32/python3.10/distutils/command/upload.pyc
91045ab59da5f875a46f4d969abb677d  ./usr/lib32/python3.10/distutils/config.pyc
61dff8cd83b69ff5195d41b5d3837b05  ./usr/lib32/python3.10/distutils/core.pyc
7a19669e9c73bce9a6b5de4e634004e0  ./usr/lib32/python3.10/distutils/cygwinccompiler.pyc
bc105fd05df65baf880c617c53d90a54  ./usr/lib32/python3.10/distutils/debug.pyc
3d319ece239e2346b4a9c7ddf2118b82  ./usr/lib32/python3.10/distutils/dep_util.pyc
fbcb92949a8171cdfb2a5c8cc46408ab  ./usr/lib32/python3.10/distutils/dir_util.pyc
45f54584b6fcd8349acc732e7c1c3ace  ./usr/lib32/python3.10/distutils/dist.pyc
0abf75d2c617c43047975419a34ad8f4  ./usr/lib32/python3.10/distutils/errors.pyc
ec9c9afccb16b07bf238a77f3df5ca6a  ./usr/lib32/python3.10/distutils/extension.pyc
114438f09d53636331380cd945e30110  ./usr/lib32/python3.10/distutils/fancy_getopt.pyc
716a7d1727af1327fc135117285a77a7  ./usr/lib32/python3.10/distutils/filelist.pyc
db65498a38b6050965787d5ee6373662  ./usr/lib32/python3.10/distutils/file_util.pyc
54a1fffd84c49ec3e216f889e3516821  ./usr/lib32/python3.10/distutils/__init__.pyc
60903620aa01bf0f618c9b0208b35431  ./usr/lib32/python3.10/distutils/log.pyc
acf815c3a4615ce67f2d0963776f0e12  ./usr/lib32/python3.10/distutils/msvc9compiler.pyc
95f22a8d392193e99b28487d82d8a48b  ./usr/lib32/python3.10/distutils/_msvccompiler.pyc
163b426b4aeece13ab4f4f1aa2ad0ffd  ./usr/lib32/python3.10/distutils/msvccompiler.pyc
c886a20a43b4f6070b2dc356beafbf9f  ./usr/lib32/python3.10/distutils/README
29aa8d4ffdc4c2c16e6b5ff3baec1a32  ./usr/lib32/python3.10/distutils/spawn.pyc
43445741776624f0e6aedfc7cf98ee56  ./usr/lib32/python3.10/distutils/sysconfig.pyc
2c4dd2884551aa16d5d934f9843a0642  ./usr/lib32/python3.10/distutils/text_file.pyc
57da2177d32132bc775dc26261cccbfd  ./usr/lib32/python3.10/distutils/unixccompiler.pyc
612f45d01c0f445f9051b6154ef57ed2  ./usr/lib32/python3.10/distutils/util.pyc
f1f862eb7802a4c75a4e64d92732c858  ./usr/lib32/python3.10/distutils/versionpredicate.pyc
074244136baa3ae0ca897eb834f078bf  ./usr/lib32/python3.10/distutils/version.pyc
8b4de0b872564135d4997e373052bb6a  ./usr/lib32/python3.10/email/architecture.rst
671fe5ffea05321d1d11e20e995162b7  ./usr/lib32/python3.10/email/base64mime.pyc
71c9757c56921dbe060e7cc2e07e1765  ./usr/lib32/python3.10/email/charset.pyc
c29905498e1bbf1ee3b1f2d868b3f71b  ./usr/lib32/python3.10/email/contentmanager.pyc
bd767f38eacc5b9df8a14b10f7ba1b7b  ./usr/lib32/python3.10/email/_encoded_words.pyc
3e0966fcaca5f0c7761417ea57ec6047  ./usr/lib32/python3.10/email/encoders.pyc
1826db05b5c1690f9341899907822bcd  ./usr/lib32/python3.10/email/errors.pyc
f0698d3ed75d084b9232b8a07b0d5ab2  ./usr/lib32/python3.10/email/feedparser.pyc
d2f8a1a6f93e19a9c69806e5aaa657a0  ./usr/lib32/python3.10/email/generator.pyc
7852cd0f5d3ac79876a33825eac8363f  ./usr/lib32/python3.10/email/header.pyc
124d5225f846cf46ce772907dda1736b  ./usr/lib32/python3.10/email/headerregistry.pyc
f1831f8cf212c18b1aabcb629c96a2d9  ./usr/lib32/python3.10/email/_header_value_parser.pyc
ea89303e4f48e658d4de6fe9810741b4  ./usr/lib32/python3.10/email/__init__.pyc
086d1df046f2c3879154292a4f555123  ./usr/lib32/python3.10/email/iterators.pyc
b0eb023c954b6bca56cc49a5bc6fb135  ./usr/lib32/python3.10/email/message.pyc
1cbb695cfc676463fbc9856195a3265b  ./usr/lib32/python3.10/email/mime/application.pyc
a0bc35ecb57d201bd84aa2247c8272f8  ./usr/lib32/python3.10/email/mime/audio.pyc
8fb32012734922a664a6ff7d1a33d1bd  ./usr/lib32/python3.10/email/mime/base.pyc
2dd282bad0a7768e609af9ca6372f6df  ./usr/lib32/python3.10/email/mime/image.pyc
d54cc79047f28f69f9fa51a313bca5fe  ./usr/lib32/python3.10/email/mime/__init__.pyc
9f4950fdf30acb5f978e2187ff7d81dd  ./usr/lib32/python3.10/email/mime/message.pyc
abce2c69b7a28113bc6bf4173812b6da  ./usr/lib32/python3.10/email/mime/multipart.pyc
de2c2e320a55445efbfb9f3d4378d0a7  ./usr/lib32/python3.10/email/mime/nonmultipart.pyc
119de505e5336f098a038618a9caec3e  ./usr/lib32/python3.10/email/mime/text.pyc
cea87a766c40cb8d8398200b2c42b888  ./usr/lib32/python3.10/email/_parseaddr.pyc
41e91021f06be838e71fd82ab4728da6  ./usr/lib32/python3.10/email/parser.pyc
9b271aeab827325895fb03ae9221001c  ./usr/lib32/python3.10/email/_policybase.pyc
250deb1471268e49e1291f5834fefee2  ./usr/lib32/python3.10/email/policy.pyc
6483129d95dab4c7d6049c74c5677a4d  ./usr/lib32/python3.10/email/quoprimime.pyc
6c37a729544a5f2df9a7c6e62d7b674c  ./usr/lib32/python3.10/email/utils.pyc
ec483a2508b60a895d1c608910c31d07  ./usr/lib32/python3.10/encodings/aliases.pyc
f41e70cd09d43333b84096ae90629b89  ./usr/lib32/python3.10/encodings/ascii.pyc
686330f85b9080afb7c561bf267adf57  ./usr/lib32/python3.10/encodings/base64_codec.pyc
3096f1fa9ceb44f83a2ea7278a708223  ./usr/lib32/python3.10/encodings/big5hkscs.pyc
ff3608979eeeb5244704abf7423f0882  ./usr/lib32/python3.10/encodings/big5.pyc
b368cb6cf46a50bfa68afcb0ffd8ab5c  ./usr/lib32/python3.10/encodings/bz2_codec.pyc
774af0576d8a18c1a69fa92c698fb2c0  ./usr/lib32/python3.10/encodings/charmap.pyc
64a2be6d77cce2fb6aa2b8c5c45cb7b9  ./usr/lib32/python3.10/encodings/cp037.pyc
4377f3b8bdc162938e478eaa478cff20  ./usr/lib32/python3.10/encodings/cp1006.pyc
c089160a591332505025fa697eeabf49  ./usr/lib32/python3.10/encodings/cp1026.pyc
37d8bdd58a88dc07c48b9b658f846320  ./usr/lib32/python3.10/encodings/cp1125.pyc
55d81dba13ac8dda566aa93969a55f91  ./usr/lib32/python3.10/encodings/cp1140.pyc
2ea6bcb32ae032c652e43c05a14fefd5  ./usr/lib32/python3.10/encodings/cp1250.pyc
aa4f487a9b837116250c5206589a8cdc  ./usr/lib32/python3.10/encodings/cp1251.pyc
6810ff3ae0edc20402d0c91d8496ee18  ./usr/lib32/python3.10/encodings/cp1252.pyc
1fb69c1a4926942ed197ce1a58c6b13b  ./usr/lib32/python3.10/encodings/cp1253.pyc
3a4aefe4c4300438ad16c14293f46795  ./usr/lib32/python3.10/encodings/cp1254.pyc
b101938b2e9e59061a0dc02d43674615  ./usr/lib32/python3.10/encodings/cp1255.pyc
ce4cc1f4c5ad376a03685fcf38bf42bf  ./usr/lib32/python3.10/encodings/cp1256.pyc
1cd71473c40b8247250a952dc6bf84bb  ./usr/lib32/python3.10/encodings/cp1257.pyc
6860d5fa16e29a7d8f37f76d60749e65  ./usr/lib32/python3.10/encodings/cp1258.pyc
1a19ed9c9d1b8a93771badb5c613f39f  ./usr/lib32/python3.10/encodings/cp273.pyc
9d0dcc64baa869fd8c58e87332cdd901  ./usr/lib32/python3.10/encodings/cp424.pyc
defaa32cccd737de7a4c62ab08b351c9  ./usr/lib32/python3.10/encodings/cp437.pyc
bc13e5deb966e551aea89440ddee3523  ./usr/lib32/python3.10/encodings/cp500.pyc
a8fc9185a44684dfebe7e0a90bbc311e  ./usr/lib32/python3.10/encodings/cp720.pyc
e0bcb44f200ef09adda0d19f0df5b73c  ./usr/lib32/python3.10/encodings/cp737.pyc
d1af4e8ef90d614ac0d5709c9d4abb30  ./usr/lib32/python3.10/encodings/cp775.pyc
5cdf487d0a121f7e19c2d874fe7335c9  ./usr/lib32/python3.10/encodings/cp850.pyc
4a005069c948329794f7647e84986ec9  ./usr/lib32/python3.10/encodings/cp852.pyc
70e27ac3a8c18ff0ee20ef96b97908cd  ./usr/lib32/python3.10/encodings/cp855.pyc
5b9c4fc46c0a74c122c6aca134bc29ba  ./usr/lib32/python3.10/encodings/cp856.pyc
f7782ce1922638d591e7991541209bf0  ./usr/lib32/python3.10/encodings/cp857.pyc
f9a138e5545c2154a2c4dadca77df293  ./usr/lib32/python3.10/encodings/cp858.pyc
9cbea1d739003c9e7b2de903aa257459  ./usr/lib32/python3.10/encodings/cp860.pyc
a21e2a1ad9b4a4d5f0d1d829e2e2d6da  ./usr/lib32/python3.10/encodings/cp861.pyc
ed91d618107d8f7df51d6c4bd603a30a  ./usr/lib32/python3.10/encodings/cp862.pyc
36007209c67b5235cac4643758992a4f  ./usr/lib32/python3.10/encodings/cp863.pyc
caaa816aee102d9bb1808c7f359afb10  ./usr/lib32/python3.10/encodings/cp864.pyc
0cb2c67b1994f01daaa8d3a3d6578975  ./usr/lib32/python3.10/encodings/cp865.pyc
cb967691b23c7a2e9b45e6e3a59428ad  ./usr/lib32/python3.10/encodings/cp866.pyc
0a51f7480d2a85cd19fa032f73087286  ./usr/lib32/python3.10/encodings/cp869.pyc
012b9f2073f6358ddb37f16897e0d1b0  ./usr/lib32/python3.10/encodings/cp874.pyc
f47d30f8e24ee836ae44dc73bb0c040c  ./usr/lib32/python3.10/encodings/cp875.pyc
92a3cba9fb63fa394836bae5ec28f78c  ./usr/lib32/python3.10/encodings/cp932.pyc
a3b994debf5d6f2cef54b41dde0614a5  ./usr/lib32/python3.10/encodings/cp949.pyc
b6bc702b3b4bf96ae76ccd793f183e1d  ./usr/lib32/python3.10/encodings/cp950.pyc
08e36757d8e8a701d4675bdb6b26e2ac  ./usr/lib32/python3.10/encodings/euc_jis_2004.pyc
ab1e40f68057c426c52902781250c287  ./usr/lib32/python3.10/encodings/euc_jisx0213.pyc
027c557cff8ad025d3a1413291a874b7  ./usr/lib32/python3.10/encodings/euc_jp.pyc
720a47aaf77e364ee5825b85a084508c  ./usr/lib32/python3.10/encodings/euc_kr.pyc
31e91a3def9f7d74c5d6fd7a852c3d2b  ./usr/lib32/python3.10/encodings/gb18030.pyc
3d1d6a794d36d672a14ea200a8eda46e  ./usr/lib32/python3.10/encodings/gb2312.pyc
e6338a37727bcbd2c764c902d4dbb2a4  ./usr/lib32/python3.10/encodings/gbk.pyc
58c467e27ab2ddcf28e013bdd9e49a91  ./usr/lib32/python3.10/encodings/hex_codec.pyc
3b9688cd5995de95a129d14a1c2667c0  ./usr/lib32/python3.10/encodings/hp_roman8.pyc
14bd314684437f16becd1ca70169a829  ./usr/lib32/python3.10/encodings/hz.pyc
ab343f8655bc9b1ff5ed289e5b9d5b37  ./usr/lib32/python3.10/encodings/idna.pyc
e48b1db422840c043b294483d827a8f8  ./usr/lib32/python3.10/encodings/__init__.pyc
885098d4c26f318be2bb8685b6b07fb6  ./usr/lib32/python3.10/encodings/iso2022_jp_1.pyc
2c2eade17917e73b33810a715866c886  ./usr/lib32/python3.10/encodings/iso2022_jp_2004.pyc
6709fa3fd8069184d74389c43055abe6  ./usr/lib32/python3.10/encodings/iso2022_jp_2.pyc
1a04cb30b7473925e2787f0d30a835cc  ./usr/lib32/python3.10/encodings/iso2022_jp_3.pyc
891ede30db6ec5ef1f325347f102f4ec  ./usr/lib32/python3.10/encodings/iso2022_jp_ext.pyc
7dd20a003831c8decfc201b2df1d97f8  ./usr/lib32/python3.10/encodings/iso2022_jp.pyc
7602af1eeb857c539b552ee194c23281  ./usr/lib32/python3.10/encodings/iso2022_kr.pyc
955122e4ecbed36f43cbf5d75390bf3a  ./usr/lib32/python3.10/encodings/iso8859_10.pyc
8d389c90397de18afcc4030eee739e60  ./usr/lib32/python3.10/encodings/iso8859_11.pyc
8d7ab0c2c47a748f21c18bc554353a28  ./usr/lib32/python3.10/encodings/iso8859_13.pyc
86fe26adf608c0b8bd6994e7f6c1f048  ./usr/lib32/python3.10/encodings/iso8859_14.pyc
641a44d83113e3be0ae4cfe52c42e30a  ./usr/lib32/python3.10/encodings/iso8859_15.pyc
4a49188fd31346a51a2416f0cfb628a5  ./usr/lib32/python3.10/encodings/iso8859_16.pyc
1b24d2b12154077429f9c529ee91cd2d  ./usr/lib32/python3.10/encodings/iso8859_1.pyc
839f67fe5c413298264e7e6a7a5e5eef  ./usr/lib32/python3.10/encodings/iso8859_2.pyc
3b23d35d2c4a78dffee3d28c5f1b2fdf  ./usr/lib32/python3.10/encodings/iso8859_3.pyc
cce5158be77de16b68d8c5244fa62b5c  ./usr/lib32/python3.10/encodings/iso8859_4.pyc
be5bb31344d2bdf7ad7bdba8a2f0e073  ./usr/lib32/python3.10/encodings/iso8859_5.pyc
2082f0d4439593bf376b3e52305b9332  ./usr/lib32/python3.10/encodings/iso8859_6.pyc
64836b1f2d6cc1121e4ce51e4b155848  ./usr/lib32/python3.10/encodings/iso8859_7.pyc
6d6b15efd3a05766ce784aa78b1c9a5f  ./usr/lib32/python3.10/encodings/iso8859_8.pyc
c2ca7a499dc3cf6209d162f38de66161  ./usr/lib32/python3.10/encodings/iso8859_9.pyc
2be90a99d02ee5ff8a79c1bf0887c7da  ./usr/lib32/python3.10/encodings/johab.pyc
8dc1b18be85a63b7216180918dabc2b0  ./usr/lib32/python3.10/encodings/koi8_r.pyc
4dffc2ee5cedc22af58d13cfa681f644  ./usr/lib32/python3.10/encodings/koi8_t.pyc
acf6ebfae1c62886bc46cdde73c514ce  ./usr/lib32/python3.10/encodings/koi8_u.pyc
eadfd4f24dfe864f91c5866ef1d00b0d  ./usr/lib32/python3.10/encodings/kz1048.pyc
978bad1129acb157d111a63de4c27978  ./usr/lib32/python3.10/encodings/latin_1.pyc
54bb68cdf110bf1d6caba2dd14a44943  ./usr/lib32/python3.10/encodings/mac_arabic.pyc
ddbc69e3c0678996a3b1ccd13b125ae6  ./usr/lib32/python3.10/encodings/mac_croatian.pyc
8ba6da71c8c8fa03a57ea5574be8cf03  ./usr/lib32/python3.10/encodings/mac_cyrillic.pyc
f79b4d2e4c6530459084a4d23f78e093  ./usr/lib32/python3.10/encodings/mac_farsi.pyc
1d4a9a04645cd24d20cdda820d17b720  ./usr/lib32/python3.10/encodings/mac_greek.pyc
f19ef35e188499e2de7528495b914825  ./usr/lib32/python3.10/encodings/mac_iceland.pyc
39cd2415a29c580b3f9fa199a1b464c2  ./usr/lib32/python3.10/encodings/mac_latin2.pyc
8d807338512724a43cbe7e295447b142  ./usr/lib32/python3.10/encodings/mac_romanian.pyc
fa24c86f604109af9de00d5e883209e4  ./usr/lib32/python3.10/encodings/mac_roman.pyc
37d1e8b6342375b20a39ba2a719ca2bf  ./usr/lib32/python3.10/encodings/mac_turkish.pyc
8d78a4a2b406f7acb406faf045014e22  ./usr/lib32/python3.10/encodings/mbcs.pyc
5deebee5576cc7efb32e82d88139b8f0  ./usr/lib32/python3.10/encodings/oem.pyc
90ad9f2806255166f3c98b930222d7d2  ./usr/lib32/python3.10/encodings/palmos.pyc
178b744af599ff8caa9fa3b7fe927aa8  ./usr/lib32/python3.10/encodings/ptcp154.pyc
8033bb91fffdeaee9ccbedb69fbd7414  ./usr/lib32/python3.10/encodings/punycode.pyc
1d756aa685d23e67851c8e4f8c3d56f2  ./usr/lib32/python3.10/encodings/quopri_codec.pyc
f2dc76338f3c7d68c138d70c2e720fd8  ./usr/lib32/python3.10/encodings/raw_unicode_escape.pyc
409fd9109adba2e6a152fadb68655fe3  ./usr/lib32/python3.10/encodings/rot_13.pyc
584d3a9bb7dff8d49aba586a7b9fc377  ./usr/lib32/python3.10/encodings/shift_jis_2004.pyc
2faf7ac5c94f6385ed58456ed844760a  ./usr/lib32/python3.10/encodings/shift_jis.pyc
297224fb107b67eca1dccfe3472ced5a  ./usr/lib32/python3.10/encodings/shift_jisx0213.pyc
d60625df155cb6bddd7efc10814185f5  ./usr/lib32/python3.10/encodings/tis_620.pyc
d3441408c7884ab26420cec8e27715e5  ./usr/lib32/python3.10/encodings/undefined.pyc
504312ef8872ceac543bca494994e710  ./usr/lib32/python3.10/encodings/unicode_escape.pyc
e3858d1e38f828a624ffccfe82a91bde  ./usr/lib32/python3.10/encodings/utf_16_be.pyc
e3c93bd69f56d7d2cb4d241645846d68  ./usr/lib32/python3.10/encodings/utf_16_le.pyc
f6bc3b21261299faa2ebbec05b938b38  ./usr/lib32/python3.10/encodings/utf_16.pyc
18ae8318ce659ea13d970837f29f3e37  ./usr/lib32/python3.10/encodings/utf_32_be.pyc
cba0a5227711a71b2e9d8a1d289ab3bf  ./usr/lib32/python3.10/encodings/utf_32_le.pyc
de75904c51cef958847d11f3b16350ff  ./usr/lib32/python3.10/encodings/utf_32.pyc
eaaeb5c7399e281702746bcfba732465  ./usr/lib32/python3.10/encodings/utf_7.pyc
9cf8f57688179d3d01ebf88a1a005cab  ./usr/lib32/python3.10/encodings/utf_8.pyc
27975b551fa445f90d329649c36e5cc7  ./usr/lib32/python3.10/encodings/utf_8_sig.pyc
0bfa8617b39a609516598886a61c311a  ./usr/lib32/python3.10/encodings/uu_codec.pyc
b978a833b0e2dcb47316086c295a3778  ./usr/lib32/python3.10/encodings/zlib_codec.pyc
c4da736fa419b59957a361f79d7836c0  ./usr/lib32/python3.10/enum.pyc
6ffd6c3413a042470eaa76114f8b7b3f  ./usr/lib32/python3.10/filecmp.pyc
994125437aa937ef54225169930eeb67  ./usr/lib32/python3.10/fileinput.pyc
39b7819d8328651fa9d2ba05ce3d3b19  ./usr/lib32/python3.10/fnmatch.pyc
0ab256f1b056da13c63af35ef50bf78b  ./usr/lib32/python3.10/fractions.pyc
ac576986e6c8a49457830040bdb9a1b2  ./usr/lib32/python3.10/ftplib.pyc
d409a702af93420097486b4258290d68  ./usr/lib32/python3.10/functools.pyc
ad1d368b87dadee5c72ab1ba832ca41a  ./usr/lib32/python3.10/__future__.pyc
1851f34c1b22302217ba9f88cb112487  ./usr/lib32/python3.10/genericpath.pyc
21a00b278314f5d01dc7cc4d6d566a46  ./usr/lib32/python3.10/getopt.pyc
a30692c896554bdaf41cfbaa17ede8e1  ./usr/lib32/python3.10/getpass.pyc
36df982fbd73ff6fc62d0a5006676cc9  ./usr/lib32/python3.10/gettext.pyc
55ed34bab4818967dc3abb25030d26a3  ./usr/lib32/python3.10/glob.pyc
decba4184f385876b8fb68c4c7a1565b  ./usr/lib32/python3.10/graphlib.pyc
f29128bf10094587472355933f226c22  ./usr/lib32/python3.10/gzip.pyc
be626bf1ccd91dd4c5b2b89a52914e87  ./usr/lib32/python3.10/hashlib.pyc
59244c48665a268eebf39b97722a3d95  ./usr/lib32/python3.10/heapq.pyc
813eab8903134a5bcf8aa7237faad554  ./usr/lib32/python3.10/hmac.pyc
e2a1f580e6f3b5cea99e216c99011d30  ./usr/lib32/python3.10/html/entities.pyc
2a6d321fa7385b0b76781efa3dc3ba44  ./usr/lib32/python3.10/html/__init__.pyc
f7b962d3f58f6656992384b2a402e454  ./usr/lib32/python3.10/html/parser.pyc
ce68c5c3e0c6313379b79920b2568ea9  ./usr/lib32/python3.10/http/client.pyc
2c404bbadb2d298ed36ba12d78d0c5bb  ./usr/lib32/python3.10/http/cookiejar.pyc
de8454ca8b3f5fa59de9f3a390d61ae1  ./usr/lib32/python3.10/http/cookies.pyc
15762893a0a796f3fc953e372147ead9  ./usr/lib32/python3.10/http/__init__.pyc
c74d4c44043b685833fc355052603f07  ./usr/lib32/python3.10/http/server.pyc
e14b9deef65ec5dd4fecad67ba24a554  ./usr/lib32/python3.10/imaplib.pyc
fa2765edec62a503dd23c77f477bad52  ./usr/lib32/python3.10/imghdr.pyc
79756171f926105c669c9dc191a24feb  ./usr/lib32/python3.10/importlib/_abc.pyc
ac3beef62b99dceeeab7e97488dc5259  ./usr/lib32/python3.10/importlib/abc.pyc
7ee90965595f3bec133b86b38c2f3748  ./usr/lib32/python3.10/importlib/_adapters.pyc
1652a18c063576f4ed2e582fc47d0c96  ./usr/lib32/python3.10/importlib/_bootstrap_external.pyc
30589f48db95fe05abb9cc78f7a7d032  ./usr/lib32/python3.10/importlib/_bootstrap.pyc
05ee8316eb550931a3a5fbde653cab4e  ./usr/lib32/python3.10/importlib/_common.pyc
1abeeb578a5b56137296d3b65366f9e5  ./usr/lib32/python3.10/importlib/__init__.pyc
506bf77e45d53fb1d13810134f343056  ./usr/lib32/python3.10/importlib/machinery.pyc
6ab58743fef1de97958977326209bda4  ./usr/lib32/python3.10/importlib/metadata/_adapters.pyc
b37e4184818785212cc7a467ba90d90f  ./usr/lib32/python3.10/importlib/metadata/_collections.pyc
7fd023d49641841321a73ba6d1cadbc1  ./usr/lib32/python3.10/importlib/metadata/_functools.pyc
1741863b00c0103e868510f2d67e4bfc  ./usr/lib32/python3.10/importlib/metadata/__init__.pyc
bab7763c670cb863cc459bbca311e4d2  ./usr/lib32/python3.10/importlib/metadata/_itertools.pyc
024a6d3770f0d84c952779d98aa714ed  ./usr/lib32/python3.10/importlib/metadata/_meta.pyc
4cd3526d99f6aeac17be3d1ef3bde6d9  ./usr/lib32/python3.10/importlib/metadata/_text.pyc
ff3650ac908f23ecf41f811d689637fa  ./usr/lib32/python3.10/importlib/readers.pyc
ec03fe951fe764dca64ae60641c79f10  ./usr/lib32/python3.10/importlib/resources.pyc
315a8c06a71e87d46a966e3e56e55bb2  ./usr/lib32/python3.10/importlib/util.pyc
04f62f1f44feb73ca57fb31e8ce48d2d  ./usr/lib32/python3.10/imp.pyc
849932e01bf351d5cc959667a816fac1  ./usr/lib32/python3.10/inspect.pyc
f484afce32e0857b96f35547939a6678  ./usr/lib32/python3.10/io.pyc
a48abe000e7e88a81cee06053e55875a  ./usr/lib32/python3.10/ipaddress.pyc
453b30ee4f3b20e3ea0c7c5bef5585a6  ./usr/lib32/python3.10/json/decoder.py
cff02ddd48eea55802089846e1a56e45  ./usr/lib32/python3.10/json/encoder.pyc
118315be0d5a001fb7eacd5bb6e1b81c  ./usr/lib32/python3.10/json/__init__.pyc
d2f9b9fbebf9620ee6ed4972cd170042  ./usr/lib32/python3.10/json/scanner.pyc
864979d8134cd738eeb7820fde9739ad  ./usr/lib32/python3.10/json/tool.pyc
0b47bbed5161eda0bc77ecc2d3e7195e  ./usr/lib32/python3.10/keyword.pyc
7e945a0014e276d339af24c5ed547cdc  ./usr/lib32/python3.10/lib-dynload/array.cpython-310-arm-linux-gnueabihf.so
eb8403af04001a67cadb8fa1e0582955  ./usr/lib32/python3.10/lib-dynload/_asyncio.cpython-310-arm-linux-gnueabihf.so
5bae01d7aea8e8926c4b905100ea141b  ./usr/lib32/python3.10/lib-dynload/audioop.cpython-310-arm-linux-gnueabihf.so
fdab95725e081eed2d77c754345c452b  ./usr/lib32/python3.10/lib-dynload/binascii.cpython-310-arm-linux-gnueabihf.so
235ed663dab871d8c62dfc7cbfdf6e7f  ./usr/lib32/python3.10/lib-dynload/_bisect.cpython-310-arm-linux-gnueabihf.so
3c4fc49e56c41bb6998dfb106b72c06a  ./usr/lib32/python3.10/lib-dynload/_blake2.cpython-310-arm-linux-gnueabihf.so
a5d55dc2768838723e97e98128a123f1  ./usr/lib32/python3.10/lib-dynload/cmath.cpython-310-arm-linux-gnueabihf.so
4d493565ebc95ee82fa4f7af7152ee61  ./usr/lib32/python3.10/lib-dynload/_codecs_cn.cpython-310-arm-linux-gnueabihf.so
e456c0cb85258ed6eda2e1f5f0b26702  ./usr/lib32/python3.10/lib-dynload/_codecs_hk.cpython-310-arm-linux-gnueabihf.so
c72560c5e426a0ad1e03a3f8a2b11872  ./usr/lib32/python3.10/lib-dynload/_codecs_iso2022.cpython-310-arm-linux-gnueabihf.so
78d3140c3c2ed7a075f5eb371d1879fe  ./usr/lib32/python3.10/lib-dynload/_codecs_jp.cpython-310-arm-linux-gnueabihf.so
fefff0ec6328a81545594288012de346  ./usr/lib32/python3.10/lib-dynload/_codecs_kr.cpython-310-arm-linux-gnueabihf.so
db19e3eddc9be5b7db664ee5ab914293  ./usr/lib32/python3.10/lib-dynload/_codecs_tw.cpython-310-arm-linux-gnueabihf.so
225626d2b076528d2a11fb1f1a5eb152  ./usr/lib32/python3.10/lib-dynload/_contextvars.cpython-310-arm-linux-gnueabihf.so
6c5e5ee7d131ea15555aa1989446ebbb  ./usr/lib32/python3.10/lib-dynload/_crypt.cpython-310-arm-linux-gnueabihf.so
e7fdcaa89f5897cbcf651ee82dc6edbf  ./usr/lib32/python3.10/lib-dynload/_csv.cpython-310-arm-linux-gnueabihf.so
10c6c8c3223da68f9b1431424e54a54e  ./usr/lib32/python3.10/lib-dynload/_ctypes.cpython-310-arm-linux-gnueabihf.so
5166e39e23f1a90459013be49466047e  ./usr/lib32/python3.10/lib-dynload/_datetime.cpython-310-arm-linux-gnueabihf.so
2cdc4ef4afb30bfc0ba985f14ce11682  ./usr/lib32/python3.10/lib-dynload/_elementtree.cpython-310-arm-linux-gnueabihf.so
9211543b776317354a51752cce8444be  ./usr/lib32/python3.10/lib-dynload/fcntl.cpython-310-arm-linux-gnueabihf.so
8d40632e397a4f82579e220e2978f317  ./usr/lib32/python3.10/lib-dynload/grp.cpython-310-arm-linux-gnueabihf.so
53022f47e69828588f548dbfa72bbc91  ./usr/lib32/python3.10/lib-dynload/_heapq.cpython-310-arm-linux-gnueabihf.so
e4eec8fc85157a768ebc8fd8a3453075  ./usr/lib32/python3.10/lib-dynload/_json.cpython-310-arm-linux-gnueabihf.so
3c18eed816f779389f0f6de424f6c8c9  ./usr/lib32/python3.10/lib-dynload/_lsprof.cpython-310-arm-linux-gnueabihf.so
b6ed50f20c2365c22c4cf092133541cf  ./usr/lib32/python3.10/lib-dynload/math.cpython-310-arm-linux-gnueabihf.so
18d348e1e2847593e219e880fbe63f4d  ./usr/lib32/python3.10/lib-dynload/_md5.cpython-310-arm-linux-gnueabihf.so
82858b5996a03ee8020b4f7a22a95080  ./usr/lib32/python3.10/lib-dynload/mmap.cpython-310-arm-linux-gnueabihf.so
a0a72cebfd946646f4d7a2dad6b62ee1  ./usr/lib32/python3.10/lib-dynload/_multibytecodec.cpython-310-arm-linux-gnueabihf.so
96cce67468938b41595db16c61f55e2b  ./usr/lib32/python3.10/lib-dynload/_multiprocessing.cpython-310-arm-linux-gnueabihf.so
d700f6a09b6dffe4698d061f82a48390  ./usr/lib32/python3.10/lib-dynload/_opcode.cpython-310-arm-linux-gnueabihf.so
e6dfea34562d24f8dd76de186d92df1f  ./usr/lib32/python3.10/lib-dynload/_pickle.cpython-310-arm-linux-gnueabihf.so
1551db7a694434ebaa51fa5edfa24f5a  ./usr/lib32/python3.10/lib-dynload/_posixshmem.cpython-310-arm-linux-gnueabihf.so
7d5d7382c4239fdf1ca95f63fba9a497  ./usr/lib32/python3.10/lib-dynload/_posixsubprocess.cpython-310-arm-linux-gnueabihf.so
40f37e38add203537b9eb403322b2f78  ./usr/lib32/python3.10/lib-dynload/pyexpat.cpython-310-arm-linux-gnueabihf.so
a867fcee6dfd0375d6995a648c7ac485  ./usr/lib32/python3.10/lib-dynload/_queue.cpython-310-arm-linux-gnueabihf.so
59977e7a43fd6a243ca8ab70215685c7  ./usr/lib32/python3.10/lib-dynload/_random.cpython-310-arm-linux-gnueabihf.so
9f611d89df5afe7abc19db297f6d0b02  ./usr/lib32/python3.10/lib-dynload/resource.cpython-310-arm-linux-gnueabihf.so
8aeb7c8c8b4319ea3d83962bf2bbd381  ./usr/lib32/python3.10/lib-dynload/select.cpython-310-arm-linux-gnueabihf.so
226ec114372156f643d7b860f6f585e1  ./usr/lib32/python3.10/lib-dynload/_sha1.cpython-310-arm-linux-gnueabihf.so
01a9cdbfec986cc81a8fde6194a31e4a  ./usr/lib32/python3.10/lib-dynload/_sha256.cpython-310-arm-linux-gnueabihf.so
08eec1d6d9f72e61bd411ed657beef0d  ./usr/lib32/python3.10/lib-dynload/_sha3.cpython-310-arm-linux-gnueabihf.so
5b3ee14b6dc6d18be73a7abf1492e964  ./usr/lib32/python3.10/lib-dynload/_sha512.cpython-310-arm-linux-gnueabihf.so
07105824d020425e5a7e5ef58a518eb0  ./usr/lib32/python3.10/lib-dynload/_socket.cpython-310-arm-linux-gnueabihf.so
13b95ee570a5db36f51cfbd6c5be79e9  ./usr/lib32/python3.10/lib-dynload/spwd.cpython-310-arm-linux-gnueabihf.so
478924334777dbccfac468c1dfe53731  ./usr/lib32/python3.10/lib-dynload/_statistics.cpython-310-arm-linux-gnueabihf.so
215af57e566124446ecefee077048e7b  ./usr/lib32/python3.10/lib-dynload/_struct.cpython-310-arm-linux-gnueabihf.so
11a900c42a274a398b6054ba0f7dc679  ./usr/lib32/python3.10/lib-dynload/syslog.cpython-310-arm-linux-gnueabihf.so
af0e66e61e4cad0fe8ad0f6ff8f8e3e0  ./usr/lib32/python3.10/lib-dynload/termios.cpython-310-arm-linux-gnueabihf.so
11f3243a3f3cbe866e630b9862403a80  ./usr/lib32/python3.10/lib-dynload/unicodedata.cpython-310-arm-linux-gnueabihf.so
15a312454b1ff9d44805abe164b0f04a  ./usr/lib32/python3.10/lib-dynload/xxlimited_35.cpython-310-arm-linux-gnueabihf.so
8c81d7abb01a0004b09f68a73cbe3358  ./usr/lib32/python3.10/lib-dynload/xxlimited.cpython-310-arm-linux-gnueabihf.so
2f82465d5ebce59e315882712e3e5825  ./usr/lib32/python3.10/lib-dynload/_xxsubinterpreters.cpython-310-arm-linux-gnueabihf.so
11a62923eadf0eedac3f171f93973c11  ./usr/lib32/python3.10/lib-dynload/zlib.cpython-310-arm-linux-gnueabihf.so
fc6d6fcfd8efe09d689548dca90b2055  ./usr/lib32/python3.10/lib-dynload/_zoneinfo.cpython-310-arm-linux-gnueabihf.so
fcf6b249c2641540219a727f35d8d2c2  ./usr/lib32/python3.10/LICENSE.txt
966025206f586798da5a8a6445bfcd4d  ./usr/lib32/python3.10/linecache.pyc
0cf570d2ab751880c0ea38472b2caee3  ./usr/lib32/python3.10/locale.pyc
de36277ef1834b21dfd29e03c90fcdc2  ./usr/lib32/python3.10/logging/config.pyc
474ca7ae0640b82bf3e61ff91df19184  ./usr/lib32/python3.10/logging/handlers.pyc
67026bdcbc30f2fd0bd08a3a89ecd49b  ./usr/lib32/python3.10/logging/__init__.pyc
2c4e518be88f3b3eed95c631255ad5e6  ./usr/lib32/python3.10/lzma.pyc
df429a666e81e64f5ad703f7b488dc4a  ./usr/lib32/python3.10/mailcap.pyc
979da3bff19f9a9a6442dd2f34c4440e  ./usr/lib32/python3.10/_markupbase.pyc
00523e9db24c0cf99cd210cd17d0ed3d  ./usr/lib32/python3.10/mimetypes.pyc
2c35c2f2eba2e8fdd00c37ba1d96ae12  ./usr/lib32/python3.10/modulefinder.pyc
ff6e96ca6343328a4651455e6fd66828  ./usr/lib32/python3.10/multiprocessing/connection.py
2b454ff2df506925071b42b65c990d03  ./usr/lib32/python3.10/multiprocessing/context.pyc
9d2fb2a95d5d72635aded15e83da265d  ./usr/lib32/python3.10/multiprocessing/dummy/connection.pyc
a722a12a7c1089a9307bbb9d01b54a1e  ./usr/lib32/python3.10/multiprocessing/dummy/__init__.pyc
84417f8bd746198cc25422d018a40d17  ./usr/lib32/python3.10/multiprocessing/forkserver.pyc
be06c0b8db847df8df473bc1cdceb7c5  ./usr/lib32/python3.10/multiprocessing/heap.pyc
a6f468303cb899eb5a88a8c2304684e1  ./usr/lib32/python3.10/multiprocessing/__init__.pyc
9d991daaa6164189bca72c920052b72f  ./usr/lib32/python3.10/multiprocessing/managers.pyc
928b522df102a68e81450c94b02a667f  ./usr/lib32/python3.10/multiprocessing/pool.pyc
68da4dfb894c4cf989bfebbe5d54cccc  ./usr/lib32/python3.10/multiprocessing/popen_fork.pyc
465425a51010822e52374ea109b9b78c  ./usr/lib32/python3.10/multiprocessing/popen_forkserver.pyc
a02b0439fe673e4196ef6f21001ba894  ./usr/lib32/python3.10/multiprocessing/popen_spawn_posix.pyc
648463843ef7f6f7b2c507d777dd22e9  ./usr/lib32/python3.10/multiprocessing/popen_spawn_win32.pyc
2034f1a44bef71cf8619a127cd4af04e  ./usr/lib32/python3.10/multiprocessing/process.pyc
a2848a84b7d709285d125c4c471cbe4d  ./usr/lib32/python3.10/multiprocessing/queues.pyc
5543a20e50197c5889e77736142c9c19  ./usr/lib32/python3.10/multiprocessing/reduction.pyc
a33b6a4479a607cbe1be9d15ccbef763  ./usr/lib32/python3.10/multiprocessing/resource_sharer.pyc
dae8572691df8d49fd31b59a08982e3e  ./usr/lib32/python3.10/multiprocessing/resource_tracker.pyc
670ef1cb8df3db9b8c3193601e8675af  ./usr/lib32/python3.10/multiprocessing/sharedctypes.pyc
30b4e463659a4aa3e03a93e29294bbd3  ./usr/lib32/python3.10/multiprocessing/shared_memory.pyc
a41b5e83b2abfa00062933cde6d2ac5a  ./usr/lib32/python3.10/multiprocessing/spawn.pyc
bd9c76dbec47eed1e1128a686dde2370  ./usr/lib32/python3.10/multiprocessing/synchronize.pyc
e48abd49905a75029d6885a668551835  ./usr/lib32/python3.10/multiprocessing/util.pyc
140fa7bfd4bc724a35df2c7e0ce1ae5b  ./usr/lib32/python3.10/netrc.pyc
b3fe511f4974803a212acf2f870633a7  ./usr/lib32/python3.10/nntplib.pyc
c6c98d14b9075de27134431049e06ea9  ./usr/lib32/python3.10/ntpath.pyc
b3148ea453352c66a80f3a131332564d  ./usr/lib32/python3.10/nturl2path.pyc
b7640a8408665b5c047b02436712b3cf  ./usr/lib32/python3.10/numbers.pyc
5513bbe51db852e1da8fa1cda2e52c4c  ./usr/lib32/python3.10/opcode.pyc
55c5f87036d15231a6574dc5c96a6487  ./usr/lib32/python3.10/operator.pyc
c7821235bd00d10c6c65aba585841b81  ./usr/lib32/python3.10/optparse.pyc
eded13197e2bc01057ed2d6409854b2d  ./usr/lib32/python3.10/os.pyc
35270bae1adb9f43ed041eb3401f673f  ./usr/lib32/python3.10/_osx_support.pyc
b37bd1e357db2084a29abe0dee1b8841  ./usr/lib32/python3.10/pathlib.pyc
09e9300af70918fdee1231af385a6bf7  ./usr/lib32/python3.10/pdb.pyc
b0731ff2eb62acc22cce3317a24ee673  ./usr/lib32/python3.10/__phello__.foo.pyc
8d5fbb440e5c29cded3f23d9d943a74a  ./usr/lib32/python3.10/pickle.pyc
9208e5a0fe2a7b1f16d7e99d86dee7c7  ./usr/lib32/python3.10/pipes.pyc
201d4edf5fbc5dcbfb312e1a23f521cc  ./usr/lib32/python3.10/pkgutil.pyc
d598016e2df28fb194ba2ecd8900f457  ./usr/lib32/python3.10/platform.pyc
aba7d8e20c01a4a5f4fdc1dded13952a  ./usr/lib32/python3.10/plistlib.pyc
ee3c65400b28f211143998eae6b48ff4  ./usr/lib32/python3.10/poplib.pyc
a844e0c02b9f6aaae5aeb32a04b41dae  ./usr/lib32/python3.10/posixpath.pyc
1d643d54ca0f0c302de9b23fd5cc8aa3  ./usr/lib32/python3.10/pprint.pyc
a65a6698864025e9f9c18b1b5f59e7ed  ./usr/lib32/python3.10/profile.pyc
6836417333845c9161837f85f55283c4  ./usr/lib32/python3.10/pstats.pyc
d54132bde864baa9baada29ba755e34a  ./usr/lib32/python3.10/pty.pyc
f05b3d223e8d97f72f96bab4786fe155  ./usr/lib32/python3.10/_py_abc.pyc
d051525bb91a47f156b7d810be2a772a  ./usr/lib32/python3.10/pyclbr.pyc
af611ae06e072058a6d3ae6f1e43b0a3  ./usr/lib32/python3.10/py_compile.pyc
00c4a72fde37f925eaab8c3ecff9a0f6  ./usr/lib32/python3.10/_pydecimal.pyc
769b02b7947fc696fa527ff9022905a1  ./usr/lib32/python3.10/_pyio.pyc
0266185724a324acd99014a23bb407d8  ./usr/lib32/python3.10/queue.pyc
4d14212d78a75bb3843598684c1e23a6  ./usr/lib32/python3.10/quopri.pyc
f6130c1815063b162200bf476dd5fa8c  ./usr/lib32/python3.10/random.pyc
0e99215c1c44773362292f9322ecccb3  ./usr/lib32/python3.10/reprlib.pyc
b101eab58c06cd37522e16c2a8dd5780  ./usr/lib32/python3.10/re.pyc
2b65e692769018c5554b69cebfbaef2f  ./usr/lib32/python3.10/rlcompleter.pyc
46b31db1d3c35dec8dc658bbfff41d7e  ./usr/lib32/python3.10/runpy.pyc
23c0bb9190a95f6630796d83aa3727ed  ./usr/lib32/python3.10/sched.pyc
3e4afcfe1142d786fc4ec069194d5d47  ./usr/lib32/python3.10/secrets.pyc
7586d6777966afdb81d82338ea270ee6  ./usr/lib32/python3.10/selectors.pyc
eebc854276e2717df9288e161bf346a0  ./usr/lib32/python3.10/shelve.pyc
bcc3bfec156444b7284d1364a9393478  ./usr/lib32/python3.10/shlex.pyc
aa311dd103ca80130b0e96cb619976cb  ./usr/lib32/python3.10/shutil.pyc
0996e713fca8cabb274bb434d2913b36  ./usr/lib32/python3.10/signal.pyc
370ba5be7201a6491ca022824d377fd2  ./usr/lib32/python3.10/_sitebuiltins.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/embit-0.7.0-py3.10.egg-info/dependency_links.txt
f0298d20ba53e25bd4794b68285aca96  ./usr/lib32/python3.10/site-packages/embit-0.7.0-py3.10.egg-info/PKG-INFO
98c0269ed785d2846b33c0b9149746f1  ./usr/lib32/python3.10/site-packages/embit-0.7.0-py3.10.egg-info/SOURCES.txt
24a514a4b40118d6d6bc50d02b537ca1  ./usr/lib32/python3.10/site-packages/embit-0.7.0-py3.10.egg-info/top_level.txt
18358137fd87b00eab39f6ff1032d4c6  ./usr/lib32/python3.10/site-packages/embit/base58.pyc
14bfeb1ac44dfd7e602488aa1e023085  ./usr/lib32/python3.10/site-packages/embit/base.pyc
bdc2668fe04cebc4e04de99f87741dd7  ./usr/lib32/python3.10/site-packages/embit/bech32.pyc
f0a072967a373f8d1ac10e16326cdd0b  ./usr/lib32/python3.10/site-packages/embit/bip32.pyc
391b4d7a8d01c86d1f594e72ab3e03b9  ./usr/lib32/python3.10/site-packages/embit/bip39.pyc
511b56b4785e5c1ec668c1504dd7b67c  ./usr/lib32/python3.10/site-packages/embit/bip85.pyc
70551a2246ce3fbff8369b7e43961eea  ./usr/lib32/python3.10/site-packages/embit/compact.pyc
5be54495c36260e46d1111d2841e0e44  ./usr/lib32/python3.10/site-packages/embit/descriptor/arguments.pyc
f6ecc32bd6e0bda7450f88077e1acd29  ./usr/lib32/python3.10/site-packages/embit/descriptor/base.pyc
11c0a66124988b0864c31bf13827eb62  ./usr/lib32/python3.10/site-packages/embit/descriptor/checksum.pyc
3416f9566058fbe3ef23342adaafa9f0  ./usr/lib32/python3.10/site-packages/embit/descriptor/descriptor.pyc
050670f91fd1e1050b9270ea0d66d924  ./usr/lib32/python3.10/site-packages/embit/descriptor/errors.pyc
ff602cbd5191d2d38735904906af1d9a  ./usr/lib32/python3.10/site-packages/embit/descriptor/__init__.pyc
f4a815d7bbf85f8d9f12bfa6e87184cc  ./usr/lib32/python3.10/site-packages/embit/descriptor/miniscript.pyc
4639ed5650db365ebc3c750905a39ca9  ./usr/lib32/python3.10/site-packages/embit/ec.pyc
48edda4643f33e280ecb1735eaf039f0  ./usr/lib32/python3.10/site-packages/embit/finalizer.pyc
9b44c935e13336ad3cc74e09c0f4834a  ./usr/lib32/python3.10/site-packages/embit/hashes.pyc
8c05d18d676879029bc0567bff2217fa  ./usr/lib32/python3.10/site-packages/embit/__init__.pyc
5e6c0c3043add0a11466c5bc3b8eef69  ./usr/lib32/python3.10/site-packages/embit/networks.pyc
c8db61798777a3cba57e8406928d6d68  ./usr/lib32/python3.10/site-packages/embit/psbt.pyc
841bddcf376272ae83ba5662b0180b75  ./usr/lib32/python3.10/site-packages/embit/psbtview.pyc
4475fdae66d8ff4e1b91424f0d144fb4  ./usr/lib32/python3.10/site-packages/embit/script.pyc
40fe84ba28c2e75b4726fb3b00542f77  ./usr/lib32/python3.10/site-packages/embit/slip39.pyc
e66cd7b9a89c07d66b7678c8248ee270  ./usr/lib32/python3.10/site-packages/embit/transaction.pyc
59cd5387a26d688d21300d09b03d60ea  ./usr/lib32/python3.10/site-packages/embit/util/ctypes_secp256k1.pyc
67ddd120e84bda9b5296bc0a32a0b311  ./usr/lib32/python3.10/site-packages/embit/util/__init__.pyc
fde92edd92009a670973c06056bd102e  ./usr/lib32/python3.10/site-packages/embit/util/key.pyc
4a823e99e55fe91f0aa77a0329d62845  ./usr/lib32/python3.10/site-packages/embit/util/prebuilt/libsecp256k1_linux_armv6l.so
4a823e99e55fe91f0aa77a0329d62845  ./usr/lib32/python3.10/site-packages/embit/util/prebuilt/libsecp256k1_linux_armv7l.so
d6222a186474e85ecba449d315259b30  ./usr/lib32/python3.10/site-packages/embit/util/py_ripemd160.pyc
30af22d0b5765d598a7d3d6e4e3704aa  ./usr/lib32/python3.10/site-packages/embit/util/py_secp256k1.pyc
9340ccc3c74e3fe2c078c6a76cb67e02  ./usr/lib32/python3.10/site-packages/embit/util/secp256k1.pyc
dc51bc51a4a0809a1e4ab3cccc233e45  ./usr/lib32/python3.10/site-packages/embit/wordlists/base.pyc
c0822ce146be271107c76efd8a050730  ./usr/lib32/python3.10/site-packages/embit/wordlists/bip39.pyc
1482c533f99a4b29ba776d895efb5769  ./usr/lib32/python3.10/site-packages/embit/wordlists/__init__.pyc
95c47fef511fbff9612c5ce0d39e0dd9  ./usr/lib32/python3.10/site-packages/embit/wordlists/slip39.pyc
512fc2f73d1f58970c1ce481e5c4905b  ./usr/lib32/python3.10/site-packages/embit/wordlists/ubip39.pyc
4a9f0a3f2ec6322d22a42fc27379f62b  ./usr/lib32/python3.10/site-packages/embit/wordlists/uslip39.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/mock-4.0.3-py3.10.egg-info/dependency_links.txt
ca03c86737d9f39ac6ff720461bbe870  ./usr/lib32/python3.10/site-packages/mock-4.0.3-py3.10.egg-info/PKG-INFO
4f365e1df1b36e51a3fdc0f2728efb68  ./usr/lib32/python3.10/site-packages/mock-4.0.3-py3.10.egg-info/requires.txt
95bd4b8bc8d4ba6bd4dd5c218615e04d  ./usr/lib32/python3.10/site-packages/mock-4.0.3-py3.10.egg-info/SOURCES.txt
450758a451a56f5ab4a1e53e28435202  ./usr/lib32/python3.10/site-packages/mock-4.0.3-py3.10.egg-info/top_level.txt
9b05d3b57e13c329eba41b6a2094b63f  ./usr/lib32/python3.10/site-packages/mock/backports.pyc
dccbcd03a8e7a47ffd0b6adcec5ce588  ./usr/lib32/python3.10/site-packages/mock/__init__.pyc
9a9be08dc19c295e6411c722ae8d6cab  ./usr/lib32/python3.10/site-packages/mock/mock.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/dependency_links.txt
631dc523b437fc31f17e41064b2b180c  ./usr/lib32/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/entry_points.txt
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/not-zip-safe
af49fa799f52014e9e99047c2f46b4e7  ./usr/lib32/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/PKG-INFO
be513e146823e69701006e62efd1e08d  ./usr/lib32/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/SOURCES.txt
93d7964ec38e9a2894a602b6c93f8cb7  ./usr/lib32/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/top_level.txt
72aba2b162b14c018fc56676f0a1429c  ./usr/lib32/python3.10/site-packages/numpy/array_api/_array_object.pyc
e5c2c423a395b01106e4aa2f2542b45b  ./usr/lib32/python3.10/site-packages/numpy/array_api/_constants.pyc
a2e5e0d909500ed62351d02052ead8be  ./usr/lib32/python3.10/site-packages/numpy/array_api/_creation_functions.pyc
6d950f6749a48122a9412de2640c7659  ./usr/lib32/python3.10/site-packages/numpy/array_api/_data_type_functions.pyc
9749e2a3832f8a23bd649f398c03deab  ./usr/lib32/python3.10/site-packages/numpy/array_api/_dtypes.pyc
f8cbfd5d29bfface89c64004604b6106  ./usr/lib32/python3.10/site-packages/numpy/array_api/_elementwise_functions.pyc
00db7edbd4c0d28151c4d3c4364cb9bf  ./usr/lib32/python3.10/site-packages/numpy/array_api/__init__.pyc
3aec2bca44299f71f02ba276985752ea  ./usr/lib32/python3.10/site-packages/numpy/array_api/linalg.pyc
b6da6c4e69ba67df6861e963a80f2417  ./usr/lib32/python3.10/site-packages/numpy/array_api/_manipulation_functions.pyc
7ff575fbb129e4bfb16d9f7a77ce00c4  ./usr/lib32/python3.10/site-packages/numpy/array_api/_searching_functions.pyc
5c66b6d27ea0b913067c0bff4a3d96f9  ./usr/lib32/python3.10/site-packages/numpy/array_api/_set_functions.pyc
553c70942c4223999f6dae7609c7ecaa  ./usr/lib32/python3.10/site-packages/numpy/array_api/setup.pyc
f83ce7f69359c13a4f6c447fd344db54  ./usr/lib32/python3.10/site-packages/numpy/array_api/_sorting_functions.pyc
f876ee3768ebe393e964f5e69ca24085  ./usr/lib32/python3.10/site-packages/numpy/array_api/_statistical_functions.pyc
4ae9259c045718813b16103f1ccc5e8f  ./usr/lib32/python3.10/site-packages/numpy/array_api/tests/__init__.pyc
1995d1cc5a844812d090e4090beaf832  ./usr/lib32/python3.10/site-packages/numpy/array_api/tests/test_array_object.pyc
dbaa032dbe989423d567de44c7e3b41d  ./usr/lib32/python3.10/site-packages/numpy/array_api/tests/test_creation_functions.pyc
3df4c8d96ddb2ecec007cba6b4422840  ./usr/lib32/python3.10/site-packages/numpy/array_api/tests/test_data_type_functions.pyc
7ec01ec678c0588e1dde8e1c93d4ce3c  ./usr/lib32/python3.10/site-packages/numpy/array_api/tests/test_elementwise_functions.pyc
b8586f4f4b8cb5d09862eaf47ea29bfc  ./usr/lib32/python3.10/site-packages/numpy/array_api/tests/test_set_functions.pyc
b46c00e64a746687abeb97df440a7f3e  ./usr/lib32/python3.10/site-packages/numpy/array_api/tests/test_sorting_functions.pyc
8b30fdc0f0fcedff9d85007f0f149374  ./usr/lib32/python3.10/site-packages/numpy/array_api/tests/test_validation.pyc
b502b2c586ecc14e0d0ede511fddc29c  ./usr/lib32/python3.10/site-packages/numpy/array_api/_typing.pyc
d35f514ad7aa096abd29ed0ce58f24e1  ./usr/lib32/python3.10/site-packages/numpy/array_api/_utility_functions.pyc
098577929a6d904905b7d3006431d486  ./usr/lib32/python3.10/site-packages/numpy/compat/__init__.pyc
a78f13baec48516d7d93bcaba84ae6e7  ./usr/lib32/python3.10/site-packages/numpy/compat/_inspect.pyc
05923668f1a430a8389d57da9259d474  ./usr/lib32/python3.10/site-packages/numpy/compat/_pep440.pyc
9c3fefcb2fc711bff0a39043fbf12c19  ./usr/lib32/python3.10/site-packages/numpy/compat/py3k.pyc
6f373a7d455e2cd800f52fd79264325d  ./usr/lib32/python3.10/site-packages/numpy/compat/setup.pyc
4d7a6fef55f40c0b9c4e78fe9cd563ec  ./usr/lib32/python3.10/site-packages/numpy/compat/tests/__init__.pyc
ad90c8d013fede6396b85f585a1a041f  ./usr/lib32/python3.10/site-packages/numpy/compat/tests/test_compat.pyc
0b4ad5a758a1855745e6ff9d9bbe980a  ./usr/lib32/python3.10/site-packages/numpy/__config__.pyc
b2095619de2e6ab1a5e8788e089e88c8  ./usr/lib32/python3.10/site-packages/numpy/conftest.pyc
32d9309179c83cd6b113c846a2c8d492  ./usr/lib32/python3.10/site-packages/numpy/core/_add_newdocs.pyc
da33f22f2a9569b5ff18328620de5f50  ./usr/lib32/python3.10/site-packages/numpy/core/_add_newdocs_scalars.pyc
9dd15180553db14f1e4b3d7cac868c70  ./usr/lib32/python3.10/site-packages/numpy/core/arrayprint.pyc
466ef50cc7163c4fa589c73b3872e87e  ./usr/lib32/python3.10/site-packages/numpy/core/arrayprint.pyi
3adbad598344c9bad8d36f66d785b210  ./usr/lib32/python3.10/site-packages/numpy/core/_asarray.pyc
2125e5a26c4da7159cbb3d5c0d33bca4  ./usr/lib32/python3.10/site-packages/numpy/core/_asarray.pyi
e97ecf834e4df76abc764592e3ea1be6  ./usr/lib32/python3.10/site-packages/numpy/core/cversions.pyc
d283ffe3c3641ad9c5f31097847021e9  ./usr/lib32/python3.10/site-packages/numpy/core/defchararray.pyc
59a512bdb728a63ab2ace6f30539e9da  ./usr/lib32/python3.10/site-packages/numpy/core/defchararray.pyi
fcc7cb74a9c5c39094b0faaf8ba5133a  ./usr/lib32/python3.10/site-packages/numpy/core/_dtype_ctypes.pyc
706069b6b5346ff66f3fbea4a0e07cec  ./usr/lib32/python3.10/site-packages/numpy/core/_dtype.pyc
ed8004584b9cfd8f4bd69e3e439bc2ca  ./usr/lib32/python3.10/site-packages/numpy/core/einsumfunc.pyc
d0da7d6ff76399b37d6206a9ec713d3b  ./usr/lib32/python3.10/site-packages/numpy/core/einsumfunc.pyi
4b0ed58f72ad3483c45b5030c7d9d119  ./usr/lib32/python3.10/site-packages/numpy/core/_exceptions.pyc
ba68040d5fa7df49428d9e6640c5be26  ./usr/lib32/python3.10/site-packages/numpy/core/fromnumeric.pyc
bb69fe9f228c866425a7f73422a4c431  ./usr/lib32/python3.10/site-packages/numpy/core/fromnumeric.pyi
208049aed7cf0cf1a796ae80ef0fdf9f  ./usr/lib32/python3.10/site-packages/numpy/core/function_base.pyc
22892e743b9afc0488395806d36492f8  ./usr/lib32/python3.10/site-packages/numpy/core/function_base.pyi
709ddfa16eed810730854f27bdbbcc96  ./usr/lib32/python3.10/site-packages/numpy/core/generate_numpy_api.pyc
a55991504fb1232b482a79c6319f900e  ./usr/lib32/python3.10/site-packages/numpy/core/getlimits.pyc
f2077f6fe286c758ce7400bc63178a54  ./usr/lib32/python3.10/site-packages/numpy/core/getlimits.pyi
eb3bb920f6a5e6fd98ffb04f923262f0  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h
a0f1acefee308b2d7662c8c456c4df1f  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/arrayscalars.h
6ae1a494dfdc73380cff3e077c20b7cf  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/.doxyfile
eb1551ddf17ab02775005aea21c972e8  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/experimental_dtype_api.h
30abfb26f7896504e978b52afb6b9e06  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/halffloat.h
4a27c048f093a7d867140c05ebca7c19  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/libdivide/libdivide.h
e1c97b70a98c8ec5aff0aa275fdb2c91  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/libdivide/LICENSE.txt
8211f9368129998e353b9927c693f406  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/__multiarray_api.h
2d76efa79054647b1e90154f89683959  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/multiarray_api.txt
e3cf93d1b2b120e2d211860967e4cc97  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h
2e2ae0e00ec1cf8fa1b33161a9a9495f  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h
94f7b2859ac1094c6dbd220a29c24233  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/_neighborhood_iterator_imp.h
d3ef1858bdff9d4302da69ac7ebd769d  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/noprefix.h
6a89c787a7d3904e381baae7e8ed5ee1  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h
564249576b843b9c464264d5192cc897  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/npy_3kcompat.h
6b8272670455d16eda4326982241b87a  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/npy_common.h
9a019649587e75d7d9f2966eceff4079  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/npy_cpu.h
2c9694ab9c5dfe4c29f626f5966445b7  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/npy_endian.h
798a2bc0949fbb609b6afcfc1ce51489  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/npy_interrupt.h
1d1bd9ce80eba74e8f44d18f5d292244  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/npy_math.h
c735cd1c24e6c99ab591477f76f9d138  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/npy_no_deprecated_api.h
0658f14342454148bcb3ed16f6fe66c0  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/npy_os.h
e082cd9ae43dc125f4b80f18abc41d37  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/_numpyconfig.h
116f583181e1ac3ed1e9d91107613592  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/numpyconfig.h
6a610c90041a5c58e7a18b352b95b2f0  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/old_defines.h
f100cdfc39139873ebb9c47d7062e3cf  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/oldnumeric.h
b80b1830332f082e431fdccfff2f8489  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/random/bitgen.h
14e3e8e649a6f11e9a61ab942290e9a0  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/random/distributions.h
5164dc31af8f5c423b96c3004ebd122f  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/__ufunc_api.h
932757cd2ef46562782b4bdb32b2b403  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/ufunc_api.txt
9a4180d600a270e0edfd2745473d35d4  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/ufuncobject.h
29f08ef2059c21c3001b05dacd8ebc48  ./usr/lib32/python3.10/site-packages/numpy/core/include/numpy/utils.h
570b3e7ace7e36f516911c76a327c773  ./usr/lib32/python3.10/site-packages/numpy/core/__init__.pyc
a472467ee6675560b4a81665caf56fde  ./usr/lib32/python3.10/site-packages/numpy/core/__init__.pyi
111f1bb495402aa1d6b912dfdc81c125  ./usr/lib32/python3.10/site-packages/numpy/core/_internal.pyc
30e266812c29d08b4874ade5e415b93a  ./usr/lib32/python3.10/site-packages/numpy/core/_internal.pyi
a80e45f7d2b57faa0873d810f8f0ec78  ./usr/lib32/python3.10/site-packages/numpy/core/lib/npy-pkg-config/mlib.ini
903dee21642e3116734777eebe2c45bf  ./usr/lib32/python3.10/site-packages/numpy/core/lib/npy-pkg-config/npymath.ini
0c7a4da48ce7b4875818b9743cce3415  ./usr/lib32/python3.10/site-packages/numpy/core/_machar.pyc
90ccbca3ae0876bdb31c93f2c914252a  ./usr/lib32/python3.10/site-packages/numpy/core/memmap.pyc
68ced2e0b034becdb1c30cb82f04aae4  ./usr/lib32/python3.10/site-packages/numpy/core/memmap.pyi
80ee7f4e72c93b05bf18d5f86d9be544  ./usr/lib32/python3.10/site-packages/numpy/core/_methods.pyc
e5be00c45e74f8ef75df0ef6026999cb  ./usr/lib32/python3.10/site-packages/numpy/core/multiarray.pyc
ab996ad06e3d228417e8e2b1588c06b2  ./usr/lib32/python3.10/site-packages/numpy/core/multiarray.pyi
3deac080f46c6e04c3fce4137e9835a2  ./usr/lib32/python3.10/site-packages/numpy/core/_multiarray_tests.cpython-310-arm-linux-gnueabihf.so
7a2c2f7948bef087726845731f55f339  ./usr/lib32/python3.10/site-packages/numpy/core/_multiarray_umath.cpython-310-arm-linux-gnueabihf.so
4ad5efc21f93596ec11ad2d8fdefb278  ./usr/lib32/python3.10/site-packages/numpy/core/numeric.pyc
8dafb5a794dd9503a81623b718584628  ./usr/lib32/python3.10/site-packages/numpy/core/numeric.pyi
184af119e451e41a699404dc2ce24ae8  ./usr/lib32/python3.10/site-packages/numpy/core/numerictypes.pyc
e0e489bba5426ee723a1e639ee2bcc39  ./usr/lib32/python3.10/site-packages/numpy/core/numerictypes.pyi
4c2661e014fcc5d162b48e2e7d7606c9  ./usr/lib32/python3.10/site-packages/numpy/core/_operand_flag_tests.cpython-310-arm-linux-gnueabihf.so
dcd43adaebd7888b4b5357d14deaa815  ./usr/lib32/python3.10/site-packages/numpy/core/overrides.pyc
c404207b636bd0d1d6d8a834849ef635  ./usr/lib32/python3.10/site-packages/numpy/core/_rational_tests.cpython-310-arm-linux-gnueabihf.so
adeefb58f2961bd5014254bc38ea336f  ./usr/lib32/python3.10/site-packages/numpy/core/records.pyc
7f14db74b26fada9a6afbabde3160041  ./usr/lib32/python3.10/site-packages/numpy/core/records.pyi
8dc5515b5ccdc483bc6327bd2b550439  ./usr/lib32/python3.10/site-packages/numpy/core/setup_common.pyc
522f9a3c678c3e11310fefbe106ce537  ./usr/lib32/python3.10/site-packages/numpy/core/setup.pyc
bc332c6c590a44944ddb8ee9419d1f47  ./usr/lib32/python3.10/site-packages/numpy/core/shape_base.pyc
c9a5a39852f01ebee5469b1d36a72ea7  ./usr/lib32/python3.10/site-packages/numpy/core/shape_base.pyi
6b810cc7741fcd40a27a17d3f8063ff9  ./usr/lib32/python3.10/site-packages/numpy/core/_simd.cpython-310-arm-linux-gnueabihf.so
d472ded6c1fe255b97b009b4de634194  ./usr/lib32/python3.10/site-packages/numpy/core/_string_helpers.py
e6b2358610645d6ee649855ab3425efc  ./usr/lib32/python3.10/site-packages/numpy/core/_struct_ufunc_tests.cpython-310-arm-linux-gnueabihf.so
b74dd6fdb4ed7060adc4500face18830  ./usr/lib32/python3.10/site-packages/numpy/core/_type_aliases.pyc
c1d9fe3a43f9ba756c534fee435e598d  ./usr/lib32/python3.10/site-packages/numpy/core/_type_aliases.pyi
d39213de4b6989e43b278df8239204a4  ./usr/lib32/python3.10/site-packages/numpy/core/_ufunc_config.pyc
fcad2531542ef62a6c9d381a05b176c9  ./usr/lib32/python3.10/site-packages/numpy/core/_ufunc_config.pyi
3120490fc50248bb00a2dc4159c2dc02  ./usr/lib32/python3.10/site-packages/numpy/core/umath.pyc
f4a9a57363e124af6e063ddf10bf29b6  ./usr/lib32/python3.10/site-packages/numpy/core/_umath_tests.cpython-310-arm-linux-gnueabihf.so
5fe151e55c296c85cc90679740693411  ./usr/lib32/python3.10/site-packages/numpy/core/umath_tests.pyc
423386bf09ae46e7d1a985e6f60fd0d6  ./usr/lib32/python3.10/site-packages/numpy/ctypeslib.pyc
40db76d3b23452e6acd4487c03f045b0  ./usr/lib32/python3.10/site-packages/numpy/ctypeslib.pyi
8fbb598e751ae51d4d82a6fb27efb74f  ./usr/lib32/python3.10/site-packages/numpy/_distributor_init.pyc
6317792c7c04d0058d519b2a313f4d00  ./usr/lib32/python3.10/site-packages/numpy/distutils/armccompiler.pyc
92dbc15c04c4aa491fa8d8c59f67ec90  ./usr/lib32/python3.10/site-packages/numpy/distutils/ccompiler_opt.pyc
8c8c32fd4cf8ed72f419da7ca8179da2  ./usr/lib32/python3.10/site-packages/numpy/distutils/ccompiler.py
729659ef8a2712b74aff2f5b44b0b05e  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_asimd.c
4575103d1a16b357844dcf5469d6b180  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_asimddp.c
a3467dbfab603935f3c5127a0448f3ab  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_asimdfhm.c
498983c6b1a3d8a88f9008ff1667a9cf  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_asimdhp.c
ba79e8c2934be9b7b30566f34677a74d  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_avx2.c
50b2ac6463ba0f8dc0690e642fa66b8c  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_avx512cd.c
f7b3f56ffd40b4ebc677627764ce4199  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_clx.c
f82fbdc58696141f791c07ae0ce659bd  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_cnl.c
b8ea35811d5a5015f720d6f0a5a0da68  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_avx512f.c
7681165645822590e511861a990d729c  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_icl.c
830170d735bbda8fd225bd120dcb9cf7  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_knl.c
79fe934fbc338ac6b45531f53041bd25  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_knm.c
32ed3d0ddbb2ef75ca109fa1ea85ac88  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_skx.c
3e5a54f7e5c1060831649af5815e78ed  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_avx.c
cf475ec193b16d5e012d5fe711630cb4  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_f16c.c
a7968abad6001e3e07d728d05aeebad9  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_fma3.c
23117affd333cf2924c1317ed2cac0a8  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_fma4.c
ed4a1a941eb11dbb068dbb3ebdd63fdf  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_neon.c
60db5bf5b1ee33bcc4c92ba6eba9b674  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_neon_fp16.c
a8a493f2af1122656fa869402034fbc4  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_neon_vfpv4.c
1d5ba7d0adcd747f927b73dd5bc0a119  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_popcnt.c
360aa3b32257632cf85e09f277a1b774  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_sse2.c
e131e0a1e2de0f9f65f7848f4ce859c4  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_sse3.c
bedc18314954cf2a3d7db30d3eb13e56  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_sse41.c
a1f92cf114d170c67e6bf34606c8eba9  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_sse42.c
32a6d8d48e4f9e890d0be33d711f4642  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_sse.c
ccc4e0fb5f69b8dd570023eed5f4d34e  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_ssse3.c
7271d9aab614188d5dcb9bba1f9bc86a  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_vsx2.c
13aaef2f7e54b08c51ca40b85b794c15  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_vsx3.c
74551e2b16ecd13ca6fa4453a31eb1ec  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_vsx4.c
284801daa4d70e16da3c1883e21c8ed0  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_vsx.c
a756dc5f2f074facbed97bc034f20b1b  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_vx.c
26ad98eb4aea16417c22aa90c7cc98a2  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_vxe2.c
7a87197328d1b586fecf3fbfc00730fb  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_vxe.c
19f05553f094d1751a39dcf3a780ac08  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/cpu_xop.c
951d81bc4266755c9de96d7f461a99be  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/extra_avx512bw_mask.c
e12b58a22f707a46a6f10b653504e790  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/extra_avx512dq_mask.c
526b1abad1b7d27dc2eae7b6830313d5  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/extra_avx512f_reduce.c
7951cd8e0d3d64ed3458b51d87c045b9  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/extra_vsx4_mma.c
55f282035c97575495c817129939fc0d  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/extra_vsx_asm.c
09838633016ab3e49fc030822b5b9384  ./usr/lib32/python3.10/site-packages/numpy/distutils/checks/test_flags.c
6d6a94b8ca72c1d1cee3d44977405f4e  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/autodist.pyc
927430d1b20b374022317e62c81a083f  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/bdist_rpm.pyc
b1907dc14641b8afbd426f0d743a4036  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/build_clib.pyc
e2b5a8d8bb95356bb2cf3a443bddbe25  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/build_ext.pyc
040486f8c9df813ad55874f0efb7914f  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/build.pyc
5b9d06c74136d5b778759a26432e5d36  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/build_py.py
58dd76f58f74ac0fd6dbfe38df577eba  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/build_scripts.pyc
c5c83a5663064296584abf125d5b024d  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/build_src.pyc
d724b192b6b8dca26a3ef68caa10e2a8  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/config_compiler.pyc
bedba0d8507cbb3708952e2cfaae50e4  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/config.pyc
92480a920c4964ae0c61f41f552804e7  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/develop.pyc
35a32b56edfbef6d8e802164549d82a0  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/egg_info.pyc
87c8c35942087908a7355d1c85b5a9b8  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/__init__.pyc
7c663a37e8c1a600af6680baa382ed23  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/install_clib.pyc
5fa606916c90af50f00d63d8db8cda74  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/install_data.pyc
a4b6a3016330dda6c7f802a4a878fb14  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/install_headers.pyc
1576af57827a3f5d0d65524bd3213d47  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/install.pyc
2dc794b1ea8de0ee262a7007ed00c6a4  ./usr/lib32/python3.10/site-packages/numpy/distutils/command/sdist.pyc
d7f94ecf77e183a4aa5f53908b593204  ./usr/lib32/python3.10/site-packages/numpy/distutils/__config__.pyc
d458fdae76819a181a9706a11d124f86  ./usr/lib32/python3.10/site-packages/numpy/distutils/conv_template.pyc
0f5319897533a579e234e152dc7ca81d  ./usr/lib32/python3.10/site-packages/numpy/distutils/core.pyc
c72f3fc0fce61798e3866ae7144d8318  ./usr/lib32/python3.10/site-packages/numpy/distutils/cpuinfo.pyc
c0a15c491c7a63d007de6c1cee89a627  ./usr/lib32/python3.10/site-packages/numpy/distutils/exec_command.pyc
111df1d28ec2f568ecaa9a2882d6c326  ./usr/lib32/python3.10/site-packages/numpy/distutils/extension.pyc
bf7a69915296e773f1dade51e2861ed0  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/absoft.pyc
1552ce84e932952f0b5bbe36d798b2e7  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/arm.pyc
1d609e127fa4a81f71507dc4c8cabcd2  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/compaq.pyc
4b0c17fccef1789f81b69af27c376a15  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/environment.pyc
ea6c1b6f3a6b4fae6ef74eac3937a1da  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/fujitsu.pyc
2e4e3bacb77c19ea84b1be967d7c2eb3  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/g95.pyc
1f9a3986b42eea98384bdfdfc38c1765  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/gnu.pyc
5372f207fa846dde2dc369ef0161fe3d  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/hpux.pyc
4fa04fa7e298ed582df86910d3e1071d  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/ibm.pyc
04b20e099ea26579f6dd02af3e6722cc  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/__init__.pyc
e7cc462e9c7f7bb40c082806df8c094c  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/intel.pyc
532c1a893e88d0acdf4c6a6f0f343c1b  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/lahey.pyc
e4c4262c6d806be7dd714b82b53aebe6  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/mips.pyc
b6b7d66081aad124a2cacabb77b9cd80  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/nag.pyc
786b7327b069f92c4c63c2d90b70138e  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/none.pyc
7886027b27ab4e9c282823a1d2ff405e  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/nv.pyc
8c494a0d33836f130b7ad9d6aa9d29af  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/pathf95.pyc
a3b392ed739c552040af6ff7532c024c  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/pg.pyc
217364602928cb9479fb4ecf95387560  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/sun.pyc
0490b6530b511d9982be95977e222252  ./usr/lib32/python3.10/site-packages/numpy/distutils/fcompiler/vast.pyc
0d2e88cc8db8bc024812f511df13f04a  ./usr/lib32/python3.10/site-packages/numpy/distutils/from_template.pyc
cc373691fa5d254830a8c956b8f74685  ./usr/lib32/python3.10/site-packages/numpy/distutils/__init__.pyc
2fe4b62addf62694e3691a77e0e3137f  ./usr/lib32/python3.10/site-packages/numpy/distutils/__init__.pyi
c9035d3a7012e17a4a9ec72f2f8b2388  ./usr/lib32/python3.10/site-packages/numpy/distutils/intelccompiler.pyc
a311908b9b720b2ff58baa1d6fe7c1b6  ./usr/lib32/python3.10/site-packages/numpy/distutils/lib2def.pyc
b7a61d3a7d3e554989725f36df32f189  ./usr/lib32/python3.10/site-packages/numpy/distutils/line_endings.pyc
2a42c6d4c696864c780ad8be530c1134  ./usr/lib32/python3.10/site-packages/numpy/distutils/log.pyc
29473eb8e451fe6853aeb444ac90f146  ./usr/lib32/python3.10/site-packages/numpy/distutils/mingw32ccompiler.pyc
5d423859926fdf131efaf6c593790849  ./usr/lib32/python3.10/site-packages/numpy/distutils/mingw/gfortran_vs2003_hack.c
34b822bce242152571bcc47347da3acb  ./usr/lib32/python3.10/site-packages/numpy/distutils/misc_util.py
97ed83ab5298835417468617c02c61cc  ./usr/lib32/python3.10/site-packages/numpy/distutils/msvc9compiler.pyc
df715929752eafb2e7cb6d729bfc73c5  ./usr/lib32/python3.10/site-packages/numpy/distutils/msvccompiler.pyc
0e56a88e2d0a7c932260d1d0f3a0546a  ./usr/lib32/python3.10/site-packages/numpy/distutils/npy_pkg_config.pyc
ae452ad9e83b3833d06616a9e5405f71  ./usr/lib32/python3.10/site-packages/numpy/distutils/numpy_distribution.pyc
b997a36b09bb9b86f4f631512ca39bd9  ./usr/lib32/python3.10/site-packages/numpy/distutils/pathccompiler.pyc
ac2de065feab3493cc1b8dab6f8d8e50  ./usr/lib32/python3.10/site-packages/numpy/distutils/setup.pyc
6893bbaa41aa04e572d9254ba4f71e09  ./usr/lib32/python3.10/site-packages/numpy/distutils/_shell_utils.pyc
937f4949b57bff3b74644292d992cde2  ./usr/lib32/python3.10/site-packages/numpy/distutils/site.cfg
ade116cfbf0d2864ff1069d6f52a3581  ./usr/lib32/python3.10/site-packages/numpy/distutils/system_info.py
1c870e126dcddcc7d7921ed5f67c095c  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/__init__.pyc
15f351d0a66be34c4dc855649e0032da  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_build_ext.pyc
e347961647f31a42134084df08b7118e  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_ccompiler_opt_conf.pyc
4941c0112bd731b1191909126c29ddf6  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_ccompiler_opt.pyc
be42f8c89c8e9b74f149e5e8c67b074d  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_exec_command.pyc
b83dd133e9f9d601453007796cc9637f  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_fcompiler_gnu.pyc
adce3cfc44a09775d89a19fd3deb9ac9  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_fcompiler_intel.pyc
2a0112f6d8ac67aaf9b42d980aa5b009  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_fcompiler_nagfor.pyc
33a47db913768d8973558906780e0d57  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_fcompiler.pyc
40ad072c6d69a096941d0f2dae554d35  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_from_template.pyc
fe1b52999605b707c01fd80b1d67856e  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_log.pyc
ddf009cfdb02d423b60cc4129ec3a217  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_mingw32ccompiler.pyc
0c0a4f5961e980497dbe69bd7394d184  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_misc_util.pyc
81cfac9d2a914302e5fa97c1a4b2b840  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_npy_pkg_config.pyc
40a37f4f78c3170ddf947101a9b1da5e  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_shell_utils.pyc
d812cf45f7a009012b888140232890d1  ./usr/lib32/python3.10/site-packages/numpy/distutils/tests/test_system_info.pyc
5ffcbc1f18d489e3d09fe1fd4f473da8  ./usr/lib32/python3.10/site-packages/numpy/distutils/unixccompiler.pyc
6e0f996f90446fff3ae35ece80e97112  ./usr/lib32/python3.10/site-packages/numpy/doc/constants.pyc
2a16e0ea59926aaf2060cc714f06f4dd  ./usr/lib32/python3.10/site-packages/numpy/doc/__init__.pyc
05537a18854aed532de3d45b7590cd79  ./usr/lib32/python3.10/site-packages/numpy/doc/ufuncs.pyc
b3ab3eabbc705231e9cb49805a01a966  ./usr/lib32/python3.10/site-packages/numpy/dual.pyc
cf8de34485cffc4542297fa9a2792052  ./usr/lib32/python3.10/site-packages/numpy/f2py/auxfuncs.py
a47f47c45d70d1c10e19ebd3779ebd24  ./usr/lib32/python3.10/site-packages/numpy/f2py/capi_maps.pyc
401924ac11f280fc7b8fd2432051bf38  ./usr/lib32/python3.10/site-packages/numpy/f2py/cb_rules.pyc
aafba56b540a195aa684577bbcd99736  ./usr/lib32/python3.10/site-packages/numpy/f2py/cfuncs.pyc
e24af0aee68978db0d6a18417372dd41  ./usr/lib32/python3.10/site-packages/numpy/f2py/common_rules.pyc
b561781b447c0473bcc4da7f13dac3a8  ./usr/lib32/python3.10/site-packages/numpy/f2py/crackfortran.py
66526a41cc00aa681b512cc08ca8b854  ./usr/lib32/python3.10/site-packages/numpy/f2py/diagnose.pyc
b3ddae7faaf5b370e2e64af2fc721c25  ./usr/lib32/python3.10/site-packages/numpy/f2py/f2py2e.py
07998f8f2500c2fe2a5f76d5c1abe982  ./usr/lib32/python3.10/site-packages/numpy/f2py/f90mod_rules.pyc
379a9c00b0dbe3ad3ff52dc21b0f6d4e  ./usr/lib32/python3.10/site-packages/numpy/f2py/func2subr.pyc
5a6c86916d9fe6a0545aa653cfbead1b  ./usr/lib32/python3.10/site-packages/numpy/f2py/__init__.pyc
a46c85efce73ff1881adf9f526341dcd  ./usr/lib32/python3.10/site-packages/numpy/f2py/__init__.pyi
8cac174d0cab75cd4b0b5ed0b3d60022  ./usr/lib32/python3.10/site-packages/numpy/f2py/__main__.pyc
808facb269b9a7eb9486ee3b8b45f07f  ./usr/lib32/python3.10/site-packages/numpy/f2py/rules.pyc
bcf3f12a02f4bcd9fd7769da3633a226  ./usr/lib32/python3.10/site-packages/numpy/f2py/setup.pyc
284485722cce5a0bc99b782806a97d7a  ./usr/lib32/python3.10/site-packages/numpy/f2py/src/fortranobject.c
2f1baece83d5d204735e3731a3b9bc17  ./usr/lib32/python3.10/site-packages/numpy/f2py/src/fortranobject.h
e860292e261fc73c1f17b93098a7c830  ./usr/lib32/python3.10/site-packages/numpy/f2py/symbolic.pyc
c9186314e9339c79c94740e7ee5a2c4e  ./usr/lib32/python3.10/site-packages/numpy/f2py/use_rules.pyc
a9145256cbe339c6879155514977882d  ./usr/lib32/python3.10/site-packages/numpy/f2py/__version__.pyc
5913a3480c0051921d608d172fb69d71  ./usr/lib32/python3.10/site-packages/numpy/fft/helper.pyc
330a08f0761c4afc4ac8f083a11d6b4a  ./usr/lib32/python3.10/site-packages/numpy/fft/helper.pyi
cead46a7e1d8217e0c71040de3fff887  ./usr/lib32/python3.10/site-packages/numpy/fft/__init__.pyc
007041670a5d4072927d80d556bd578e  ./usr/lib32/python3.10/site-packages/numpy/fft/__init__.pyi
8717badd3483ae43512ec3ccc2adc745  ./usr/lib32/python3.10/site-packages/numpy/fft/_pocketfft_internal.cpython-310-arm-linux-gnueabihf.so
7119b4bea2f9e17dda7f3a8c4d7c93ed  ./usr/lib32/python3.10/site-packages/numpy/fft/_pocketfft.pyc
e05ec22e88710b003d3430bd73faaf70  ./usr/lib32/python3.10/site-packages/numpy/fft/_pocketfft.pyi
b9ba40102290769e39941ec350b2adc8  ./usr/lib32/python3.10/site-packages/numpy/fft/setup.pyc
1c2c1b7445ed1e0aea9d3f3b0e9c4cbd  ./usr/lib32/python3.10/site-packages/numpy/fft/tests/__init__.pyc
9312cb52e6e3954ddb1c7bb0fe1e5ddf  ./usr/lib32/python3.10/site-packages/numpy/fft/tests/test_helper.pyc
d8bb8286e7d01ca873089d28dfb69fc5  ./usr/lib32/python3.10/site-packages/numpy/fft/tests/test_pocketfft.pyc
21b81cb03eba77988f9de511506b8adf  ./usr/lib32/python3.10/site-packages/numpy/_globals.pyc
d3786d6f56fd712bf89ea766cdc1c862  ./usr/lib32/python3.10/site-packages/numpy/__init__.cython-30.pxd
6d854de8b55151f3a6d1efde3b96ffcf  ./usr/lib32/python3.10/site-packages/numpy/__init__.pxd
d408e75b85bb07100daa37907b1a198b  ./usr/lib32/python3.10/site-packages/numpy/__init__.pyc
5b90cd4d6c12347266413f49e3a32a68  ./usr/lib32/python3.10/site-packages/numpy/__init__.pyi
2b80ed69aab99b502ad3c77155c6e98f  ./usr/lib32/python3.10/site-packages/numpy/lib/arraypad.pyc
903a91ed73f4f5a5e48cfe50eedb988a  ./usr/lib32/python3.10/site-packages/numpy/lib/arraypad.pyi
5781cb3ec32d18b4bd526a1f33951d87  ./usr/lib32/python3.10/site-packages/numpy/lib/arraysetops.pyc
adec856f33d4c66a134d86efdaf9e0f1  ./usr/lib32/python3.10/site-packages/numpy/lib/arraysetops.pyi
534c8e73b0bf2b9ec84028a0a9689807  ./usr/lib32/python3.10/site-packages/numpy/lib/arrayterator.pyc
ff1829de7bedf18c3df514cfdf3c77af  ./usr/lib32/python3.10/site-packages/numpy/lib/arrayterator.pyi
7aba0cc516695ab7f9ff7091ccc5e7d9  ./usr/lib32/python3.10/site-packages/numpy/lib/_datasource.pyc
fe3c8b3b52b8cd1efebd2eae861b5525  ./usr/lib32/python3.10/site-packages/numpy/lib/format.pyc
cb9ba6b0c59972dab59cb6249b791b27  ./usr/lib32/python3.10/site-packages/numpy/lib/format.pyi
58d4a3341bdcc31a8c93392d9b512d3e  ./usr/lib32/python3.10/site-packages/numpy/lib/function_base.pyc
bea2c0d099b9a5f204df8d33689a44e8  ./usr/lib32/python3.10/site-packages/numpy/lib/function_base.pyi
19593af81b5918918ad95e1eaad52ff5  ./usr/lib32/python3.10/site-packages/numpy/lib/histograms.pyc
760963cd184ac9e08e7430aed9c6630b  ./usr/lib32/python3.10/site-packages/numpy/lib/histograms.pyi
58ba294dbc5108c244ae1c61b3b1ac3d  ./usr/lib32/python3.10/site-packages/numpy/lib/index_tricks.pyc
d9c2af8c75cdf813235d92f2deb717cc  ./usr/lib32/python3.10/site-packages/numpy/lib/index_tricks.pyi
a255941513885ccf9b029f8d630d38b1  ./usr/lib32/python3.10/site-packages/numpy/lib/__init__.pyc
f24efb1d2dd1898b824c5b01bc714c31  ./usr/lib32/python3.10/site-packages/numpy/lib/__init__.pyi
e5a5e58f9aab13d217a15e75d64c8607  ./usr/lib32/python3.10/site-packages/numpy/lib/_iotools.py
4af9cb15cb86ec9de45b1be2c4bcc4a3  ./usr/lib32/python3.10/site-packages/numpy/lib/mixins.pyc
27b324bcc84782e96d6b323806df1b5a  ./usr/lib32/python3.10/site-packages/numpy/lib/mixins.pyi
baffc16553ad0a522f0ab7d23c72777d  ./usr/lib32/python3.10/site-packages/numpy/lib/nanfunctions.pyc
57f285800253ad5753952d94057f864d  ./usr/lib32/python3.10/site-packages/numpy/lib/nanfunctions.pyi
8b2a621c4c59efcd5cce25c0ebbaa85c  ./usr/lib32/python3.10/site-packages/numpy/lib/npyio.py
297dff013a910720f8425e2a9393fe8a  ./usr/lib32/python3.10/site-packages/numpy/lib/npyio.pyi
f4aa585d9b331a7fca5f4d44168de638  ./usr/lib32/python3.10/site-packages/numpy/lib/polynomial.pyc
fb0b679492d934bd01b2df43ddd94eab  ./usr/lib32/python3.10/site-packages/numpy/lib/polynomial.pyi
5996f14aefb067d5116eb41f309b7954  ./usr/lib32/python3.10/site-packages/numpy/lib/recfunctions.py
490ac7e48a8722ab4c850f8ca349a1e3  ./usr/lib32/python3.10/site-packages/numpy/lib/scimath.pyc
1041d57432714b0fc4de01cc77fe9b6f  ./usr/lib32/python3.10/site-packages/numpy/lib/scimath.pyi
ed6e53d8ee190725b09656b5a36e45c4  ./usr/lib32/python3.10/site-packages/numpy/lib/setup.pyc
e319cb6a0812befbc54b0c4b780ff6b5  ./usr/lib32/python3.10/site-packages/numpy/lib/shape_base.pyc
a77b42e76a1283e133e8b6f57ff3f431  ./usr/lib32/python3.10/site-packages/numpy/lib/shape_base.pyi
58008bc6a96c4785e7d956faede7f653  ./usr/lib32/python3.10/site-packages/numpy/lib/stride_tricks.py
6dac319f68347aa63825553bc798e53c  ./usr/lib32/python3.10/site-packages/numpy/lib/stride_tricks.pyi
84f5eaea36a9b1205f745110dccd0466  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/data/py2-objarr.npy
ce3c018f016c802ee2a5fb49c5fd4acb  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/data/py2-objarr.npz
d35090c607d30950ed86782530143a88  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/data/py3-objarr.npy
2e21b8980d4bf56d67457246613107a4  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/data/py3-objarr.npz
d185084441cc3c1503dbe6c74284987e  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/data/python3.npy
b9561119bd50d49368c5528b98c2c7e7  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/data/win64python2.npy
15b64210c5981843f98a036efc6d9f5e  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/__init__.pyc
e5594c9dbebe6416628f4a287d26b8f4  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_arraypad.pyc
812b8a0d33d071e3015b405367ac0ed7  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_arraysetops.pyc
773341d1c2a0341815d620158456c52f  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_arrayterator.pyc
4dbf355b0118111472bf8309ed362c68  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test__datasource.pyc
721b1780f8b75f7486e6d81945f21762  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_financial_expired.pyc
fe253b1e2c2be03c993c50973aff4f6a  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_format.pyc
a942e69f6ebab64d3167a54c98a59c72  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_function_base.pyc
75ad53675094a78445f3eaf3d59e922b  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_histograms.pyc
9eb60aecfb7a1a35542945a0f4efc7f2  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_index_tricks.pyc
554b366fdfa7bca425b9ffc54f1a87b1  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_io.pyc
5046493513c8db22d1c715ea8fa7f194  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test__iotools.pyc
360799eabb413f1548bde95edba958ff  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_loadtxt.pyc
e58e4e47c504aed956d08423c74425fe  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_mixins.pyc
8bd15958bfd2b57227dc8d6ae15ceac3  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_nanfunctions.pyc
3e01e13a715d6b5e650c784362c11cd1  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_packbits.pyc
89c5b7eb1d1260d748e58f255f871cec  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_polynomial.pyc
a11d0956bb0543e33963c1daf67344d3  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_recfunctions.pyc
1117f146375372c4622529ca5e9203fd  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_regression.pyc
60d9d682225573e92f44482b31ff40d5  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_shape_base.pyc
4f19d429922f0d8a0eafe609cb1c8e65  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_stride_tricks.pyc
158cc59ec0aa25f3f756c29c3d91713b  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_twodim_base.pyc
57b316b20bed48930a1a6c623a92ccf7  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_type_check.pyc
01945198f711c1bf679b47730327bbab  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_ufunclike.pyc
e394e702c3abbaa2338ec36ca9511ac5  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test_utils.pyc
92e747bae8f7167b88a3f8a192344e45  ./usr/lib32/python3.10/site-packages/numpy/lib/tests/test__version.pyc
65f27e6034c3095061d2a99f60fabcea  ./usr/lib32/python3.10/site-packages/numpy/lib/twodim_base.pyc
b64134edd65988d24797910d525c4bab  ./usr/lib32/python3.10/site-packages/numpy/lib/twodim_base.pyi
e03b7ecf096c4c39fbf4b867bf046e48  ./usr/lib32/python3.10/site-packages/numpy/lib/type_check.pyc
d4f2df305bd0edcb0c9745a43aa655c6  ./usr/lib32/python3.10/site-packages/numpy/lib/type_check.pyi
e77d86a58b9c3aea420289be6904b5d2  ./usr/lib32/python3.10/site-packages/numpy/lib/ufunclike.pyc
904017633297b01e5fa46af957e63f61  ./usr/lib32/python3.10/site-packages/numpy/lib/ufunclike.pyi
65ddc0ebc5070534416510c6d080246f  ./usr/lib32/python3.10/site-packages/numpy/lib/user_array.pyc
4f7f0b869c944ecc356774ac8b646fbe  ./usr/lib32/python3.10/site-packages/numpy/lib/utils.pyc
b83eeed499831a210de68a9d12f5985c  ./usr/lib32/python3.10/site-packages/numpy/lib/utils.pyi
a9fb379b8be369da3553faed3c9f9ae0  ./usr/lib32/python3.10/site-packages/numpy/lib/_version.pyc
c71a5c13a73fd1b6861a5f30605dcd2c  ./usr/lib32/python3.10/site-packages/numpy/lib/_version.pyi
8026691468924fb6ec155dadfe2a1a7f  ./usr/lib32/python3.10/site-packages/numpy/LICENSE.txt
1ab84cf75d89282df7a3805f85035c48  ./usr/lib32/python3.10/site-packages/numpy/linalg/__init__.pyc
75719efa05cfab70c7625db3205f24f4  ./usr/lib32/python3.10/site-packages/numpy/linalg/__init__.pyi
e400ef272e3279c09b39fb00fd143af8  ./usr/lib32/python3.10/site-packages/numpy/linalg/lapack_lite.cpython-310-arm-linux-gnueabihf.so
2479e0319ba611735efcdae8c15f98cf  ./usr/lib32/python3.10/site-packages/numpy/linalg/linalg.pyc
5a46b1ac58768b879772a09919229b33  ./usr/lib32/python3.10/site-packages/numpy/linalg/linalg.pyi
c7afe7299372c89b2ea2a7bb35e19051  ./usr/lib32/python3.10/site-packages/numpy/linalg/setup.pyc
7d5088cf34bfaefa0db7ac347dc03d74  ./usr/lib32/python3.10/site-packages/numpy/linalg/_umath_linalg.cpython-310-arm-linux-gnueabihf.so
4f9b068413a54372f2d3adfb515275d6  ./usr/lib32/python3.10/site-packages/numpy/ma/bench.pyc
cf992beb8858cb12e4f412835de48354  ./usr/lib32/python3.10/site-packages/numpy/ma/core.pyc
69e3ff6a0e1a98db61d9936afc2c65e6  ./usr/lib32/python3.10/site-packages/numpy/ma/core.pyi
281090314baf11476565d5327215dfba  ./usr/lib32/python3.10/site-packages/numpy/ma/extras.pyc
6f970c53ebe424b0ce6cec86f6caa352  ./usr/lib32/python3.10/site-packages/numpy/ma/extras.pyi
cb9c438847fcd77b96ad3630091791af  ./usr/lib32/python3.10/site-packages/numpy/ma/__init__.pyc
33c68111d95602927233b4959764f001  ./usr/lib32/python3.10/site-packages/numpy/ma/__init__.pyi
f008a6f864761575e8be2289e361a8d9  ./usr/lib32/python3.10/site-packages/numpy/ma/mrecords.pyc
1f50a41bc3096605ea32a81ec8eac5e1  ./usr/lib32/python3.10/site-packages/numpy/ma/mrecords.pyi
f419b5baf60cc7f7cc48cc7189ff781c  ./usr/lib32/python3.10/site-packages/numpy/ma/setup.pyc
1b5312596dbf8cdb03158f009b678d13  ./usr/lib32/python3.10/site-packages/numpy/ma/tests/__init__.pyc
1bc4c76179a2a96b4e4bb9e3e707e0ab  ./usr/lib32/python3.10/site-packages/numpy/ma/tests/test_core.pyc
cecb021d0d80574fffaf4af20a9a48e4  ./usr/lib32/python3.10/site-packages/numpy/ma/tests/test_deprecations.pyc
ff5899bfb818075208bb6abcf07e4252  ./usr/lib32/python3.10/site-packages/numpy/ma/tests/test_extras.pyc
3003c9ee7d15c7593680b056f700bd35  ./usr/lib32/python3.10/site-packages/numpy/ma/tests/test_mrecords.pyc
7fd37feddf81dd4b53e3de1a5ea8b509  ./usr/lib32/python3.10/site-packages/numpy/ma/tests/test_old_ma.pyc
0c5a9b04700d81437e6b64d3d2cf011d  ./usr/lib32/python3.10/site-packages/numpy/ma/tests/test_regression.pyc
925d63d4f44a0d9d9cc551aba410d98d  ./usr/lib32/python3.10/site-packages/numpy/ma/tests/test_subclassing.pyc
37163272c7c8437e74f62c9489675c24  ./usr/lib32/python3.10/site-packages/numpy/ma/testutils.pyc
0b857359c4951eb5b5155ed8626f103e  ./usr/lib32/python3.10/site-packages/numpy/ma/timer_comparison.pyc
858177ece296adca58a247bdd73b93e4  ./usr/lib32/python3.10/site-packages/numpy/matlib.pyc
a85719f419f697083301ec1b3d72c5f7  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/defmatrix.pyc
4ae8d739c9a383fdf95a9e3ce1efe7dc  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/defmatrix.pyi
13eb58182619c1d70dc8dc0a9f49f5c5  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/__init__.pyc
82abcf37ad620f4c1aae7dd2e171f2bd  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/__init__.pyi
105e48527e559a3bcbb182f986075c8b  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/setup.pyc
c048d075c99f82245fa1d0c5be0a4fda  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/tests/__init__.pyc
292c09df0fcc9513ab51a4e7cc853577  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/tests/test_defmatrix.pyc
fa25bce1d2afe1318852ac07c7a598fa  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/tests/test_interaction.pyc
78e8d2c52ea3c6ccb1ad7749b0d1045f  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/tests/test_masked_matrix.pyc
8f6183268d6e32c79969ea9fcbc3dd7e  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/tests/test_matrix_linalg.pyc
7e319cf21482a1ef8afe7449786cd9ae  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/tests/test_multiarray.pyc
17de351d13ecd601869441b4c11f9b62  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/tests/test_numeric.pyc
db68762d0c07ebc94ffc3ef457893b25  ./usr/lib32/python3.10/site-packages/numpy/matrixlib/tests/test_regression.pyc
00dd1f49b3135f593a575f1eebde58a4  ./usr/lib32/python3.10/site-packages/numpy/polynomial/chebyshev.pyc
cbbae3b84f99f2689b4c800c39bfad41  ./usr/lib32/python3.10/site-packages/numpy/polynomial/chebyshev.pyi
66c0acf58c94d5c45b2bf8656811403a  ./usr/lib32/python3.10/site-packages/numpy/polynomial/hermite_e.pyc
4e811dca6415f33f26fcd0dacd38617f  ./usr/lib32/python3.10/site-packages/numpy/polynomial/hermite_e.pyi
203435fd9362d1c246dee17a90e9fadd  ./usr/lib32/python3.10/site-packages/numpy/polynomial/hermite.pyc
75b9fbbf124e36ff0515c9bf798d6355  ./usr/lib32/python3.10/site-packages/numpy/polynomial/hermite.pyi
2a747ea46a49d385aed6982dd07eadca  ./usr/lib32/python3.10/site-packages/numpy/polynomial/__init__.pyc
23334c795b5e90e0d679e9326dab5bb0  ./usr/lib32/python3.10/site-packages/numpy/polynomial/__init__.pyi
34ae2a3249b21b9ab5c74f5e2ff0463d  ./usr/lib32/python3.10/site-packages/numpy/polynomial/laguerre.pyc
3f0f37a2d415096621730c22d75b8284  ./usr/lib32/python3.10/site-packages/numpy/polynomial/laguerre.pyi
2803d29a0ad08a29f732baa5b6ea5996  ./usr/lib32/python3.10/site-packages/numpy/polynomial/legendre.pyc
07407529d983e152a0f665e81bc11690  ./usr/lib32/python3.10/site-packages/numpy/polynomial/legendre.pyi
a108c358ff89355901761cddb16161a4  ./usr/lib32/python3.10/site-packages/numpy/polynomial/_polybase.pyc
496daf02e73e9444fe8cda693b221670  ./usr/lib32/python3.10/site-packages/numpy/polynomial/_polybase.pyi
46cc34cdf559666a26c7d7b77abbf1a6  ./usr/lib32/python3.10/site-packages/numpy/polynomial/polynomial.pyc
1b6ef0ec361694a648df9215a1bca913  ./usr/lib32/python3.10/site-packages/numpy/polynomial/polynomial.pyi
ddf192a8cb25a56bad6f2b4341ebb30e  ./usr/lib32/python3.10/site-packages/numpy/polynomial/polyutils.pyc
debe0d84f919ea04ec018a9c90994cab  ./usr/lib32/python3.10/site-packages/numpy/polynomial/polyutils.pyi
44e3036c15069f019856142ba4d69d84  ./usr/lib32/python3.10/site-packages/numpy/polynomial/setup.pyc
bc084bf7d14d74f8f6d84b90ae4cd61d  ./usr/lib32/python3.10/site-packages/numpy/polynomial/tests/__init__.pyc
727a6856aef315595ea30944bbcac939  ./usr/lib32/python3.10/site-packages/numpy/polynomial/tests/test_chebyshev.pyc
12f77e6ab100f00404c092ba8190cd93  ./usr/lib32/python3.10/site-packages/numpy/polynomial/tests/test_classes.pyc
1554d39ed6e7030c4be4c9b7f062f963  ./usr/lib32/python3.10/site-packages/numpy/polynomial/tests/test_hermite_e.pyc
5e646fbfde12fea0cafe65e1f33975fc  ./usr/lib32/python3.10/site-packages/numpy/polynomial/tests/test_hermite.pyc
9788ef3d9a1431dfaaabd5a15a66709b  ./usr/lib32/python3.10/site-packages/numpy/polynomial/tests/test_laguerre.pyc
b4d32c6fa937691ccbd948849558d9c1  ./usr/lib32/python3.10/site-packages/numpy/polynomial/tests/test_legendre.pyc
5e95b5391cb725e15492629dcee9e6f6  ./usr/lib32/python3.10/site-packages/numpy/polynomial/tests/test_polynomial.pyc
d5bff203277e4c0c4d2f14a33b811656  ./usr/lib32/python3.10/site-packages/numpy/polynomial/tests/test_polyutils.pyc
ad77ed746bf2e799ff3e26b1ed2506a0  ./usr/lib32/python3.10/site-packages/numpy/polynomial/tests/test_printing.pyc
203a3ca609474da6fad087144ce1067d  ./usr/lib32/python3.10/site-packages/numpy/_pyinstaller/hook-numpy.pyc
009a749d628650232452c13e69ab0bde  ./usr/lib32/python3.10/site-packages/numpy/_pyinstaller/__init__.pyc
99fa017a35db88f573b4b7b272ed4ad5  ./usr/lib32/python3.10/site-packages/numpy/_pyinstaller/pyinstaller-smoke.pyc
cb70a2d75638d8e9deaf468f3810eb68  ./usr/lib32/python3.10/site-packages/numpy/_pyinstaller/test_pyinstaller.pyc
6a9e33df9cc43361dc622c3fa3958fab  ./usr/lib32/python3.10/site-packages/numpy/_pytesttester.pyc
de51dae9916ed37f0bedc661a00aed3d  ./usr/lib32/python3.10/site-packages/numpy/_pytesttester.pyi
d41d8cd98f00b204e9800998ecf8427e  ./usr/lib32/python3.10/site-packages/numpy/py.typed
a6e2da548d047c3213048f0d1626109f  ./usr/lib32/python3.10/site-packages/numpy/random/bit_generator.cpython-310-arm-linux-gnueabihf.so
de57fbbeaf4ec95b9d17509ec886e3e9  ./usr/lib32/python3.10/site-packages/numpy/random/bit_generator.pxd
ae1e30132f06c512bb9ce543daff56ff  ./usr/lib32/python3.10/site-packages/numpy/random/bit_generator.pyi
89f19d12da40e4e4b0f6c05a57a9c722  ./usr/lib32/python3.10/site-packages/numpy/random/_bounded_integers.cpython-310-arm-linux-gnueabihf.so
39242a494eb64169628c0d77d68dea85  ./usr/lib32/python3.10/site-packages/numpy/random/_bounded_integers.pxd
8e558fe6c5a3654d3bd870aba6613248  ./usr/lib32/python3.10/site-packages/numpy/random/c_distributions.pxd
ad7e28ebb1ec3d56d2e392200f19e2ed  ./usr/lib32/python3.10/site-packages/numpy/random/_common.cpython-310-arm-linux-gnueabihf.so
32faac774b360fb7699e2025d85b6fd6  ./usr/lib32/python3.10/site-packages/numpy/random/_common.pxd
85d34782343e57ee7557b4dc38d16670  ./usr/lib32/python3.10/site-packages/numpy/random/_examples/cffi/extending.pyc
d2463ef075500d7c6a68f8805f20208f  ./usr/lib32/python3.10/site-packages/numpy/random/_examples/cffi/parse.pyc
7ee0b162fc2f92469be14287be19570e  ./usr/lib32/python3.10/site-packages/numpy/random/_examples/cython/extending_distributions.pyx
4057861eb337c9164085a75ca4d7393c  ./usr/lib32/python3.10/site-packages/numpy/random/_examples/cython/extending.pyx
fb043a3136fd8a28a4448e82ab8fe3ad  ./usr/lib32/python3.10/site-packages/numpy/random/_examples/cython/setup.pyc
7ea999afb077dad56050f458dc4cf77c  ./usr/lib32/python3.10/site-packages/numpy/random/_examples/numba/extending_distributions.pyc
4ae2c4f070a5cd3f45b5315187a2347d  ./usr/lib32/python3.10/site-packages/numpy/random/_examples/numba/extending.pyc
97595de8223c4ade03434bce8437498e  ./usr/lib32/python3.10/site-packages/numpy/random/_generator.cpython-310-arm-linux-gnueabihf.so
d42aba99311b8850e59fe26879f0d708  ./usr/lib32/python3.10/site-packages/numpy/random/_generator.pyi
b15e3c4ace18a97f03cad53e1f8d85a3  ./usr/lib32/python3.10/site-packages/numpy/random/__init__.pxd
1110a1a034dd2529eb4ad6dbfd3a59fa  ./usr/lib32/python3.10/site-packages/numpy/random/__init__.pyc
cce11e8fc48963dab06802e0b5088980  ./usr/lib32/python3.10/site-packages/numpy/random/__init__.pyi
38ae28e44f6c5d6abe8a18bde307db7f  ./usr/lib32/python3.10/site-packages/numpy/random/_mt19937.cpython-310-arm-linux-gnueabihf.so
128ec8210d77415a6274bb9a7d2492c2  ./usr/lib32/python3.10/site-packages/numpy/random/_mt19937.pyi
9c01d3af555e35a1901654156b7a7863  ./usr/lib32/python3.10/site-packages/numpy/random/mtrand.cpython-310-arm-linux-gnueabihf.so
7bc84f6e2f4954f9db1f906f25bd8dad  ./usr/lib32/python3.10/site-packages/numpy/random/mtrand.pyi
3f95fc28c1c877d3d63167d522070932  ./usr/lib32/python3.10/site-packages/numpy/random/_pcg64.cpython-310-arm-linux-gnueabihf.so
25632f9bec160f23f8ff0a32c20cf6ad  ./usr/lib32/python3.10/site-packages/numpy/random/_pcg64.pyi
b03c61e1b86802832121ad82b4f4f823  ./usr/lib32/python3.10/site-packages/numpy/random/_philox.cpython-310-arm-linux-gnueabihf.so
249825ba0f355452e13cb3ee653f45ba  ./usr/lib32/python3.10/site-packages/numpy/random/_philox.pyi
183dec5acab67194516b1b7b56b7dfd3  ./usr/lib32/python3.10/site-packages/numpy/random/_pickle.pyc
dbabdabe0e037eb0328229ca58cb6743  ./usr/lib32/python3.10/site-packages/numpy/random/setup.pyc
7f0c25ca2aed04a9cc454d035cf8624e  ./usr/lib32/python3.10/site-packages/numpy/random/_sfc64.cpython-310-arm-linux-gnueabihf.so
6e34dae2d5ceec42854fed46a960e4ed  ./usr/lib32/python3.10/site-packages/numpy/random/_sfc64.pyi
1f6b5d963885e72cd08c061fca2f4d1f  ./usr/lib32/python3.10/site-packages/numpy/random/tests/data/__init__.pyc
42f930477266cc22c4a0bf3859ad0655  ./usr/lib32/python3.10/site-packages/numpy/random/tests/data/mt19937-testset-1.csv
e9af7389e46de3a6b804d773dd3fe28e  ./usr/lib32/python3.10/site-packages/numpy/random/tests/data/mt19937-testset-2.csv
4f8a0bb760030d130b3748a5140a2d96  ./usr/lib32/python3.10/site-packages/numpy/random/tests/data/pcg64dxsm-testset-1.csv
b613c4aadf84117260ec4cc8aa177ca9  ./usr/lib32/python3.10/site-packages/numpy/random/tests/data/pcg64dxsm-testset-2.csv
150bbd205f0a7808bd01187892f8f296  ./usr/lib32/python3.10/site-packages/numpy/random/tests/data/pcg64-testset-1.csv
fa508f87d9882410ede29e647d69dd8c  ./usr/lib32/python3.10/site-packages/numpy/random/tests/data/pcg64-testset-2.csv
3183e7881d445adeee576ec328708a4c  ./usr/lib32/python3.10/site-packages/numpy/random/tests/data/philox-testset-1.csv
1d4af19aa29c321ab03dfda4b5fd282d  ./usr/lib32/python3.10/site-packages/numpy/random/tests/data/philox-testset-2.csv
e3372a8a685fe4106a0392e3363ef65e  ./usr/lib32/python3.10/site-packages/numpy/random/tests/data/sfc64-testset-1.csv
105b1258cbf0369612a61009298b5e87  ./usr/lib32/python3.10/site-packages/numpy/random/tests/data/sfc64-testset-2.csv
16b2076c9793958932f1093083e08ce0  ./usr/lib32/python3.10/site-packages/numpy/random/tests/__init__.pyc
331cdacaf03e6dab3bb1f1b071df6561  ./usr/lib32/python3.10/site-packages/numpy/random/tests/test_direct.pyc
5a4cf7fda355fbd9ec8ee0ee54fc5f37  ./usr/lib32/python3.10/site-packages/numpy/random/tests/test_extending.pyc
50da626dec70ce58b4c85dfd2e46e6c1  ./usr/lib32/python3.10/site-packages/numpy/random/tests/test_generator_mt19937.pyc
a308c37c0f4bccbf07c1e906d4822895  ./usr/lib32/python3.10/site-packages/numpy/random/tests/test_generator_mt19937_regressions.pyc
cc602f107dfe5f993fef908f8062686e  ./usr/lib32/python3.10/site-packages/numpy/random/tests/test_random.pyc
aaa4395dadfd38f642055c39ebc712d4  ./usr/lib32/python3.10/site-packages/numpy/random/tests/test_randomstate.pyc
24a659c9c0ee315085ee196e01ca1421  ./usr/lib32/python3.10/site-packages/numpy/random/tests/test_randomstate_regression.pyc
7b003264d3c9198dc7a42f481ed532f3  ./usr/lib32/python3.10/site-packages/numpy/random/tests/test_regression.pyc
d09dc47f0f1c5bb7cfb478829a89c7c7  ./usr/lib32/python3.10/site-packages/numpy/random/tests/test_seed_sequence.pyc
70596de6a5b6ab00e10aa4e5a0248e2b  ./usr/lib32/python3.10/site-packages/numpy/random/tests/test_smoke.pyc
fad6c0331a27e095a3efe928e8d96b8d  ./usr/lib32/python3.10/site-packages/numpy/setup.pyc
8f21202be1a2cbd672615f1ba903d750  ./usr/lib32/python3.10/site-packages/numpy/_typing/_add_docstring.pyc
e85203fec448385e641062a508ee7f81  ./usr/lib32/python3.10/site-packages/numpy/_typing/_array_like.pyc
cb05939bdb12cc5b781fcfa9c96bea0b  ./usr/lib32/python3.10/site-packages/numpy/_typing/_callable.pyi
57db8be17a434bb2f12681af88d1c8bf  ./usr/lib32/python3.10/site-packages/numpy/_typing/_char_codes.pyc
d6d0d4ab5c7226185cc00321a4ac49a0  ./usr/lib32/python3.10/site-packages/numpy/_typing/_dtype_like.pyc
219b569444f8a44b472665660b772816  ./usr/lib32/python3.10/site-packages/numpy/_typing/_extended_precision.pyc
cc968d5ce54a88bf703fb364b151a4d7  ./usr/lib32/python3.10/site-packages/numpy/_typing/_generic_alias.pyc
352cce8364f848fe2d10c157002026a6  ./usr/lib32/python3.10/site-packages/numpy/_typing/__init__.pyc
3321594e7dae3d2921497d424380e40e  ./usr/lib32/python3.10/site-packages/numpy/typing/__init__.pyc
06587e543c175a363ce293619292795a  ./usr/lib32/python3.10/site-packages/numpy/typing/mypy_plugin.pyc
fa49adbac6d6c37b3ada751ff64db0e9  ./usr/lib32/python3.10/site-packages/numpy/_typing/_nbit.pyc
8a74b10403a397f1f429573ef33fb031  ./usr/lib32/python3.10/site-packages/numpy/_typing/_nested_sequence.pyc
3dd6b5c30381197033e828eb542f388b  ./usr/lib32/python3.10/site-packages/numpy/_typing/_scalars.pyc
5f15aa784b6242bcc779fbb10fcaa560  ./usr/lib32/python3.10/site-packages/numpy/_typing/setup.pyc
905f96c3ff125e9be229f0bd98eb0696  ./usr/lib32/python3.10/site-packages/numpy/typing/setup.pyc
c206b2b0cdf5090ac2f48fe9a8b816ed  ./usr/lib32/python3.10/site-packages/numpy/_typing/_shape.pyc
59d4874ccb972c9f3733b13d8976b8e7  ./usr/lib32/python3.10/site-packages/numpy/_typing/_ufunc.pyi
96854b964903de5078a6267fe37c071a  ./usr/lib32/python3.10/site-packages/numpy/_version.pyc
42bd748bd496e5b4c358dba628213de5  ./usr/lib32/python3.10/site-packages/numpy/version.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/picamera-1.13-py3.10.egg-info/dependency_links.txt
fc9b3de3c8a830bf7e19b1a4f62bd0b3  ./usr/lib32/python3.10/site-packages/picamera-1.13-py3.10.egg-info/PKG-INFO
22d0c1431f62e94389af8bdd385ec4ff  ./usr/lib32/python3.10/site-packages/picamera-1.13-py3.10.egg-info/requires.txt
0429868ef2e9e22ff1ecf32e4d1b4900  ./usr/lib32/python3.10/site-packages/picamera-1.13-py3.10.egg-info/SOURCES.txt
accf135fb7a2e423e2dddb8c6764dd4f  ./usr/lib32/python3.10/site-packages/picamera-1.13-py3.10.egg-info/top_level.txt
69cf7ced78d1356e506d7a51a9140ba4  ./usr/lib32/python3.10/site-packages/picamera/array.pyc
adb73133276f218b2321aa79e19c6299  ./usr/lib32/python3.10/site-packages/picamera/bcm_host.pyc
b7fed4a23bdf687bada753cd6a8ed636  ./usr/lib32/python3.10/site-packages/picamera/camera.pyc
735da71d1b0de4c211d00d33158fd2f1  ./usr/lib32/python3.10/site-packages/picamera/color.pyc
82c9c71626ea7f98c3008da7e3e423ee  ./usr/lib32/python3.10/site-packages/picamera/display.pyc
7925c38b256b597a410887fef1f15789  ./usr/lib32/python3.10/site-packages/picamera/encoders.pyc
e899ba4bd6a619cc059e15d81a6afc82  ./usr/lib32/python3.10/site-packages/picamera/exc.pyc
570057671758557409305ffe46e67d0b  ./usr/lib32/python3.10/site-packages/picamera/frames.pyc
b199519cf85d691c4541207c9832dfbd  ./usr/lib32/python3.10/site-packages/picamera/__init__.pyc
3bb026326c10f9dea9cab65a5acd71a5  ./usr/lib32/python3.10/site-packages/picamera/mmalobj.pyc
c2edcf75cb3d863bdbf75aa48957bb0f  ./usr/lib32/python3.10/site-packages/picamera/mmal.pyc
491a25c8801e538ef09cc03842779e55  ./usr/lib32/python3.10/site-packages/picamera/renderers.pyc
23916f6e1ecc397c273338d5b3b750e2  ./usr/lib32/python3.10/site-packages/picamera/streams.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/pigpio-1.78-py3.10.egg-info/dependency_links.txt
2bcebcb19f8114db7f50ade96eac131c  ./usr/lib32/python3.10/site-packages/pigpio-1.78-py3.10.egg-info/PKG-INFO
d0de3e66dc069935a3aa9ab97101c9cb  ./usr/lib32/python3.10/site-packages/pigpio-1.78-py3.10.egg-info/SOURCES.txt
4caa1ba8c6d0d145169c1dbf9300253c  ./usr/lib32/python3.10/site-packages/pigpio-1.78-py3.10.egg-info/top_level.txt
d487f9d5f43d4c5d6ad8f2c952acd69e  ./usr/lib32/python3.10/site-packages/pigpio.pyc
bb5c4d68702266daba625fd83f2ca199  ./usr/lib32/python3.10/site-packages/PIL/BdfFontFile.pyc
39fd617da7fc9fa0ad536e5ed13c1e10  ./usr/lib32/python3.10/site-packages/PIL/_binary.pyc
fae42c8ba1111bbfb3bbca19f6c53549  ./usr/lib32/python3.10/site-packages/PIL/BlpImagePlugin.pyc
a5e75b001e4ac7663f8f273489d64538  ./usr/lib32/python3.10/site-packages/PIL/BmpImagePlugin.pyc
3b1ecae654db11531ba96d34a49081e5  ./usr/lib32/python3.10/site-packages/PIL/BufrStubImagePlugin.pyc
a52cc21854cde641692c23f711d5b325  ./usr/lib32/python3.10/site-packages/PIL/ContainerIO.pyc
8f64690a15f1e4085687cc86973cb1cd  ./usr/lib32/python3.10/site-packages/PIL/CurImagePlugin.pyc
144b5b2ffb378ef856208ccf6756addd  ./usr/lib32/python3.10/site-packages/PIL/DcxImagePlugin.pyc
e19f2701487f2c495b2c28794856c505  ./usr/lib32/python3.10/site-packages/PIL/DdsImagePlugin.pyc
53dbe78d9c16ac49119b620021fbc494  ./usr/lib32/python3.10/site-packages/PIL/_deprecate.pyc
943ea5612f60f46dec92276738bd4658  ./usr/lib32/python3.10/site-packages/PIL/EpsImagePlugin.pyc
5631c86a96093d5dc27032360f20f6ea  ./usr/lib32/python3.10/site-packages/PIL/ExifTags.pyc
58b4315e3006326141e3251642c08fc5  ./usr/lib32/python3.10/site-packages/PIL/features.pyc
e3c327f623daebe6ee95f50156ca755d  ./usr/lib32/python3.10/site-packages/PIL/FitsImagePlugin.pyc
38253dc802b89e23cd02e4ee1b4344c4  ./usr/lib32/python3.10/site-packages/PIL/FitsStubImagePlugin.pyc
1c06145631c99ddc1201eec67387c920  ./usr/lib32/python3.10/site-packages/PIL/FliImagePlugin.pyc
1a12091cb685c58cff9a30f2ff1faf5b  ./usr/lib32/python3.10/site-packages/PIL/FontFile.pyc
a7363372682435f359dc7fd60ac31044  ./usr/lib32/python3.10/site-packages/PIL/FpxImagePlugin.pyc
b6bd20f42f5b23b42dc22c14e5805630  ./usr/lib32/python3.10/site-packages/PIL/FtexImagePlugin.pyc
19070344406bd26e77bb7b8818972273  ./usr/lib32/python3.10/site-packages/PIL/GbrImagePlugin.pyc
1d0ea53b64fa3fa6cee675fc93b20ade  ./usr/lib32/python3.10/site-packages/PIL/GdImageFile.pyc
26afd9504ac19068a2a03dc9b84c6eba  ./usr/lib32/python3.10/site-packages/PIL/GifImagePlugin.pyc
96af3a013a487b047437790f082818cb  ./usr/lib32/python3.10/site-packages/PIL/GimpGradientFile.pyc
697cb99e64d60d0e24ee3cb5ecfd18df  ./usr/lib32/python3.10/site-packages/PIL/GimpPaletteFile.pyc
b542c6cc98ebc5ab8f0510b72f2acc5c  ./usr/lib32/python3.10/site-packages/PIL/GribStubImagePlugin.pyc
3dcd4014d09ed660704adf0a1be169d8  ./usr/lib32/python3.10/site-packages/PIL/Hdf5StubImagePlugin.pyc
7721c40a3724698c00c08649af20b802  ./usr/lib32/python3.10/site-packages/PIL/IcnsImagePlugin.pyc
9bd1a24b5a5f12afb9f53b64ffa7fa6b  ./usr/lib32/python3.10/site-packages/PIL/IcoImagePlugin.pyc
82dd214c712b633cfa00d22f15e6bd75  ./usr/lib32/python3.10/site-packages/PIL/ImageChops.pyc
0d99560fabf0b8471f03997e7b106ce3  ./usr/lib32/python3.10/site-packages/PIL/ImageCms.pyc
ca80a702ce3e4f07fd3d5ce891382e9d  ./usr/lib32/python3.10/site-packages/PIL/ImageColor.pyc
72c8b0958b57bd215d0dddf1a75f81d6  ./usr/lib32/python3.10/site-packages/PIL/ImageDraw2.pyc
f5b82969373f20f937b3ade6e3e00237  ./usr/lib32/python3.10/site-packages/PIL/ImageDraw.pyc
58943a5c30e0c4a9aceb35c93df37c91  ./usr/lib32/python3.10/site-packages/PIL/ImageEnhance.pyc
483141b733730361bb3b1659c0df4d86  ./usr/lib32/python3.10/site-packages/PIL/ImageFile.pyc
96f4174216da5f0a0e87171906b37dd5  ./usr/lib32/python3.10/site-packages/PIL/ImageFilter.pyc
c4dc247c45bde25a728afa8f5c4463a1  ./usr/lib32/python3.10/site-packages/PIL/ImageFont.pyc
cb50e922e7a4e29db76a06e9b42edff7  ./usr/lib32/python3.10/site-packages/PIL/ImageGrab.pyc
805587a68f374511777082eb915ff5cd  ./usr/lib32/python3.10/site-packages/PIL/ImageMath.pyc
aef87d47d3c8adb00f3b9bd2b2c13c11  ./usr/lib32/python3.10/site-packages/PIL/ImageMode.pyc
a50a60d76de9688f6d9efabbb7aecc61  ./usr/lib32/python3.10/site-packages/PIL/ImageMorph.pyc
eb89c78419c49467f3cc4ed4b67b6146  ./usr/lib32/python3.10/site-packages/PIL/ImageOps.pyc
2134bfc0eff0484897532eec43f9f39c  ./usr/lib32/python3.10/site-packages/PIL/ImagePalette.pyc
9489f43088b721d408d5b29a8582c4b4  ./usr/lib32/python3.10/site-packages/PIL/ImagePath.pyc
4f24e7f6f563da67e8a8fa44f89a956f  ./usr/lib32/python3.10/site-packages/PIL/Image.pyc
99a31d7fded1eaefed734b03446cd376  ./usr/lib32/python3.10/site-packages/PIL/ImageQt.pyc
5fa72adce1b59e062555ac9dd1c31f3e  ./usr/lib32/python3.10/site-packages/PIL/ImageSequence.pyc
b9ad21266a1553597f049840343cf9d4  ./usr/lib32/python3.10/site-packages/PIL/ImageShow.pyc
2a41472861dee169f79eebcdd017e1c5  ./usr/lib32/python3.10/site-packages/PIL/ImageStat.pyc
20c245d37dc6cfd50704b4f7780a5384  ./usr/lib32/python3.10/site-packages/PIL/ImageTk.pyc
a0d47c6d640c060a2993a30b0a7e2a84  ./usr/lib32/python3.10/site-packages/PIL/ImageTransform.pyc
02a23f9ecbcab3bb696bedf59bd49208  ./usr/lib32/python3.10/site-packages/PIL/ImageWin.pyc
3e8593241f646e38ad2aa5bd2e9ba160  ./usr/lib32/python3.10/site-packages/PIL/_imaging.cpython-310-arm-linux-gnueabihf.so
8d6f20ccbe5ecba0708a343d467e85b4  ./usr/lib32/python3.10/site-packages/PIL/_imagingft.cpython-310-arm-linux-gnueabihf.so
d4def66310a6076bdcd9a326f56041fc  ./usr/lib32/python3.10/site-packages/PIL/_imagingmath.cpython-310-arm-linux-gnueabihf.so
92e8b31c7a6c2ca9d3bc942a25b5f07e  ./usr/lib32/python3.10/site-packages/PIL/_imagingmorph.cpython-310-arm-linux-gnueabihf.so
94de1d33302e1ab8eaedacfcc8662ac4  ./usr/lib32/python3.10/site-packages/PIL/_imagingtk.cpython-310-arm-linux-gnueabihf.so
8b26a10c9d4d73403b5bbaf8d699c510  ./usr/lib32/python3.10/site-packages/PIL/ImImagePlugin.pyc
7d48c661452c3dd6549769183448b81a  ./usr/lib32/python3.10/site-packages/PIL/ImtImagePlugin.pyc
807772d7c7b3984cfe69c7d507fd85ee  ./usr/lib32/python3.10/site-packages/PIL/__init__.pyc
1cb71676557cf2646ce3e1777e25d0d3  ./usr/lib32/python3.10/site-packages/PIL/IptcImagePlugin.pyc
449be3ae6545941681fd217d3f4d5379  ./usr/lib32/python3.10/site-packages/PIL/Jpeg2KImagePlugin.pyc
f3547e4f0d312080cabb074e56bf29ff  ./usr/lib32/python3.10/site-packages/PIL/JpegImagePlugin.pyc
cc2031610041218f31514d773f5d68b2  ./usr/lib32/python3.10/site-packages/PIL/JpegPresets.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/dependency_links.txt
4529e2c16462e97c28017a8a2cec8ada  ./usr/lib32/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/PKG-INFO
41b329fc8eb40bea3a23831cbea44ddd  ./usr/lib32/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/requires.txt
f62dc64b74e5b7f9568f76ebd71d219f  ./usr/lib32/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/SOURCES.txt
d851573b415fac5c5ec32f7150727932  ./usr/lib32/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/top_level.txt
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/zip-safe
9c33160fbe0acf14abf70d6eb036313f  ./usr/lib32/python3.10/site-packages/PIL/__main__.pyc
668e4466105f5ace26652d4f11ebd921  ./usr/lib32/python3.10/site-packages/PIL/McIdasImagePlugin.pyc
5b36bb53be7116b561477da35503db9e  ./usr/lib32/python3.10/site-packages/PIL/MicImagePlugin.pyc
f7616fb1a0cfb6c6e82b3d4696e06bf0  ./usr/lib32/python3.10/site-packages/PIL/MpegImagePlugin.pyc
dfbb75fc26a728f8e8a630f41eb4a2b9  ./usr/lib32/python3.10/site-packages/PIL/MpoImagePlugin.pyc
15567041709391b1eb54f4723717bb4b  ./usr/lib32/python3.10/site-packages/PIL/MspImagePlugin.pyc
d3593a316c4c4c507a3f24c9be7e781c  ./usr/lib32/python3.10/site-packages/PIL/PaletteFile.pyc
09f45de300b5be748d0915ce75be01ce  ./usr/lib32/python3.10/site-packages/PIL/PalmImagePlugin.pyc
ca403f76a6ff658fa468e8ff5082451d  ./usr/lib32/python3.10/site-packages/PIL/PcdImagePlugin.pyc
b856daa977e568f07cdcf5688844c6dc  ./usr/lib32/python3.10/site-packages/PIL/PcfFontFile.pyc
b35e9fff4fc1eb9044a54fc7b795aa6b  ./usr/lib32/python3.10/site-packages/PIL/PcxImagePlugin.pyc
3d3e44db13675a57bfa15fefa079a931  ./usr/lib32/python3.10/site-packages/PIL/PdfImagePlugin.pyc
020315130c9f85dad8529562f075f52f  ./usr/lib32/python3.10/site-packages/PIL/PdfParser.pyc
bb8fd49d0037863b20d7a222b17d0e06  ./usr/lib32/python3.10/site-packages/PIL/PixarImagePlugin.pyc
e54c1dead04a12e04e78a36b836e9f43  ./usr/lib32/python3.10/site-packages/PIL/PngImagePlugin.pyc
8e275d816107dc25e97abb7f485814f9  ./usr/lib32/python3.10/site-packages/PIL/PpmImagePlugin.pyc
09e124befa418561a57ea82f1cd3c09a  ./usr/lib32/python3.10/site-packages/PIL/PsdImagePlugin.pyc
db60bf3defc5abd2e0c3897dcd1d0ff9  ./usr/lib32/python3.10/site-packages/PIL/PSDraw.pyc
fbc81b30e46a73dfe37fbdd1247763e1  ./usr/lib32/python3.10/site-packages/PIL/PyAccess.pyc
ee01c17738bd62383f8245d3d0fe534f  ./usr/lib32/python3.10/site-packages/PIL/SgiImagePlugin.pyc
a356265b54acdf24d9e632ee673f9417  ./usr/lib32/python3.10/site-packages/PIL/SpiderImagePlugin.pyc
986355bf9baf3d5eadf11545ca83d96c  ./usr/lib32/python3.10/site-packages/PIL/SunImagePlugin.pyc
dd5af37a1cc68dfa729f89ce68398d62  ./usr/lib32/python3.10/site-packages/PIL/TarIO.pyc
fb63433728ae5dd82ce9d9d30960bcfc  ./usr/lib32/python3.10/site-packages/PIL/TgaImagePlugin.pyc
1fa2c17301689b03c3e9a400aea83656  ./usr/lib32/python3.10/site-packages/PIL/TiffImagePlugin.pyc
dae9aa1c76b8ef98aaba01b8b6ef8f81  ./usr/lib32/python3.10/site-packages/PIL/TiffTags.pyc
1a389bfdef30bf66a96d1f9568299b91  ./usr/lib32/python3.10/site-packages/PIL/_tkinter_finder.pyc
706eba537e5857ed8b0af748cd3a8da1  ./usr/lib32/python3.10/site-packages/PIL/_util.pyc
b463df8490a77aa858aedeb2fdffe597  ./usr/lib32/python3.10/site-packages/PIL/_version.pyc
2d731648b50d2167249446fa992954e9  ./usr/lib32/python3.10/site-packages/PIL/WalImageFile.pyc
c4efe8bab76dc6c6406a842195befabd  ./usr/lib32/python3.10/site-packages/PIL/WebPImagePlugin.pyc
fb4c9124601ecaf732efb6e25ab8d890  ./usr/lib32/python3.10/site-packages/PIL/WmfImagePlugin.pyc
ab73198ecc07da008cd4a35debfa0dd3  ./usr/lib32/python3.10/site-packages/PIL/XbmImagePlugin.pyc
35b8c846a13f60d3527b4682de528afe  ./usr/lib32/python3.10/site-packages/PIL/XpmImagePlugin.pyc
3071e97cb6863d963c8d65f188a2869b  ./usr/lib32/python3.10/site-packages/PIL/XVThumbImagePlugin.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/PyQRCode-1.2.1-py3.10.egg-info/dependency_links.txt
a24edab46e65a004e09caca23c8dd061  ./usr/lib32/python3.10/site-packages/PyQRCode-1.2.1-py3.10.egg-info/PKG-INFO
c5cbb521e10c2192b00bb8565a5abbf2  ./usr/lib32/python3.10/site-packages/PyQRCode-1.2.1-py3.10.egg-info/requires.txt
d2885a562087a1022c446d23bf24e25c  ./usr/lib32/python3.10/site-packages/PyQRCode-1.2.1-py3.10.egg-info/SOURCES.txt
6da14a877357e7598a7063d0dd7ce65f  ./usr/lib32/python3.10/site-packages/PyQRCode-1.2.1-py3.10.egg-info/top_level.txt
b8b023e550a54b56a59b1c0fa13839a9  ./usr/lib32/python3.10/site-packages/pyqrcode/builder.pyc
9925055b0a7cfa49e5dfddb94d3e97ad  ./usr/lib32/python3.10/site-packages/pyqrcode/__init__.pyc
40eef7c5c648d0210d6e65ec880d15dc  ./usr/lib32/python3.10/site-packages/pyqrcode/tables.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/dependency_links.txt
175d560c92eebbb2183605fb4b776716  ./usr/lib32/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/entry_points.txt
b12f014150460be1ebefd4dbf3b74a4f  ./usr/lib32/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/PKG-INFO
0fbe28171d27bdd263fde062984e6455  ./usr/lib32/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/requires.txt
291c056bf4cb5e1f55813a91aa014598  ./usr/lib32/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/SOURCES.txt
e2dc85c6da7a969882800702ee818d6a  ./usr/lib32/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/top_level.txt
42f42184273fbedf8b0de1da11059585  ./usr/lib32/python3.10/site-packages/pyzbar/__init__.pyc
54fea5cb0598276f3ccf13ea9853b265  ./usr/lib32/python3.10/site-packages/pyzbar/locations.pyc
e7aec864090444e54f3b24dbf253e8e1  ./usr/lib32/python3.10/site-packages/pyzbar/pyzbar_error.pyc
8b1e65de30f9788be74346d5c8f42f2b  ./usr/lib32/python3.10/site-packages/pyzbar/pyzbar.pyc
6daa3d38b8052af9fd6b9da6fc5d9f1a  ./usr/lib32/python3.10/site-packages/pyzbar/scripts/__init__.pyc
01f6959cb42a5af40a80ab68c935a075  ./usr/lib32/python3.10/site-packages/pyzbar/scripts/read_zbar.pyc
f94fd44708c9d9238c422fb2059ef682  ./usr/lib32/python3.10/site-packages/pyzbar/wrapper.pyc
d44739e18022ea094ae70728414455d5  ./usr/lib32/python3.10/site-packages/pyzbar/zbar_library.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/dependency_links.txt
0a06db6070213745f91879cd9c84c451  ./usr/lib32/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/entry_points.txt
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/not-zip-safe
7453805c5a9aab9a4151226d58006156  ./usr/lib32/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/PKG-INFO
30c188827369d5f6860f76d1f0bf73bb  ./usr/lib32/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/requires.txt
e466397fa1a55bf7de0d529f3f9e0ceb  ./usr/lib32/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/SOURCES.txt
8af18fd320228e0b5f50214656ad5569  ./usr/lib32/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/top_level.txt
5a64241d5f9419f2959b628f52f746e6  ./usr/lib32/python3.10/site-packages/qrcode/base.pyc
feb023e8172864cb891ff5f4367b3957  ./usr/lib32/python3.10/site-packages/qrcode/console_scripts.pyc
9bd5b9a02311fc2eb117c4008d39972e  ./usr/lib32/python3.10/site-packages/qrcode/constants.pyc
843998d8cecb569c34e151de9dbe1640  ./usr/lib32/python3.10/site-packages/qrcode/exceptions.pyc
c87bbe1df8f252f48b921f52c9522fe4  ./usr/lib32/python3.10/site-packages/qrcode/image/base.pyc
7e77822a5a919790f24a50b915f941df  ./usr/lib32/python3.10/site-packages/qrcode/image/__init__.pyc
05b3fe13458b4fbd83844d29a67dc550  ./usr/lib32/python3.10/site-packages/qrcode/image/pil.pyc
87a63e32a117f8d65cd0113c8bbafbb2  ./usr/lib32/python3.10/site-packages/qrcode/image/pure.pyc
35ef6b6cbdaa0b014e4f4e6fbc3774ae  ./usr/lib32/python3.10/site-packages/qrcode/image/styledpil.pyc
13e17fe1018432cfe94974766cf52496  ./usr/lib32/python3.10/site-packages/qrcode/image/styles/colormasks.pyc
82a895d89828c510f16cab9b5fe3d9c4  ./usr/lib32/python3.10/site-packages/qrcode/image/styles/__init__.pyc
fb6b346e8f341442f307eb7d6b3d0d6a  ./usr/lib32/python3.10/site-packages/qrcode/image/styles/moduledrawers.pyc
d4bb00b1fd0752585de3e27d81ba6af4  ./usr/lib32/python3.10/site-packages/qrcode/image/svg.pyc
36798312bf91a9a135e4bbf473f42ad0  ./usr/lib32/python3.10/site-packages/qrcode/__init__.pyc
b12dba40ea5d9aec2940de6243d8573a  ./usr/lib32/python3.10/site-packages/qrcode/LUT.pyc
d27f9fd664da67c0360dff21a45b68b2  ./usr/lib32/python3.10/site-packages/qrcode/main.pyc
d03fc7729997e8cfc6e36038d86e35bb  ./usr/lib32/python3.10/site-packages/qrcode/release.pyc
7ff2a3e04e4a481cebafd26d14e4001c  ./usr/lib32/python3.10/site-packages/qrcode/util.pyc
d3711c76dde9edbc20f54b644c8810dc  ./usr/lib32/python3.10/site-packages/README.txt
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/RPi.GPIO-0.7.1-py3.10.egg-info/dependency_links.txt
05823eec7473f0091d11198c8f3eeefa  ./usr/lib32/python3.10/site-packages/RPi.GPIO-0.7.1-py3.10.egg-info/PKG-INFO
32d01f2b8e387521d8a4d6529b0f2660  ./usr/lib32/python3.10/site-packages/RPi.GPIO-0.7.1-py3.10.egg-info/SOURCES.txt
6cf9349836e7466c0b8addf9cf39a3f2  ./usr/lib32/python3.10/site-packages/RPi.GPIO-0.7.1-py3.10.egg-info/top_level.txt
bf19a820dc429a0929d94b52547a11c0  ./usr/lib32/python3.10/site-packages/RPi/_GPIO.cpython-310-arm-linux-gnueabihf.so
c2ade72d3a4eab488f444da6fae75a70  ./usr/lib32/python3.10/site-packages/RPi/GPIO/__init__.pyc
a3f630ac453cfc17a5f876f089a23e7f  ./usr/lib32/python3.10/site-packages/RPi/__init__.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/spidev-3.6-py3.10.egg-info/dependency_links.txt
ff5fbb4c80cc2f4ab36d0b7b8ce9b8d4  ./usr/lib32/python3.10/site-packages/spidev-3.6-py3.10.egg-info/PKG-INFO
8c00da93b767099e68dd7a16e5597e9e  ./usr/lib32/python3.10/site-packages/spidev-3.6-py3.10.egg-info/SOURCES.txt
1f088ef073369c21f0ecd0820db66369  ./usr/lib32/python3.10/site-packages/spidev-3.6-py3.10.egg-info/top_level.txt
559a48a95820e7bc75c8794fd4e9b777  ./usr/lib32/python3.10/site-packages/spidev.cpython-310-arm-linux-gnueabihf.so
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib32/python3.10/site-packages/urtypes-0.1.0-py3.10.egg-info/dependency_links.txt
5c8b35caa587d33065129e28f6658463  ./usr/lib32/python3.10/site-packages/urtypes-0.1.0-py3.10.egg-info/PKG-INFO
5cadfa8ae8139ff9a738b13f0b846e18  ./usr/lib32/python3.10/site-packages/urtypes-0.1.0-py3.10.egg-info/SOURCES.txt
4314126f27d4fe2212d006c13ca4c353  ./usr/lib32/python3.10/site-packages/urtypes-0.1.0-py3.10.egg-info/top_level.txt
a730518fcbc1d2f50b06f6adbf7b90cf  ./usr/lib32/python3.10/site-packages/urtypes/bytes.pyc
a35b466db874ee403133fe1b834840d9  ./usr/lib32/python3.10/site-packages/urtypes/cbor/data.pyc
f72d9d3476a9ef37701638f04ee2b73d  ./usr/lib32/python3.10/site-packages/urtypes/cbor/decoder.pyc
f303317476141d3cfea1359f15c026bb  ./usr/lib32/python3.10/site-packages/urtypes/cbor/encoder.pyc
c5aa7457a44f8148f15537e3fdf4b343  ./usr/lib32/python3.10/site-packages/urtypes/cbor/__init__.pyc
8d9da0f987d4e419f984c80c75a410b9  ./usr/lib32/python3.10/site-packages/urtypes/crypto/account.pyc
5f238d865254cfe0f218e35442a899c1  ./usr/lib32/python3.10/site-packages/urtypes/crypto/bip39.pyc
5df0bbc147764669a201cf017ef83298  ./usr/lib32/python3.10/site-packages/urtypes/crypto/coin_info.pyc
f422f1f8d4437efc46cc4a7d33e22cc4  ./usr/lib32/python3.10/site-packages/urtypes/crypto/ec_key.pyc
fef95ab37efd0fccbcc3a1bd124b0f0b  ./usr/lib32/python3.10/site-packages/urtypes/crypto/hd_key.pyc
0f2b70111172266c1d3f188ea7f3ca76  ./usr/lib32/python3.10/site-packages/urtypes/crypto/__init__.pyc
da18de796bc4fde1adef80d145cfc7ed  ./usr/lib32/python3.10/site-packages/urtypes/crypto/keypath.pyc
e62376460210dc7c3ee59506256490a0  ./usr/lib32/python3.10/site-packages/urtypes/crypto/multi_key.pyc
61aaf95584dcef25792ef773d2f80a2e  ./usr/lib32/python3.10/site-packages/urtypes/crypto/output.pyc
9c533630dd84cd670a209506e7fd1518  ./usr/lib32/python3.10/site-packages/urtypes/crypto/psbt.pyc
4d2f355ee5d36e2f336ecf855e5049b7  ./usr/lib32/python3.10/site-packages/urtypes/__init__.pyc
bbd080025fef7b886d85b1df2557cee5  ./usr/lib32/python3.10/site-packages/urtypes/registry.pyc
3d6b08d4979782b2c12567683a76100e  ./usr/lib32/python3.10/site-packages/zbar.so
6d98fdb94f982aa73fe066db634d70e1  ./usr/lib32/python3.10/site.pyc
70fc25f47f62faf67fe5d3cd4d438d2e  ./usr/lib32/python3.10/smtpd.pyc
7a17279abd58c92fb9fe064c5c8be1aa  ./usr/lib32/python3.10/smtplib.pyc
54e2ccfe355cf143640c26476b754cf1  ./usr/lib32/python3.10/sndhdr.pyc
8bfb7e02f17433e4d8d7a87cd923c383  ./usr/lib32/python3.10/socket.pyc
02e9302a537cb95ee7a7195801883424  ./usr/lib32/python3.10/socketserver.pyc
bd0760e2fdc8ac241aa762fc7660ed3d  ./usr/lib32/python3.10/sre_compile.pyc
43c97367976e4ec8e85ae6dbb4165111  ./usr/lib32/python3.10/sre_constants.pyc
95166abaabc76b219f71805de491d640  ./usr/lib32/python3.10/sre_parse.pyc
2fee26282f7e7a81632ec51708070c1a  ./usr/lib32/python3.10/ssl.pyc
1d546d99493ff0624b335983b2eed2f9  ./usr/lib32/python3.10/statistics.pyc
a1631efde21d13f907d660eb2c4bc5c4  ./usr/lib32/python3.10/stat.pyc
d0153a1d9d248a24a62a38bf7569aca4  ./usr/lib32/python3.10/stringprep.pyc
34b20122d546f75e48f86f6bf686fd9d  ./usr/lib32/python3.10/string.pyc
781716927e88ff89dad7aa4f23997717  ./usr/lib32/python3.10/_strptime.pyc
83e80ab415a805a357be418e61a06996  ./usr/lib32/python3.10/struct.pyc
7e7d050c1c067e0add7b8988e9aeffa9  ./usr/lib32/python3.10/subprocess.pyc
474de520fa0452ed216e0bc6e29a8af6  ./usr/lib32/python3.10/sunau.pyc
c09d616ceee34f780331428f77c47017  ./usr/lib32/python3.10/symtable.pyc
9e261a56df40d2a2ae88d2a375fa7b20  ./usr/lib32/python3.10/_sysconfigdata__linux_arm-linux-gnueabihf.py
da594a7b42a1f439891c2a3f0f98bd51  ./usr/lib32/python3.10/sysconfig.pyc
542d228f294d2fb9a6da7abf5744a563  ./usr/lib32/python3.10/tabnanny.pyc
e1c9809b0bf12d34cd106424cbd9dd8d  ./usr/lib32/python3.10/telnetlib.pyc
05346b465904898fd982eabb27f0c5c5  ./usr/lib32/python3.10/tempfile.pyc
bb8ae5e62dbafc4ec412c45018224636  ./usr/lib32/python3.10/textwrap.pyc
2a901fac89a55113480ac9cd0d98d07e  ./usr/lib32/python3.10/this.pyc
c446902a081a9dc07d017ecb66be2c92  ./usr/lib32/python3.10/_threading_local.pyc
2d86df002cb891fbd25eefbded91509d  ./usr/lib32/python3.10/threading.pyc
37a7d1c14205b8ecc5757d9772dc7af5  ./usr/lib32/python3.10/timeit.pyc
3603d38cd97adf5569d7f5880da9c8f7  ./usr/lib32/python3.10/tokenize.pyc
e637159c5a93a7d86908d0e45831dbfc  ./usr/lib32/python3.10/token.pyc
5eef5afa522b51b3b026f7395cd468db  ./usr/lib32/python3.10/traceback.py
4c7c5b1aa9deaa390f199b269d2d91d3  ./usr/lib32/python3.10/tracemalloc.pyc
11bd9e8235a5dd9c2196d199a3058c8a  ./usr/lib32/python3.10/trace.pyc
cc7452efc33e0f2d1a43e2201fc29c27  ./usr/lib32/python3.10/tty.pyc
4b2e013355b1c96fe53f6370a53b278c  ./usr/lib32/python3.10/types.pyc
7c0fe2fc011d5cf3d46a17bd1bffd85b  ./usr/lib32/python3.10/typing.pyc
aef2ad1dda20ce5da599c76ab7d5b6c2  ./usr/lib32/python3.10/urllib/error.pyc
356ee3bf95c30256874dbdb181a5392f  ./usr/lib32/python3.10/urllib/__init__.pyc
bca17e749302e66368dd0bc62fdb1bf2  ./usr/lib32/python3.10/urllib/parse.pyc
967fc2f7082c4dbcfca3e1571028e1d2  ./usr/lib32/python3.10/urllib/request.pyc
bf1d68d49de5a85d5f49b63693190e00  ./usr/lib32/python3.10/urllib/response.pyc
19c9fcc26217f48d99e46420a222e885  ./usr/lib32/python3.10/urllib/robotparser.pyc
17381bdb25eba5db25f66e30a9d3a23e  ./usr/lib32/python3.10/uuid.pyc
4ef74cdbb16119f6c9bec71a65b544e2  ./usr/lib32/python3.10/uu.pyc
087a208a04467d8cef75da75bc30b5ca  ./usr/lib32/python3.10/venv/__init__.pyc
a266a6f5eff8d27309e480176d1bb42d  ./usr/lib32/python3.10/venv/__main__.pyc
7057598ce7899fd54382029e7269de44  ./usr/lib32/python3.10/venv/scripts/common/activate
ffb074b8336789578f50a6c1a1632342  ./usr/lib32/python3.10/venv/scripts/common/Activate.ps1
c6836850a25156fdc26ce14484d9b277  ./usr/lib32/python3.10/venv/scripts/posix/activate.csh
023c89dc50a611444b9366679df803cf  ./usr/lib32/python3.10/venv/scripts/posix/activate.fish
86b7b65bdbe9223262f0e485af4d4857  ./usr/lib32/python3.10/warnings.pyc
419282e6146192b1f04eaf1c438e6d35  ./usr/lib32/python3.10/wave.pyc
2e39ca312701d52b4e1e8e182d58f118  ./usr/lib32/python3.10/weakref.pyc
4df64d2e016f577eee66e5972615bdec  ./usr/lib32/python3.10/_weakrefset.pyc
6ab09375be7c517104546c059d56f375  ./usr/lib32/python3.10/webbrowser.pyc
853d9e72c4ada5c4d600dd63d2ac4c36  ./usr/lib32/python3.10/wsgiref/handlers.pyc
22dbe396a664f8c8329462fc7dd1ba26  ./usr/lib32/python3.10/wsgiref/headers.pyc
02477e178c456dec8147035443365918  ./usr/lib32/python3.10/wsgiref/__init__.pyc
82f0f5b542afe56809d3848507aaedb0  ./usr/lib32/python3.10/wsgiref/simple_server.pyc
f04a4ef4d0eddcb3f9add038c6318426  ./usr/lib32/python3.10/wsgiref/util.pyc
652c6e547af9fdeb1ea26f2e912ac091  ./usr/lib32/python3.10/wsgiref/validate.pyc
0252d3dd179645c51d74e2768b0ce591  ./usr/lib32/python3.10/xdrlib.pyc
1f19171341faabb263656e8630189a39  ./usr/lib32/python3.10/xml/dom/domreg.pyc
fa686dac34dceaff36459ef7a2d9b899  ./usr/lib32/python3.10/xml/dom/expatbuilder.pyc
1337ca7e64930383258f4d2a978b6b9b  ./usr/lib32/python3.10/xml/dom/__init__.pyc
80aa7db6b1e8fbfc809c70fd743e65b4  ./usr/lib32/python3.10/xml/dom/minicompat.pyc
a5e4d647b88cf43b78c6569cabb16e7e  ./usr/lib32/python3.10/xml/dom/minidom.pyc
1fd3ee5851cde5526c9af59a71ac7fc9  ./usr/lib32/python3.10/xml/dom/NodeFilter.pyc
64b348f2bd8748009b090cae8e0f16da  ./usr/lib32/python3.10/xml/dom/pulldom.pyc
3bc8b84c0bfb3451c742719cd5a35f11  ./usr/lib32/python3.10/xml/dom/xmlbuilder.pyc
3b4eaa80d15062a0c0d5515fe2321ca3  ./usr/lib32/python3.10/xml/etree/cElementTree.pyc
d282a9697cecf7348491a2ccd7bd39fb  ./usr/lib32/python3.10/xml/etree/ElementInclude.pyc
c6de3c03d72c2030794efaa7ecb93252  ./usr/lib32/python3.10/xml/etree/ElementPath.pyc
467275d0bfd066f58e2e19ccddfc534b  ./usr/lib32/python3.10/xml/etree/ElementTree.pyc
b44afb786cfafa5b554617ab60b9bf78  ./usr/lib32/python3.10/xml/etree/__init__.pyc
28b698135f3aa4420e14661a72f31b36  ./usr/lib32/python3.10/xml/__init__.pyc
f4202d8a8e6b417099106db55ee5cb27  ./usr/lib32/python3.10/xml/parsers/expat.pyc
f6f97f2e9a06b51a9e75ec0f94f1af15  ./usr/lib32/python3.10/xml/parsers/__init__.pyc
917e7b2914034370f8ace2863ec4d94e  ./usr/lib32/python3.10/xmlrpc/client.pyc
58cd8c95e79b8b07908c73c8ea8d3aa6  ./usr/lib32/python3.10/xmlrpc/__init__.pyc
5145192a79e5d98e8b1e236c8f1d6ecb  ./usr/lib32/python3.10/xmlrpc/server.pyc
857dcaeb4484b0b134b3ad30142899b0  ./usr/lib32/python3.10/xml/sax/_exceptions.pyc
81d42612aa15754b066b64b604730924  ./usr/lib32/python3.10/xml/sax/expatreader.pyc
41bde75495752124633fad67517093b4  ./usr/lib32/python3.10/xml/sax/handler.pyc
281c89638116eaf0f43b710bcc66dd79  ./usr/lib32/python3.10/xml/sax/__init__.pyc
63292a75d8d0c372c3a417ec29b19f52  ./usr/lib32/python3.10/xml/sax/saxutils.pyc
9dbd9b6a197fc6b3d482d529767dd493  ./usr/lib32/python3.10/xml/sax/xmlreader.pyc
e4c7467baddd1d6d19f9cec5eb039381  ./usr/lib32/python3.10/zipapp.pyc
c88d89f4af97a49a062d1485ed0f7972  ./usr/lib32/python3.10/zipimport.pyc
b041a6f69670ef442c2435730d640a3e  ./usr/lib32/python3.10/zoneinfo/_common.pyc
49f268f85ca3cd5677d1d7b1ac4087fa  ./usr/lib32/python3.10/zoneinfo/__init__.pyc
1e743394c6c18ede54b30c70f32518c9  ./usr/lib32/python3.10/zoneinfo/_tzpath.pyc
8b8b99bb31199acccace3574f22c7341  ./usr/lib32/python3.10/zoneinfo/_zoneinfo.pyc
0065c97bb8ddf0a97914989b9abaa55e  ./usr/lib32/v4l1compat.so
18373e7989fa769b52a552c726721e7b  ./usr/lib32/v4l2convert.so
404ce68ba7e27c9de80490f64eefe09e  ./usr/lib/libbcm_host.so
395c85a8e3c88691f7fe9e2865a7820c  ./usr/lib/libbrcmEGL.so
6ef1201475cba79c976b39f6cbee3b5f  ./usr/lib/libbrcmGLESv2.so
264a7c44c285716a418580a8ba76b2d0  ./usr/lib/libbrcmOpenVG.so
b4a153bb1a04b8e4f21b91b036b6ebf5  ./usr/lib/libbrcmWFC.so
fb702ebd791aaa45cb0a34ade375de6a  ./usr/lib/libcontainers.so
f7f6c304285f804d57e800c3593e0a01  ./usr/lib/libdebug_sym.so
f58cf423f95715315b253d8e3d700cc6  ./usr/lib/libdtovl.so
3e11855fef15ab58285704ca4e4e3056  ./usr/lib/libEGL.so
a4b2ebdecc3ca45b5cbb963bd0cadc63  ./usr/lib/libexpat.so
a4b2ebdecc3ca45b5cbb963bd0cadc63  ./usr/lib/libexpat.so.1
a4b2ebdecc3ca45b5cbb963bd0cadc63  ./usr/lib/libexpat.so.1.8.10
96d969979b0ca9b590ca408b4fc14969  ./usr/lib/libffi.so
96d969979b0ca9b590ca408b4fc14969  ./usr/lib/libffi.so.8
96d969979b0ca9b590ca408b4fc14969  ./usr/lib/libffi.so.8.1.2
770aaa0de5016682410857bcf36836e6  ./usr/lib/libfreetype.so
770aaa0de5016682410857bcf36836e6  ./usr/lib/libfreetype.so.6
770aaa0de5016682410857bcf36836e6  ./usr/lib/libfreetype.so.6.18.3
080cf5ccf3d9c3348635e8a0e377036d  ./usr/lib/libGLESv2.so
33bcaab1cf169f5467907ad0c28a9259  ./usr/lib/libjpeg.so
33bcaab1cf169f5467907ad0c28a9259  ./usr/lib/libjpeg.so.9
33bcaab1cf169f5467907ad0c28a9259  ./usr/lib/libjpeg.so.9.5.0
520de383150435d18707d855f5382dcc  ./usr/lib/libkhrn_client.so
0fa325507e88a2cd7b9151597491b3d4  ./usr/lib/libmmal_components.so
37b599a557db880d45777b11f2fb8f69  ./usr/lib/libmmal_core.so
5afbc2b23959a38f730d1718dd9d3705  ./usr/lib/libmmal.so
b1bc4f25bc8a98ab9fc374f9ba15ae99  ./usr/lib/libmmal_util.so
ba9aaf7d20cc2f28a7cd00e2ef749483  ./usr/lib/libmmal_vc_client.so
ae56cdea8f65ac819530bf4e51a3daf8  ./usr/lib/libopenmaxil.so
f1a12a1ba705b70deec13d721b6bd79e  ./usr/lib/libOpenVG.so
801280648e20d2f15f253f21bab0b7bd  ./usr/lib/libpng16.so
801280648e20d2f15f253f21bab0b7bd  ./usr/lib/libpng16.so.16
801280648e20d2f15f253f21bab0b7bd  ./usr/lib/libpng16.so.16.39.0
801280648e20d2f15f253f21bab0b7bd  ./usr/lib/libpng.so
46ed8dfc132d0873a9b78993b2791207  ./usr/lib/libpython3.10.so
46ed8dfc132d0873a9b78993b2791207  ./usr/lib/libpython3.10.so.1.0
0e6c20ef1a8a3262fc2a01eff9114c75  ./usr/lib/libpython3.so
37d73eac98448a4a5826cc0546463ee7  ./usr/lib/libqrencode.so
37d73eac98448a4a5826cc0546463ee7  ./usr/lib/libqrencode.so.4
37d73eac98448a4a5826cc0546463ee7  ./usr/lib/libqrencode.so.4.1.1
79a8b5589878a53ed26026cdbf4422ef  ./usr/lib/libstdc++.so
79a8b5589878a53ed26026cdbf4422ef  ./usr/lib/libstdc++.so.6
79a8b5589878a53ed26026cdbf4422ef  ./usr/lib/libstdc++.so.6.0.29
7fbb8e01200439b562ec0200115a8cdb  ./usr/lib/libstdc++.so.6.0.29-gdb.py
fc35548acdf65453395009e0d4c5631b  ./usr/lib/libv4l1.so
fc35548acdf65453395009e0d4c5631b  ./usr/lib/libv4l1.so.0
fc35548acdf65453395009e0d4c5631b  ./usr/lib/libv4l1.so.0.0.0
20c8fa9d811d5f66ebc075c36481dd5c  ./usr/lib/libv4l2rds.so
20c8fa9d811d5f66ebc075c36481dd5c  ./usr/lib/libv4l2rds.so.0
20c8fa9d811d5f66ebc075c36481dd5c  ./usr/lib/libv4l2rds.so.0.0.0
832950adfe09534827034efcefbe393f  ./usr/lib/libv4l2.so
832950adfe09534827034efcefbe393f  ./usr/lib/libv4l2.so.0
832950adfe09534827034efcefbe393f  ./usr/lib/libv4l2.so.0.0.0
592a3652776c7351d97a731090252631  ./usr/lib/libv4lconvert.so
592a3652776c7351d97a731090252631  ./usr/lib/libv4lconvert.so.0
592a3652776c7351d97a731090252631  ./usr/lib/libv4lconvert.so.0.0.0
1ef3d5e390ab05e112ab63e75bbd2894  ./usr/lib/libv4l/ov511-decomp
8b4ac68f8d5b1dc377d4efcb5199d3fe  ./usr/lib/libv4l/ov518-decomp
6f3da8456530f8bae2e9c978b40711fd  ./usr/lib/libv4l/plugins/libv4l-mplane.so
0065c97bb8ddf0a97914989b9abaa55e  ./usr/lib/libv4l/v4l1compat.so
18373e7989fa769b52a552c726721e7b  ./usr/lib/libv4l/v4l2convert.so
0ee483a216863ed58b5d380dff6025dd  ./usr/lib/libvchiq_arm.so
074717533072d1719406439b1cf4abea  ./usr/lib/libvchostif.so
34b5f7a2230c39c2e9e01cb404e80ffa  ./usr/lib/libvcilcs.so
893cb2f78fbab2f2c432f333797d8382  ./usr/lib/libvcos.so
e5ce546b8bbe94a4b301343234bd20c3  ./usr/lib/libvcsm.so
e6ad443dd7a98174c1af253ee3f2d10c  ./usr/lib/libWFC.so
e43ecbebd51a9c0de87c90068c3dd90c  ./usr/lib/libzbar.so
e43ecbebd51a9c0de87c90068c3dd90c  ./usr/lib/libzbar.so.0
e43ecbebd51a9c0de87c90068c3dd90c  ./usr/lib/libzbar.so.0.3.0
dbf080a4dc03df7e02872f9b10f72dc1  ./usr/lib/libz.so
dbf080a4dc03df7e02872f9b10f72dc1  ./usr/lib/libz.so.1
dbf080a4dc03df7e02872f9b10f72dc1  ./usr/lib/libz.so.1.2.13
b2e6a87e4494feee42a0a903042c7554  ./usr/lib/os-release
385f833971004ed4505e7296f05ad6c7  ./usr/lib/plugins/reader_asf.so
486f2ed0ffa38eeeb11f295bef408b99  ./usr/lib/plugins/reader_avi.so
49617c1acd7341d458974024360f0012  ./usr/lib/plugins/reader_binary.so
0088234a7605f8920f53b40827a185d5  ./usr/lib/plugins/reader_flv.so
31cf01ded7b81e17dd6f798494db8830  ./usr/lib/plugins/reader_metadata_id3.so
583425d2f7484f2952f4175a58de0a32  ./usr/lib/plugins/reader_mkv.so
536831b5912ae7b927b9e07a67abe81d  ./usr/lib/plugins/reader_mp4.so
c6d11202d2f6f46161ed553cef02a2f8  ./usr/lib/plugins/reader_mpga.so
4355d69c0eee9f2446e871f7634b5fb2  ./usr/lib/plugins/reader_ps.so
111789383d17ca2b9decb34bf26c535f  ./usr/lib/plugins/reader_qsynth.so
802edb8d371c72a0a41fa38935aac61c  ./usr/lib/plugins/reader_raw_video.so
2b876dd38e001cdd9fc64354f5126648  ./usr/lib/plugins/reader_rcv.so
6ee58e42cd924ff99cb943b2a762502b  ./usr/lib/plugins/reader_rtp.so
37b3b0d94a2c544d2828a613617d6dc3  ./usr/lib/plugins/reader_rtsp.so
f09e7246d2f2a93d8774af82bb20c8d6  ./usr/lib/plugins/reader_rv9.so
9f3c26983e9eb5bf16ed22f0f702ba2f  ./usr/lib/plugins/reader_simple.so
aba8c898bcc49b201e1c8b0dc8ba0a62  ./usr/lib/plugins/reader_wav.so
ea17ce9c314047ac8fa5087204249862  ./usr/lib/plugins/writer_asf.so
bb250727aea05a78b9e7f45f84750991  ./usr/lib/plugins/writer_avi.so
dca00b9e6d7fae1185aca9e9c98f840a  ./usr/lib/plugins/writer_binary.so
0321db9cbfa9b346875da5c752c9a2bf  ./usr/lib/plugins/writer_dummy.so
558456bfbef496bd81412c0061701660  ./usr/lib/plugins/writer_mp4.so
39e9c528e9c88ee9b301d45e9cb80637  ./usr/lib/plugins/writer_raw_video.so
48d36675b4e28bf3d1dd2789c19de0f4  ./usr/lib/plugins/writer_simple.so
e39b2bc81f5403b44296a23486d6aa16  ./usr/lib/python3.10/abc.pyc
5e1e506db8f0ea39cdf97e2738c8b5be  ./usr/lib/python3.10/aifc.pyc
2274b27fa6ebbaaa7d2b919696ac7983  ./usr/lib/python3.10/_aix_support.pyc
100f23d1e12ae31664ec53f1890bf660  ./usr/lib/python3.10/antigravity.pyc
48ce02a1015c934ba619085ab7f597a6  ./usr/lib/python3.10/argparse.pyc
3317e1c6dec4f674ece69292bb33ee99  ./usr/lib/python3.10/ast.pyc
b85a4a6396b3948e3568f5e49077d9ed  ./usr/lib/python3.10/asynchat.pyc
6067bcb6c8daeb43a31e24e2e3645208  ./usr/lib/python3.10/asyncio/base_events.pyc
602c43bad29721c3879e65b2c147da20  ./usr/lib/python3.10/asyncio/base_futures.pyc
56bd4d293b89d7ff7ed58f8086c83386  ./usr/lib/python3.10/asyncio/base_subprocess.pyc
c18b3e1cc99e371701a7ab680c506812  ./usr/lib/python3.10/asyncio/base_tasks.pyc
d731e5d42c16a24316227e6a44960935  ./usr/lib/python3.10/asyncio/constants.pyc
1e0ef4886b21aa1355495ecfab5ecc4c  ./usr/lib/python3.10/asyncio/coroutines.pyc
fd1fec5699182dcab955bd8b2bae4b30  ./usr/lib/python3.10/asyncio/events.pyc
530b04ef2924e89dfcd57314dbdf9d56  ./usr/lib/python3.10/asyncio/exceptions.pyc
67b3d9ccc9cc12e87319f3ddade89894  ./usr/lib/python3.10/asyncio/format_helpers.pyc
793638899a658280df1dc31c657e97ea  ./usr/lib/python3.10/asyncio/futures.pyc
199a245d1782809bf8f305962a6794e3  ./usr/lib/python3.10/asyncio/__init__.pyc
2b175f711c3944d63708d128f3956ed1  ./usr/lib/python3.10/asyncio/locks.pyc
65ea76186849360ceea3e3820ce18a99  ./usr/lib/python3.10/asyncio/log.pyc
0e4094c7074d2709c43d6df531231273  ./usr/lib/python3.10/asyncio/__main__.pyc
70b134782cf23f9384ffe232f93f937f  ./usr/lib/python3.10/asyncio/mixins.pyc
33ae401fc68b0c98c2cccd38a95fffdd  ./usr/lib/python3.10/asyncio/proactor_events.pyc
49b0cc2792bf134e626093e36d74da14  ./usr/lib/python3.10/asyncio/protocols.pyc
8df1f1b0cb86f66c66ce4ddef978e0c4  ./usr/lib/python3.10/asyncio/queues.pyc
43324951780eba34e03f6b25cd848745  ./usr/lib/python3.10/asyncio/runners.pyc
00a9fe6df6f9654e5628082a24317eac  ./usr/lib/python3.10/asyncio/selector_events.pyc
f3d4a9d763eb0689a9c020a075ddcaad  ./usr/lib/python3.10/asyncio/sslproto.pyc
b94001ceed111bd12b2fc20771356a12  ./usr/lib/python3.10/asyncio/staggered.pyc
814650e485345f552960dbaee38a0338  ./usr/lib/python3.10/asyncio/streams.pyc
438d9e739fd0f3349e3b6dfd6fe522db  ./usr/lib/python3.10/asyncio/subprocess.pyc
9562a7ab6be4a1ae74bb9663edceae93  ./usr/lib/python3.10/asyncio/tasks.pyc
0019f9abea81c89422d348053bd36f70  ./usr/lib/python3.10/asyncio/threads.pyc
e43146a0a7ee439124a0796d12c211b7  ./usr/lib/python3.10/asyncio/transports.pyc
8c02ee6fb2efaedf11f82bc5ea5d1bee  ./usr/lib/python3.10/asyncio/trsock.pyc
4a8ea4bed63be2516e09bdf1309e2a31  ./usr/lib/python3.10/asyncio/unix_events.pyc
58435329fbdeacb2e8d489def78f81f2  ./usr/lib/python3.10/asyncio/windows_events.pyc
f872629897baad0b4116bfc5a54b49d3  ./usr/lib/python3.10/asyncio/windows_utils.pyc
0f3d24d5b95dc2ce5292e660efaf8cc3  ./usr/lib/python3.10/asyncore.pyc
1584456b2d3f56cd0969c09eac3a1d10  ./usr/lib/python3.10/base64.pyc
9497db31b899abf8703c8a7f5af0acb0  ./usr/lib/python3.10/bdb.pyc
b3a80212d76b1ecad284289c685283ed  ./usr/lib/python3.10/binhex.pyc
90a6b20b6e4d53dce31bd2d5ec1d7074  ./usr/lib/python3.10/bisect.pyc
891a91ee37a4e11b218aceeaaf79af42  ./usr/lib/python3.10/_bootsubprocess.pyc
e2877dd6693165ee23ed0154334e8fa4  ./usr/lib/python3.10/bz2.pyc
e1ae7e68bc4e93055824294a4471bed0  ./usr/lib/python3.10/calendar.pyc
7f7c14eabc591f95138adb55a16399b8  ./usr/lib/python3.10/cgi.pyc
f16e8ca9fd291ea408748a8979f61e15  ./usr/lib/python3.10/cgitb.pyc
ddc516702e670c272305c82429ddaf8b  ./usr/lib/python3.10/chunk.pyc
9cd635d295fae1d2bcbe57c54188416f  ./usr/lib/python3.10/cmd.pyc
13fc4d2cf97f260a54db9afef6b869a8  ./usr/lib/python3.10/codecs.pyc
50aa986303876c5d5412893b33602f71  ./usr/lib/python3.10/codeop.pyc
c9d113d7d0677d38641ef5349590c980  ./usr/lib/python3.10/code.pyc
b75bd11073ec12f0854b1b2bd9190b0f  ./usr/lib/python3.10/collections/abc.pyc
bd83e148b49efe601752738a0e826075  ./usr/lib/python3.10/_collections_abc.pyc
3852e3941a0f7055b6e2b210c1661c23  ./usr/lib/python3.10/collections/__init__.pyc
fcee8797ccec50a46541d2e7669965c4  ./usr/lib/python3.10/colorsys.pyc
107d401ffd7c8761104f74f16bea1165  ./usr/lib/python3.10/_compat_pickle.pyc
f8e7a0fb0f54f3427dc2241b054af3bf  ./usr/lib/python3.10/compileall.pyc
6c5e9411e3f598ecd446d25ac72aa545  ./usr/lib/python3.10/_compression.pyc
6f4d1f0788a1f4a57e5d6789794a36d1  ./usr/lib/python3.10/concurrent/futures/_base.pyc
762db18bdce0f1f4767c33346770da2e  ./usr/lib/python3.10/concurrent/futures/__init__.pyc
7d480889a5679dc22912b7761f005e52  ./usr/lib/python3.10/concurrent/futures/process.pyc
d96eb24825d54137861fdf0222692977  ./usr/lib/python3.10/concurrent/futures/thread.pyc
bfe9cdda26cc9af8cc7931203fc5f8d1  ./usr/lib/python3.10/concurrent/__init__.pyc
3346d6e7aa6334f7a99893ed46dbe810  ./usr/lib/python3.10/config-3.10-arm-linux-gnueabihf/config.c
35de682ece0a705c5bb4f25d68213aab  ./usr/lib/python3.10/config-3.10-arm-linux-gnueabihf/config.c.in
b090c5891571c820e91d345a9551af44  ./usr/lib/python3.10/config-3.10-arm-linux-gnueabihf/install-sh
c84d824a02babd60ddc08835da1a1183  ./usr/lib/python3.10/config-3.10-arm-linux-gnueabihf/makesetup
883cf31b3e5503f5a699562e91f64906  ./usr/lib/python3.10/config-3.10-arm-linux-gnueabihf/python-config.pyc
ebaac818e48b28148180d449d2dcdb94  ./usr/lib/python3.10/config-3.10-arm-linux-gnueabihf/python.o
58f9a356a7613d26ccb2caa7ea21d491  ./usr/lib/python3.10/config-3.10-arm-linux-gnueabihf/Setup
f78e3a8770057df86847e97b6979fd11  ./usr/lib/python3.10/config-3.10-arm-linux-gnueabihf/Setup.local
256683d9ec599acdcc66a73ab866e56a  ./usr/lib/python3.10/configparser.pyc
669abc5a0aac8e1bdc855182652be861  ./usr/lib/python3.10/contextlib.pyc
d1eb54e0fa0c1dfa34dbaec0dd1035fe  ./usr/lib/python3.10/contextvars.pyc
3f26b1a3086532cb450546f34684ce8d  ./usr/lib/python3.10/copy.pyc
069caa92ebca8521a8eac95ec6ec357b  ./usr/lib/python3.10/copyreg.pyc
29e78547580013574b7e20d89539a8ff  ./usr/lib/python3.10/cProfile.pyc
a5c025c723660e59d90ed9b79e5da341  ./usr/lib/python3.10/crypt.pyc
2828bcd824541fe608688df588110f77  ./usr/lib/python3.10/csv.pyc
fc6d3804d5a928df0d96356a2907ce96  ./usr/lib/python3.10/ctypes/_aix.pyc
61d3c436b2789fce7ba410ee507c95cc  ./usr/lib/python3.10/ctypes/_endian.pyc
3d8324f6c611fa15d4f7f04f3e8291b2  ./usr/lib/python3.10/ctypes/__init__.pyc
0dd57d823b6318b4c68340a625cedee7  ./usr/lib/python3.10/ctypes/macholib/dyld.pyc
b1ef2ead6b0394b3778f1e35893c3b17  ./usr/lib/python3.10/ctypes/macholib/dylib.pyc
8e343c4578540377faeae632b6b967e1  ./usr/lib/python3.10/ctypes/macholib/fetch_macholib
b88dfc5590f1d09d550605f3afcac0d7  ./usr/lib/python3.10/ctypes/macholib/fetch_macholib.bat
0b674a5edab37023e7a50aadc15debbd  ./usr/lib/python3.10/ctypes/macholib/framework.pyc
f07bd094a7479c079481a0e466c24764  ./usr/lib/python3.10/ctypes/macholib/__init__.pyc
4622ce3deb3c6d926b8b79ee9d5b8a97  ./usr/lib/python3.10/ctypes/macholib/README.ctypes
f6920afa6786c0bb160a4790f6a1bdb8  ./usr/lib/python3.10/ctypes/util.pyc
ffa225c1d0f1d58c6789b359881985d4  ./usr/lib/python3.10/ctypes/wintypes.pyc
77ee80d6827b72492870a46f14a061a5  ./usr/lib/python3.10/dataclasses.pyc
8cc7c1077f50bcf4de5e2d3749acbc70  ./usr/lib/python3.10/datetime.pyc
12d987c4a1682cbb986ef4810221600a  ./usr/lib/python3.10/dbm/dumb.pyc
1fdc31d445ecf7019c0064e9e5df4207  ./usr/lib/python3.10/dbm/gnu.pyc
0971f5b2c9e465e0f8ad7f707a74a508  ./usr/lib/python3.10/dbm/__init__.pyc
207b8ecfd7472945209bac209732e5ed  ./usr/lib/python3.10/dbm/ndbm.pyc
828dcb093e7e777ad46ca2870b126f88  ./usr/lib/python3.10/decimal.pyc
378992ee261dfdaaf58d28cb7c96aea9  ./usr/lib/python3.10/difflib.pyc
e8190cc5ddeb53f4d07947061973d8c2  ./usr/lib/python3.10/dis.pyc
a30519775879d3340d82138866c919fe  ./usr/lib/python3.10/distutils/archive_util.pyc
e05eb7f3df0c618b2581bcc3cd4af31b  ./usr/lib/python3.10/distutils/bcppcompiler.pyc
74c5e02a15e689907e2f12dd396176a9  ./usr/lib/python3.10/distutils/ccompiler.pyc
8d8eceb6937d0e6a50e5a7ca0446a9fe  ./usr/lib/python3.10/distutils/cmd.pyc
a0de718daf7fcdbcf2dad4b63daceaf9  ./usr/lib/python3.10/distutils/command/bdist_dumb.pyc
63d960449b181788b06a5e7ee4b5b866  ./usr/lib/python3.10/distutils/command/bdist_msi.pyc
54978fb0760ec1984b39267df0d1f72c  ./usr/lib/python3.10/distutils/command/bdist.pyc
0277951af64f66f2f36d3b38086699fa  ./usr/lib/python3.10/distutils/command/bdist_rpm.pyc
4bcdf598f17fe59fac21e3f8e4cbf559  ./usr/lib/python3.10/distutils/command/build_clib.pyc
98021a9f8f26894031b1ff24d9eed503  ./usr/lib/python3.10/distutils/command/build_ext.pyc
77e3e14f099dda38da369a50b80108de  ./usr/lib/python3.10/distutils/command/build.pyc
8bc1a9c3dda1f4a89384a99f451a06e5  ./usr/lib/python3.10/distutils/command/build_py.pyc
865e1a54013af99650b098bec8348cd7  ./usr/lib/python3.10/distutils/command/build_scripts.pyc
d0b510f30fafdeaadff4ebe8296fecef  ./usr/lib/python3.10/distutils/command/check.pyc
c929b1f84dcf838a3a6102b8af1bcdf7  ./usr/lib/python3.10/distutils/command/clean.pyc
b99c55765154dc98cdf6fa1e9039e714  ./usr/lib/python3.10/distutils/command/command_template
cd67b06ef56061859cfa1e740a10deee  ./usr/lib/python3.10/distutils/command/config.pyc
8b3cf965fc16d2fb00f420534bade13d  ./usr/lib/python3.10/distutils/command/__init__.pyc
0cfad1f40325bbfa112c5cf346d71de3  ./usr/lib/python3.10/distutils/command/install_data.pyc
4174998e78b9b27c17a27d2b53d69f98  ./usr/lib/python3.10/distutils/command/install_egg_info.pyc
3440b052465371f1ca3ff3bad6c08120  ./usr/lib/python3.10/distutils/command/install_headers.pyc
b82cb3379e3ec102844a1ac1e0b2bc77  ./usr/lib/python3.10/distutils/command/install_lib.pyc
b95c01200ffcdae3cab2c2ea771d8834  ./usr/lib/python3.10/distutils/command/install.pyc
6d9639f8e144db9564081459d5a5a892  ./usr/lib/python3.10/distutils/command/install_scripts.pyc
60b19ea54609ad53380e6430bb4b8233  ./usr/lib/python3.10/distutils/command/register.pyc
1126c65cac1d69b5d5ca5cfc44a4912a  ./usr/lib/python3.10/distutils/command/sdist.pyc
266b02584c475c17b20a1e06568e630c  ./usr/lib/python3.10/distutils/command/upload.pyc
91045ab59da5f875a46f4d969abb677d  ./usr/lib/python3.10/distutils/config.pyc
61dff8cd83b69ff5195d41b5d3837b05  ./usr/lib/python3.10/distutils/core.pyc
7a19669e9c73bce9a6b5de4e634004e0  ./usr/lib/python3.10/distutils/cygwinccompiler.pyc
bc105fd05df65baf880c617c53d90a54  ./usr/lib/python3.10/distutils/debug.pyc
3d319ece239e2346b4a9c7ddf2118b82  ./usr/lib/python3.10/distutils/dep_util.pyc
fbcb92949a8171cdfb2a5c8cc46408ab  ./usr/lib/python3.10/distutils/dir_util.pyc
45f54584b6fcd8349acc732e7c1c3ace  ./usr/lib/python3.10/distutils/dist.pyc
0abf75d2c617c43047975419a34ad8f4  ./usr/lib/python3.10/distutils/errors.pyc
ec9c9afccb16b07bf238a77f3df5ca6a  ./usr/lib/python3.10/distutils/extension.pyc
114438f09d53636331380cd945e30110  ./usr/lib/python3.10/distutils/fancy_getopt.pyc
716a7d1727af1327fc135117285a77a7  ./usr/lib/python3.10/distutils/filelist.pyc
db65498a38b6050965787d5ee6373662  ./usr/lib/python3.10/distutils/file_util.pyc
54a1fffd84c49ec3e216f889e3516821  ./usr/lib/python3.10/distutils/__init__.pyc
60903620aa01bf0f618c9b0208b35431  ./usr/lib/python3.10/distutils/log.pyc
acf815c3a4615ce67f2d0963776f0e12  ./usr/lib/python3.10/distutils/msvc9compiler.pyc
95f22a8d392193e99b28487d82d8a48b  ./usr/lib/python3.10/distutils/_msvccompiler.pyc
163b426b4aeece13ab4f4f1aa2ad0ffd  ./usr/lib/python3.10/distutils/msvccompiler.pyc
c886a20a43b4f6070b2dc356beafbf9f  ./usr/lib/python3.10/distutils/README
29aa8d4ffdc4c2c16e6b5ff3baec1a32  ./usr/lib/python3.10/distutils/spawn.pyc
43445741776624f0e6aedfc7cf98ee56  ./usr/lib/python3.10/distutils/sysconfig.pyc
2c4dd2884551aa16d5d934f9843a0642  ./usr/lib/python3.10/distutils/text_file.pyc
57da2177d32132bc775dc26261cccbfd  ./usr/lib/python3.10/distutils/unixccompiler.pyc
612f45d01c0f445f9051b6154ef57ed2  ./usr/lib/python3.10/distutils/util.pyc
f1f862eb7802a4c75a4e64d92732c858  ./usr/lib/python3.10/distutils/versionpredicate.pyc
074244136baa3ae0ca897eb834f078bf  ./usr/lib/python3.10/distutils/version.pyc
8b4de0b872564135d4997e373052bb6a  ./usr/lib/python3.10/email/architecture.rst
671fe5ffea05321d1d11e20e995162b7  ./usr/lib/python3.10/email/base64mime.pyc
71c9757c56921dbe060e7cc2e07e1765  ./usr/lib/python3.10/email/charset.pyc
c29905498e1bbf1ee3b1f2d868b3f71b  ./usr/lib/python3.10/email/contentmanager.pyc
bd767f38eacc5b9df8a14b10f7ba1b7b  ./usr/lib/python3.10/email/_encoded_words.pyc
3e0966fcaca5f0c7761417ea57ec6047  ./usr/lib/python3.10/email/encoders.pyc
1826db05b5c1690f9341899907822bcd  ./usr/lib/python3.10/email/errors.pyc
f0698d3ed75d084b9232b8a07b0d5ab2  ./usr/lib/python3.10/email/feedparser.pyc
d2f8a1a6f93e19a9c69806e5aaa657a0  ./usr/lib/python3.10/email/generator.pyc
7852cd0f5d3ac79876a33825eac8363f  ./usr/lib/python3.10/email/header.pyc
124d5225f846cf46ce772907dda1736b  ./usr/lib/python3.10/email/headerregistry.pyc
f1831f8cf212c18b1aabcb629c96a2d9  ./usr/lib/python3.10/email/_header_value_parser.pyc
ea89303e4f48e658d4de6fe9810741b4  ./usr/lib/python3.10/email/__init__.pyc
086d1df046f2c3879154292a4f555123  ./usr/lib/python3.10/email/iterators.pyc
b0eb023c954b6bca56cc49a5bc6fb135  ./usr/lib/python3.10/email/message.pyc
1cbb695cfc676463fbc9856195a3265b  ./usr/lib/python3.10/email/mime/application.pyc
a0bc35ecb57d201bd84aa2247c8272f8  ./usr/lib/python3.10/email/mime/audio.pyc
8fb32012734922a664a6ff7d1a33d1bd  ./usr/lib/python3.10/email/mime/base.pyc
2dd282bad0a7768e609af9ca6372f6df  ./usr/lib/python3.10/email/mime/image.pyc
d54cc79047f28f69f9fa51a313bca5fe  ./usr/lib/python3.10/email/mime/__init__.pyc
9f4950fdf30acb5f978e2187ff7d81dd  ./usr/lib/python3.10/email/mime/message.pyc
abce2c69b7a28113bc6bf4173812b6da  ./usr/lib/python3.10/email/mime/multipart.pyc
de2c2e320a55445efbfb9f3d4378d0a7  ./usr/lib/python3.10/email/mime/nonmultipart.pyc
119de505e5336f098a038618a9caec3e  ./usr/lib/python3.10/email/mime/text.pyc
cea87a766c40cb8d8398200b2c42b888  ./usr/lib/python3.10/email/_parseaddr.pyc
41e91021f06be838e71fd82ab4728da6  ./usr/lib/python3.10/email/parser.pyc
9b271aeab827325895fb03ae9221001c  ./usr/lib/python3.10/email/_policybase.pyc
250deb1471268e49e1291f5834fefee2  ./usr/lib/python3.10/email/policy.pyc
6483129d95dab4c7d6049c74c5677a4d  ./usr/lib/python3.10/email/quoprimime.pyc
6c37a729544a5f2df9a7c6e62d7b674c  ./usr/lib/python3.10/email/utils.pyc
ec483a2508b60a895d1c608910c31d07  ./usr/lib/python3.10/encodings/aliases.pyc
f41e70cd09d43333b84096ae90629b89  ./usr/lib/python3.10/encodings/ascii.pyc
686330f85b9080afb7c561bf267adf57  ./usr/lib/python3.10/encodings/base64_codec.pyc
3096f1fa9ceb44f83a2ea7278a708223  ./usr/lib/python3.10/encodings/big5hkscs.pyc
ff3608979eeeb5244704abf7423f0882  ./usr/lib/python3.10/encodings/big5.pyc
b368cb6cf46a50bfa68afcb0ffd8ab5c  ./usr/lib/python3.10/encodings/bz2_codec.pyc
774af0576d8a18c1a69fa92c698fb2c0  ./usr/lib/python3.10/encodings/charmap.pyc
64a2be6d77cce2fb6aa2b8c5c45cb7b9  ./usr/lib/python3.10/encodings/cp037.pyc
4377f3b8bdc162938e478eaa478cff20  ./usr/lib/python3.10/encodings/cp1006.pyc
c089160a591332505025fa697eeabf49  ./usr/lib/python3.10/encodings/cp1026.pyc
37d8bdd58a88dc07c48b9b658f846320  ./usr/lib/python3.10/encodings/cp1125.pyc
55d81dba13ac8dda566aa93969a55f91  ./usr/lib/python3.10/encodings/cp1140.pyc
2ea6bcb32ae032c652e43c05a14fefd5  ./usr/lib/python3.10/encodings/cp1250.pyc
aa4f487a9b837116250c5206589a8cdc  ./usr/lib/python3.10/encodings/cp1251.pyc
6810ff3ae0edc20402d0c91d8496ee18  ./usr/lib/python3.10/encodings/cp1252.pyc
1fb69c1a4926942ed197ce1a58c6b13b  ./usr/lib/python3.10/encodings/cp1253.pyc
3a4aefe4c4300438ad16c14293f46795  ./usr/lib/python3.10/encodings/cp1254.pyc
b101938b2e9e59061a0dc02d43674615  ./usr/lib/python3.10/encodings/cp1255.pyc
ce4cc1f4c5ad376a03685fcf38bf42bf  ./usr/lib/python3.10/encodings/cp1256.pyc
1cd71473c40b8247250a952dc6bf84bb  ./usr/lib/python3.10/encodings/cp1257.pyc
6860d5fa16e29a7d8f37f76d60749e65  ./usr/lib/python3.10/encodings/cp1258.pyc
1a19ed9c9d1b8a93771badb5c613f39f  ./usr/lib/python3.10/encodings/cp273.pyc
9d0dcc64baa869fd8c58e87332cdd901  ./usr/lib/python3.10/encodings/cp424.pyc
defaa32cccd737de7a4c62ab08b351c9  ./usr/lib/python3.10/encodings/cp437.pyc
bc13e5deb966e551aea89440ddee3523  ./usr/lib/python3.10/encodings/cp500.pyc
a8fc9185a44684dfebe7e0a90bbc311e  ./usr/lib/python3.10/encodings/cp720.pyc
e0bcb44f200ef09adda0d19f0df5b73c  ./usr/lib/python3.10/encodings/cp737.pyc
d1af4e8ef90d614ac0d5709c9d4abb30  ./usr/lib/python3.10/encodings/cp775.pyc
5cdf487d0a121f7e19c2d874fe7335c9  ./usr/lib/python3.10/encodings/cp850.pyc
4a005069c948329794f7647e84986ec9  ./usr/lib/python3.10/encodings/cp852.pyc
70e27ac3a8c18ff0ee20ef96b97908cd  ./usr/lib/python3.10/encodings/cp855.pyc
5b9c4fc46c0a74c122c6aca134bc29ba  ./usr/lib/python3.10/encodings/cp856.pyc
f7782ce1922638d591e7991541209bf0  ./usr/lib/python3.10/encodings/cp857.pyc
f9a138e5545c2154a2c4dadca77df293  ./usr/lib/python3.10/encodings/cp858.pyc
9cbea1d739003c9e7b2de903aa257459  ./usr/lib/python3.10/encodings/cp860.pyc
a21e2a1ad9b4a4d5f0d1d829e2e2d6da  ./usr/lib/python3.10/encodings/cp861.pyc
ed91d618107d8f7df51d6c4bd603a30a  ./usr/lib/python3.10/encodings/cp862.pyc
36007209c67b5235cac4643758992a4f  ./usr/lib/python3.10/encodings/cp863.pyc
caaa816aee102d9bb1808c7f359afb10  ./usr/lib/python3.10/encodings/cp864.pyc
0cb2c67b1994f01daaa8d3a3d6578975  ./usr/lib/python3.10/encodings/cp865.pyc
cb967691b23c7a2e9b45e6e3a59428ad  ./usr/lib/python3.10/encodings/cp866.pyc
0a51f7480d2a85cd19fa032f73087286  ./usr/lib/python3.10/encodings/cp869.pyc
012b9f2073f6358ddb37f16897e0d1b0  ./usr/lib/python3.10/encodings/cp874.pyc
f47d30f8e24ee836ae44dc73bb0c040c  ./usr/lib/python3.10/encodings/cp875.pyc
92a3cba9fb63fa394836bae5ec28f78c  ./usr/lib/python3.10/encodings/cp932.pyc
a3b994debf5d6f2cef54b41dde0614a5  ./usr/lib/python3.10/encodings/cp949.pyc
b6bc702b3b4bf96ae76ccd793f183e1d  ./usr/lib/python3.10/encodings/cp950.pyc
08e36757d8e8a701d4675bdb6b26e2ac  ./usr/lib/python3.10/encodings/euc_jis_2004.pyc
ab1e40f68057c426c52902781250c287  ./usr/lib/python3.10/encodings/euc_jisx0213.pyc
027c557cff8ad025d3a1413291a874b7  ./usr/lib/python3.10/encodings/euc_jp.pyc
720a47aaf77e364ee5825b85a084508c  ./usr/lib/python3.10/encodings/euc_kr.pyc
31e91a3def9f7d74c5d6fd7a852c3d2b  ./usr/lib/python3.10/encodings/gb18030.pyc
3d1d6a794d36d672a14ea200a8eda46e  ./usr/lib/python3.10/encodings/gb2312.pyc
e6338a37727bcbd2c764c902d4dbb2a4  ./usr/lib/python3.10/encodings/gbk.pyc
58c467e27ab2ddcf28e013bdd9e49a91  ./usr/lib/python3.10/encodings/hex_codec.pyc
3b9688cd5995de95a129d14a1c2667c0  ./usr/lib/python3.10/encodings/hp_roman8.pyc
14bd314684437f16becd1ca70169a829  ./usr/lib/python3.10/encodings/hz.pyc
ab343f8655bc9b1ff5ed289e5b9d5b37  ./usr/lib/python3.10/encodings/idna.pyc
e48b1db422840c043b294483d827a8f8  ./usr/lib/python3.10/encodings/__init__.pyc
885098d4c26f318be2bb8685b6b07fb6  ./usr/lib/python3.10/encodings/iso2022_jp_1.pyc
2c2eade17917e73b33810a715866c886  ./usr/lib/python3.10/encodings/iso2022_jp_2004.pyc
6709fa3fd8069184d74389c43055abe6  ./usr/lib/python3.10/encodings/iso2022_jp_2.pyc
1a04cb30b7473925e2787f0d30a835cc  ./usr/lib/python3.10/encodings/iso2022_jp_3.pyc
891ede30db6ec5ef1f325347f102f4ec  ./usr/lib/python3.10/encodings/iso2022_jp_ext.pyc
7dd20a003831c8decfc201b2df1d97f8  ./usr/lib/python3.10/encodings/iso2022_jp.pyc
7602af1eeb857c539b552ee194c23281  ./usr/lib/python3.10/encodings/iso2022_kr.pyc
955122e4ecbed36f43cbf5d75390bf3a  ./usr/lib/python3.10/encodings/iso8859_10.pyc
8d389c90397de18afcc4030eee739e60  ./usr/lib/python3.10/encodings/iso8859_11.pyc
8d7ab0c2c47a748f21c18bc554353a28  ./usr/lib/python3.10/encodings/iso8859_13.pyc
86fe26adf608c0b8bd6994e7f6c1f048  ./usr/lib/python3.10/encodings/iso8859_14.pyc
641a44d83113e3be0ae4cfe52c42e30a  ./usr/lib/python3.10/encodings/iso8859_15.pyc
4a49188fd31346a51a2416f0cfb628a5  ./usr/lib/python3.10/encodings/iso8859_16.pyc
1b24d2b12154077429f9c529ee91cd2d  ./usr/lib/python3.10/encodings/iso8859_1.pyc
839f67fe5c413298264e7e6a7a5e5eef  ./usr/lib/python3.10/encodings/iso8859_2.pyc
3b23d35d2c4a78dffee3d28c5f1b2fdf  ./usr/lib/python3.10/encodings/iso8859_3.pyc
cce5158be77de16b68d8c5244fa62b5c  ./usr/lib/python3.10/encodings/iso8859_4.pyc
be5bb31344d2bdf7ad7bdba8a2f0e073  ./usr/lib/python3.10/encodings/iso8859_5.pyc
2082f0d4439593bf376b3e52305b9332  ./usr/lib/python3.10/encodings/iso8859_6.pyc
64836b1f2d6cc1121e4ce51e4b155848  ./usr/lib/python3.10/encodings/iso8859_7.pyc
6d6b15efd3a05766ce784aa78b1c9a5f  ./usr/lib/python3.10/encodings/iso8859_8.pyc
c2ca7a499dc3cf6209d162f38de66161  ./usr/lib/python3.10/encodings/iso8859_9.pyc
2be90a99d02ee5ff8a79c1bf0887c7da  ./usr/lib/python3.10/encodings/johab.pyc
8dc1b18be85a63b7216180918dabc2b0  ./usr/lib/python3.10/encodings/koi8_r.pyc
4dffc2ee5cedc22af58d13cfa681f644  ./usr/lib/python3.10/encodings/koi8_t.pyc
acf6ebfae1c62886bc46cdde73c514ce  ./usr/lib/python3.10/encodings/koi8_u.pyc
eadfd4f24dfe864f91c5866ef1d00b0d  ./usr/lib/python3.10/encodings/kz1048.pyc
978bad1129acb157d111a63de4c27978  ./usr/lib/python3.10/encodings/latin_1.pyc
54bb68cdf110bf1d6caba2dd14a44943  ./usr/lib/python3.10/encodings/mac_arabic.pyc
ddbc69e3c0678996a3b1ccd13b125ae6  ./usr/lib/python3.10/encodings/mac_croatian.pyc
8ba6da71c8c8fa03a57ea5574be8cf03  ./usr/lib/python3.10/encodings/mac_cyrillic.pyc
f79b4d2e4c6530459084a4d23f78e093  ./usr/lib/python3.10/encodings/mac_farsi.pyc
1d4a9a04645cd24d20cdda820d17b720  ./usr/lib/python3.10/encodings/mac_greek.pyc
f19ef35e188499e2de7528495b914825  ./usr/lib/python3.10/encodings/mac_iceland.pyc
39cd2415a29c580b3f9fa199a1b464c2  ./usr/lib/python3.10/encodings/mac_latin2.pyc
8d807338512724a43cbe7e295447b142  ./usr/lib/python3.10/encodings/mac_romanian.pyc
fa24c86f604109af9de00d5e883209e4  ./usr/lib/python3.10/encodings/mac_roman.pyc
37d1e8b6342375b20a39ba2a719ca2bf  ./usr/lib/python3.10/encodings/mac_turkish.pyc
8d78a4a2b406f7acb406faf045014e22  ./usr/lib/python3.10/encodings/mbcs.pyc
5deebee5576cc7efb32e82d88139b8f0  ./usr/lib/python3.10/encodings/oem.pyc
90ad9f2806255166f3c98b930222d7d2  ./usr/lib/python3.10/encodings/palmos.pyc
178b744af599ff8caa9fa3b7fe927aa8  ./usr/lib/python3.10/encodings/ptcp154.pyc
8033bb91fffdeaee9ccbedb69fbd7414  ./usr/lib/python3.10/encodings/punycode.pyc
1d756aa685d23e67851c8e4f8c3d56f2  ./usr/lib/python3.10/encodings/quopri_codec.pyc
f2dc76338f3c7d68c138d70c2e720fd8  ./usr/lib/python3.10/encodings/raw_unicode_escape.pyc
409fd9109adba2e6a152fadb68655fe3  ./usr/lib/python3.10/encodings/rot_13.pyc
584d3a9bb7dff8d49aba586a7b9fc377  ./usr/lib/python3.10/encodings/shift_jis_2004.pyc
2faf7ac5c94f6385ed58456ed844760a  ./usr/lib/python3.10/encodings/shift_jis.pyc
297224fb107b67eca1dccfe3472ced5a  ./usr/lib/python3.10/encodings/shift_jisx0213.pyc
d60625df155cb6bddd7efc10814185f5  ./usr/lib/python3.10/encodings/tis_620.pyc
d3441408c7884ab26420cec8e27715e5  ./usr/lib/python3.10/encodings/undefined.pyc
504312ef8872ceac543bca494994e710  ./usr/lib/python3.10/encodings/unicode_escape.pyc
e3858d1e38f828a624ffccfe82a91bde  ./usr/lib/python3.10/encodings/utf_16_be.pyc
e3c93bd69f56d7d2cb4d241645846d68  ./usr/lib/python3.10/encodings/utf_16_le.pyc
f6bc3b21261299faa2ebbec05b938b38  ./usr/lib/python3.10/encodings/utf_16.pyc
18ae8318ce659ea13d970837f29f3e37  ./usr/lib/python3.10/encodings/utf_32_be.pyc
cba0a5227711a71b2e9d8a1d289ab3bf  ./usr/lib/python3.10/encodings/utf_32_le.pyc
de75904c51cef958847d11f3b16350ff  ./usr/lib/python3.10/encodings/utf_32.pyc
eaaeb5c7399e281702746bcfba732465  ./usr/lib/python3.10/encodings/utf_7.pyc
9cf8f57688179d3d01ebf88a1a005cab  ./usr/lib/python3.10/encodings/utf_8.pyc
27975b551fa445f90d329649c36e5cc7  ./usr/lib/python3.10/encodings/utf_8_sig.pyc
0bfa8617b39a609516598886a61c311a  ./usr/lib/python3.10/encodings/uu_codec.pyc
b978a833b0e2dcb47316086c295a3778  ./usr/lib/python3.10/encodings/zlib_codec.pyc
c4da736fa419b59957a361f79d7836c0  ./usr/lib/python3.10/enum.pyc
6ffd6c3413a042470eaa76114f8b7b3f  ./usr/lib/python3.10/filecmp.pyc
994125437aa937ef54225169930eeb67  ./usr/lib/python3.10/fileinput.pyc
39b7819d8328651fa9d2ba05ce3d3b19  ./usr/lib/python3.10/fnmatch.pyc
0ab256f1b056da13c63af35ef50bf78b  ./usr/lib/python3.10/fractions.pyc
ac576986e6c8a49457830040bdb9a1b2  ./usr/lib/python3.10/ftplib.pyc
d409a702af93420097486b4258290d68  ./usr/lib/python3.10/functools.pyc
ad1d368b87dadee5c72ab1ba832ca41a  ./usr/lib/python3.10/__future__.pyc
1851f34c1b22302217ba9f88cb112487  ./usr/lib/python3.10/genericpath.pyc
21a00b278314f5d01dc7cc4d6d566a46  ./usr/lib/python3.10/getopt.pyc
a30692c896554bdaf41cfbaa17ede8e1  ./usr/lib/python3.10/getpass.pyc
36df982fbd73ff6fc62d0a5006676cc9  ./usr/lib/python3.10/gettext.pyc
55ed34bab4818967dc3abb25030d26a3  ./usr/lib/python3.10/glob.pyc
decba4184f385876b8fb68c4c7a1565b  ./usr/lib/python3.10/graphlib.pyc
f29128bf10094587472355933f226c22  ./usr/lib/python3.10/gzip.pyc
be626bf1ccd91dd4c5b2b89a52914e87  ./usr/lib/python3.10/hashlib.pyc
59244c48665a268eebf39b97722a3d95  ./usr/lib/python3.10/heapq.pyc
813eab8903134a5bcf8aa7237faad554  ./usr/lib/python3.10/hmac.pyc
e2a1f580e6f3b5cea99e216c99011d30  ./usr/lib/python3.10/html/entities.pyc
2a6d321fa7385b0b76781efa3dc3ba44  ./usr/lib/python3.10/html/__init__.pyc
f7b962d3f58f6656992384b2a402e454  ./usr/lib/python3.10/html/parser.pyc
ce68c5c3e0c6313379b79920b2568ea9  ./usr/lib/python3.10/http/client.pyc
2c404bbadb2d298ed36ba12d78d0c5bb  ./usr/lib/python3.10/http/cookiejar.pyc
de8454ca8b3f5fa59de9f3a390d61ae1  ./usr/lib/python3.10/http/cookies.pyc
15762893a0a796f3fc953e372147ead9  ./usr/lib/python3.10/http/__init__.pyc
c74d4c44043b685833fc355052603f07  ./usr/lib/python3.10/http/server.pyc
e14b9deef65ec5dd4fecad67ba24a554  ./usr/lib/python3.10/imaplib.pyc
fa2765edec62a503dd23c77f477bad52  ./usr/lib/python3.10/imghdr.pyc
79756171f926105c669c9dc191a24feb  ./usr/lib/python3.10/importlib/_abc.pyc
ac3beef62b99dceeeab7e97488dc5259  ./usr/lib/python3.10/importlib/abc.pyc
7ee90965595f3bec133b86b38c2f3748  ./usr/lib/python3.10/importlib/_adapters.pyc
1652a18c063576f4ed2e582fc47d0c96  ./usr/lib/python3.10/importlib/_bootstrap_external.pyc
30589f48db95fe05abb9cc78f7a7d032  ./usr/lib/python3.10/importlib/_bootstrap.pyc
05ee8316eb550931a3a5fbde653cab4e  ./usr/lib/python3.10/importlib/_common.pyc
1abeeb578a5b56137296d3b65366f9e5  ./usr/lib/python3.10/importlib/__init__.pyc
506bf77e45d53fb1d13810134f343056  ./usr/lib/python3.10/importlib/machinery.pyc
6ab58743fef1de97958977326209bda4  ./usr/lib/python3.10/importlib/metadata/_adapters.pyc
b37e4184818785212cc7a467ba90d90f  ./usr/lib/python3.10/importlib/metadata/_collections.pyc
7fd023d49641841321a73ba6d1cadbc1  ./usr/lib/python3.10/importlib/metadata/_functools.pyc
1741863b00c0103e868510f2d67e4bfc  ./usr/lib/python3.10/importlib/metadata/__init__.pyc
bab7763c670cb863cc459bbca311e4d2  ./usr/lib/python3.10/importlib/metadata/_itertools.pyc
024a6d3770f0d84c952779d98aa714ed  ./usr/lib/python3.10/importlib/metadata/_meta.pyc
4cd3526d99f6aeac17be3d1ef3bde6d9  ./usr/lib/python3.10/importlib/metadata/_text.pyc
ff3650ac908f23ecf41f811d689637fa  ./usr/lib/python3.10/importlib/readers.pyc
ec03fe951fe764dca64ae60641c79f10  ./usr/lib/python3.10/importlib/resources.pyc
315a8c06a71e87d46a966e3e56e55bb2  ./usr/lib/python3.10/importlib/util.pyc
04f62f1f44feb73ca57fb31e8ce48d2d  ./usr/lib/python3.10/imp.pyc
849932e01bf351d5cc959667a816fac1  ./usr/lib/python3.10/inspect.pyc
f484afce32e0857b96f35547939a6678  ./usr/lib/python3.10/io.pyc
a48abe000e7e88a81cee06053e55875a  ./usr/lib/python3.10/ipaddress.pyc
453b30ee4f3b20e3ea0c7c5bef5585a6  ./usr/lib/python3.10/json/decoder.py
cff02ddd48eea55802089846e1a56e45  ./usr/lib/python3.10/json/encoder.pyc
118315be0d5a001fb7eacd5bb6e1b81c  ./usr/lib/python3.10/json/__init__.pyc
d2f9b9fbebf9620ee6ed4972cd170042  ./usr/lib/python3.10/json/scanner.pyc
864979d8134cd738eeb7820fde9739ad  ./usr/lib/python3.10/json/tool.pyc
0b47bbed5161eda0bc77ecc2d3e7195e  ./usr/lib/python3.10/keyword.pyc
7e945a0014e276d339af24c5ed547cdc  ./usr/lib/python3.10/lib-dynload/array.cpython-310-arm-linux-gnueabihf.so
eb8403af04001a67cadb8fa1e0582955  ./usr/lib/python3.10/lib-dynload/_asyncio.cpython-310-arm-linux-gnueabihf.so
5bae01d7aea8e8926c4b905100ea141b  ./usr/lib/python3.10/lib-dynload/audioop.cpython-310-arm-linux-gnueabihf.so
fdab95725e081eed2d77c754345c452b  ./usr/lib/python3.10/lib-dynload/binascii.cpython-310-arm-linux-gnueabihf.so
235ed663dab871d8c62dfc7cbfdf6e7f  ./usr/lib/python3.10/lib-dynload/_bisect.cpython-310-arm-linux-gnueabihf.so
3c4fc49e56c41bb6998dfb106b72c06a  ./usr/lib/python3.10/lib-dynload/_blake2.cpython-310-arm-linux-gnueabihf.so
a5d55dc2768838723e97e98128a123f1  ./usr/lib/python3.10/lib-dynload/cmath.cpython-310-arm-linux-gnueabihf.so
4d493565ebc95ee82fa4f7af7152ee61  ./usr/lib/python3.10/lib-dynload/_codecs_cn.cpython-310-arm-linux-gnueabihf.so
e456c0cb85258ed6eda2e1f5f0b26702  ./usr/lib/python3.10/lib-dynload/_codecs_hk.cpython-310-arm-linux-gnueabihf.so
c72560c5e426a0ad1e03a3f8a2b11872  ./usr/lib/python3.10/lib-dynload/_codecs_iso2022.cpython-310-arm-linux-gnueabihf.so
78d3140c3c2ed7a075f5eb371d1879fe  ./usr/lib/python3.10/lib-dynload/_codecs_jp.cpython-310-arm-linux-gnueabihf.so
fefff0ec6328a81545594288012de346  ./usr/lib/python3.10/lib-dynload/_codecs_kr.cpython-310-arm-linux-gnueabihf.so
db19e3eddc9be5b7db664ee5ab914293  ./usr/lib/python3.10/lib-dynload/_codecs_tw.cpython-310-arm-linux-gnueabihf.so
225626d2b076528d2a11fb1f1a5eb152  ./usr/lib/python3.10/lib-dynload/_contextvars.cpython-310-arm-linux-gnueabihf.so
6c5e5ee7d131ea15555aa1989446ebbb  ./usr/lib/python3.10/lib-dynload/_crypt.cpython-310-arm-linux-gnueabihf.so
e7fdcaa89f5897cbcf651ee82dc6edbf  ./usr/lib/python3.10/lib-dynload/_csv.cpython-310-arm-linux-gnueabihf.so
10c6c8c3223da68f9b1431424e54a54e  ./usr/lib/python3.10/lib-dynload/_ctypes.cpython-310-arm-linux-gnueabihf.so
5166e39e23f1a90459013be49466047e  ./usr/lib/python3.10/lib-dynload/_datetime.cpython-310-arm-linux-gnueabihf.so
2cdc4ef4afb30bfc0ba985f14ce11682  ./usr/lib/python3.10/lib-dynload/_elementtree.cpython-310-arm-linux-gnueabihf.so
9211543b776317354a51752cce8444be  ./usr/lib/python3.10/lib-dynload/fcntl.cpython-310-arm-linux-gnueabihf.so
8d40632e397a4f82579e220e2978f317  ./usr/lib/python3.10/lib-dynload/grp.cpython-310-arm-linux-gnueabihf.so
53022f47e69828588f548dbfa72bbc91  ./usr/lib/python3.10/lib-dynload/_heapq.cpython-310-arm-linux-gnueabihf.so
e4eec8fc85157a768ebc8fd8a3453075  ./usr/lib/python3.10/lib-dynload/_json.cpython-310-arm-linux-gnueabihf.so
3c18eed816f779389f0f6de424f6c8c9  ./usr/lib/python3.10/lib-dynload/_lsprof.cpython-310-arm-linux-gnueabihf.so
b6ed50f20c2365c22c4cf092133541cf  ./usr/lib/python3.10/lib-dynload/math.cpython-310-arm-linux-gnueabihf.so
18d348e1e2847593e219e880fbe63f4d  ./usr/lib/python3.10/lib-dynload/_md5.cpython-310-arm-linux-gnueabihf.so
82858b5996a03ee8020b4f7a22a95080  ./usr/lib/python3.10/lib-dynload/mmap.cpython-310-arm-linux-gnueabihf.so
a0a72cebfd946646f4d7a2dad6b62ee1  ./usr/lib/python3.10/lib-dynload/_multibytecodec.cpython-310-arm-linux-gnueabihf.so
96cce67468938b41595db16c61f55e2b  ./usr/lib/python3.10/lib-dynload/_multiprocessing.cpython-310-arm-linux-gnueabihf.so
d700f6a09b6dffe4698d061f82a48390  ./usr/lib/python3.10/lib-dynload/_opcode.cpython-310-arm-linux-gnueabihf.so
e6dfea34562d24f8dd76de186d92df1f  ./usr/lib/python3.10/lib-dynload/_pickle.cpython-310-arm-linux-gnueabihf.so
1551db7a694434ebaa51fa5edfa24f5a  ./usr/lib/python3.10/lib-dynload/_posixshmem.cpython-310-arm-linux-gnueabihf.so
7d5d7382c4239fdf1ca95f63fba9a497  ./usr/lib/python3.10/lib-dynload/_posixsubprocess.cpython-310-arm-linux-gnueabihf.so
40f37e38add203537b9eb403322b2f78  ./usr/lib/python3.10/lib-dynload/pyexpat.cpython-310-arm-linux-gnueabihf.so
a867fcee6dfd0375d6995a648c7ac485  ./usr/lib/python3.10/lib-dynload/_queue.cpython-310-arm-linux-gnueabihf.so
59977e7a43fd6a243ca8ab70215685c7  ./usr/lib/python3.10/lib-dynload/_random.cpython-310-arm-linux-gnueabihf.so
9f611d89df5afe7abc19db297f6d0b02  ./usr/lib/python3.10/lib-dynload/resource.cpython-310-arm-linux-gnueabihf.so
8aeb7c8c8b4319ea3d83962bf2bbd381  ./usr/lib/python3.10/lib-dynload/select.cpython-310-arm-linux-gnueabihf.so
226ec114372156f643d7b860f6f585e1  ./usr/lib/python3.10/lib-dynload/_sha1.cpython-310-arm-linux-gnueabihf.so
01a9cdbfec986cc81a8fde6194a31e4a  ./usr/lib/python3.10/lib-dynload/_sha256.cpython-310-arm-linux-gnueabihf.so
08eec1d6d9f72e61bd411ed657beef0d  ./usr/lib/python3.10/lib-dynload/_sha3.cpython-310-arm-linux-gnueabihf.so
5b3ee14b6dc6d18be73a7abf1492e964  ./usr/lib/python3.10/lib-dynload/_sha512.cpython-310-arm-linux-gnueabihf.so
07105824d020425e5a7e5ef58a518eb0  ./usr/lib/python3.10/lib-dynload/_socket.cpython-310-arm-linux-gnueabihf.so
13b95ee570a5db36f51cfbd6c5be79e9  ./usr/lib/python3.10/lib-dynload/spwd.cpython-310-arm-linux-gnueabihf.so
478924334777dbccfac468c1dfe53731  ./usr/lib/python3.10/lib-dynload/_statistics.cpython-310-arm-linux-gnueabihf.so
215af57e566124446ecefee077048e7b  ./usr/lib/python3.10/lib-dynload/_struct.cpython-310-arm-linux-gnueabihf.so
11a900c42a274a398b6054ba0f7dc679  ./usr/lib/python3.10/lib-dynload/syslog.cpython-310-arm-linux-gnueabihf.so
af0e66e61e4cad0fe8ad0f6ff8f8e3e0  ./usr/lib/python3.10/lib-dynload/termios.cpython-310-arm-linux-gnueabihf.so
11f3243a3f3cbe866e630b9862403a80  ./usr/lib/python3.10/lib-dynload/unicodedata.cpython-310-arm-linux-gnueabihf.so
15a312454b1ff9d44805abe164b0f04a  ./usr/lib/python3.10/lib-dynload/xxlimited_35.cpython-310-arm-linux-gnueabihf.so
8c81d7abb01a0004b09f68a73cbe3358  ./usr/lib/python3.10/lib-dynload/xxlimited.cpython-310-arm-linux-gnueabihf.so
2f82465d5ebce59e315882712e3e5825  ./usr/lib/python3.10/lib-dynload/_xxsubinterpreters.cpython-310-arm-linux-gnueabihf.so
11a62923eadf0eedac3f171f93973c11  ./usr/lib/python3.10/lib-dynload/zlib.cpython-310-arm-linux-gnueabihf.so
fc6d6fcfd8efe09d689548dca90b2055  ./usr/lib/python3.10/lib-dynload/_zoneinfo.cpython-310-arm-linux-gnueabihf.so
fcf6b249c2641540219a727f35d8d2c2  ./usr/lib/python3.10/LICENSE.txt
966025206f586798da5a8a6445bfcd4d  ./usr/lib/python3.10/linecache.pyc
0cf570d2ab751880c0ea38472b2caee3  ./usr/lib/python3.10/locale.pyc
de36277ef1834b21dfd29e03c90fcdc2  ./usr/lib/python3.10/logging/config.pyc
474ca7ae0640b82bf3e61ff91df19184  ./usr/lib/python3.10/logging/handlers.pyc
67026bdcbc30f2fd0bd08a3a89ecd49b  ./usr/lib/python3.10/logging/__init__.pyc
2c4e518be88f3b3eed95c631255ad5e6  ./usr/lib/python3.10/lzma.pyc
df429a666e81e64f5ad703f7b488dc4a  ./usr/lib/python3.10/mailcap.pyc
979da3bff19f9a9a6442dd2f34c4440e  ./usr/lib/python3.10/_markupbase.pyc
00523e9db24c0cf99cd210cd17d0ed3d  ./usr/lib/python3.10/mimetypes.pyc
2c35c2f2eba2e8fdd00c37ba1d96ae12  ./usr/lib/python3.10/modulefinder.pyc
ff6e96ca6343328a4651455e6fd66828  ./usr/lib/python3.10/multiprocessing/connection.py
2b454ff2df506925071b42b65c990d03  ./usr/lib/python3.10/multiprocessing/context.pyc
9d2fb2a95d5d72635aded15e83da265d  ./usr/lib/python3.10/multiprocessing/dummy/connection.pyc
a722a12a7c1089a9307bbb9d01b54a1e  ./usr/lib/python3.10/multiprocessing/dummy/__init__.pyc
84417f8bd746198cc25422d018a40d17  ./usr/lib/python3.10/multiprocessing/forkserver.pyc
be06c0b8db847df8df473bc1cdceb7c5  ./usr/lib/python3.10/multiprocessing/heap.pyc
a6f468303cb899eb5a88a8c2304684e1  ./usr/lib/python3.10/multiprocessing/__init__.pyc
9d991daaa6164189bca72c920052b72f  ./usr/lib/python3.10/multiprocessing/managers.pyc
928b522df102a68e81450c94b02a667f  ./usr/lib/python3.10/multiprocessing/pool.pyc
68da4dfb894c4cf989bfebbe5d54cccc  ./usr/lib/python3.10/multiprocessing/popen_fork.pyc
465425a51010822e52374ea109b9b78c  ./usr/lib/python3.10/multiprocessing/popen_forkserver.pyc
a02b0439fe673e4196ef6f21001ba894  ./usr/lib/python3.10/multiprocessing/popen_spawn_posix.pyc
648463843ef7f6f7b2c507d777dd22e9  ./usr/lib/python3.10/multiprocessing/popen_spawn_win32.pyc
2034f1a44bef71cf8619a127cd4af04e  ./usr/lib/python3.10/multiprocessing/process.pyc
a2848a84b7d709285d125c4c471cbe4d  ./usr/lib/python3.10/multiprocessing/queues.pyc
5543a20e50197c5889e77736142c9c19  ./usr/lib/python3.10/multiprocessing/reduction.pyc
a33b6a4479a607cbe1be9d15ccbef763  ./usr/lib/python3.10/multiprocessing/resource_sharer.pyc
dae8572691df8d49fd31b59a08982e3e  ./usr/lib/python3.10/multiprocessing/resource_tracker.pyc
670ef1cb8df3db9b8c3193601e8675af  ./usr/lib/python3.10/multiprocessing/sharedctypes.pyc
30b4e463659a4aa3e03a93e29294bbd3  ./usr/lib/python3.10/multiprocessing/shared_memory.pyc
a41b5e83b2abfa00062933cde6d2ac5a  ./usr/lib/python3.10/multiprocessing/spawn.pyc
bd9c76dbec47eed1e1128a686dde2370  ./usr/lib/python3.10/multiprocessing/synchronize.pyc
e48abd49905a75029d6885a668551835  ./usr/lib/python3.10/multiprocessing/util.pyc
140fa7bfd4bc724a35df2c7e0ce1ae5b  ./usr/lib/python3.10/netrc.pyc
b3fe511f4974803a212acf2f870633a7  ./usr/lib/python3.10/nntplib.pyc
c6c98d14b9075de27134431049e06ea9  ./usr/lib/python3.10/ntpath.pyc
b3148ea453352c66a80f3a131332564d  ./usr/lib/python3.10/nturl2path.pyc
b7640a8408665b5c047b02436712b3cf  ./usr/lib/python3.10/numbers.pyc
5513bbe51db852e1da8fa1cda2e52c4c  ./usr/lib/python3.10/opcode.pyc
55c5f87036d15231a6574dc5c96a6487  ./usr/lib/python3.10/operator.pyc
c7821235bd00d10c6c65aba585841b81  ./usr/lib/python3.10/optparse.pyc
eded13197e2bc01057ed2d6409854b2d  ./usr/lib/python3.10/os.pyc
35270bae1adb9f43ed041eb3401f673f  ./usr/lib/python3.10/_osx_support.pyc
b37bd1e357db2084a29abe0dee1b8841  ./usr/lib/python3.10/pathlib.pyc
09e9300af70918fdee1231af385a6bf7  ./usr/lib/python3.10/pdb.pyc
b0731ff2eb62acc22cce3317a24ee673  ./usr/lib/python3.10/__phello__.foo.pyc
8d5fbb440e5c29cded3f23d9d943a74a  ./usr/lib/python3.10/pickle.pyc
9208e5a0fe2a7b1f16d7e99d86dee7c7  ./usr/lib/python3.10/pipes.pyc
201d4edf5fbc5dcbfb312e1a23f521cc  ./usr/lib/python3.10/pkgutil.pyc
d598016e2df28fb194ba2ecd8900f457  ./usr/lib/python3.10/platform.pyc
aba7d8e20c01a4a5f4fdc1dded13952a  ./usr/lib/python3.10/plistlib.pyc
ee3c65400b28f211143998eae6b48ff4  ./usr/lib/python3.10/poplib.pyc
a844e0c02b9f6aaae5aeb32a04b41dae  ./usr/lib/python3.10/posixpath.pyc
1d643d54ca0f0c302de9b23fd5cc8aa3  ./usr/lib/python3.10/pprint.pyc
a65a6698864025e9f9c18b1b5f59e7ed  ./usr/lib/python3.10/profile.pyc
6836417333845c9161837f85f55283c4  ./usr/lib/python3.10/pstats.pyc
d54132bde864baa9baada29ba755e34a  ./usr/lib/python3.10/pty.pyc
f05b3d223e8d97f72f96bab4786fe155  ./usr/lib/python3.10/_py_abc.pyc
d051525bb91a47f156b7d810be2a772a  ./usr/lib/python3.10/pyclbr.pyc
af611ae06e072058a6d3ae6f1e43b0a3  ./usr/lib/python3.10/py_compile.pyc
00c4a72fde37f925eaab8c3ecff9a0f6  ./usr/lib/python3.10/_pydecimal.pyc
769b02b7947fc696fa527ff9022905a1  ./usr/lib/python3.10/_pyio.pyc
0266185724a324acd99014a23bb407d8  ./usr/lib/python3.10/queue.pyc
4d14212d78a75bb3843598684c1e23a6  ./usr/lib/python3.10/quopri.pyc
f6130c1815063b162200bf476dd5fa8c  ./usr/lib/python3.10/random.pyc
0e99215c1c44773362292f9322ecccb3  ./usr/lib/python3.10/reprlib.pyc
b101eab58c06cd37522e16c2a8dd5780  ./usr/lib/python3.10/re.pyc
2b65e692769018c5554b69cebfbaef2f  ./usr/lib/python3.10/rlcompleter.pyc
46b31db1d3c35dec8dc658bbfff41d7e  ./usr/lib/python3.10/runpy.pyc
23c0bb9190a95f6630796d83aa3727ed  ./usr/lib/python3.10/sched.pyc
3e4afcfe1142d786fc4ec069194d5d47  ./usr/lib/python3.10/secrets.pyc
7586d6777966afdb81d82338ea270ee6  ./usr/lib/python3.10/selectors.pyc
eebc854276e2717df9288e161bf346a0  ./usr/lib/python3.10/shelve.pyc
bcc3bfec156444b7284d1364a9393478  ./usr/lib/python3.10/shlex.pyc
aa311dd103ca80130b0e96cb619976cb  ./usr/lib/python3.10/shutil.pyc
0996e713fca8cabb274bb434d2913b36  ./usr/lib/python3.10/signal.pyc
370ba5be7201a6491ca022824d377fd2  ./usr/lib/python3.10/_sitebuiltins.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/embit-0.7.0-py3.10.egg-info/dependency_links.txt
f0298d20ba53e25bd4794b68285aca96  ./usr/lib/python3.10/site-packages/embit-0.7.0-py3.10.egg-info/PKG-INFO
98c0269ed785d2846b33c0b9149746f1  ./usr/lib/python3.10/site-packages/embit-0.7.0-py3.10.egg-info/SOURCES.txt
24a514a4b40118d6d6bc50d02b537ca1  ./usr/lib/python3.10/site-packages/embit-0.7.0-py3.10.egg-info/top_level.txt
18358137fd87b00eab39f6ff1032d4c6  ./usr/lib/python3.10/site-packages/embit/base58.pyc
14bfeb1ac44dfd7e602488aa1e023085  ./usr/lib/python3.10/site-packages/embit/base.pyc
bdc2668fe04cebc4e04de99f87741dd7  ./usr/lib/python3.10/site-packages/embit/bech32.pyc
f0a072967a373f8d1ac10e16326cdd0b  ./usr/lib/python3.10/site-packages/embit/bip32.pyc
391b4d7a8d01c86d1f594e72ab3e03b9  ./usr/lib/python3.10/site-packages/embit/bip39.pyc
511b56b4785e5c1ec668c1504dd7b67c  ./usr/lib/python3.10/site-packages/embit/bip85.pyc
70551a2246ce3fbff8369b7e43961eea  ./usr/lib/python3.10/site-packages/embit/compact.pyc
5be54495c36260e46d1111d2841e0e44  ./usr/lib/python3.10/site-packages/embit/descriptor/arguments.pyc
f6ecc32bd6e0bda7450f88077e1acd29  ./usr/lib/python3.10/site-packages/embit/descriptor/base.pyc
11c0a66124988b0864c31bf13827eb62  ./usr/lib/python3.10/site-packages/embit/descriptor/checksum.pyc
3416f9566058fbe3ef23342adaafa9f0  ./usr/lib/python3.10/site-packages/embit/descriptor/descriptor.pyc
050670f91fd1e1050b9270ea0d66d924  ./usr/lib/python3.10/site-packages/embit/descriptor/errors.pyc
ff602cbd5191d2d38735904906af1d9a  ./usr/lib/python3.10/site-packages/embit/descriptor/__init__.pyc
f4a815d7bbf85f8d9f12bfa6e87184cc  ./usr/lib/python3.10/site-packages/embit/descriptor/miniscript.pyc
4639ed5650db365ebc3c750905a39ca9  ./usr/lib/python3.10/site-packages/embit/ec.pyc
48edda4643f33e280ecb1735eaf039f0  ./usr/lib/python3.10/site-packages/embit/finalizer.pyc
9b44c935e13336ad3cc74e09c0f4834a  ./usr/lib/python3.10/site-packages/embit/hashes.pyc
8c05d18d676879029bc0567bff2217fa  ./usr/lib/python3.10/site-packages/embit/__init__.pyc
5e6c0c3043add0a11466c5bc3b8eef69  ./usr/lib/python3.10/site-packages/embit/networks.pyc
c8db61798777a3cba57e8406928d6d68  ./usr/lib/python3.10/site-packages/embit/psbt.pyc
841bddcf376272ae83ba5662b0180b75  ./usr/lib/python3.10/site-packages/embit/psbtview.pyc
4475fdae66d8ff4e1b91424f0d144fb4  ./usr/lib/python3.10/site-packages/embit/script.pyc
40fe84ba28c2e75b4726fb3b00542f77  ./usr/lib/python3.10/site-packages/embit/slip39.pyc
e66cd7b9a89c07d66b7678c8248ee270  ./usr/lib/python3.10/site-packages/embit/transaction.pyc
59cd5387a26d688d21300d09b03d60ea  ./usr/lib/python3.10/site-packages/embit/util/ctypes_secp256k1.pyc
67ddd120e84bda9b5296bc0a32a0b311  ./usr/lib/python3.10/site-packages/embit/util/__init__.pyc
fde92edd92009a670973c06056bd102e  ./usr/lib/python3.10/site-packages/embit/util/key.pyc
4a823e99e55fe91f0aa77a0329d62845  ./usr/lib/python3.10/site-packages/embit/util/prebuilt/libsecp256k1_linux_armv6l.so
4a823e99e55fe91f0aa77a0329d62845  ./usr/lib/python3.10/site-packages/embit/util/prebuilt/libsecp256k1_linux_armv7l.so
d6222a186474e85ecba449d315259b30  ./usr/lib/python3.10/site-packages/embit/util/py_ripemd160.pyc
30af22d0b5765d598a7d3d6e4e3704aa  ./usr/lib/python3.10/site-packages/embit/util/py_secp256k1.pyc
9340ccc3c74e3fe2c078c6a76cb67e02  ./usr/lib/python3.10/site-packages/embit/util/secp256k1.pyc
dc51bc51a4a0809a1e4ab3cccc233e45  ./usr/lib/python3.10/site-packages/embit/wordlists/base.pyc
c0822ce146be271107c76efd8a050730  ./usr/lib/python3.10/site-packages/embit/wordlists/bip39.pyc
1482c533f99a4b29ba776d895efb5769  ./usr/lib/python3.10/site-packages/embit/wordlists/__init__.pyc
95c47fef511fbff9612c5ce0d39e0dd9  ./usr/lib/python3.10/site-packages/embit/wordlists/slip39.pyc
512fc2f73d1f58970c1ce481e5c4905b  ./usr/lib/python3.10/site-packages/embit/wordlists/ubip39.pyc
4a9f0a3f2ec6322d22a42fc27379f62b  ./usr/lib/python3.10/site-packages/embit/wordlists/uslip39.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/mock-4.0.3-py3.10.egg-info/dependency_links.txt
ca03c86737d9f39ac6ff720461bbe870  ./usr/lib/python3.10/site-packages/mock-4.0.3-py3.10.egg-info/PKG-INFO
4f365e1df1b36e51a3fdc0f2728efb68  ./usr/lib/python3.10/site-packages/mock-4.0.3-py3.10.egg-info/requires.txt
95bd4b8bc8d4ba6bd4dd5c218615e04d  ./usr/lib/python3.10/site-packages/mock-4.0.3-py3.10.egg-info/SOURCES.txt
450758a451a56f5ab4a1e53e28435202  ./usr/lib/python3.10/site-packages/mock-4.0.3-py3.10.egg-info/top_level.txt
9b05d3b57e13c329eba41b6a2094b63f  ./usr/lib/python3.10/site-packages/mock/backports.pyc
dccbcd03a8e7a47ffd0b6adcec5ce588  ./usr/lib/python3.10/site-packages/mock/__init__.pyc
9a9be08dc19c295e6411c722ae8d6cab  ./usr/lib/python3.10/site-packages/mock/mock.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/dependency_links.txt
631dc523b437fc31f17e41064b2b180c  ./usr/lib/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/entry_points.txt
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/not-zip-safe
af49fa799f52014e9e99047c2f46b4e7  ./usr/lib/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/PKG-INFO
be513e146823e69701006e62efd1e08d  ./usr/lib/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/SOURCES.txt
93d7964ec38e9a2894a602b6c93f8cb7  ./usr/lib/python3.10/site-packages/numpy-1.23.5-py3.10.egg-info/top_level.txt
72aba2b162b14c018fc56676f0a1429c  ./usr/lib/python3.10/site-packages/numpy/array_api/_array_object.pyc
e5c2c423a395b01106e4aa2f2542b45b  ./usr/lib/python3.10/site-packages/numpy/array_api/_constants.pyc
a2e5e0d909500ed62351d02052ead8be  ./usr/lib/python3.10/site-packages/numpy/array_api/_creation_functions.pyc
6d950f6749a48122a9412de2640c7659  ./usr/lib/python3.10/site-packages/numpy/array_api/_data_type_functions.pyc
9749e2a3832f8a23bd649f398c03deab  ./usr/lib/python3.10/site-packages/numpy/array_api/_dtypes.pyc
f8cbfd5d29bfface89c64004604b6106  ./usr/lib/python3.10/site-packages/numpy/array_api/_elementwise_functions.pyc
00db7edbd4c0d28151c4d3c4364cb9bf  ./usr/lib/python3.10/site-packages/numpy/array_api/__init__.pyc
3aec2bca44299f71f02ba276985752ea  ./usr/lib/python3.10/site-packages/numpy/array_api/linalg.pyc
b6da6c4e69ba67df6861e963a80f2417  ./usr/lib/python3.10/site-packages/numpy/array_api/_manipulation_functions.pyc
7ff575fbb129e4bfb16d9f7a77ce00c4  ./usr/lib/python3.10/site-packages/numpy/array_api/_searching_functions.pyc
5c66b6d27ea0b913067c0bff4a3d96f9  ./usr/lib/python3.10/site-packages/numpy/array_api/_set_functions.pyc
553c70942c4223999f6dae7609c7ecaa  ./usr/lib/python3.10/site-packages/numpy/array_api/setup.pyc
f83ce7f69359c13a4f6c447fd344db54  ./usr/lib/python3.10/site-packages/numpy/array_api/_sorting_functions.pyc
f876ee3768ebe393e964f5e69ca24085  ./usr/lib/python3.10/site-packages/numpy/array_api/_statistical_functions.pyc
4ae9259c045718813b16103f1ccc5e8f  ./usr/lib/python3.10/site-packages/numpy/array_api/tests/__init__.pyc
1995d1cc5a844812d090e4090beaf832  ./usr/lib/python3.10/site-packages/numpy/array_api/tests/test_array_object.pyc
dbaa032dbe989423d567de44c7e3b41d  ./usr/lib/python3.10/site-packages/numpy/array_api/tests/test_creation_functions.pyc
3df4c8d96ddb2ecec007cba6b4422840  ./usr/lib/python3.10/site-packages/numpy/array_api/tests/test_data_type_functions.pyc
7ec01ec678c0588e1dde8e1c93d4ce3c  ./usr/lib/python3.10/site-packages/numpy/array_api/tests/test_elementwise_functions.pyc
b8586f4f4b8cb5d09862eaf47ea29bfc  ./usr/lib/python3.10/site-packages/numpy/array_api/tests/test_set_functions.pyc
b46c00e64a746687abeb97df440a7f3e  ./usr/lib/python3.10/site-packages/numpy/array_api/tests/test_sorting_functions.pyc
8b30fdc0f0fcedff9d85007f0f149374  ./usr/lib/python3.10/site-packages/numpy/array_api/tests/test_validation.pyc
b502b2c586ecc14e0d0ede511fddc29c  ./usr/lib/python3.10/site-packages/numpy/array_api/_typing.pyc
d35f514ad7aa096abd29ed0ce58f24e1  ./usr/lib/python3.10/site-packages/numpy/array_api/_utility_functions.pyc
098577929a6d904905b7d3006431d486  ./usr/lib/python3.10/site-packages/numpy/compat/__init__.pyc
a78f13baec48516d7d93bcaba84ae6e7  ./usr/lib/python3.10/site-packages/numpy/compat/_inspect.pyc
05923668f1a430a8389d57da9259d474  ./usr/lib/python3.10/site-packages/numpy/compat/_pep440.pyc
9c3fefcb2fc711bff0a39043fbf12c19  ./usr/lib/python3.10/site-packages/numpy/compat/py3k.pyc
6f373a7d455e2cd800f52fd79264325d  ./usr/lib/python3.10/site-packages/numpy/compat/setup.pyc
4d7a6fef55f40c0b9c4e78fe9cd563ec  ./usr/lib/python3.10/site-packages/numpy/compat/tests/__init__.pyc
ad90c8d013fede6396b85f585a1a041f  ./usr/lib/python3.10/site-packages/numpy/compat/tests/test_compat.pyc
0b4ad5a758a1855745e6ff9d9bbe980a  ./usr/lib/python3.10/site-packages/numpy/__config__.pyc
b2095619de2e6ab1a5e8788e089e88c8  ./usr/lib/python3.10/site-packages/numpy/conftest.pyc
32d9309179c83cd6b113c846a2c8d492  ./usr/lib/python3.10/site-packages/numpy/core/_add_newdocs.pyc
da33f22f2a9569b5ff18328620de5f50  ./usr/lib/python3.10/site-packages/numpy/core/_add_newdocs_scalars.pyc
9dd15180553db14f1e4b3d7cac868c70  ./usr/lib/python3.10/site-packages/numpy/core/arrayprint.pyc
466ef50cc7163c4fa589c73b3872e87e  ./usr/lib/python3.10/site-packages/numpy/core/arrayprint.pyi
3adbad598344c9bad8d36f66d785b210  ./usr/lib/python3.10/site-packages/numpy/core/_asarray.pyc
2125e5a26c4da7159cbb3d5c0d33bca4  ./usr/lib/python3.10/site-packages/numpy/core/_asarray.pyi
e97ecf834e4df76abc764592e3ea1be6  ./usr/lib/python3.10/site-packages/numpy/core/cversions.pyc
d283ffe3c3641ad9c5f31097847021e9  ./usr/lib/python3.10/site-packages/numpy/core/defchararray.pyc
59a512bdb728a63ab2ace6f30539e9da  ./usr/lib/python3.10/site-packages/numpy/core/defchararray.pyi
fcc7cb74a9c5c39094b0faaf8ba5133a  ./usr/lib/python3.10/site-packages/numpy/core/_dtype_ctypes.pyc
706069b6b5346ff66f3fbea4a0e07cec  ./usr/lib/python3.10/site-packages/numpy/core/_dtype.pyc
ed8004584b9cfd8f4bd69e3e439bc2ca  ./usr/lib/python3.10/site-packages/numpy/core/einsumfunc.pyc
d0da7d6ff76399b37d6206a9ec713d3b  ./usr/lib/python3.10/site-packages/numpy/core/einsumfunc.pyi
4b0ed58f72ad3483c45b5030c7d9d119  ./usr/lib/python3.10/site-packages/numpy/core/_exceptions.pyc
ba68040d5fa7df49428d9e6640c5be26  ./usr/lib/python3.10/site-packages/numpy/core/fromnumeric.pyc
bb69fe9f228c866425a7f73422a4c431  ./usr/lib/python3.10/site-packages/numpy/core/fromnumeric.pyi
208049aed7cf0cf1a796ae80ef0fdf9f  ./usr/lib/python3.10/site-packages/numpy/core/function_base.pyc
22892e743b9afc0488395806d36492f8  ./usr/lib/python3.10/site-packages/numpy/core/function_base.pyi
709ddfa16eed810730854f27bdbbcc96  ./usr/lib/python3.10/site-packages/numpy/core/generate_numpy_api.pyc
a55991504fb1232b482a79c6319f900e  ./usr/lib/python3.10/site-packages/numpy/core/getlimits.pyc
f2077f6fe286c758ce7400bc63178a54  ./usr/lib/python3.10/site-packages/numpy/core/getlimits.pyi
eb3bb920f6a5e6fd98ffb04f923262f0  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h
a0f1acefee308b2d7662c8c456c4df1f  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/arrayscalars.h
6ae1a494dfdc73380cff3e077c20b7cf  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/.doxyfile
eb1551ddf17ab02775005aea21c972e8  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/experimental_dtype_api.h
30abfb26f7896504e978b52afb6b9e06  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/halffloat.h
4a27c048f093a7d867140c05ebca7c19  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/libdivide/libdivide.h
e1c97b70a98c8ec5aff0aa275fdb2c91  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/libdivide/LICENSE.txt
8211f9368129998e353b9927c693f406  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/__multiarray_api.h
2d76efa79054647b1e90154f89683959  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/multiarray_api.txt
e3cf93d1b2b120e2d211860967e4cc97  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h
2e2ae0e00ec1cf8fa1b33161a9a9495f  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h
94f7b2859ac1094c6dbd220a29c24233  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/_neighborhood_iterator_imp.h
d3ef1858bdff9d4302da69ac7ebd769d  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/noprefix.h
6a89c787a7d3904e381baae7e8ed5ee1  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h
564249576b843b9c464264d5192cc897  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/npy_3kcompat.h
6b8272670455d16eda4326982241b87a  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/npy_common.h
9a019649587e75d7d9f2966eceff4079  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/npy_cpu.h
2c9694ab9c5dfe4c29f626f5966445b7  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/npy_endian.h
798a2bc0949fbb609b6afcfc1ce51489  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/npy_interrupt.h
1d1bd9ce80eba74e8f44d18f5d292244  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/npy_math.h
c735cd1c24e6c99ab591477f76f9d138  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/npy_no_deprecated_api.h
0658f14342454148bcb3ed16f6fe66c0  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/npy_os.h
e082cd9ae43dc125f4b80f18abc41d37  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/_numpyconfig.h
116f583181e1ac3ed1e9d91107613592  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/numpyconfig.h
6a610c90041a5c58e7a18b352b95b2f0  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/old_defines.h
f100cdfc39139873ebb9c47d7062e3cf  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/oldnumeric.h
b80b1830332f082e431fdccfff2f8489  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/random/bitgen.h
14e3e8e649a6f11e9a61ab942290e9a0  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/random/distributions.h
5164dc31af8f5c423b96c3004ebd122f  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/__ufunc_api.h
932757cd2ef46562782b4bdb32b2b403  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/ufunc_api.txt
9a4180d600a270e0edfd2745473d35d4  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/ufuncobject.h
29f08ef2059c21c3001b05dacd8ebc48  ./usr/lib/python3.10/site-packages/numpy/core/include/numpy/utils.h
570b3e7ace7e36f516911c76a327c773  ./usr/lib/python3.10/site-packages/numpy/core/__init__.pyc
a472467ee6675560b4a81665caf56fde  ./usr/lib/python3.10/site-packages/numpy/core/__init__.pyi
111f1bb495402aa1d6b912dfdc81c125  ./usr/lib/python3.10/site-packages/numpy/core/_internal.pyc
30e266812c29d08b4874ade5e415b93a  ./usr/lib/python3.10/site-packages/numpy/core/_internal.pyi
a80e45f7d2b57faa0873d810f8f0ec78  ./usr/lib/python3.10/site-packages/numpy/core/lib/npy-pkg-config/mlib.ini
903dee21642e3116734777eebe2c45bf  ./usr/lib/python3.10/site-packages/numpy/core/lib/npy-pkg-config/npymath.ini
0c7a4da48ce7b4875818b9743cce3415  ./usr/lib/python3.10/site-packages/numpy/core/_machar.pyc
90ccbca3ae0876bdb31c93f2c914252a  ./usr/lib/python3.10/site-packages/numpy/core/memmap.pyc
68ced2e0b034becdb1c30cb82f04aae4  ./usr/lib/python3.10/site-packages/numpy/core/memmap.pyi
80ee7f4e72c93b05bf18d5f86d9be544  ./usr/lib/python3.10/site-packages/numpy/core/_methods.pyc
e5be00c45e74f8ef75df0ef6026999cb  ./usr/lib/python3.10/site-packages/numpy/core/multiarray.pyc
ab996ad06e3d228417e8e2b1588c06b2  ./usr/lib/python3.10/site-packages/numpy/core/multiarray.pyi
3deac080f46c6e04c3fce4137e9835a2  ./usr/lib/python3.10/site-packages/numpy/core/_multiarray_tests.cpython-310-arm-linux-gnueabihf.so
7a2c2f7948bef087726845731f55f339  ./usr/lib/python3.10/site-packages/numpy/core/_multiarray_umath.cpython-310-arm-linux-gnueabihf.so
4ad5efc21f93596ec11ad2d8fdefb278  ./usr/lib/python3.10/site-packages/numpy/core/numeric.pyc
8dafb5a794dd9503a81623b718584628  ./usr/lib/python3.10/site-packages/numpy/core/numeric.pyi
184af119e451e41a699404dc2ce24ae8  ./usr/lib/python3.10/site-packages/numpy/core/numerictypes.pyc
e0e489bba5426ee723a1e639ee2bcc39  ./usr/lib/python3.10/site-packages/numpy/core/numerictypes.pyi
4c2661e014fcc5d162b48e2e7d7606c9  ./usr/lib/python3.10/site-packages/numpy/core/_operand_flag_tests.cpython-310-arm-linux-gnueabihf.so
dcd43adaebd7888b4b5357d14deaa815  ./usr/lib/python3.10/site-packages/numpy/core/overrides.pyc
c404207b636bd0d1d6d8a834849ef635  ./usr/lib/python3.10/site-packages/numpy/core/_rational_tests.cpython-310-arm-linux-gnueabihf.so
adeefb58f2961bd5014254bc38ea336f  ./usr/lib/python3.10/site-packages/numpy/core/records.pyc
7f14db74b26fada9a6afbabde3160041  ./usr/lib/python3.10/site-packages/numpy/core/records.pyi
8dc5515b5ccdc483bc6327bd2b550439  ./usr/lib/python3.10/site-packages/numpy/core/setup_common.pyc
522f9a3c678c3e11310fefbe106ce537  ./usr/lib/python3.10/site-packages/numpy/core/setup.pyc
bc332c6c590a44944ddb8ee9419d1f47  ./usr/lib/python3.10/site-packages/numpy/core/shape_base.pyc
c9a5a39852f01ebee5469b1d36a72ea7  ./usr/lib/python3.10/site-packages/numpy/core/shape_base.pyi
6b810cc7741fcd40a27a17d3f8063ff9  ./usr/lib/python3.10/site-packages/numpy/core/_simd.cpython-310-arm-linux-gnueabihf.so
d472ded6c1fe255b97b009b4de634194  ./usr/lib/python3.10/site-packages/numpy/core/_string_helpers.py
e6b2358610645d6ee649855ab3425efc  ./usr/lib/python3.10/site-packages/numpy/core/_struct_ufunc_tests.cpython-310-arm-linux-gnueabihf.so
b74dd6fdb4ed7060adc4500face18830  ./usr/lib/python3.10/site-packages/numpy/core/_type_aliases.pyc
c1d9fe3a43f9ba756c534fee435e598d  ./usr/lib/python3.10/site-packages/numpy/core/_type_aliases.pyi
d39213de4b6989e43b278df8239204a4  ./usr/lib/python3.10/site-packages/numpy/core/_ufunc_config.pyc
fcad2531542ef62a6c9d381a05b176c9  ./usr/lib/python3.10/site-packages/numpy/core/_ufunc_config.pyi
3120490fc50248bb00a2dc4159c2dc02  ./usr/lib/python3.10/site-packages/numpy/core/umath.pyc
f4a9a57363e124af6e063ddf10bf29b6  ./usr/lib/python3.10/site-packages/numpy/core/_umath_tests.cpython-310-arm-linux-gnueabihf.so
5fe151e55c296c85cc90679740693411  ./usr/lib/python3.10/site-packages/numpy/core/umath_tests.pyc
423386bf09ae46e7d1a985e6f60fd0d6  ./usr/lib/python3.10/site-packages/numpy/ctypeslib.pyc
40db76d3b23452e6acd4487c03f045b0  ./usr/lib/python3.10/site-packages/numpy/ctypeslib.pyi
8fbb598e751ae51d4d82a6fb27efb74f  ./usr/lib/python3.10/site-packages/numpy/_distributor_init.pyc
6317792c7c04d0058d519b2a313f4d00  ./usr/lib/python3.10/site-packages/numpy/distutils/armccompiler.pyc
92dbc15c04c4aa491fa8d8c59f67ec90  ./usr/lib/python3.10/site-packages/numpy/distutils/ccompiler_opt.pyc
8c8c32fd4cf8ed72f419da7ca8179da2  ./usr/lib/python3.10/site-packages/numpy/distutils/ccompiler.py
729659ef8a2712b74aff2f5b44b0b05e  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_asimd.c
4575103d1a16b357844dcf5469d6b180  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_asimddp.c
a3467dbfab603935f3c5127a0448f3ab  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_asimdfhm.c
498983c6b1a3d8a88f9008ff1667a9cf  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_asimdhp.c
ba79e8c2934be9b7b30566f34677a74d  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_avx2.c
50b2ac6463ba0f8dc0690e642fa66b8c  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_avx512cd.c
f7b3f56ffd40b4ebc677627764ce4199  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_clx.c
f82fbdc58696141f791c07ae0ce659bd  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_cnl.c
b8ea35811d5a5015f720d6f0a5a0da68  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_avx512f.c
7681165645822590e511861a990d729c  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_icl.c
830170d735bbda8fd225bd120dcb9cf7  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_knl.c
79fe934fbc338ac6b45531f53041bd25  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_knm.c
32ed3d0ddbb2ef75ca109fa1ea85ac88  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_avx512_skx.c
3e5a54f7e5c1060831649af5815e78ed  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_avx.c
cf475ec193b16d5e012d5fe711630cb4  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_f16c.c
a7968abad6001e3e07d728d05aeebad9  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_fma3.c
23117affd333cf2924c1317ed2cac0a8  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_fma4.c
ed4a1a941eb11dbb068dbb3ebdd63fdf  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_neon.c
60db5bf5b1ee33bcc4c92ba6eba9b674  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_neon_fp16.c
a8a493f2af1122656fa869402034fbc4  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_neon_vfpv4.c
1d5ba7d0adcd747f927b73dd5bc0a119  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_popcnt.c
360aa3b32257632cf85e09f277a1b774  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_sse2.c
e131e0a1e2de0f9f65f7848f4ce859c4  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_sse3.c
bedc18314954cf2a3d7db30d3eb13e56  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_sse41.c
a1f92cf114d170c67e6bf34606c8eba9  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_sse42.c
32a6d8d48e4f9e890d0be33d711f4642  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_sse.c
ccc4e0fb5f69b8dd570023eed5f4d34e  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_ssse3.c
7271d9aab614188d5dcb9bba1f9bc86a  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_vsx2.c
13aaef2f7e54b08c51ca40b85b794c15  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_vsx3.c
74551e2b16ecd13ca6fa4453a31eb1ec  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_vsx4.c
284801daa4d70e16da3c1883e21c8ed0  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_vsx.c
a756dc5f2f074facbed97bc034f20b1b  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_vx.c
26ad98eb4aea16417c22aa90c7cc98a2  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_vxe2.c
7a87197328d1b586fecf3fbfc00730fb  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_vxe.c
19f05553f094d1751a39dcf3a780ac08  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/cpu_xop.c
951d81bc4266755c9de96d7f461a99be  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/extra_avx512bw_mask.c
e12b58a22f707a46a6f10b653504e790  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/extra_avx512dq_mask.c
526b1abad1b7d27dc2eae7b6830313d5  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/extra_avx512f_reduce.c
7951cd8e0d3d64ed3458b51d87c045b9  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/extra_vsx4_mma.c
55f282035c97575495c817129939fc0d  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/extra_vsx_asm.c
09838633016ab3e49fc030822b5b9384  ./usr/lib/python3.10/site-packages/numpy/distutils/checks/test_flags.c
6d6a94b8ca72c1d1cee3d44977405f4e  ./usr/lib/python3.10/site-packages/numpy/distutils/command/autodist.pyc
927430d1b20b374022317e62c81a083f  ./usr/lib/python3.10/site-packages/numpy/distutils/command/bdist_rpm.pyc
b1907dc14641b8afbd426f0d743a4036  ./usr/lib/python3.10/site-packages/numpy/distutils/command/build_clib.pyc
e2b5a8d8bb95356bb2cf3a443bddbe25  ./usr/lib/python3.10/site-packages/numpy/distutils/command/build_ext.pyc
040486f8c9df813ad55874f0efb7914f  ./usr/lib/python3.10/site-packages/numpy/distutils/command/build.pyc
5b9d06c74136d5b778759a26432e5d36  ./usr/lib/python3.10/site-packages/numpy/distutils/command/build_py.py
58dd76f58f74ac0fd6dbfe38df577eba  ./usr/lib/python3.10/site-packages/numpy/distutils/command/build_scripts.pyc
c5c83a5663064296584abf125d5b024d  ./usr/lib/python3.10/site-packages/numpy/distutils/command/build_src.pyc
d724b192b6b8dca26a3ef68caa10e2a8  ./usr/lib/python3.10/site-packages/numpy/distutils/command/config_compiler.pyc
bedba0d8507cbb3708952e2cfaae50e4  ./usr/lib/python3.10/site-packages/numpy/distutils/command/config.pyc
92480a920c4964ae0c61f41f552804e7  ./usr/lib/python3.10/site-packages/numpy/distutils/command/develop.pyc
35a32b56edfbef6d8e802164549d82a0  ./usr/lib/python3.10/site-packages/numpy/distutils/command/egg_info.pyc
87c8c35942087908a7355d1c85b5a9b8  ./usr/lib/python3.10/site-packages/numpy/distutils/command/__init__.pyc
7c663a37e8c1a600af6680baa382ed23  ./usr/lib/python3.10/site-packages/numpy/distutils/command/install_clib.pyc
5fa606916c90af50f00d63d8db8cda74  ./usr/lib/python3.10/site-packages/numpy/distutils/command/install_data.pyc
a4b6a3016330dda6c7f802a4a878fb14  ./usr/lib/python3.10/site-packages/numpy/distutils/command/install_headers.pyc
1576af57827a3f5d0d65524bd3213d47  ./usr/lib/python3.10/site-packages/numpy/distutils/command/install.pyc
2dc794b1ea8de0ee262a7007ed00c6a4  ./usr/lib/python3.10/site-packages/numpy/distutils/command/sdist.pyc
d7f94ecf77e183a4aa5f53908b593204  ./usr/lib/python3.10/site-packages/numpy/distutils/__config__.pyc
d458fdae76819a181a9706a11d124f86  ./usr/lib/python3.10/site-packages/numpy/distutils/conv_template.pyc
0f5319897533a579e234e152dc7ca81d  ./usr/lib/python3.10/site-packages/numpy/distutils/core.pyc
c72f3fc0fce61798e3866ae7144d8318  ./usr/lib/python3.10/site-packages/numpy/distutils/cpuinfo.pyc
c0a15c491c7a63d007de6c1cee89a627  ./usr/lib/python3.10/site-packages/numpy/distutils/exec_command.pyc
111df1d28ec2f568ecaa9a2882d6c326  ./usr/lib/python3.10/site-packages/numpy/distutils/extension.pyc
bf7a69915296e773f1dade51e2861ed0  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/absoft.pyc
1552ce84e932952f0b5bbe36d798b2e7  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/arm.pyc
1d609e127fa4a81f71507dc4c8cabcd2  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/compaq.pyc
4b0c17fccef1789f81b69af27c376a15  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/environment.pyc
ea6c1b6f3a6b4fae6ef74eac3937a1da  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/fujitsu.pyc
2e4e3bacb77c19ea84b1be967d7c2eb3  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/g95.pyc
1f9a3986b42eea98384bdfdfc38c1765  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/gnu.pyc
5372f207fa846dde2dc369ef0161fe3d  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/hpux.pyc
4fa04fa7e298ed582df86910d3e1071d  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/ibm.pyc
04b20e099ea26579f6dd02af3e6722cc  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/__init__.pyc
e7cc462e9c7f7bb40c082806df8c094c  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/intel.pyc
532c1a893e88d0acdf4c6a6f0f343c1b  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/lahey.pyc
e4c4262c6d806be7dd714b82b53aebe6  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/mips.pyc
b6b7d66081aad124a2cacabb77b9cd80  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/nag.pyc
786b7327b069f92c4c63c2d90b70138e  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/none.pyc
7886027b27ab4e9c282823a1d2ff405e  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/nv.pyc
8c494a0d33836f130b7ad9d6aa9d29af  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/pathf95.pyc
a3b392ed739c552040af6ff7532c024c  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/pg.pyc
217364602928cb9479fb4ecf95387560  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/sun.pyc
0490b6530b511d9982be95977e222252  ./usr/lib/python3.10/site-packages/numpy/distutils/fcompiler/vast.pyc
0d2e88cc8db8bc024812f511df13f04a  ./usr/lib/python3.10/site-packages/numpy/distutils/from_template.pyc
cc373691fa5d254830a8c956b8f74685  ./usr/lib/python3.10/site-packages/numpy/distutils/__init__.pyc
2fe4b62addf62694e3691a77e0e3137f  ./usr/lib/python3.10/site-packages/numpy/distutils/__init__.pyi
c9035d3a7012e17a4a9ec72f2f8b2388  ./usr/lib/python3.10/site-packages/numpy/distutils/intelccompiler.pyc
a311908b9b720b2ff58baa1d6fe7c1b6  ./usr/lib/python3.10/site-packages/numpy/distutils/lib2def.pyc
b7a61d3a7d3e554989725f36df32f189  ./usr/lib/python3.10/site-packages/numpy/distutils/line_endings.pyc
2a42c6d4c696864c780ad8be530c1134  ./usr/lib/python3.10/site-packages/numpy/distutils/log.pyc
29473eb8e451fe6853aeb444ac90f146  ./usr/lib/python3.10/site-packages/numpy/distutils/mingw32ccompiler.pyc
5d423859926fdf131efaf6c593790849  ./usr/lib/python3.10/site-packages/numpy/distutils/mingw/gfortran_vs2003_hack.c
34b822bce242152571bcc47347da3acb  ./usr/lib/python3.10/site-packages/numpy/distutils/misc_util.py
97ed83ab5298835417468617c02c61cc  ./usr/lib/python3.10/site-packages/numpy/distutils/msvc9compiler.pyc
df715929752eafb2e7cb6d729bfc73c5  ./usr/lib/python3.10/site-packages/numpy/distutils/msvccompiler.pyc
0e56a88e2d0a7c932260d1d0f3a0546a  ./usr/lib/python3.10/site-packages/numpy/distutils/npy_pkg_config.pyc
ae452ad9e83b3833d06616a9e5405f71  ./usr/lib/python3.10/site-packages/numpy/distutils/numpy_distribution.pyc
b997a36b09bb9b86f4f631512ca39bd9  ./usr/lib/python3.10/site-packages/numpy/distutils/pathccompiler.pyc
ac2de065feab3493cc1b8dab6f8d8e50  ./usr/lib/python3.10/site-packages/numpy/distutils/setup.pyc
6893bbaa41aa04e572d9254ba4f71e09  ./usr/lib/python3.10/site-packages/numpy/distutils/_shell_utils.pyc
937f4949b57bff3b74644292d992cde2  ./usr/lib/python3.10/site-packages/numpy/distutils/site.cfg
ade116cfbf0d2864ff1069d6f52a3581  ./usr/lib/python3.10/site-packages/numpy/distutils/system_info.py
1c870e126dcddcc7d7921ed5f67c095c  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/__init__.pyc
15f351d0a66be34c4dc855649e0032da  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_build_ext.pyc
e347961647f31a42134084df08b7118e  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_ccompiler_opt_conf.pyc
4941c0112bd731b1191909126c29ddf6  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_ccompiler_opt.pyc
be42f8c89c8e9b74f149e5e8c67b074d  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_exec_command.pyc
b83dd133e9f9d601453007796cc9637f  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_fcompiler_gnu.pyc
adce3cfc44a09775d89a19fd3deb9ac9  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_fcompiler_intel.pyc
2a0112f6d8ac67aaf9b42d980aa5b009  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_fcompiler_nagfor.pyc
33a47db913768d8973558906780e0d57  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_fcompiler.pyc
40ad072c6d69a096941d0f2dae554d35  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_from_template.pyc
fe1b52999605b707c01fd80b1d67856e  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_log.pyc
ddf009cfdb02d423b60cc4129ec3a217  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_mingw32ccompiler.pyc
0c0a4f5961e980497dbe69bd7394d184  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_misc_util.pyc
81cfac9d2a914302e5fa97c1a4b2b840  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_npy_pkg_config.pyc
40a37f4f78c3170ddf947101a9b1da5e  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_shell_utils.pyc
d812cf45f7a009012b888140232890d1  ./usr/lib/python3.10/site-packages/numpy/distutils/tests/test_system_info.pyc
5ffcbc1f18d489e3d09fe1fd4f473da8  ./usr/lib/python3.10/site-packages/numpy/distutils/unixccompiler.pyc
6e0f996f90446fff3ae35ece80e97112  ./usr/lib/python3.10/site-packages/numpy/doc/constants.pyc
2a16e0ea59926aaf2060cc714f06f4dd  ./usr/lib/python3.10/site-packages/numpy/doc/__init__.pyc
05537a18854aed532de3d45b7590cd79  ./usr/lib/python3.10/site-packages/numpy/doc/ufuncs.pyc
b3ab3eabbc705231e9cb49805a01a966  ./usr/lib/python3.10/site-packages/numpy/dual.pyc
cf8de34485cffc4542297fa9a2792052  ./usr/lib/python3.10/site-packages/numpy/f2py/auxfuncs.py
a47f47c45d70d1c10e19ebd3779ebd24  ./usr/lib/python3.10/site-packages/numpy/f2py/capi_maps.pyc
401924ac11f280fc7b8fd2432051bf38  ./usr/lib/python3.10/site-packages/numpy/f2py/cb_rules.pyc
aafba56b540a195aa684577bbcd99736  ./usr/lib/python3.10/site-packages/numpy/f2py/cfuncs.pyc
e24af0aee68978db0d6a18417372dd41  ./usr/lib/python3.10/site-packages/numpy/f2py/common_rules.pyc
b561781b447c0473bcc4da7f13dac3a8  ./usr/lib/python3.10/site-packages/numpy/f2py/crackfortran.py
66526a41cc00aa681b512cc08ca8b854  ./usr/lib/python3.10/site-packages/numpy/f2py/diagnose.pyc
b3ddae7faaf5b370e2e64af2fc721c25  ./usr/lib/python3.10/site-packages/numpy/f2py/f2py2e.py
07998f8f2500c2fe2a5f76d5c1abe982  ./usr/lib/python3.10/site-packages/numpy/f2py/f90mod_rules.pyc
379a9c00b0dbe3ad3ff52dc21b0f6d4e  ./usr/lib/python3.10/site-packages/numpy/f2py/func2subr.pyc
5a6c86916d9fe6a0545aa653cfbead1b  ./usr/lib/python3.10/site-packages/numpy/f2py/__init__.pyc
a46c85efce73ff1881adf9f526341dcd  ./usr/lib/python3.10/site-packages/numpy/f2py/__init__.pyi
8cac174d0cab75cd4b0b5ed0b3d60022  ./usr/lib/python3.10/site-packages/numpy/f2py/__main__.pyc
808facb269b9a7eb9486ee3b8b45f07f  ./usr/lib/python3.10/site-packages/numpy/f2py/rules.pyc
bcf3f12a02f4bcd9fd7769da3633a226  ./usr/lib/python3.10/site-packages/numpy/f2py/setup.pyc
284485722cce5a0bc99b782806a97d7a  ./usr/lib/python3.10/site-packages/numpy/f2py/src/fortranobject.c
2f1baece83d5d204735e3731a3b9bc17  ./usr/lib/python3.10/site-packages/numpy/f2py/src/fortranobject.h
e860292e261fc73c1f17b93098a7c830  ./usr/lib/python3.10/site-packages/numpy/f2py/symbolic.pyc
c9186314e9339c79c94740e7ee5a2c4e  ./usr/lib/python3.10/site-packages/numpy/f2py/use_rules.pyc
a9145256cbe339c6879155514977882d  ./usr/lib/python3.10/site-packages/numpy/f2py/__version__.pyc
5913a3480c0051921d608d172fb69d71  ./usr/lib/python3.10/site-packages/numpy/fft/helper.pyc
330a08f0761c4afc4ac8f083a11d6b4a  ./usr/lib/python3.10/site-packages/numpy/fft/helper.pyi
cead46a7e1d8217e0c71040de3fff887  ./usr/lib/python3.10/site-packages/numpy/fft/__init__.pyc
007041670a5d4072927d80d556bd578e  ./usr/lib/python3.10/site-packages/numpy/fft/__init__.pyi
8717badd3483ae43512ec3ccc2adc745  ./usr/lib/python3.10/site-packages/numpy/fft/_pocketfft_internal.cpython-310-arm-linux-gnueabihf.so
7119b4bea2f9e17dda7f3a8c4d7c93ed  ./usr/lib/python3.10/site-packages/numpy/fft/_pocketfft.pyc
e05ec22e88710b003d3430bd73faaf70  ./usr/lib/python3.10/site-packages/numpy/fft/_pocketfft.pyi
b9ba40102290769e39941ec350b2adc8  ./usr/lib/python3.10/site-packages/numpy/fft/setup.pyc
1c2c1b7445ed1e0aea9d3f3b0e9c4cbd  ./usr/lib/python3.10/site-packages/numpy/fft/tests/__init__.pyc
9312cb52e6e3954ddb1c7bb0fe1e5ddf  ./usr/lib/python3.10/site-packages/numpy/fft/tests/test_helper.pyc
d8bb8286e7d01ca873089d28dfb69fc5  ./usr/lib/python3.10/site-packages/numpy/fft/tests/test_pocketfft.pyc
21b81cb03eba77988f9de511506b8adf  ./usr/lib/python3.10/site-packages/numpy/_globals.pyc
d3786d6f56fd712bf89ea766cdc1c862  ./usr/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd
6d854de8b55151f3a6d1efde3b96ffcf  ./usr/lib/python3.10/site-packages/numpy/__init__.pxd
d408e75b85bb07100daa37907b1a198b  ./usr/lib/python3.10/site-packages/numpy/__init__.pyc
5b90cd4d6c12347266413f49e3a32a68  ./usr/lib/python3.10/site-packages/numpy/__init__.pyi
2b80ed69aab99b502ad3c77155c6e98f  ./usr/lib/python3.10/site-packages/numpy/lib/arraypad.pyc
903a91ed73f4f5a5e48cfe50eedb988a  ./usr/lib/python3.10/site-packages/numpy/lib/arraypad.pyi
5781cb3ec32d18b4bd526a1f33951d87  ./usr/lib/python3.10/site-packages/numpy/lib/arraysetops.pyc
adec856f33d4c66a134d86efdaf9e0f1  ./usr/lib/python3.10/site-packages/numpy/lib/arraysetops.pyi
534c8e73b0bf2b9ec84028a0a9689807  ./usr/lib/python3.10/site-packages/numpy/lib/arrayterator.pyc
ff1829de7bedf18c3df514cfdf3c77af  ./usr/lib/python3.10/site-packages/numpy/lib/arrayterator.pyi
7aba0cc516695ab7f9ff7091ccc5e7d9  ./usr/lib/python3.10/site-packages/numpy/lib/_datasource.pyc
fe3c8b3b52b8cd1efebd2eae861b5525  ./usr/lib/python3.10/site-packages/numpy/lib/format.pyc
cb9ba6b0c59972dab59cb6249b791b27  ./usr/lib/python3.10/site-packages/numpy/lib/format.pyi
58d4a3341bdcc31a8c93392d9b512d3e  ./usr/lib/python3.10/site-packages/numpy/lib/function_base.pyc
bea2c0d099b9a5f204df8d33689a44e8  ./usr/lib/python3.10/site-packages/numpy/lib/function_base.pyi
19593af81b5918918ad95e1eaad52ff5  ./usr/lib/python3.10/site-packages/numpy/lib/histograms.pyc
760963cd184ac9e08e7430aed9c6630b  ./usr/lib/python3.10/site-packages/numpy/lib/histograms.pyi
58ba294dbc5108c244ae1c61b3b1ac3d  ./usr/lib/python3.10/site-packages/numpy/lib/index_tricks.pyc
d9c2af8c75cdf813235d92f2deb717cc  ./usr/lib/python3.10/site-packages/numpy/lib/index_tricks.pyi
a255941513885ccf9b029f8d630d38b1  ./usr/lib/python3.10/site-packages/numpy/lib/__init__.pyc
f24efb1d2dd1898b824c5b01bc714c31  ./usr/lib/python3.10/site-packages/numpy/lib/__init__.pyi
e5a5e58f9aab13d217a15e75d64c8607  ./usr/lib/python3.10/site-packages/numpy/lib/_iotools.py
4af9cb15cb86ec9de45b1be2c4bcc4a3  ./usr/lib/python3.10/site-packages/numpy/lib/mixins.pyc
27b324bcc84782e96d6b323806df1b5a  ./usr/lib/python3.10/site-packages/numpy/lib/mixins.pyi
baffc16553ad0a522f0ab7d23c72777d  ./usr/lib/python3.10/site-packages/numpy/lib/nanfunctions.pyc
57f285800253ad5753952d94057f864d  ./usr/lib/python3.10/site-packages/numpy/lib/nanfunctions.pyi
8b2a621c4c59efcd5cce25c0ebbaa85c  ./usr/lib/python3.10/site-packages/numpy/lib/npyio.py
297dff013a910720f8425e2a9393fe8a  ./usr/lib/python3.10/site-packages/numpy/lib/npyio.pyi
f4aa585d9b331a7fca5f4d44168de638  ./usr/lib/python3.10/site-packages/numpy/lib/polynomial.pyc
fb0b679492d934bd01b2df43ddd94eab  ./usr/lib/python3.10/site-packages/numpy/lib/polynomial.pyi
5996f14aefb067d5116eb41f309b7954  ./usr/lib/python3.10/site-packages/numpy/lib/recfunctions.py
490ac7e48a8722ab4c850f8ca349a1e3  ./usr/lib/python3.10/site-packages/numpy/lib/scimath.pyc
1041d57432714b0fc4de01cc77fe9b6f  ./usr/lib/python3.10/site-packages/numpy/lib/scimath.pyi
ed6e53d8ee190725b09656b5a36e45c4  ./usr/lib/python3.10/site-packages/numpy/lib/setup.pyc
e319cb6a0812befbc54b0c4b780ff6b5  ./usr/lib/python3.10/site-packages/numpy/lib/shape_base.pyc
a77b42e76a1283e133e8b6f57ff3f431  ./usr/lib/python3.10/site-packages/numpy/lib/shape_base.pyi
58008bc6a96c4785e7d956faede7f653  ./usr/lib/python3.10/site-packages/numpy/lib/stride_tricks.py
6dac319f68347aa63825553bc798e53c  ./usr/lib/python3.10/site-packages/numpy/lib/stride_tricks.pyi
84f5eaea36a9b1205f745110dccd0466  ./usr/lib/python3.10/site-packages/numpy/lib/tests/data/py2-objarr.npy
ce3c018f016c802ee2a5fb49c5fd4acb  ./usr/lib/python3.10/site-packages/numpy/lib/tests/data/py2-objarr.npz
d35090c607d30950ed86782530143a88  ./usr/lib/python3.10/site-packages/numpy/lib/tests/data/py3-objarr.npy
2e21b8980d4bf56d67457246613107a4  ./usr/lib/python3.10/site-packages/numpy/lib/tests/data/py3-objarr.npz
d185084441cc3c1503dbe6c74284987e  ./usr/lib/python3.10/site-packages/numpy/lib/tests/data/python3.npy
b9561119bd50d49368c5528b98c2c7e7  ./usr/lib/python3.10/site-packages/numpy/lib/tests/data/win64python2.npy
15b64210c5981843f98a036efc6d9f5e  ./usr/lib/python3.10/site-packages/numpy/lib/tests/__init__.pyc
e5594c9dbebe6416628f4a287d26b8f4  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_arraypad.pyc
812b8a0d33d071e3015b405367ac0ed7  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_arraysetops.pyc
773341d1c2a0341815d620158456c52f  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_arrayterator.pyc
4dbf355b0118111472bf8309ed362c68  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test__datasource.pyc
721b1780f8b75f7486e6d81945f21762  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_financial_expired.pyc
fe253b1e2c2be03c993c50973aff4f6a  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_format.pyc
a942e69f6ebab64d3167a54c98a59c72  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_function_base.pyc
75ad53675094a78445f3eaf3d59e922b  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_histograms.pyc
9eb60aecfb7a1a35542945a0f4efc7f2  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_index_tricks.pyc
554b366fdfa7bca425b9ffc54f1a87b1  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_io.pyc
5046493513c8db22d1c715ea8fa7f194  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test__iotools.pyc
360799eabb413f1548bde95edba958ff  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_loadtxt.pyc
e58e4e47c504aed956d08423c74425fe  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_mixins.pyc
8bd15958bfd2b57227dc8d6ae15ceac3  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_nanfunctions.pyc
3e01e13a715d6b5e650c784362c11cd1  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_packbits.pyc
89c5b7eb1d1260d748e58f255f871cec  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_polynomial.pyc
a11d0956bb0543e33963c1daf67344d3  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_recfunctions.pyc
1117f146375372c4622529ca5e9203fd  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_regression.pyc
60d9d682225573e92f44482b31ff40d5  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_shape_base.pyc
4f19d429922f0d8a0eafe609cb1c8e65  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_stride_tricks.pyc
158cc59ec0aa25f3f756c29c3d91713b  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_twodim_base.pyc
57b316b20bed48930a1a6c623a92ccf7  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_type_check.pyc
01945198f711c1bf679b47730327bbab  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_ufunclike.pyc
e394e702c3abbaa2338ec36ca9511ac5  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test_utils.pyc
92e747bae8f7167b88a3f8a192344e45  ./usr/lib/python3.10/site-packages/numpy/lib/tests/test__version.pyc
65f27e6034c3095061d2a99f60fabcea  ./usr/lib/python3.10/site-packages/numpy/lib/twodim_base.pyc
b64134edd65988d24797910d525c4bab  ./usr/lib/python3.10/site-packages/numpy/lib/twodim_base.pyi
e03b7ecf096c4c39fbf4b867bf046e48  ./usr/lib/python3.10/site-packages/numpy/lib/type_check.pyc
d4f2df305bd0edcb0c9745a43aa655c6  ./usr/lib/python3.10/site-packages/numpy/lib/type_check.pyi
e77d86a58b9c3aea420289be6904b5d2  ./usr/lib/python3.10/site-packages/numpy/lib/ufunclike.pyc
904017633297b01e5fa46af957e63f61  ./usr/lib/python3.10/site-packages/numpy/lib/ufunclike.pyi
65ddc0ebc5070534416510c6d080246f  ./usr/lib/python3.10/site-packages/numpy/lib/user_array.pyc
4f7f0b869c944ecc356774ac8b646fbe  ./usr/lib/python3.10/site-packages/numpy/lib/utils.pyc
b83eeed499831a210de68a9d12f5985c  ./usr/lib/python3.10/site-packages/numpy/lib/utils.pyi
a9fb379b8be369da3553faed3c9f9ae0  ./usr/lib/python3.10/site-packages/numpy/lib/_version.pyc
c71a5c13a73fd1b6861a5f30605dcd2c  ./usr/lib/python3.10/site-packages/numpy/lib/_version.pyi
8026691468924fb6ec155dadfe2a1a7f  ./usr/lib/python3.10/site-packages/numpy/LICENSE.txt
1ab84cf75d89282df7a3805f85035c48  ./usr/lib/python3.10/site-packages/numpy/linalg/__init__.pyc
75719efa05cfab70c7625db3205f24f4  ./usr/lib/python3.10/site-packages/numpy/linalg/__init__.pyi
e400ef272e3279c09b39fb00fd143af8  ./usr/lib/python3.10/site-packages/numpy/linalg/lapack_lite.cpython-310-arm-linux-gnueabihf.so
2479e0319ba611735efcdae8c15f98cf  ./usr/lib/python3.10/site-packages/numpy/linalg/linalg.pyc
5a46b1ac58768b879772a09919229b33  ./usr/lib/python3.10/site-packages/numpy/linalg/linalg.pyi
c7afe7299372c89b2ea2a7bb35e19051  ./usr/lib/python3.10/site-packages/numpy/linalg/setup.pyc
7d5088cf34bfaefa0db7ac347dc03d74  ./usr/lib/python3.10/site-packages/numpy/linalg/_umath_linalg.cpython-310-arm-linux-gnueabihf.so
4f9b068413a54372f2d3adfb515275d6  ./usr/lib/python3.10/site-packages/numpy/ma/bench.pyc
cf992beb8858cb12e4f412835de48354  ./usr/lib/python3.10/site-packages/numpy/ma/core.pyc
69e3ff6a0e1a98db61d9936afc2c65e6  ./usr/lib/python3.10/site-packages/numpy/ma/core.pyi
281090314baf11476565d5327215dfba  ./usr/lib/python3.10/site-packages/numpy/ma/extras.pyc
6f970c53ebe424b0ce6cec86f6caa352  ./usr/lib/python3.10/site-packages/numpy/ma/extras.pyi
cb9c438847fcd77b96ad3630091791af  ./usr/lib/python3.10/site-packages/numpy/ma/__init__.pyc
33c68111d95602927233b4959764f001  ./usr/lib/python3.10/site-packages/numpy/ma/__init__.pyi
f008a6f864761575e8be2289e361a8d9  ./usr/lib/python3.10/site-packages/numpy/ma/mrecords.pyc
1f50a41bc3096605ea32a81ec8eac5e1  ./usr/lib/python3.10/site-packages/numpy/ma/mrecords.pyi
f419b5baf60cc7f7cc48cc7189ff781c  ./usr/lib/python3.10/site-packages/numpy/ma/setup.pyc
1b5312596dbf8cdb03158f009b678d13  ./usr/lib/python3.10/site-packages/numpy/ma/tests/__init__.pyc
1bc4c76179a2a96b4e4bb9e3e707e0ab  ./usr/lib/python3.10/site-packages/numpy/ma/tests/test_core.pyc
cecb021d0d80574fffaf4af20a9a48e4  ./usr/lib/python3.10/site-packages/numpy/ma/tests/test_deprecations.pyc
ff5899bfb818075208bb6abcf07e4252  ./usr/lib/python3.10/site-packages/numpy/ma/tests/test_extras.pyc
3003c9ee7d15c7593680b056f700bd35  ./usr/lib/python3.10/site-packages/numpy/ma/tests/test_mrecords.pyc
7fd37feddf81dd4b53e3de1a5ea8b509  ./usr/lib/python3.10/site-packages/numpy/ma/tests/test_old_ma.pyc
0c5a9b04700d81437e6b64d3d2cf011d  ./usr/lib/python3.10/site-packages/numpy/ma/tests/test_regression.pyc
925d63d4f44a0d9d9cc551aba410d98d  ./usr/lib/python3.10/site-packages/numpy/ma/tests/test_subclassing.pyc
37163272c7c8437e74f62c9489675c24  ./usr/lib/python3.10/site-packages/numpy/ma/testutils.pyc
0b857359c4951eb5b5155ed8626f103e  ./usr/lib/python3.10/site-packages/numpy/ma/timer_comparison.pyc
858177ece296adca58a247bdd73b93e4  ./usr/lib/python3.10/site-packages/numpy/matlib.pyc
a85719f419f697083301ec1b3d72c5f7  ./usr/lib/python3.10/site-packages/numpy/matrixlib/defmatrix.pyc
4ae8d739c9a383fdf95a9e3ce1efe7dc  ./usr/lib/python3.10/site-packages/numpy/matrixlib/defmatrix.pyi
13eb58182619c1d70dc8dc0a9f49f5c5  ./usr/lib/python3.10/site-packages/numpy/matrixlib/__init__.pyc
82abcf37ad620f4c1aae7dd2e171f2bd  ./usr/lib/python3.10/site-packages/numpy/matrixlib/__init__.pyi
105e48527e559a3bcbb182f986075c8b  ./usr/lib/python3.10/site-packages/numpy/matrixlib/setup.pyc
c048d075c99f82245fa1d0c5be0a4fda  ./usr/lib/python3.10/site-packages/numpy/matrixlib/tests/__init__.pyc
292c09df0fcc9513ab51a4e7cc853577  ./usr/lib/python3.10/site-packages/numpy/matrixlib/tests/test_defmatrix.pyc
fa25bce1d2afe1318852ac07c7a598fa  ./usr/lib/python3.10/site-packages/numpy/matrixlib/tests/test_interaction.pyc
78e8d2c52ea3c6ccb1ad7749b0d1045f  ./usr/lib/python3.10/site-packages/numpy/matrixlib/tests/test_masked_matrix.pyc
8f6183268d6e32c79969ea9fcbc3dd7e  ./usr/lib/python3.10/site-packages/numpy/matrixlib/tests/test_matrix_linalg.pyc
7e319cf21482a1ef8afe7449786cd9ae  ./usr/lib/python3.10/site-packages/numpy/matrixlib/tests/test_multiarray.pyc
17de351d13ecd601869441b4c11f9b62  ./usr/lib/python3.10/site-packages/numpy/matrixlib/tests/test_numeric.pyc
db68762d0c07ebc94ffc3ef457893b25  ./usr/lib/python3.10/site-packages/numpy/matrixlib/tests/test_regression.pyc
00dd1f49b3135f593a575f1eebde58a4  ./usr/lib/python3.10/site-packages/numpy/polynomial/chebyshev.pyc
cbbae3b84f99f2689b4c800c39bfad41  ./usr/lib/python3.10/site-packages/numpy/polynomial/chebyshev.pyi
66c0acf58c94d5c45b2bf8656811403a  ./usr/lib/python3.10/site-packages/numpy/polynomial/hermite_e.pyc
4e811dca6415f33f26fcd0dacd38617f  ./usr/lib/python3.10/site-packages/numpy/polynomial/hermite_e.pyi
203435fd9362d1c246dee17a90e9fadd  ./usr/lib/python3.10/site-packages/numpy/polynomial/hermite.pyc
75b9fbbf124e36ff0515c9bf798d6355  ./usr/lib/python3.10/site-packages/numpy/polynomial/hermite.pyi
2a747ea46a49d385aed6982dd07eadca  ./usr/lib/python3.10/site-packages/numpy/polynomial/__init__.pyc
23334c795b5e90e0d679e9326dab5bb0  ./usr/lib/python3.10/site-packages/numpy/polynomial/__init__.pyi
34ae2a3249b21b9ab5c74f5e2ff0463d  ./usr/lib/python3.10/site-packages/numpy/polynomial/laguerre.pyc
3f0f37a2d415096621730c22d75b8284  ./usr/lib/python3.10/site-packages/numpy/polynomial/laguerre.pyi
2803d29a0ad08a29f732baa5b6ea5996  ./usr/lib/python3.10/site-packages/numpy/polynomial/legendre.pyc
07407529d983e152a0f665e81bc11690  ./usr/lib/python3.10/site-packages/numpy/polynomial/legendre.pyi
a108c358ff89355901761cddb16161a4  ./usr/lib/python3.10/site-packages/numpy/polynomial/_polybase.pyc
496daf02e73e9444fe8cda693b221670  ./usr/lib/python3.10/site-packages/numpy/polynomial/_polybase.pyi
46cc34cdf559666a26c7d7b77abbf1a6  ./usr/lib/python3.10/site-packages/numpy/polynomial/polynomial.pyc
1b6ef0ec361694a648df9215a1bca913  ./usr/lib/python3.10/site-packages/numpy/polynomial/polynomial.pyi
ddf192a8cb25a56bad6f2b4341ebb30e  ./usr/lib/python3.10/site-packages/numpy/polynomial/polyutils.pyc
debe0d84f919ea04ec018a9c90994cab  ./usr/lib/python3.10/site-packages/numpy/polynomial/polyutils.pyi
44e3036c15069f019856142ba4d69d84  ./usr/lib/python3.10/site-packages/numpy/polynomial/setup.pyc
bc084bf7d14d74f8f6d84b90ae4cd61d  ./usr/lib/python3.10/site-packages/numpy/polynomial/tests/__init__.pyc
727a6856aef315595ea30944bbcac939  ./usr/lib/python3.10/site-packages/numpy/polynomial/tests/test_chebyshev.pyc
12f77e6ab100f00404c092ba8190cd93  ./usr/lib/python3.10/site-packages/numpy/polynomial/tests/test_classes.pyc
1554d39ed6e7030c4be4c9b7f062f963  ./usr/lib/python3.10/site-packages/numpy/polynomial/tests/test_hermite_e.pyc
5e646fbfde12fea0cafe65e1f33975fc  ./usr/lib/python3.10/site-packages/numpy/polynomial/tests/test_hermite.pyc
9788ef3d9a1431dfaaabd5a15a66709b  ./usr/lib/python3.10/site-packages/numpy/polynomial/tests/test_laguerre.pyc
b4d32c6fa937691ccbd948849558d9c1  ./usr/lib/python3.10/site-packages/numpy/polynomial/tests/test_legendre.pyc
5e95b5391cb725e15492629dcee9e6f6  ./usr/lib/python3.10/site-packages/numpy/polynomial/tests/test_polynomial.pyc
d5bff203277e4c0c4d2f14a33b811656  ./usr/lib/python3.10/site-packages/numpy/polynomial/tests/test_polyutils.pyc
ad77ed746bf2e799ff3e26b1ed2506a0  ./usr/lib/python3.10/site-packages/numpy/polynomial/tests/test_printing.pyc
203a3ca609474da6fad087144ce1067d  ./usr/lib/python3.10/site-packages/numpy/_pyinstaller/hook-numpy.pyc
009a749d628650232452c13e69ab0bde  ./usr/lib/python3.10/site-packages/numpy/_pyinstaller/__init__.pyc
99fa017a35db88f573b4b7b272ed4ad5  ./usr/lib/python3.10/site-packages/numpy/_pyinstaller/pyinstaller-smoke.pyc
cb70a2d75638d8e9deaf468f3810eb68  ./usr/lib/python3.10/site-packages/numpy/_pyinstaller/test_pyinstaller.pyc
6a9e33df9cc43361dc622c3fa3958fab  ./usr/lib/python3.10/site-packages/numpy/_pytesttester.pyc
de51dae9916ed37f0bedc661a00aed3d  ./usr/lib/python3.10/site-packages/numpy/_pytesttester.pyi
d41d8cd98f00b204e9800998ecf8427e  ./usr/lib/python3.10/site-packages/numpy/py.typed
a6e2da548d047c3213048f0d1626109f  ./usr/lib/python3.10/site-packages/numpy/random/bit_generator.cpython-310-arm-linux-gnueabihf.so
de57fbbeaf4ec95b9d17509ec886e3e9  ./usr/lib/python3.10/site-packages/numpy/random/bit_generator.pxd
ae1e30132f06c512bb9ce543daff56ff  ./usr/lib/python3.10/site-packages/numpy/random/bit_generator.pyi
89f19d12da40e4e4b0f6c05a57a9c722  ./usr/lib/python3.10/site-packages/numpy/random/_bounded_integers.cpython-310-arm-linux-gnueabihf.so
39242a494eb64169628c0d77d68dea85  ./usr/lib/python3.10/site-packages/numpy/random/_bounded_integers.pxd
8e558fe6c5a3654d3bd870aba6613248  ./usr/lib/python3.10/site-packages/numpy/random/c_distributions.pxd
ad7e28ebb1ec3d56d2e392200f19e2ed  ./usr/lib/python3.10/site-packages/numpy/random/_common.cpython-310-arm-linux-gnueabihf.so
32faac774b360fb7699e2025d85b6fd6  ./usr/lib/python3.10/site-packages/numpy/random/_common.pxd
85d34782343e57ee7557b4dc38d16670  ./usr/lib/python3.10/site-packages/numpy/random/_examples/cffi/extending.pyc
d2463ef075500d7c6a68f8805f20208f  ./usr/lib/python3.10/site-packages/numpy/random/_examples/cffi/parse.pyc
7ee0b162fc2f92469be14287be19570e  ./usr/lib/python3.10/site-packages/numpy/random/_examples/cython/extending_distributions.pyx
4057861eb337c9164085a75ca4d7393c  ./usr/lib/python3.10/site-packages/numpy/random/_examples/cython/extending.pyx
fb043a3136fd8a28a4448e82ab8fe3ad  ./usr/lib/python3.10/site-packages/numpy/random/_examples/cython/setup.pyc
7ea999afb077dad56050f458dc4cf77c  ./usr/lib/python3.10/site-packages/numpy/random/_examples/numba/extending_distributions.pyc
4ae2c4f070a5cd3f45b5315187a2347d  ./usr/lib/python3.10/site-packages/numpy/random/_examples/numba/extending.pyc
97595de8223c4ade03434bce8437498e  ./usr/lib/python3.10/site-packages/numpy/random/_generator.cpython-310-arm-linux-gnueabihf.so
d42aba99311b8850e59fe26879f0d708  ./usr/lib/python3.10/site-packages/numpy/random/_generator.pyi
b15e3c4ace18a97f03cad53e1f8d85a3  ./usr/lib/python3.10/site-packages/numpy/random/__init__.pxd
1110a1a034dd2529eb4ad6dbfd3a59fa  ./usr/lib/python3.10/site-packages/numpy/random/__init__.pyc
cce11e8fc48963dab06802e0b5088980  ./usr/lib/python3.10/site-packages/numpy/random/__init__.pyi
38ae28e44f6c5d6abe8a18bde307db7f  ./usr/lib/python3.10/site-packages/numpy/random/_mt19937.cpython-310-arm-linux-gnueabihf.so
128ec8210d77415a6274bb9a7d2492c2  ./usr/lib/python3.10/site-packages/numpy/random/_mt19937.pyi
9c01d3af555e35a1901654156b7a7863  ./usr/lib/python3.10/site-packages/numpy/random/mtrand.cpython-310-arm-linux-gnueabihf.so
7bc84f6e2f4954f9db1f906f25bd8dad  ./usr/lib/python3.10/site-packages/numpy/random/mtrand.pyi
3f95fc28c1c877d3d63167d522070932  ./usr/lib/python3.10/site-packages/numpy/random/_pcg64.cpython-310-arm-linux-gnueabihf.so
25632f9bec160f23f8ff0a32c20cf6ad  ./usr/lib/python3.10/site-packages/numpy/random/_pcg64.pyi
b03c61e1b86802832121ad82b4f4f823  ./usr/lib/python3.10/site-packages/numpy/random/_philox.cpython-310-arm-linux-gnueabihf.so
249825ba0f355452e13cb3ee653f45ba  ./usr/lib/python3.10/site-packages/numpy/random/_philox.pyi
183dec5acab67194516b1b7b56b7dfd3  ./usr/lib/python3.10/site-packages/numpy/random/_pickle.pyc
dbabdabe0e037eb0328229ca58cb6743  ./usr/lib/python3.10/site-packages/numpy/random/setup.pyc
7f0c25ca2aed04a9cc454d035cf8624e  ./usr/lib/python3.10/site-packages/numpy/random/_sfc64.cpython-310-arm-linux-gnueabihf.so
6e34dae2d5ceec42854fed46a960e4ed  ./usr/lib/python3.10/site-packages/numpy/random/_sfc64.pyi
1f6b5d963885e72cd08c061fca2f4d1f  ./usr/lib/python3.10/site-packages/numpy/random/tests/data/__init__.pyc
42f930477266cc22c4a0bf3859ad0655  ./usr/lib/python3.10/site-packages/numpy/random/tests/data/mt19937-testset-1.csv
e9af7389e46de3a6b804d773dd3fe28e  ./usr/lib/python3.10/site-packages/numpy/random/tests/data/mt19937-testset-2.csv
4f8a0bb760030d130b3748a5140a2d96  ./usr/lib/python3.10/site-packages/numpy/random/tests/data/pcg64dxsm-testset-1.csv
b613c4aadf84117260ec4cc8aa177ca9  ./usr/lib/python3.10/site-packages/numpy/random/tests/data/pcg64dxsm-testset-2.csv
150bbd205f0a7808bd01187892f8f296  ./usr/lib/python3.10/site-packages/numpy/random/tests/data/pcg64-testset-1.csv
fa508f87d9882410ede29e647d69dd8c  ./usr/lib/python3.10/site-packages/numpy/random/tests/data/pcg64-testset-2.csv
3183e7881d445adeee576ec328708a4c  ./usr/lib/python3.10/site-packages/numpy/random/tests/data/philox-testset-1.csv
1d4af19aa29c321ab03dfda4b5fd282d  ./usr/lib/python3.10/site-packages/numpy/random/tests/data/philox-testset-2.csv
e3372a8a685fe4106a0392e3363ef65e  ./usr/lib/python3.10/site-packages/numpy/random/tests/data/sfc64-testset-1.csv
105b1258cbf0369612a61009298b5e87  ./usr/lib/python3.10/site-packages/numpy/random/tests/data/sfc64-testset-2.csv
16b2076c9793958932f1093083e08ce0  ./usr/lib/python3.10/site-packages/numpy/random/tests/__init__.pyc
331cdacaf03e6dab3bb1f1b071df6561  ./usr/lib/python3.10/site-packages/numpy/random/tests/test_direct.pyc
5a4cf7fda355fbd9ec8ee0ee54fc5f37  ./usr/lib/python3.10/site-packages/numpy/random/tests/test_extending.pyc
50da626dec70ce58b4c85dfd2e46e6c1  ./usr/lib/python3.10/site-packages/numpy/random/tests/test_generator_mt19937.pyc
a308c37c0f4bccbf07c1e906d4822895  ./usr/lib/python3.10/site-packages/numpy/random/tests/test_generator_mt19937_regressions.pyc
cc602f107dfe5f993fef908f8062686e  ./usr/lib/python3.10/site-packages/numpy/random/tests/test_random.pyc
aaa4395dadfd38f642055c39ebc712d4  ./usr/lib/python3.10/site-packages/numpy/random/tests/test_randomstate.pyc
24a659c9c0ee315085ee196e01ca1421  ./usr/lib/python3.10/site-packages/numpy/random/tests/test_randomstate_regression.pyc
7b003264d3c9198dc7a42f481ed532f3  ./usr/lib/python3.10/site-packages/numpy/random/tests/test_regression.pyc
d09dc47f0f1c5bb7cfb478829a89c7c7  ./usr/lib/python3.10/site-packages/numpy/random/tests/test_seed_sequence.pyc
70596de6a5b6ab00e10aa4e5a0248e2b  ./usr/lib/python3.10/site-packages/numpy/random/tests/test_smoke.pyc
fad6c0331a27e095a3efe928e8d96b8d  ./usr/lib/python3.10/site-packages/numpy/setup.pyc
8f21202be1a2cbd672615f1ba903d750  ./usr/lib/python3.10/site-packages/numpy/_typing/_add_docstring.pyc
e85203fec448385e641062a508ee7f81  ./usr/lib/python3.10/site-packages/numpy/_typing/_array_like.pyc
cb05939bdb12cc5b781fcfa9c96bea0b  ./usr/lib/python3.10/site-packages/numpy/_typing/_callable.pyi
57db8be17a434bb2f12681af88d1c8bf  ./usr/lib/python3.10/site-packages/numpy/_typing/_char_codes.pyc
d6d0d4ab5c7226185cc00321a4ac49a0  ./usr/lib/python3.10/site-packages/numpy/_typing/_dtype_like.pyc
219b569444f8a44b472665660b772816  ./usr/lib/python3.10/site-packages/numpy/_typing/_extended_precision.pyc
cc968d5ce54a88bf703fb364b151a4d7  ./usr/lib/python3.10/site-packages/numpy/_typing/_generic_alias.pyc
352cce8364f848fe2d10c157002026a6  ./usr/lib/python3.10/site-packages/numpy/_typing/__init__.pyc
3321594e7dae3d2921497d424380e40e  ./usr/lib/python3.10/site-packages/numpy/typing/__init__.pyc
06587e543c175a363ce293619292795a  ./usr/lib/python3.10/site-packages/numpy/typing/mypy_plugin.pyc
fa49adbac6d6c37b3ada751ff64db0e9  ./usr/lib/python3.10/site-packages/numpy/_typing/_nbit.pyc
8a74b10403a397f1f429573ef33fb031  ./usr/lib/python3.10/site-packages/numpy/_typing/_nested_sequence.pyc
3dd6b5c30381197033e828eb542f388b  ./usr/lib/python3.10/site-packages/numpy/_typing/_scalars.pyc
5f15aa784b6242bcc779fbb10fcaa560  ./usr/lib/python3.10/site-packages/numpy/_typing/setup.pyc
905f96c3ff125e9be229f0bd98eb0696  ./usr/lib/python3.10/site-packages/numpy/typing/setup.pyc
c206b2b0cdf5090ac2f48fe9a8b816ed  ./usr/lib/python3.10/site-packages/numpy/_typing/_shape.pyc
59d4874ccb972c9f3733b13d8976b8e7  ./usr/lib/python3.10/site-packages/numpy/_typing/_ufunc.pyi
96854b964903de5078a6267fe37c071a  ./usr/lib/python3.10/site-packages/numpy/_version.pyc
42bd748bd496e5b4c358dba628213de5  ./usr/lib/python3.10/site-packages/numpy/version.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/picamera-1.13-py3.10.egg-info/dependency_links.txt
fc9b3de3c8a830bf7e19b1a4f62bd0b3  ./usr/lib/python3.10/site-packages/picamera-1.13-py3.10.egg-info/PKG-INFO
22d0c1431f62e94389af8bdd385ec4ff  ./usr/lib/python3.10/site-packages/picamera-1.13-py3.10.egg-info/requires.txt
0429868ef2e9e22ff1ecf32e4d1b4900  ./usr/lib/python3.10/site-packages/picamera-1.13-py3.10.egg-info/SOURCES.txt
accf135fb7a2e423e2dddb8c6764dd4f  ./usr/lib/python3.10/site-packages/picamera-1.13-py3.10.egg-info/top_level.txt
69cf7ced78d1356e506d7a51a9140ba4  ./usr/lib/python3.10/site-packages/picamera/array.pyc
adb73133276f218b2321aa79e19c6299  ./usr/lib/python3.10/site-packages/picamera/bcm_host.pyc
b7fed4a23bdf687bada753cd6a8ed636  ./usr/lib/python3.10/site-packages/picamera/camera.pyc
735da71d1b0de4c211d00d33158fd2f1  ./usr/lib/python3.10/site-packages/picamera/color.pyc
82c9c71626ea7f98c3008da7e3e423ee  ./usr/lib/python3.10/site-packages/picamera/display.pyc
7925c38b256b597a410887fef1f15789  ./usr/lib/python3.10/site-packages/picamera/encoders.pyc
e899ba4bd6a619cc059e15d81a6afc82  ./usr/lib/python3.10/site-packages/picamera/exc.pyc
570057671758557409305ffe46e67d0b  ./usr/lib/python3.10/site-packages/picamera/frames.pyc
b199519cf85d691c4541207c9832dfbd  ./usr/lib/python3.10/site-packages/picamera/__init__.pyc
3bb026326c10f9dea9cab65a5acd71a5  ./usr/lib/python3.10/site-packages/picamera/mmalobj.pyc
c2edcf75cb3d863bdbf75aa48957bb0f  ./usr/lib/python3.10/site-packages/picamera/mmal.pyc
491a25c8801e538ef09cc03842779e55  ./usr/lib/python3.10/site-packages/picamera/renderers.pyc
23916f6e1ecc397c273338d5b3b750e2  ./usr/lib/python3.10/site-packages/picamera/streams.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/pigpio-1.78-py3.10.egg-info/dependency_links.txt
2bcebcb19f8114db7f50ade96eac131c  ./usr/lib/python3.10/site-packages/pigpio-1.78-py3.10.egg-info/PKG-INFO
d0de3e66dc069935a3aa9ab97101c9cb  ./usr/lib/python3.10/site-packages/pigpio-1.78-py3.10.egg-info/SOURCES.txt
4caa1ba8c6d0d145169c1dbf9300253c  ./usr/lib/python3.10/site-packages/pigpio-1.78-py3.10.egg-info/top_level.txt
d487f9d5f43d4c5d6ad8f2c952acd69e  ./usr/lib/python3.10/site-packages/pigpio.pyc
bb5c4d68702266daba625fd83f2ca199  ./usr/lib/python3.10/site-packages/PIL/BdfFontFile.pyc
39fd617da7fc9fa0ad536e5ed13c1e10  ./usr/lib/python3.10/site-packages/PIL/_binary.pyc
fae42c8ba1111bbfb3bbca19f6c53549  ./usr/lib/python3.10/site-packages/PIL/BlpImagePlugin.pyc
a5e75b001e4ac7663f8f273489d64538  ./usr/lib/python3.10/site-packages/PIL/BmpImagePlugin.pyc
3b1ecae654db11531ba96d34a49081e5  ./usr/lib/python3.10/site-packages/PIL/BufrStubImagePlugin.pyc
a52cc21854cde641692c23f711d5b325  ./usr/lib/python3.10/site-packages/PIL/ContainerIO.pyc
8f64690a15f1e4085687cc86973cb1cd  ./usr/lib/python3.10/site-packages/PIL/CurImagePlugin.pyc
144b5b2ffb378ef856208ccf6756addd  ./usr/lib/python3.10/site-packages/PIL/DcxImagePlugin.pyc
e19f2701487f2c495b2c28794856c505  ./usr/lib/python3.10/site-packages/PIL/DdsImagePlugin.pyc
53dbe78d9c16ac49119b620021fbc494  ./usr/lib/python3.10/site-packages/PIL/_deprecate.pyc
943ea5612f60f46dec92276738bd4658  ./usr/lib/python3.10/site-packages/PIL/EpsImagePlugin.pyc
5631c86a96093d5dc27032360f20f6ea  ./usr/lib/python3.10/site-packages/PIL/ExifTags.pyc
58b4315e3006326141e3251642c08fc5  ./usr/lib/python3.10/site-packages/PIL/features.pyc
e3c327f623daebe6ee95f50156ca755d  ./usr/lib/python3.10/site-packages/PIL/FitsImagePlugin.pyc
38253dc802b89e23cd02e4ee1b4344c4  ./usr/lib/python3.10/site-packages/PIL/FitsStubImagePlugin.pyc
1c06145631c99ddc1201eec67387c920  ./usr/lib/python3.10/site-packages/PIL/FliImagePlugin.pyc
1a12091cb685c58cff9a30f2ff1faf5b  ./usr/lib/python3.10/site-packages/PIL/FontFile.pyc
a7363372682435f359dc7fd60ac31044  ./usr/lib/python3.10/site-packages/PIL/FpxImagePlugin.pyc
b6bd20f42f5b23b42dc22c14e5805630  ./usr/lib/python3.10/site-packages/PIL/FtexImagePlugin.pyc
19070344406bd26e77bb7b8818972273  ./usr/lib/python3.10/site-packages/PIL/GbrImagePlugin.pyc
1d0ea53b64fa3fa6cee675fc93b20ade  ./usr/lib/python3.10/site-packages/PIL/GdImageFile.pyc
26afd9504ac19068a2a03dc9b84c6eba  ./usr/lib/python3.10/site-packages/PIL/GifImagePlugin.pyc
96af3a013a487b047437790f082818cb  ./usr/lib/python3.10/site-packages/PIL/GimpGradientFile.pyc
697cb99e64d60d0e24ee3cb5ecfd18df  ./usr/lib/python3.10/site-packages/PIL/GimpPaletteFile.pyc
b542c6cc98ebc5ab8f0510b72f2acc5c  ./usr/lib/python3.10/site-packages/PIL/GribStubImagePlugin.pyc
3dcd4014d09ed660704adf0a1be169d8  ./usr/lib/python3.10/site-packages/PIL/Hdf5StubImagePlugin.pyc
7721c40a3724698c00c08649af20b802  ./usr/lib/python3.10/site-packages/PIL/IcnsImagePlugin.pyc
9bd1a24b5a5f12afb9f53b64ffa7fa6b  ./usr/lib/python3.10/site-packages/PIL/IcoImagePlugin.pyc
82dd214c712b633cfa00d22f15e6bd75  ./usr/lib/python3.10/site-packages/PIL/ImageChops.pyc
0d99560fabf0b8471f03997e7b106ce3  ./usr/lib/python3.10/site-packages/PIL/ImageCms.pyc
ca80a702ce3e4f07fd3d5ce891382e9d  ./usr/lib/python3.10/site-packages/PIL/ImageColor.pyc
72c8b0958b57bd215d0dddf1a75f81d6  ./usr/lib/python3.10/site-packages/PIL/ImageDraw2.pyc
f5b82969373f20f937b3ade6e3e00237  ./usr/lib/python3.10/site-packages/PIL/ImageDraw.pyc
58943a5c30e0c4a9aceb35c93df37c91  ./usr/lib/python3.10/site-packages/PIL/ImageEnhance.pyc
483141b733730361bb3b1659c0df4d86  ./usr/lib/python3.10/site-packages/PIL/ImageFile.pyc
96f4174216da5f0a0e87171906b37dd5  ./usr/lib/python3.10/site-packages/PIL/ImageFilter.pyc
c4dc247c45bde25a728afa8f5c4463a1  ./usr/lib/python3.10/site-packages/PIL/ImageFont.pyc
cb50e922e7a4e29db76a06e9b42edff7  ./usr/lib/python3.10/site-packages/PIL/ImageGrab.pyc
805587a68f374511777082eb915ff5cd  ./usr/lib/python3.10/site-packages/PIL/ImageMath.pyc
aef87d47d3c8adb00f3b9bd2b2c13c11  ./usr/lib/python3.10/site-packages/PIL/ImageMode.pyc
a50a60d76de9688f6d9efabbb7aecc61  ./usr/lib/python3.10/site-packages/PIL/ImageMorph.pyc
eb89c78419c49467f3cc4ed4b67b6146  ./usr/lib/python3.10/site-packages/PIL/ImageOps.pyc
2134bfc0eff0484897532eec43f9f39c  ./usr/lib/python3.10/site-packages/PIL/ImagePalette.pyc
9489f43088b721d408d5b29a8582c4b4  ./usr/lib/python3.10/site-packages/PIL/ImagePath.pyc
4f24e7f6f563da67e8a8fa44f89a956f  ./usr/lib/python3.10/site-packages/PIL/Image.pyc
99a31d7fded1eaefed734b03446cd376  ./usr/lib/python3.10/site-packages/PIL/ImageQt.pyc
5fa72adce1b59e062555ac9dd1c31f3e  ./usr/lib/python3.10/site-packages/PIL/ImageSequence.pyc
b9ad21266a1553597f049840343cf9d4  ./usr/lib/python3.10/site-packages/PIL/ImageShow.pyc
2a41472861dee169f79eebcdd017e1c5  ./usr/lib/python3.10/site-packages/PIL/ImageStat.pyc
20c245d37dc6cfd50704b4f7780a5384  ./usr/lib/python3.10/site-packages/PIL/ImageTk.pyc
a0d47c6d640c060a2993a30b0a7e2a84  ./usr/lib/python3.10/site-packages/PIL/ImageTransform.pyc
02a23f9ecbcab3bb696bedf59bd49208  ./usr/lib/python3.10/site-packages/PIL/ImageWin.pyc
3e8593241f646e38ad2aa5bd2e9ba160  ./usr/lib/python3.10/site-packages/PIL/_imaging.cpython-310-arm-linux-gnueabihf.so
8d6f20ccbe5ecba0708a343d467e85b4  ./usr/lib/python3.10/site-packages/PIL/_imagingft.cpython-310-arm-linux-gnueabihf.so
d4def66310a6076bdcd9a326f56041fc  ./usr/lib/python3.10/site-packages/PIL/_imagingmath.cpython-310-arm-linux-gnueabihf.so
92e8b31c7a6c2ca9d3bc942a25b5f07e  ./usr/lib/python3.10/site-packages/PIL/_imagingmorph.cpython-310-arm-linux-gnueabihf.so
94de1d33302e1ab8eaedacfcc8662ac4  ./usr/lib/python3.10/site-packages/PIL/_imagingtk.cpython-310-arm-linux-gnueabihf.so
8b26a10c9d4d73403b5bbaf8d699c510  ./usr/lib/python3.10/site-packages/PIL/ImImagePlugin.pyc
7d48c661452c3dd6549769183448b81a  ./usr/lib/python3.10/site-packages/PIL/ImtImagePlugin.pyc
807772d7c7b3984cfe69c7d507fd85ee  ./usr/lib/python3.10/site-packages/PIL/__init__.pyc
1cb71676557cf2646ce3e1777e25d0d3  ./usr/lib/python3.10/site-packages/PIL/IptcImagePlugin.pyc
449be3ae6545941681fd217d3f4d5379  ./usr/lib/python3.10/site-packages/PIL/Jpeg2KImagePlugin.pyc
f3547e4f0d312080cabb074e56bf29ff  ./usr/lib/python3.10/site-packages/PIL/JpegImagePlugin.pyc
cc2031610041218f31514d773f5d68b2  ./usr/lib/python3.10/site-packages/PIL/JpegPresets.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/dependency_links.txt
4529e2c16462e97c28017a8a2cec8ada  ./usr/lib/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/PKG-INFO
41b329fc8eb40bea3a23831cbea44ddd  ./usr/lib/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/requires.txt
f62dc64b74e5b7f9568f76ebd71d219f  ./usr/lib/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/SOURCES.txt
d851573b415fac5c5ec32f7150727932  ./usr/lib/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/top_level.txt
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/Pillow-9.4.0-py3.10.egg-info/zip-safe
9c33160fbe0acf14abf70d6eb036313f  ./usr/lib/python3.10/site-packages/PIL/__main__.pyc
668e4466105f5ace26652d4f11ebd921  ./usr/lib/python3.10/site-packages/PIL/McIdasImagePlugin.pyc
5b36bb53be7116b561477da35503db9e  ./usr/lib/python3.10/site-packages/PIL/MicImagePlugin.pyc
f7616fb1a0cfb6c6e82b3d4696e06bf0  ./usr/lib/python3.10/site-packages/PIL/MpegImagePlugin.pyc
dfbb75fc26a728f8e8a630f41eb4a2b9  ./usr/lib/python3.10/site-packages/PIL/MpoImagePlugin.pyc
15567041709391b1eb54f4723717bb4b  ./usr/lib/python3.10/site-packages/PIL/MspImagePlugin.pyc
d3593a316c4c4c507a3f24c9be7e781c  ./usr/lib/python3.10/site-packages/PIL/PaletteFile.pyc
09f45de300b5be748d0915ce75be01ce  ./usr/lib/python3.10/site-packages/PIL/PalmImagePlugin.pyc
ca403f76a6ff658fa468e8ff5082451d  ./usr/lib/python3.10/site-packages/PIL/PcdImagePlugin.pyc
b856daa977e568f07cdcf5688844c6dc  ./usr/lib/python3.10/site-packages/PIL/PcfFontFile.pyc
b35e9fff4fc1eb9044a54fc7b795aa6b  ./usr/lib/python3.10/site-packages/PIL/PcxImagePlugin.pyc
3d3e44db13675a57bfa15fefa079a931  ./usr/lib/python3.10/site-packages/PIL/PdfImagePlugin.pyc
020315130c9f85dad8529562f075f52f  ./usr/lib/python3.10/site-packages/PIL/PdfParser.pyc
bb8fd49d0037863b20d7a222b17d0e06  ./usr/lib/python3.10/site-packages/PIL/PixarImagePlugin.pyc
e54c1dead04a12e04e78a36b836e9f43  ./usr/lib/python3.10/site-packages/PIL/PngImagePlugin.pyc
8e275d816107dc25e97abb7f485814f9  ./usr/lib/python3.10/site-packages/PIL/PpmImagePlugin.pyc
09e124befa418561a57ea82f1cd3c09a  ./usr/lib/python3.10/site-packages/PIL/PsdImagePlugin.pyc
db60bf3defc5abd2e0c3897dcd1d0ff9  ./usr/lib/python3.10/site-packages/PIL/PSDraw.pyc
fbc81b30e46a73dfe37fbdd1247763e1  ./usr/lib/python3.10/site-packages/PIL/PyAccess.pyc
ee01c17738bd62383f8245d3d0fe534f  ./usr/lib/python3.10/site-packages/PIL/SgiImagePlugin.pyc
a356265b54acdf24d9e632ee673f9417  ./usr/lib/python3.10/site-packages/PIL/SpiderImagePlugin.pyc
986355bf9baf3d5eadf11545ca83d96c  ./usr/lib/python3.10/site-packages/PIL/SunImagePlugin.pyc
dd5af37a1cc68dfa729f89ce68398d62  ./usr/lib/python3.10/site-packages/PIL/TarIO.pyc
fb63433728ae5dd82ce9d9d30960bcfc  ./usr/lib/python3.10/site-packages/PIL/TgaImagePlugin.pyc
1fa2c17301689b03c3e9a400aea83656  ./usr/lib/python3.10/site-packages/PIL/TiffImagePlugin.pyc
dae9aa1c76b8ef98aaba01b8b6ef8f81  ./usr/lib/python3.10/site-packages/PIL/TiffTags.pyc
1a389bfdef30bf66a96d1f9568299b91  ./usr/lib/python3.10/site-packages/PIL/_tkinter_finder.pyc
706eba537e5857ed8b0af748cd3a8da1  ./usr/lib/python3.10/site-packages/PIL/_util.pyc
b463df8490a77aa858aedeb2fdffe597  ./usr/lib/python3.10/site-packages/PIL/_version.pyc
2d731648b50d2167249446fa992954e9  ./usr/lib/python3.10/site-packages/PIL/WalImageFile.pyc
c4efe8bab76dc6c6406a842195befabd  ./usr/lib/python3.10/site-packages/PIL/WebPImagePlugin.pyc
fb4c9124601ecaf732efb6e25ab8d890  ./usr/lib/python3.10/site-packages/PIL/WmfImagePlugin.pyc
ab73198ecc07da008cd4a35debfa0dd3  ./usr/lib/python3.10/site-packages/PIL/XbmImagePlugin.pyc
35b8c846a13f60d3527b4682de528afe  ./usr/lib/python3.10/site-packages/PIL/XpmImagePlugin.pyc
3071e97cb6863d963c8d65f188a2869b  ./usr/lib/python3.10/site-packages/PIL/XVThumbImagePlugin.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/PyQRCode-1.2.1-py3.10.egg-info/dependency_links.txt
a24edab46e65a004e09caca23c8dd061  ./usr/lib/python3.10/site-packages/PyQRCode-1.2.1-py3.10.egg-info/PKG-INFO
c5cbb521e10c2192b00bb8565a5abbf2  ./usr/lib/python3.10/site-packages/PyQRCode-1.2.1-py3.10.egg-info/requires.txt
d2885a562087a1022c446d23bf24e25c  ./usr/lib/python3.10/site-packages/PyQRCode-1.2.1-py3.10.egg-info/SOURCES.txt
6da14a877357e7598a7063d0dd7ce65f  ./usr/lib/python3.10/site-packages/PyQRCode-1.2.1-py3.10.egg-info/top_level.txt
b8b023e550a54b56a59b1c0fa13839a9  ./usr/lib/python3.10/site-packages/pyqrcode/builder.pyc
9925055b0a7cfa49e5dfddb94d3e97ad  ./usr/lib/python3.10/site-packages/pyqrcode/__init__.pyc
40eef7c5c648d0210d6e65ec880d15dc  ./usr/lib/python3.10/site-packages/pyqrcode/tables.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/dependency_links.txt
175d560c92eebbb2183605fb4b776716  ./usr/lib/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/entry_points.txt
b12f014150460be1ebefd4dbf3b74a4f  ./usr/lib/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/PKG-INFO
0fbe28171d27bdd263fde062984e6455  ./usr/lib/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/requires.txt
291c056bf4cb5e1f55813a91aa014598  ./usr/lib/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/SOURCES.txt
e2dc85c6da7a969882800702ee818d6a  ./usr/lib/python3.10/site-packages/pyzbar-0.1.9-py3.10.egg-info/top_level.txt
42f42184273fbedf8b0de1da11059585  ./usr/lib/python3.10/site-packages/pyzbar/__init__.pyc
54fea5cb0598276f3ccf13ea9853b265  ./usr/lib/python3.10/site-packages/pyzbar/locations.pyc
e7aec864090444e54f3b24dbf253e8e1  ./usr/lib/python3.10/site-packages/pyzbar/pyzbar_error.pyc
8b1e65de30f9788be74346d5c8f42f2b  ./usr/lib/python3.10/site-packages/pyzbar/pyzbar.pyc
6daa3d38b8052af9fd6b9da6fc5d9f1a  ./usr/lib/python3.10/site-packages/pyzbar/scripts/__init__.pyc
01f6959cb42a5af40a80ab68c935a075  ./usr/lib/python3.10/site-packages/pyzbar/scripts/read_zbar.pyc
f94fd44708c9d9238c422fb2059ef682  ./usr/lib/python3.10/site-packages/pyzbar/wrapper.pyc
d44739e18022ea094ae70728414455d5  ./usr/lib/python3.10/site-packages/pyzbar/zbar_library.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/dependency_links.txt
0a06db6070213745f91879cd9c84c451  ./usr/lib/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/entry_points.txt
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/not-zip-safe
7453805c5a9aab9a4151226d58006156  ./usr/lib/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/PKG-INFO
30c188827369d5f6860f76d1f0bf73bb  ./usr/lib/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/requires.txt
e466397fa1a55bf7de0d529f3f9e0ceb  ./usr/lib/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/SOURCES.txt
8af18fd320228e0b5f50214656ad5569  ./usr/lib/python3.10/site-packages/qrcode-7.3.1-py3.10.egg-info/top_level.txt
5a64241d5f9419f2959b628f52f746e6  ./usr/lib/python3.10/site-packages/qrcode/base.pyc
feb023e8172864cb891ff5f4367b3957  ./usr/lib/python3.10/site-packages/qrcode/console_scripts.pyc
9bd5b9a02311fc2eb117c4008d39972e  ./usr/lib/python3.10/site-packages/qrcode/constants.pyc
843998d8cecb569c34e151de9dbe1640  ./usr/lib/python3.10/site-packages/qrcode/exceptions.pyc
c87bbe1df8f252f48b921f52c9522fe4  ./usr/lib/python3.10/site-packages/qrcode/image/base.pyc
7e77822a5a919790f24a50b915f941df  ./usr/lib/python3.10/site-packages/qrcode/image/__init__.pyc
05b3fe13458b4fbd83844d29a67dc550  ./usr/lib/python3.10/site-packages/qrcode/image/pil.pyc
87a63e32a117f8d65cd0113c8bbafbb2  ./usr/lib/python3.10/site-packages/qrcode/image/pure.pyc
35ef6b6cbdaa0b014e4f4e6fbc3774ae  ./usr/lib/python3.10/site-packages/qrcode/image/styledpil.pyc
13e17fe1018432cfe94974766cf52496  ./usr/lib/python3.10/site-packages/qrcode/image/styles/colormasks.pyc
82a895d89828c510f16cab9b5fe3d9c4  ./usr/lib/python3.10/site-packages/qrcode/image/styles/__init__.pyc
fb6b346e8f341442f307eb7d6b3d0d6a  ./usr/lib/python3.10/site-packages/qrcode/image/styles/moduledrawers.pyc
d4bb00b1fd0752585de3e27d81ba6af4  ./usr/lib/python3.10/site-packages/qrcode/image/svg.pyc
36798312bf91a9a135e4bbf473f42ad0  ./usr/lib/python3.10/site-packages/qrcode/__init__.pyc
b12dba40ea5d9aec2940de6243d8573a  ./usr/lib/python3.10/site-packages/qrcode/LUT.pyc
d27f9fd664da67c0360dff21a45b68b2  ./usr/lib/python3.10/site-packages/qrcode/main.pyc
d03fc7729997e8cfc6e36038d86e35bb  ./usr/lib/python3.10/site-packages/qrcode/release.pyc
7ff2a3e04e4a481cebafd26d14e4001c  ./usr/lib/python3.10/site-packages/qrcode/util.pyc
d3711c76dde9edbc20f54b644c8810dc  ./usr/lib/python3.10/site-packages/README.txt
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/RPi.GPIO-0.7.1-py3.10.egg-info/dependency_links.txt
05823eec7473f0091d11198c8f3eeefa  ./usr/lib/python3.10/site-packages/RPi.GPIO-0.7.1-py3.10.egg-info/PKG-INFO
32d01f2b8e387521d8a4d6529b0f2660  ./usr/lib/python3.10/site-packages/RPi.GPIO-0.7.1-py3.10.egg-info/SOURCES.txt
6cf9349836e7466c0b8addf9cf39a3f2  ./usr/lib/python3.10/site-packages/RPi.GPIO-0.7.1-py3.10.egg-info/top_level.txt
bf19a820dc429a0929d94b52547a11c0  ./usr/lib/python3.10/site-packages/RPi/_GPIO.cpython-310-arm-linux-gnueabihf.so
c2ade72d3a4eab488f444da6fae75a70  ./usr/lib/python3.10/site-packages/RPi/GPIO/__init__.pyc
a3f630ac453cfc17a5f876f089a23e7f  ./usr/lib/python3.10/site-packages/RPi/__init__.pyc
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/spidev-3.6-py3.10.egg-info/dependency_links.txt
ff5fbb4c80cc2f4ab36d0b7b8ce9b8d4  ./usr/lib/python3.10/site-packages/spidev-3.6-py3.10.egg-info/PKG-INFO
8c00da93b767099e68dd7a16e5597e9e  ./usr/lib/python3.10/site-packages/spidev-3.6-py3.10.egg-info/SOURCES.txt
1f088ef073369c21f0ecd0820db66369  ./usr/lib/python3.10/site-packages/spidev-3.6-py3.10.egg-info/top_level.txt
559a48a95820e7bc75c8794fd4e9b777  ./usr/lib/python3.10/site-packages/spidev.cpython-310-arm-linux-gnueabihf.so
68b329da9893e34099c7d8ad5cb9c940  ./usr/lib/python3.10/site-packages/urtypes-0.1.0-py3.10.egg-info/dependency_links.txt
5c8b35caa587d33065129e28f6658463  ./usr/lib/python3.10/site-packages/urtypes-0.1.0-py3.10.egg-info/PKG-INFO
5cadfa8ae8139ff9a738b13f0b846e18  ./usr/lib/python3.10/site-packages/urtypes-0.1.0-py3.10.egg-info/SOURCES.txt
4314126f27d4fe2212d006c13ca4c353  ./usr/lib/python3.10/site-packages/urtypes-0.1.0-py3.10.egg-info/top_level.txt
a730518fcbc1d2f50b06f6adbf7b90cf  ./usr/lib/python3.10/site-packages/urtypes/bytes.pyc
a35b466db874ee403133fe1b834840d9  ./usr/lib/python3.10/site-packages/urtypes/cbor/data.pyc
f72d9d3476a9ef37701638f04ee2b73d  ./usr/lib/python3.10/site-packages/urtypes/cbor/decoder.pyc
f303317476141d3cfea1359f15c026bb  ./usr/lib/python3.10/site-packages/urtypes/cbor/encoder.pyc
c5aa7457a44f8148f15537e3fdf4b343  ./usr/lib/python3.10/site-packages/urtypes/cbor/__init__.pyc
8d9da0f987d4e419f984c80c75a410b9  ./usr/lib/python3.10/site-packages/urtypes/crypto/account.pyc
5f238d865254cfe0f218e35442a899c1  ./usr/lib/python3.10/site-packages/urtypes/crypto/bip39.pyc
5df0bbc147764669a201cf017ef83298  ./usr/lib/python3.10/site-packages/urtypes/crypto/coin_info.pyc
f422f1f8d4437efc46cc4a7d33e22cc4  ./usr/lib/python3.10/site-packages/urtypes/crypto/ec_key.pyc
fef95ab37efd0fccbcc3a1bd124b0f0b  ./usr/lib/python3.10/site-packages/urtypes/crypto/hd_key.pyc
0f2b70111172266c1d3f188ea7f3ca76  ./usr/lib/python3.10/site-packages/urtypes/crypto/__init__.pyc
da18de796bc4fde1adef80d145cfc7ed  ./usr/lib/python3.10/site-packages/urtypes/crypto/keypath.pyc
e62376460210dc7c3ee59506256490a0  ./usr/lib/python3.10/site-packages/urtypes/crypto/multi_key.pyc
61aaf95584dcef25792ef773d2f80a2e  ./usr/lib/python3.10/site-packages/urtypes/crypto/output.pyc
9c533630dd84cd670a209506e7fd1518  ./usr/lib/python3.10/site-packages/urtypes/crypto/psbt.pyc
4d2f355ee5d36e2f336ecf855e5049b7  ./usr/lib/python3.10/site-packages/urtypes/__init__.pyc
bbd080025fef7b886d85b1df2557cee5  ./usr/lib/python3.10/site-packages/urtypes/registry.pyc
3d6b08d4979782b2c12567683a76100e  ./usr/lib/python3.10/site-packages/zbar.so
6d98fdb94f982aa73fe066db634d70e1  ./usr/lib/python3.10/site.pyc
70fc25f47f62faf67fe5d3cd4d438d2e  ./usr/lib/python3.10/smtpd.pyc
7a17279abd58c92fb9fe064c5c8be1aa  ./usr/lib/python3.10/smtplib.pyc
54e2ccfe355cf143640c26476b754cf1  ./usr/lib/python3.10/sndhdr.pyc
8bfb7e02f17433e4d8d7a87cd923c383  ./usr/lib/python3.10/socket.pyc
02e9302a537cb95ee7a7195801883424  ./usr/lib/python3.10/socketserver.pyc
bd0760e2fdc8ac241aa762fc7660ed3d  ./usr/lib/python3.10/sre_compile.pyc
43c97367976e4ec8e85ae6dbb4165111  ./usr/lib/python3.10/sre_constants.pyc
95166abaabc76b219f71805de491d640  ./usr/lib/python3.10/sre_parse.pyc
2fee26282f7e7a81632ec51708070c1a  ./usr/lib/python3.10/ssl.pyc
1d546d99493ff0624b335983b2eed2f9  ./usr/lib/python3.10/statistics.pyc
a1631efde21d13f907d660eb2c4bc5c4  ./usr/lib/python3.10/stat.pyc
d0153a1d9d248a24a62a38bf7569aca4  ./usr/lib/python3.10/stringprep.pyc
34b20122d546f75e48f86f6bf686fd9d  ./usr/lib/python3.10/string.pyc
781716927e88ff89dad7aa4f23997717  ./usr/lib/python3.10/_strptime.pyc
83e80ab415a805a357be418e61a06996  ./usr/lib/python3.10/struct.pyc
7e7d050c1c067e0add7b8988e9aeffa9  ./usr/lib/python3.10/subprocess.pyc
474de520fa0452ed216e0bc6e29a8af6  ./usr/lib/python3.10/sunau.pyc
c09d616ceee34f780331428f77c47017  ./usr/lib/python3.10/symtable.pyc
9e261a56df40d2a2ae88d2a375fa7b20  ./usr/lib/python3.10/_sysconfigdata__linux_arm-linux-gnueabihf.py
da594a7b42a1f439891c2a3f0f98bd51  ./usr/lib/python3.10/sysconfig.pyc
542d228f294d2fb9a6da7abf5744a563  ./usr/lib/python3.10/tabnanny.pyc
e1c9809b0bf12d34cd106424cbd9dd8d  ./usr/lib/python3.10/telnetlib.pyc
05346b465904898fd982eabb27f0c5c5  ./usr/lib/python3.10/tempfile.pyc
bb8ae5e62dbafc4ec412c45018224636  ./usr/lib/python3.10/textwrap.pyc
2a901fac89a55113480ac9cd0d98d07e  ./usr/lib/python3.10/this.pyc
c446902a081a9dc07d017ecb66be2c92  ./usr/lib/python3.10/_threading_local.pyc
2d86df002cb891fbd25eefbded91509d  ./usr/lib/python3.10/threading.pyc
37a7d1c14205b8ecc5757d9772dc7af5  ./usr/lib/python3.10/timeit.pyc
3603d38cd97adf5569d7f5880da9c8f7  ./usr/lib/python3.10/tokenize.pyc
e637159c5a93a7d86908d0e45831dbfc  ./usr/lib/python3.10/token.pyc
5eef5afa522b51b3b026f7395cd468db  ./usr/lib/python3.10/traceback.py
4c7c5b1aa9deaa390f199b269d2d91d3  ./usr/lib/python3.10/tracemalloc.pyc
11bd9e8235a5dd9c2196d199a3058c8a  ./usr/lib/python3.10/trace.pyc
cc7452efc33e0f2d1a43e2201fc29c27  ./usr/lib/python3.10/tty.pyc
4b2e013355b1c96fe53f6370a53b278c  ./usr/lib/python3.10/types.pyc
7c0fe2fc011d5cf3d46a17bd1bffd85b  ./usr/lib/python3.10/typing.pyc
aef2ad1dda20ce5da599c76ab7d5b6c2  ./usr/lib/python3.10/urllib/error.pyc
356ee3bf95c30256874dbdb181a5392f  ./usr/lib/python3.10/urllib/__init__.pyc
bca17e749302e66368dd0bc62fdb1bf2  ./usr/lib/python3.10/urllib/parse.pyc
967fc2f7082c4dbcfca3e1571028e1d2  ./usr/lib/python3.10/urllib/request.pyc
bf1d68d49de5a85d5f49b63693190e00  ./usr/lib/python3.10/urllib/response.pyc
19c9fcc26217f48d99e46420a222e885  ./usr/lib/python3.10/urllib/robotparser.pyc
17381bdb25eba5db25f66e30a9d3a23e  ./usr/lib/python3.10/uuid.pyc
4ef74cdbb16119f6c9bec71a65b544e2  ./usr/lib/python3.10/uu.pyc
087a208a04467d8cef75da75bc30b5ca  ./usr/lib/python3.10/venv/__init__.pyc
a266a6f5eff8d27309e480176d1bb42d  ./usr/lib/python3.10/venv/__main__.pyc
7057598ce7899fd54382029e7269de44  ./usr/lib/python3.10/venv/scripts/common/activate
ffb074b8336789578f50a6c1a1632342  ./usr/lib/python3.10/venv/scripts/common/Activate.ps1
c6836850a25156fdc26ce14484d9b277  ./usr/lib/python3.10/venv/scripts/posix/activate.csh
023c89dc50a611444b9366679df803cf  ./usr/lib/python3.10/venv/scripts/posix/activate.fish
86b7b65bdbe9223262f0e485af4d4857  ./usr/lib/python3.10/warnings.pyc
419282e6146192b1f04eaf1c438e6d35  ./usr/lib/python3.10/wave.pyc
2e39ca312701d52b4e1e8e182d58f118  ./usr/lib/python3.10/weakref.pyc
4df64d2e016f577eee66e5972615bdec  ./usr/lib/python3.10/_weakrefset.pyc
6ab09375be7c517104546c059d56f375  ./usr/lib/python3.10/webbrowser.pyc
853d9e72c4ada5c4d600dd63d2ac4c36  ./usr/lib/python3.10/wsgiref/handlers.pyc
22dbe396a664f8c8329462fc7dd1ba26  ./usr/lib/python3.10/wsgiref/headers.pyc
02477e178c456dec8147035443365918  ./usr/lib/python3.10/wsgiref/__init__.pyc
82f0f5b542afe56809d3848507aaedb0  ./usr/lib/python3.10/wsgiref/simple_server.pyc
f04a4ef4d0eddcb3f9add038c6318426  ./usr/lib/python3.10/wsgiref/util.pyc
652c6e547af9fdeb1ea26f2e912ac091  ./usr/lib/python3.10/wsgiref/validate.pyc
0252d3dd179645c51d74e2768b0ce591  ./usr/lib/python3.10/xdrlib.pyc
1f19171341faabb263656e8630189a39  ./usr/lib/python3.10/xml/dom/domreg.pyc
fa686dac34dceaff36459ef7a2d9b899  ./usr/lib/python3.10/xml/dom/expatbuilder.pyc
1337ca7e64930383258f4d2a978b6b9b  ./usr/lib/python3.10/xml/dom/__init__.pyc
80aa7db6b1e8fbfc809c70fd743e65b4  ./usr/lib/python3.10/xml/dom/minicompat.pyc
a5e4d647b88cf43b78c6569cabb16e7e  ./usr/lib/python3.10/xml/dom/minidom.pyc
1fd3ee5851cde5526c9af59a71ac7fc9  ./usr/lib/python3.10/xml/dom/NodeFilter.pyc
64b348f2bd8748009b090cae8e0f16da  ./usr/lib/python3.10/xml/dom/pulldom.pyc
3bc8b84c0bfb3451c742719cd5a35f11  ./usr/lib/python3.10/xml/dom/xmlbuilder.pyc
3b4eaa80d15062a0c0d5515fe2321ca3  ./usr/lib/python3.10/xml/etree/cElementTree.pyc
d282a9697cecf7348491a2ccd7bd39fb  ./usr/lib/python3.10/xml/etree/ElementInclude.pyc
c6de3c03d72c2030794efaa7ecb93252  ./usr/lib/python3.10/xml/etree/ElementPath.pyc
467275d0bfd066f58e2e19ccddfc534b  ./usr/lib/python3.10/xml/etree/ElementTree.pyc
b44afb786cfafa5b554617ab60b9bf78  ./usr/lib/python3.10/xml/etree/__init__.pyc
28b698135f3aa4420e14661a72f31b36  ./usr/lib/python3.10/xml/__init__.pyc
f4202d8a8e6b417099106db55ee5cb27  ./usr/lib/python3.10/xml/parsers/expat.pyc
f6f97f2e9a06b51a9e75ec0f94f1af15  ./usr/lib/python3.10/xml/parsers/__init__.pyc
917e7b2914034370f8ace2863ec4d94e  ./usr/lib/python3.10/xmlrpc/client.pyc
58cd8c95e79b8b07908c73c8ea8d3aa6  ./usr/lib/python3.10/xmlrpc/__init__.pyc
5145192a79e5d98e8b1e236c8f1d6ecb  ./usr/lib/python3.10/xmlrpc/server.pyc
857dcaeb4484b0b134b3ad30142899b0  ./usr/lib/python3.10/xml/sax/_exceptions.pyc
81d42612aa15754b066b64b604730924  ./usr/lib/python3.10/xml/sax/expatreader.pyc
41bde75495752124633fad67517093b4  ./usr/lib/python3.10/xml/sax/handler.pyc
281c89638116eaf0f43b710bcc66dd79  ./usr/lib/python3.10/xml/sax/__init__.pyc
63292a75d8d0c372c3a417ec29b19f52  ./usr/lib/python3.10/xml/sax/saxutils.pyc
9dbd9b6a197fc6b3d482d529767dd493  ./usr/lib/python3.10/xml/sax/xmlreader.pyc
e4c7467baddd1d6d19f9cec5eb039381  ./usr/lib/python3.10/zipapp.pyc
c88d89f4af97a49a062d1485ed0f7972  ./usr/lib/python3.10/zipimport.pyc
b041a6f69670ef442c2435730d640a3e  ./usr/lib/python3.10/zoneinfo/_common.pyc
49f268f85ca3cd5677d1d7b1ac4087fa  ./usr/lib/python3.10/zoneinfo/__init__.pyc
1e743394c6c18ede54b30c70f32518c9  ./usr/lib/python3.10/zoneinfo/_tzpath.pyc
8b8b99bb31199acccace3574f22c7341  ./usr/lib/python3.10/zoneinfo/_zoneinfo.pyc
0065c97bb8ddf0a97914989b9abaa55e  ./usr/lib/v4l1compat.so
18373e7989fa769b52a552c726721e7b  ./usr/lib/v4l2convert.so
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/addgroup
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/adduser
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/chroot
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/crond
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/delgroup
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/deluser
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/fbset
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/fdformat
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/fsfreeze
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/i2cdetect
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/i2cdump
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/i2cget
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/i2cset
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/i2ctransfer
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/killall5
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/loadfont
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/mim
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/nologin
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/partprobe
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/rdate
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/readprofile
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/seedrng
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/setlogcons
abcbcbb3cee2aed83fdd56ae3b8d3ea4  ./usr/sbin/ubirename

How to install Docker and my recommended configurations

Follow these instructions to install Docker Desktop on Mac or Windows. You can install Docker and the compose plugin on linux, but I'm not going to get into that here.

My recommended Mac settings for resources and experimental features.

Docker Desktop Resources Screenshot

Docker Desktop Rosetta

Building without docker

TODO

Offline build instructions

TODO

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment